[
  {
    "path": ".gitignore",
    "content": "*ipynb_checkpoints*\n*save*\n*checkpoint*\n*processed_data*\n*runs*"
  },
  {
    "path": "README.md",
    "content": "本项目是一个电影推荐系统的项目，使用两种方式来实现：\n1. 基于CNN的推荐。\n2. 基于矩阵分解的协同过滤的推荐。代码相对于慕课网的代码有一些更新，大家以这里的代码为准。\n"
  },
  {
    "path": "基于CNN的电影推荐系统/README.md",
    "content": "这是一个简单的推荐系统，使用 TensorFlow 和 Python 3 开发。\n\n使用卷积神经网络，并利用MovieLens数据集完成电影推荐的任务。\n实现的推荐功能如下：\n - 1、指定用户和电影进行评分\n - 2、推荐同类型的电影\n - 3、推荐您喜欢的电影\n - 4、看过这个电影的人还看了（喜欢）哪些电影\n\n## 指定用户和电影进行评分\n给用户234，电影1401的评分是：4.27963877\n\n## 推荐同类型的电影\n您看的电影是：[1401 'Ghosts of Mississippi (1996)' 'Drama']\n\n以下是给您的推荐：\n\n3385\n\n[3454 'Whatever It Takes (2000)' 'Comedy|Romance']\n\n707\n\n[716 'Switchblade Sisters (1975)' 'Crime']\n\n2351\n\n[2420 'Karate Kid, The (1984)' 'Drama']\n\n2189\n\n[2258 'Master Ninja I (1984)' 'Action']\n\n2191\n\n[2260 'Wisdom (1986)' 'Action|Crime']\n\n## 推荐您喜欢的电影\n以下是给您的推荐（用户234）：\n\n1642\n\n[1688 'Anastasia (1997)' \"Animation|Children's|Musical\"]\n\n994\n\n[1007 'Apple Dumpling Gang, The (1975)' \"Children's|Comedy|Western\"]\n\n667\n\n[673 'Space Jam (1996)' \"Adventure|Animation|Children's|Comedy|Fantasy\"]\n\n1812\n\n[1881 'Quest for Camelot (1998)' \"Adventure|Animation|Children's|Fantasy\"]\n\n1898\n\n[1967 'Labyrinth (1986)' \"Adventure|Children's|Fantasy\"]\n\n## 看过这个电影的人还看了（喜欢）哪些电影\n您看的电影是：[1401 'Ghosts of Mississippi (1996)' 'Drama']\n\n喜欢看这个电影的人是：[[5782 'F' 35 0]\n\n [5767 'M' 25 2]\n \n [3936 'F' 35 12]\n \n [3595 'M' 25 0]\n \n [1696 'M' 35 7]\n \n [2728 'M' 35 12]\n \n [763 'M' 18 10]\n \n [4404 'M' 25 1]\n \n [3901 'M' 18 14]\n \n [371 'M' 18 4]\n \n [1855 'M' 18 4]\n \n [2338 'M' 45 17]\n \n [450 'M' 45 1]\n \n [1130 'M' 18 7]\n \n [3035 'F' 25 7]\n \n [100 'M' 35 17]\n \n [567 'M' 35 20]\n \n [5861 'F' 50 1]\n \n [4800 'M' 18 4]\n \n [3281 'M' 25 17]]\n \n喜欢看这个电影的人还喜欢看：\n\n1779\n\n[1848 'Borrowers, The (1997)' \"Adventure|Children's|Comedy|Fantasy\"]\n\n1244\n\n[1264 'Diva (1981)' 'Action|Drama|Mystery|Romance|Thriller']\n\n1812\n\n[1881 'Quest for Camelot (1998)' \"Adventure|Animation|Children's|Fantasy\"]\n\n1742\n\n[1805 'Wild Things (1998)' 'Crime|Drama|Mystery|Thriller']\n\n2535\n\n[2604 'Let it Come Down: The Life of Paul Bowles (1998)' 'Documentary']\n"
  },
  {
    "path": "基于CNN的电影推荐系统/model_code/data_download.py",
    "content": "import os\nfrom urllib.request import urlretrieve\nfrom os.path import isfile, isdir\nfrom tqdm import tqdm\nimport zipfile\nimport hashlib\n\n\n'''\nthis module includes two methods: download_data() and extract_data()\n\ndownload_data() will download the movielen data to './ml-1m.zip'\nextract_data() will extract files from .zip file\n'''\ndef download_data():\n\t\"\"\"\n\tdownload movie data\n\t\"\"\"\n\tdata_name = 'ml-1m'\n\tsave_path = './ml-1m.zip'\n\turl = 'http://files.grouplens.org/datasets/movielens/ml-1m.zip'\n#\thash_code = 'c4d9eecfca2ab87c1945afe126590906'\n\tif os.path.exists(save_path):\n\t\tprint('{} is already exiting..'.format(data_name))\n\telse:\n\t\twith DLProgress(unit='B', unit_scale=True, miniters=1, desc='Downloading {}'.format(data_name)) as pbar:\n\t\t\turlretrieve(url, save_path, pbar.hook)\n\n\ndef extract_data():\n\t\"\"\"\n\textract data from ml-1m.zip\n\t\"\"\"\n\tdata_name = 'ml-1m'\n\tdata_path = './ml-1m.zip'\n\textract_path = './'\n\tif not os.path.exists(extract_path):\n\t\tos.makedirs(extract_path)\n\t\tunzip(data_name, data_path, extract_path)\n\tprint('extracting done')\n\ndef unzip(data_name, from_path, to_path):\n\tprint('extracting {} ....'.format(data_name))\n\twith zipfile.ZipFile(from_path) as zf:\n\t\tzf.extractall(to_path)\n\n\n\nclass DLProgress(tqdm):\n\t\"\"\"\n\tHandle progress bar while downloading\n\t\"\"\"\n\tlast_block = 0\n\tdef hook(self, block_num=1, block_size=1, total_size=None):\n\t\t\"\"\"\n\t\ta hook function\n\t\t\"\"\"\n\t\tself.total=total_size\n\t\tself.update((block_num - self.last_block) * block_size)\n\t\tself.last_block = block_num\n\n\n\nif __name__ == '__main__':\n\tdownload_data()\n\textract_data()\n"
  },
  {
    "path": "基于CNN的电影推荐系统/model_code/data_processing.py",
    "content": "import pandas as pd\nfrom sklearn.model_selection import train_test_split\nimport numpy as np\nimport re\nimport pickle\n\n\n\n\"\"\"\n数据预处理\n对原始电影数据，user数据进行处理\n\"\"\"\ndef user_data_processing():\n\t'''\n\t对原始user数据进行处理\n\tUserID：保持不变\n\tJobID：保持不变\n\tGender字段：需要将‘F’和‘M’转换成0和1。\n\tAge字段：要转成7个连续数字0~6。\n\t舍弃： zip-code\n\t'''\n\tprint('user_data_processing....')\n\tuser_title = ['UserID','Gender','Age','JobID','Zip-code']\n\tusers = pd.read_table('./ml-1m/users.dat', sep='::', header=None,\n\t\tnames=user_title, engine='python')\n\tusers = users.filter(regex='UserID|Gender|Age|JobID')\n\tusers_orig = users.values #a list\n\n\tgender_to_int = {'F':0,'M':1}\n\tusers['Gender'] = users['Gender'].map(gender_to_int)\n\tage2int = {val:ii for ii, val in enumerate(set(users['Age']))}\n\tusers['Age'] = users['Age'].map(age2int)\n\treturn users, users_orig\n\ndef movie_data_processing(title_length = 16):\n\t'''\n\t对原始movie数据不作处理\n\tGenres字段：进行int映射，因为有些电影是多个Genres的组合,需要再将每个电影的Genres字段转成数字列表.\n\tTitle字段：首先去除掉title中的year。然后将title映射成数字列表。（int映射粒度为单词而不是整个title）\n\tGenres和Title字段需要将长度统一，这样在神经网络中方便处理。\n\t空白部分用‘< PAD >’对应的数字填充。\n\t'''\n\tprint('movie_data_processing....')\n\tmovies_title = ['MovieID', 'Title', 'Genres']\n\tmovies = pd.read_table('./ml-1m/movies.dat', sep='::',\n\t\theader=None, names=movies_title, engine='python')\n\tmovies_orig = movies.values#length:3883\n\t# title处理，首先将year过滤掉\n\tpattern = re.compile(r'^(.*)\\((\\d+)\\)$')\n\ttitle_re_year = {val:pattern.match(val).group(1) for val in set(movies['Title'])}\n\tmovies['Title'] = movies['Title'].map(title_re_year)\n\t#title的int映射\n\ttitle_set = set()\n\tfor val in movies['Title'].str.split():\n\t\ttitle_set.update(val)\n\ttitle_set.add('PADDING')\n\ttitle2int = {val: ii for ii, val in enumerate(title_set)}  # length:5215\n\n\t# 构建title_map，每个title映射成一个int list，然后对于长度不足16的使用pad进行补全\n\ttitle_map = {val: [title2int[row] for row in val.split()] \\\n\t\t\t\t for val in set(movies['Title'])}\n\tfor key in title_map.keys():\n\t\tpadding_length = title_length - len(title_map[key])\n\t\tpadding = [title2int['PADDING']] * padding_length\n\t\ttitle_map[key].extend(padding)\n\t\t# for cnt in range(title_length - len(title_map[key])):\n\t\t# \ttitle_map[key].insert(len(title_map[key]) + cnt, title2int['PADDING'])\n\tmovies['Title'] = movies['Title'].map(title_map)\n\tprint(len(movies['Title'][0]))\n\n\t#电影类型转为数字字典\n\tgenres_set = set()\n\tfor val in movies['Genres'].str.split('|'):\n\t\tgenres_set.update(val)\n\tgenres_set.add('PADDING')\n\tgenres2int = {val:ii for ii, val in enumerate(genres_set)} # length:19\n\n\t#和title的处理相同，对每个电影的genres构建一个等长的int list映射\n\tgenres_map={val:[genres2int[row] for row in val.split('|')]\\\n\t\t\tfor val in set(movies['Genres'])}\n\tfor key in genres_map:\n\t\tpadding_length = len(genres_set) - len(genres_map[key])\n\t\tpadding = [genres2int['PADDING']] * padding_length\n\t\tgenres_map[key].extend(padding)\n\t\t# for cnt in range(max(genres2int.values()) - len(genres_map[key])):\n\t\t# \tgenres_map[key].insert(len(genres_map[key]) + cnt, genres2int['<PAD>'])\n\tmovies['Genres'] = movies['Genres'].map(genres_map)\n\n\treturn movies, movies_orig, genres2int,title_set\n\n\ndef rating_data_processing():\n\t'''\n\trating数据处理，只需要将timestamps舍去，保留其他属性即可\n\t'''\n\tprint('rating_data_processing....')\n\tratings_title = ['UserID', 'MovieID', 'ratings', 'timestamps']\n\tratings = pd.read_table('./ml-1m/ratings.dat', sep='::',\n\t\theader=None, names=ratings_title, engine='python')\n\tratings = ratings.filter(regex='UserID|MovieID|ratings')\n\treturn ratings\n\ndef get_feature():\n\t\"\"\"\n\t将多个方法整合在一起，得到movie数据，user数据，rating数据。\n\t然后将三个table合并到一起，组成一个大table。\n\t最后将table切割，分别得到features 和 target（rating）\n\t\"\"\"\n\ttitle_length = 16\n\tusers, users_orig = user_data_processing()\n\tmovies, movies_orig, genres2int,title_set = movie_data_processing()\n\tratings = rating_data_processing()\n\n\t#merge three tables\n\tdata = pd.merge(pd.merge(ratings, users), movies)\n\n\t#split data to feature set:X and lable set:y\n\ttarget_fields = ['ratings']\n\tfeature_pd, tragets_pd = data.drop(target_fields, axis=1), data[target_fields]\n\tfeatures = feature_pd.values\n\ttargets = tragets_pd.values\n\n\t# print(type(feature_pd))\n\t# print(feature_pd.head())\n\n\t#将处理后的数据保存到本地\n\tf  = open('model/features.p', 'wb')\n\t#['UserID' 'MovieID' 'Gender' 'Age' 'JobID' 'Title' 'Genres']\n\tpickle.dump(features, f)\n\n\tf = open('model/target.p', 'wb')\n\tpickle.dump(targets, f)\n\n\tf = open('model/params.p', 'wb')\n\tpickle.dump((title_length, title_set, genres2int, features, targets,\\\n\t  \t\tratings, users, movies, data, movies_orig, users_orig), f)\n\n\ttitle_vocb_num = len(title_set)+1 #5216\n\tgenres_num = len(genres2int) #19\n\tmovie_id_num = max(movies['MovieID'])+1 #3953\n\t#print(title_vocb_num, genres_num, movie_id_num)\n\tf = open('model/argument.p', 'wb')\n\tpickle.dump((movie_id_num, title_length, title_vocb_num, genres_num), f)\n\n\treturn features, targets\n\n\n\n\n\n\nif __name__ == '__main__':\n\tget_feature()\n"
  },
  {
    "path": "基于CNN的电影推荐系统/model_code/movie_nn.py",
    "content": "import tensorflow as tf\nimport pickle\n\n\nfeatures = pickle.load(open('features.p', 'rb'))\n#feature info: ['UserID' 'MovieID' 'Gender' 'Age' 'JobID' 'Title' 'Genres']\ntitle_length, title_set, genres2int, features, target_values,ratings, users,\\\n movies, data, movies_orig, users_orig = pickle.load(open('params.p', 'rb'))\n\nmovie_id_num, title_length, title_vocb_num, genres_num = pickle.load(open('argument.p', 'rb'))\n\nMOVIE_CATEGORAY_LENGTH = 19\nMOVIE_TITLE_LENGTH = 16\n\nembed_dim = 64\n#电影ID个数\nmovie_id_max = movie_id_num #3953\n#电影类型个数\nmovies_categories_max = genres_num #18\n#电影名单词个数 = title_vocb_num = 5216\n\n\n#电影名长度  title_length = 16\n\n#文本卷积数量\nfilter_num = 8 #* 2  #为保证输出len(window_sizes) * filter_num = 64 进行的修改\n\n#电影ID转下标的字典，数据集中电影ID跟下标不一致，比如第五行的数据电影ID不一定是5\nmovieid2idx = {val[0]: i for i,val in enumerate(movies.values)}\n\n\n\n\n\n\n\n\ndef get_inputs():\n\t'''\n\t获取movie所有特征的input\n\t:return:\n\t'''\n\tmovie_id = tf.placeholder(tf.int32, [None,1], name='movie_id')\n\tmovie_categories = tf.placeholder(tf.int32, [None, MOVIE_CATEGORAY_LENGTH], name='movie_categories')\n\tmovie_titles = tf.placeholder(tf.int32, [None,MOVIE_TITLE_LENGTH], name='movie_titles')\n\tdropout_keep_prob = tf.placeholder(tf.float32, name='dropout_keep_prob')\n\treturn movie_id, movie_categories, movie_titles, dropout_keep_prob\n\n\ndef get_movie_id_embed_layer(movie_id):\n\t'''\n\t获取movie id 的embedding\n\t'''\n\twith tf.name_scope('movie_embedding'):\n\t\tmovie_id_embed_matrix = tf.Variable(tf.random_uniform([\n\t\t\tmovie_id_max, embed_dim], -1, 1), name='movie_id_embed_matrix')\n\t\tmovie_id_embed_layer = tf.nn.embedding_lookup(\n\t\t\tmovie_id_embed_matrix, movie_id, name='movie_id_embed_layer')\n\treturn movie_id_embed_layer\n\n#对电影类型的多个嵌入向量做加和\ndef get_movie_categories_embed_layer(movie_categories, combiner = 'sum'):\n\t'''\n\t定义对movie类型的embedding，同时对于一个movie的所有类型，进行combiner的组合。\n\t目前仅考虑combiner为sum的情况，即将该电影所有的类型进行sum求和\n\t'''\n\twith tf.name_scope('movie_categories_layer'):\n\t\tmovie_categories_embed_matrix = tf.Variable(tf.random_uniform([\n\t\t\tmovies_categories_max, embed_dim], -1, 1),\n\t\t\tname='movie_categories_embed_matrix')\n\t\tmovie_categories_embed_layer = tf.nn.embedding_lookup(\n\t\t\tmovie_categories_embed_matrix, movie_categories,\n\t\t\tname='movie_categories_embed_layer')\n\t\tif combiner == 'sum':\n\t\t\tmovie_categories_embed_layer = tf.reduce_sum(\n\t\t\t\tmovie_categories_embed_layer, axis=1, keep_dims=True)\n\treturn movie_categories_embed_layer\n\n\ndef get_movie_cnn_layer(movie_titles, dropout_keep_prob, window_sizes = [3,4,5,6]):\n\t'''\n\t对movie的title，进行卷积神经网络实现\n\twindow_sizes:  文本卷积滑动窗口，分别滑动3,4,5, 6个单词\n\t'''\n\t#从嵌入矩阵中得到电影名对应的各个单词的嵌入向量\n\twith tf.name_scope('movie_embedding'):\n\t\tmovie_title_embed_matrix = tf.Variable(tf.random_uniform([\n\t\t\ttitle_vocb_num, embed_dim], -1, 1),\n\t\t\tname='movie_title_embed_matrix')\n\t\tmovie_title_embed_layer = tf.nn.embedding_lookup(\n\t\t\tmovie_title_embed_matrix, movie_titles, name='movie_title_embed_layer')\n\t\tmovie_title_embed_layer_expand = tf.expand_dims(movie_title_embed_layer, -1)#title的二维representation矩阵\n\n\t#对文本嵌入层使用不同尺寸的卷积核做卷积核最大池化\n\tpool_layer_lst = []\n\tfor window_size in window_sizes:\n\t\twith tf.name_scope('movie_txt_conv_maxpool_{}'.format(window_size)):\n\t\t\tfilter_weights = tf.Variable(tf.truncated_normal([\n\t\t\t\twindow_size, embed_dim, 1, filter_num], stddev=0.1), name='filter_weights')#修改卷积核大小\n\t\t\tfilter_bias = tf.Variable(tf.constant(0.1, shape=[filter_num], name='filter_bias'))\n\n\t\t\tconv_layer = tf.nn.conv2d(movie_title_embed_layer_expand,\n\t\t\t\tfilter_weights, [1,1,1,1], padding='VALID', name='conv_layer')\n\t\t\trelu_layer = tf.nn.relu(tf.nn.bias_add(conv_layer, filter_bias), name='relu_layer')\n\n\t\t\tmaxpool_layer = tf.nn.max_pool(relu_layer,\n\t\t\t\t[1, title_length - window_size, 1, 1],\n\t\t\t\t[1,1,1,1], padding='VALID', name='maxpool_layer')\n\n\t\t\tpool_layer_lst.append(maxpool_layer)\n\n\t#dropout layer\n\twith tf.name_scope('pool_dropout'):\n\t\tpool_layer = tf.concat(pool_layer_lst, 3, name='pool_layer')\n\t\tmax_num = len(window_sizes) * filter_num * 2 #为了让max_num = 64 修改\n\t\tpool_layer_flat = tf.reshape(pool_layer, [-1, 1, max_num], name='pool_layer_flat')\n\t\tdropout_layer = tf.nn.dropout(pool_layer_flat, dropout_keep_prob, name='dropout_layer')\n\n\treturn pool_layer_flat, dropout_layer\n\n\ndef get_movie_feature_layer(\n\tmovie_id_embed_layer, movie_categories_embed_layer, dropout_layer):\n\t'''\n\t将movie id，movie genres， movie title的representations分别连入一个小型的神经网络\n\t然后将每个神经网络的输出拼接在一起，组成movie feature representation\n\t'''\n\t# print(movie_id_embed_layer.get_shape())   (? 1 64)\n\t# print(movie_categories_embed_layer.get_shape())同上\n\t# print(dropout_layer.get_shape())同上\n\twith tf.name_scope('movie_fc'):\n\t\t# 首先将movie的id和genres分别连入一个小型神经网络\n\t\tmovie_id_fc_layer = tf.layers.dense(movie_id_embed_layer,\n\t\t\tembed_dim, name='movie_id_fc_layer', activation=tf.nn.relu)\n\t\tmovie_categories_fc_layer = tf.layers.dense(movie_categories_embed_layer,\n\t\t\tembed_dim, name='movie_categories_fc_layer', activation=tf.nn.relu)\n\n\t\t#将id和genres的神经网络输出和经过cnn、dropout的titile feature拼接到一起，组成movie的representation\n\t\tmovie_combine_layer = tf.concat([\n\t\t\tmovie_id_fc_layer, movie_categories_fc_layer, dropout_layer], 2)#(?,1,96)\n\t\tmovie_combine_layer = tf.contrib.layers.fully_connected(\n\t\t\tmovie_combine_layer, 512, tf.tanh) #(?,1,200)\n\t\tmovie_combine_layer_flat = tf.reshape(movie_combine_layer, [-1, 512])\n\n\t\tprint(movie_combine_layer_flat.get_shape())\n\treturn movie_combine_layer, movie_combine_layer_flat\n\n\n\n\n\n\n\nif __name__ == '__main__':\n\tmovie_id, movie_categories, movie_titles, dropout_keep_prob = get_inputs()\n\tmovie_id_embed_layer = get_movie_id_embed_layer(movie_id)\n\tmovie_categories_embed_layer = get_movie_categories_embed_layer(movie_categories)\n\tpool_layer_flat, dropout_layer = get_movie_cnn_layer(movie_titles, dropout_keep_prob)\n\tmovie_combine_layer, movie_combine_layer_flat = get_movie_feature_layer(\n\t\tmovie_id_embed_layer, movie_categories_embed_layer, dropout_layer)\n"
  },
  {
    "path": "基于CNN的电影推荐系统/model_code/recommendation.py",
    "content": "import numpy as np\nimport tensorflow as tf\n\nimport os\nimport pickle\nimport random\n\n\nfeatures = pickle.load(open('features.p', 'rb'))\ntarget_values = pickle.load(open('target.p', 'rb'))\ntitle_length, title_set, genres2int, features, target_values,ratings, users,\\\n movies, data, movies_orig, users_orig = pickle.load(open('params.p',mode='rb'))\n#电影ID转下标的字典，数据集中电影ID跟下标不一致，比如第五行的数据电影ID不一定是5\nmovieid2idx = {val[0]: i for i,val in enumerate(movies.values)}\nsentences_size = title_length #16\nload_dir = './save_model/'\nmovie_feature_size = user_feature_size = 512\nmovie_matrix_path = 'movie_matrix.p'\nuser_matrix_path = 'user_matrix.p'\n\n\n#获取 Tensors\ndef get_tensors(loaded_graph):\n\tuid = loaded_graph.get_tensor_by_name('uid:0')\n\tuser_gender = loaded_graph.get_tensor_by_name('user_gender:0')\n\tuser_age = loaded_graph.get_tensor_by_name('user_age:0')\n\tuser_job = loaded_graph.get_tensor_by_name('user_job:0')\n\tmovie_id = loaded_graph.get_tensor_by_name('movie_id:0')\n\tmovie_categories = loaded_graph.get_tensor_by_name('movie_categories:0')\n\tmovie_titles = loaded_graph.get_tensor_by_name('movie_titles:0')\n\ttargets = loaded_graph.get_tensor_by_name('targets:0')\n\tdropout_keep_prob = loaded_graph.get_tensor_by_name('dropout_keep_prob:0')\n\n\tinference = loaded_graph.get_tensor_by_name('inference/MatMul:0')\n\tmovie_combine_layer_flat = loaded_graph.get_tensor_by_name('movie_fc/Reshape:0')\n\tuser_combine_layer_flat = loaded_graph.get_tensor_by_name('user_fc/Reshape:0')\n\treturn uid, user_gender, user_age, user_job, movie_id, movie_categories,movie_titles, targets,\\\n\t\tdropout_keep_prob, inference, movie_combine_layer_flat, user_combine_layer_flat\n\n#预测指定用户对指定电影的评分\n#这部分就是对网络做正向传播，计算得到预测的评分\ndef rating_movie(user_id, movie_id_val):\n\tloaded_graph = tf.Graph()\n\twith tf.Session(graph=loaded_graph) as sess:\n\t\t#load save model\n\t\tloader = tf.train.import_meta_graph(load_dir + '.meta')\n\t\tloader.restore(sess, load_dir)\n\t\t#get tensors from loaded model\n\t\tuid, user_gender, user_age, user_job, movie_id, movie_categories,movie_titles, targets,\\\n\t\tdropout_keep_prob, inference,_,__ = get_tensors(loaded_graph)\n\t\tcategories = np.zeros([1, 19])\n\t\tcategories[0] = movies.values[movieid2idx[movie_id_val]][2]\n\t\ttitles = np.zeros([1, sentences_size])\n\t\ttitles[0] = movies.values[movieid2idx[movie_id_val]][1]\n\t\tfeed = {\n\t\t\tuid: np.reshape(users.values[user_id-1][0], [1, 1]),\n\t\t\tuser_gender: np.reshape(users.values[user_id-1][1], [1, 1]),\n\t\t\tuser_age: np.reshape(users.values[user_id-1][2], [1, 1]),\n\t\t\tuser_job: np.reshape(users.values[user_id-1][3], [1, 1]),\n\t\t\tmovie_id: np.reshape(movies.values[movieid2idx[movie_id_val]][0], [1, 1]),\n\t\t\tmovie_categories: categories,  #x.take(6,1)\n\t\t\tmovie_titles: titles,  #x.take(5,1)\n\t\t\tdropout_keep_prob: 1\n\t\t}\n\t\t#get prediction\n\t\tinference_val = sess.run([inference], feed)\n\t\treturn (inference_val)\n\n#生成movie特征矩阵，将训练好的电影特征组合成电影特征矩阵并保存到本地\n#对每个电影进行正向传播\ndef save_movie_feature_matrix():\n\tloaded_graph = tf.Graph()\n\tmovie_matrics = []\n\twith tf.Session(graph=loaded_graph) as sess:\n\t\t#load saved model\n\t\tloader = tf.train.import_meta_graph(load_dir + '.meta')\n\t\tloader.restore(sess, load_dir)\n\n\t\t#get tensor from loaded model\n\t\tuid, user_gender, user_age, user_job, movie_id, \\\n\t\tmovie_categories, movie_titles, targets, dropout_keep_prob,\\\n\t\t_, movie_combine_layer_flat, __ = get_tensors(loaded_graph)\n\n\t\tfor item in movies.values:\n\t\t\tcategories = np.zeros([1, 19])\n\t\t\tcategories[0] = item.take(2)\n\t\t\ttitles = np.zeros([1, sentences_size])\n\t\t\ttitles[0] = item.take(1)\n\t\t\tfeed = {\n\t\t\t\tmovie_id: np.reshape(item.take(0), [1, 1]),\n\t\t\t\tmovie_categories:categories,#x.take(6,1)\n\t\t\t\tmovie_titles:titles, #x.take(5, 1)\n\t\t\t\tdropout_keep_prob: 1,\n\t\t\t}\n\t\t\tmovie_representation = sess.run([\n\t\t\t\tmovie_combine_layer_flat], feed)\n\t\t\tmovie_matrics.append(movie_representation)\n\tmovie_matrics = np.array(movie_matrics).reshape(-1, movie_feature_size)\n\tpickle.dump(movie_matrics, open(movie_matrix_path,'wb'))\n\n\n#生成user特征矩阵\n#将训练好的用户特征组合成用户特征矩阵并保存到本地\n#对每个用户进行正向传播\ndef save_user_feature_matrix():\n\tloaded_graph = tf.Graph()\n\tusers_matrics = []\n\twith tf.Session(graph=loaded_graph) as sess:\n\t\t#load saved model\n\t\tloader = tf.train.import_meta_graph(load_dir + '.meta')\n\t\tloader.restore(sess, load_dir)\n\t\tuid, user_gender, user_age, user_job, movie_id, \\\n\t\tmovie_categories, movie_titles, targets, dropout_keep_prob,\\\n\t\t_, __, user_combine_layer_flat = get_tensors(loaded_graph)\n\t\tfor item in users.values:\n\t\t\tfeed = {\n\t\t\t\tuid:np.reshape(item.take(0), [1, 1]),\n\t\t\t\tuser_gender: np.reshape(item.take(1), [1, 1]),\n\t\t\t\tuser_age: np.reshape(item.take(2), [1, 1]),\n\t\t\t\tuser_job: np.reshape(item.take(3), [1, 1]),\n\t\t\t\tdropout_keep_prob: 1\n\t\t\t}\n\t\t\tuser_representation = sess.run([user_combine_layer_flat], feed)\n\t\t\tusers_matrics.append(user_representation)\n\tusers_matrics = np.array(users_matrics).reshape(-1, user_feature_size)\n\tpickle.dump(users_matrics, open(user_matrix_path, 'wb'))\n\n\n\ndef load_feature_matrix(path):\n\tif(os.path.exists(path)):\n\t\tpass\n\telif path == movie_matrix_path:\n\t\tsave_movie_feature_matrix()\n\telse:\n\t\tsave_user_feature_matrix()\n\treturn pickle.load(open(path, 'rb'))\n\n\n\n#使用电影特征矩阵推荐同类型的电影\n#思路是计算指定电影的特征向量与整个电影特征矩阵的余弦相似度，\n#取相似度最大的top_k个，\n#ToDo: 加入随机选择，保证每次的推荐稍微不同\ndef recommend_same_type_movie(movie_id, top_k=5):\n\tloaded_graph = tf.Graph()\n\tmovie_matrics = load_feature_matrix(movie_matrix_path)\n\tmovie_feature = movie_matrics[movieid2idx[movie_id]].reshape([1, movie_feature_size])#给定电影的representation\n\n\twith tf.Session(graph=loaded_graph) as sess:\n\t\tloader = tf.train.import_meta_graph(load_dir + '.meta')\n\t\tloader.restore(sess, load_dir)\n\n\t\t# 计算余弦相似度\n\t\tnorm_movie_matrics = tf.sqrt(tf.reduce_sum(\n\t\t\ttf.square(movie_matrics), 1, keep_dims=True)) #计算每个representation的长度 ||x||\n\t\tnormalized_movie_matrics = movie_matrics / (norm_movie_matrics*norm_movie_matrics[movie_id])\n\t\tprobs_similarity = tf.matmul(movie_feature, tf.transpose(normalized_movie_matrics))\n\t\t#得到对于给定的movie id，所有电影对它的余弦相似值\n\t\tsim = probs_similarity.eval()\n\n\tprint('和电影：{} 相似的电影有：\\n'.format(movies_orig[movieid2idx[movie_id]]))\n\n\tsim = np.squeeze(sim)#将二维sim转为一维\n\tres_list = np.argsort(-sim)[:top_k] #获取余弦相似度最大的前top k个movie信息\n\tresults = list()\n\tfor res in res_list:\n\t\tmovie_info = movies_orig[res]\n\t\tresults.append(movie_info)\n\tprint(results)\n\treturn results\n\n\n#给定指定用户，推荐其喜欢的电影\n#思路是使用用户特征向量与电影特征矩阵计算所有电影的评分，\n#取评分最高的top_k个，\n# ToDo 加入随机选择\ndef recommend_your_favorite_movie(user_id, top_k=5):\n\tloaded_graph = tf.Graph()\n\tmovie_matrics = load_feature_matrix(movie_matrix_path)\n\tusers_matrics = load_feature_matrix(user_matrix_path)\n\tuser_feature = users_matrics[user_id-1].reshape([1, user_feature_size])#是否需要减一\n\n\twith tf.Session(graph=loaded_graph) as sess:\n\t\tloader = tf.train.import_meta_graph(load_dir + '.meta')\n\t\tloader.restore(sess, load_dir)\n\n\t\t#获取图中的 inference，然后用sess运行\n\t\tprobs_similarity = tf.matmul(user_feature, tf.transpose(movie_matrics))\n\t\tsim = (probs_similarity.eval())\n\t\tsim = np.squeeze(sim)\n\t\tres_list = np.argsort(-sim)[:top_k] #获取该用户对所有电影可能评分最高的top k\n\t\tresults = []\n\t\tfor res in res_list:\n\t\t\tmoive_info = movies_orig[res]\n\t\t\tresults.append(moive_info)\n\t\tprint('以下是给您的推荐：', results)\n\t\treturn results\n\n\n\n\n#看过这个电影的人还可能（喜欢）哪些电影\n#首先选出喜欢某个电影的top_k个人，得到这几个人的用户特征向量\n#然后计算这几个人对所有电影的评分\n#选择每个人评分最高的电影作为推荐\n# ToDo 加入随机选择\ndef recommend_other_favorite_movie(movie_id, top_k=5):\n\tloaded_graph = tf.Graph()\n\tmovie_matrics = load_feature_matrix(movie_matrix_path)\n\tusers_matrics = load_feature_matrix(user_matrix_path)\n\tmovie_feature = (movie_matrics[movieid2idx[movie_id]]).reshape([1, movie_feature_size])\n\tprint('您看的电影是：{}'.format(movies_orig[movieid2idx[movie_id]]))\n\n\twith tf.Session(graph=loaded_graph) as sess:\n\n\t\tloader = tf.train.import_meta_graph(load_dir + '.meta')\n\t\tloader.restore(sess, load_dir)\n\n\t\t#计算对给定movie，所有用户对其可能的评分\n\t\tusers_inference = tf.matmul(movie_feature, tf.transpose(users_matrics))\n\t\tfavorite_users_id = np.argsort(users_inference.eval())[0][-top_k:]\n\t\tprint('喜欢看这个电影的人是：{}'.format(users_orig[favorite_users_id-1])) #user_id 处理时是否需要减一\n\n\t\tresults = []\n\t\tfor user in favorite_users_id:\n\t\t\tmovies = recommend_your_favorite_movie(user, top_k=2)\n\t\t\tresults.extend(movies)\n\t\t# print('喜欢这个电影的人还喜欢：', results)\n\t\treturn results\n\n\n\n\n\n\n\n\n\n#test every recommendation functions here\n\n#预测给定user对给定movie的评分\n#prediction_rating = rating_movie(user_id=123, movie_id=1234)\n#print('for user:123, predicting the rating for movie:1234', prediction_rating)\n\n#生成user和movie的特征矩阵，并存储到本地\n# save_movie_feature_matrix()\n#save_user_feature_matrix()\n\n#对给定的电影，推荐相同类型的其他top k 个电影\n#results = recommend_same_type_movie(movie_id=666, top_k=5)\n\n#对给定用户，推荐其可能喜欢的top k个电影\n#results = recommend_your_favorite_movie(user_id=222, top_k=5)\n\n#看过这个电影的人还可能喜欢看那些电影\nrecommend_other_favorite_movie(movie_id=666, top_k=5)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n# 加载数据并保存到本地\n# title_length：Title字段的长度（16）\n# title_set：Title文本的集合\n# genres2int：电影类型转数字的字典\n# features：是输入X\n# targets_values：是学习目标y\n# ratings：评分数据集的Pandas对象\n# users：用户数据集的Pandas对象\n# movies：电影数据的Pandas对象\n# data：三个数据集组合在一起的Pandas对象\n# movies_orig：没有做数据处理的原始电影数据\n# users_orig：没有做数据处理的原始用户数据\n"
  },
  {
    "path": "基于CNN的电影推荐系统/model_code/training.py",
    "content": "import numpy as np\nimport tensorflow as tf\nimport os\nfrom sklearn.model_selection import train_test_split\nimport pickle\n\nimport matplotlib.pyplot as plt\nimport time\nimport datetime\n\nimport model.movie_nn as movie_nn\nimport model.user_nn as user_nn\n\n\n\ntf.reset_default_graph()\ntrain_graph = tf.Graph()\n\nfeatures = pickle.load(open('features.p', 'rb'))\ntarget_values = pickle.load(open('target.p', 'rb'))\n# title_length, title_set, genres2int, features, target_values,ratings, users,\\\n#  movies, data, movies_orig, users_orig = pickle.load(open('params.p', 'rb'))\n\n\n#超参\nnum_epochs = 1 #  = 5\nbatch_size = 256\ndropout_keep = 0.5\nlearning_rate = 0.0001\nshow_every_n_batches = 40#show stats for every n number of batches\nsave_dir = './save_model/'\n\n\n#电影名单词长度\ntitle_length = 16\n\n\n\ndef get_targets():\n\ttargets = tf.placeholder(tf.int32, [None, 1], name=\"targets\")\n\treturn targets\n\n\ndef get_batches(Xs, ys, batch_size):\n\tfor start in range(0, len(Xs), batch_size):\n\t\tend = min(start + batch_size, len(Xs))\n\t\tyield Xs[start:end], ys[start:end]\n\n\n\nwith train_graph.as_default():\n\tglobal_step = tf.Variable(0, name='global_step', trainable=True)\n\ttargets = get_targets()\n\n\t#获取user和movie的input placeholders\n\tuid, user_gender, user_age, user_job = user_nn.get_inputs()\n\tmovie_id, movie_categories, movie_titles,dropout_keep_prob = movie_nn.get_inputs()\n\n\t# 获取User的4个嵌入向量和user feature representation\n\tuid_embed_layer, gender_embed_layer, age_embed_layer, job_embed_layer = \\\n\t\tuser_nn.get_user_embedding(uid, user_gender, user_age, user_job)\n\t_, user_combine_layer_flat = \\\n\t\tuser_nn.get_user_feature_layer(uid_embed_layer, gender_embed_layer, age_embed_layer, job_embed_layer)\n\n\t#获取movie id embedding, genres embedding, title representation，然后得到整个movie的representation\n\tmovie_id_embed_layer = movie_nn.get_movie_id_embed_layer(movie_id)\n\tmovie_categories_embed_layer = movie_nn.get_movie_categories_embed_layer(movie_categories)\n\t_, dropout_layer = movie_nn.get_movie_cnn_layer(movie_titles,dropout_keep_prob)\n\t_, movie_combine_layer_flat = movie_nn.get_movie_feature_layer(movie_id_embed_layer,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tmovie_categories_embed_layer, dropout_layer)\n\n\twith tf.name_scope('inference'):\n\t\t# 将用户特征和电影特征作为输入，进行矩阵乘法，得到一个值,即为预测的ranking。（考虑继续使用一个神经网络？）\n\t\tinference = tf.matmul(user_combine_layer_flat,\n\t\t\ttf.transpose(movie_combine_layer_flat))\n\n\twith tf.name_scope('loss'):\n\t\t# 使用平方损失函数定义整个模型的损失值\n\t\tcost = tf.losses.mean_squared_error(targets, inference)\n\t\tloss = tf.reduce_mean(cost)\n\n\t# optimizer = tf.train.AdamOptimizer(learning_rate)\n\t# gradients = optimizer.compute_gradients(loss)#return a list of (gradients, variable) pairs\n\t# train_op = optimizer.apply_gradients(gradients, global_step=global_step)\n\n\ttrain_op = tf.train.AdagradOptimizer(learning_rate).minimize(loss)\n\n\n\n#训练网络\nlosses = {'train':[],'test':[]}\nwith tf.Session(graph=train_graph) as sess:\n\n\t#tensorboard记录数据\n\t#output directory for models and summaries\n\ttimestamp = str(int(time.time()))\n\tout_dir = os.path.abspath(os.path.join(os.path.curdir, 'runs', timestamp))\n\tprint('writing to {}\\n'.format(out_dir))\n\n\t#summaries for loss\n\tloss_summary = tf.summary.scalar('loss',loss)\n\n\t#train summaries\n\ttrain_summary_op = tf.summary.merge([loss_summary])\n\ttrain_summary_dir = os.path.join(out_dir, 'summaries', 'train')\n\ttrain_summary_writer = tf.summary.FileWriter(train_summary_dir, sess.graph)\n\n\t#test inference summaries\n\tinference_summary_op = tf.summary.merge([loss_summary])\n\tinference_summary_dir = os.path.join(out_dir, 'summaries', 'inference')\n\tinference_summary_writer = tf.summary.FileWriter(inference_summary_dir, sess.graph)\n\n\n\t#开始training\n\tsess.run(tf.global_variables_initializer())\n\tsaver = tf.train.Saver()\n\n\tfor epoch_i in range(num_epochs):#5\n\t\t#将数据集分为训练集和测试集，随机种子不固定\n\t\ttrain_X, test_X, train_y, test_y = train_test_split(\\\n\t\t\tfeatures, target_values, test_size=0.2, random_state=0)\n\t\ttrain_batches = get_batches(train_X, train_y, batch_size)\n\t\ttest_batches = get_batches(test_X, test_y, batch_size)\n\n\t\t#训练的迭代， 保存训练损失for tensorboard\n\t\tfor batch_i in range(len(train_X) // batch_size):\n\t\t\tx,y = next(train_batches)#返回迭代器的下一个batch。\n\t\t\tcategories = np.zeros([batch_size, 19])\n\t\t\tfor i in range(batch_size):\n\t\t\t\tcategories[i] = x.take(6,1)[i]#取得batch中每个电影的分类 for feed\n\t\t\ttitles = np.zeros([batch_size, title_length])\n\t\t\tfor i in range(batch_size):\n\t\t\t\ttitles[i] = x.take(5,1)[i]#取得batch中每个电影的title for feed\n\t\t\tfeed = {\n\t\t\t\tuid: np.reshape(x.take(0,1), [batch_size, 1]),\n\t\t\t\tuser_gender: np.reshape(x.take(2,1), [batch_size, 1]),\n\t\t\t\tuser_age: np.reshape(x.take(3,1), [batch_size, 1]),\n\t\t\t\tuser_job: np.reshape(x.take(4,1), [batch_size, 1]),\n\t\t\t#\tuser_job: np.zeros([batch_size, 1]),\n\t\t\t\tmovie_id: np.reshape(x.take(1,1), [batch_size, 1]),\n\t\t\t\tmovie_categories: categories,  #x.take(6,1)\n\t\t\t\tmovie_titles: titles,  #x.take(5,1)\n\t\t\t\ttargets: np.reshape(y, [batch_size, 1]),\n\t\t\t\tdropout_keep_prob: dropout_keep, #dropout_keep\n\t\t\t}\n\n\t\t\tstep, train_loss, summaries, _ = sess.run([\n\t\t\t\tglobal_step, loss, train_summary_op, train_op], feed_dict=feed)\n\t\t\tlosses['train'].append(train_loss)\n\t\t\ttrain_summary_writer.add_summary(summaries, step)\n\n\t\t\t#show loss every n batches\n\t\t\tif batch_i % show_every_n_batches == 0:\n\n\t\t\t\tprediction = inference.eval(feed)\n\t\t\t\tprint('training prediction: %.2f,  expection: %d'%(prediction[0][0], y[0][0]))\n\n\t\t\t\ttime_str = datetime.datetime.now().isoformat()\n\t\t\t\tprint('{}: Epoch {:>3} Batch {:>4}/{}   train_loss = {:.3f}'.format(time_str,\n\t\t\t\tepoch_i+1, batch_i, (len(train_X) // batch_size), train_loss))\n\n\t\t#使用测试数据集对本次的epoch训练的模型进行测试\n\t\tfor batch_i in range(len(test_X) // batch_size):\n\t\t\tx, y = next(test_batches)\n\t\t\tcategories = np.zeros([batch_size, 19])\n\t\t\tfor i in range(batch_size):\n\t\t\t\tcategories[i] = x.take(6,1)[i]\n\t\t\ttitles = np.zeros([batch_size, title_length])\n\t\t\tfor i in range(batch_size):\n\t\t\t\ttitles[i] = x.take(5,1)[i]\n\t\t\tfeed = {\n\t\t\t\tuid: np.reshape(x.take(0,1), [batch_size, 1]),\n\t\t\t\tuser_gender: np.reshape(x.take(2,1), [batch_size, 1]),\n\t\t\t\tuser_age: np.reshape(x.take(3,1), [batch_size, 1]),\n\t\t\t\tuser_job: np.reshape(x.take(4,1), [batch_size, 1]),\n\t\t\t\tmovie_id: np.reshape(x.take(1,1), [batch_size, 1]),\n\t\t\t\tmovie_categories: categories,  #x.take(6,1)\n\t\t\t\tmovie_titles: titles,  #x.take(5,1)\n\t\t\t\ttargets: np.reshape(y, [batch_size, 1]),\n\t\t\t\tdropout_keep_prob: 1,\n\t\t\t}\n\t\t\tstep, test_loss, summaries = sess.run([\n\t\t\t\tglobal_step, loss, inference_summary_op],feed)\n\n\t\t\t#保存测试损失\n\t\t\tlosses['test'].append(test_loss)\n\t\t\tinference_summary_writer.add_summary(summaries, step)\n\t\t\ttime_str = datetime.datetime.now().isoformat()\n\t\t\tif batch_i % show_every_n_batches == 0:\n\t\t\t\tprediction = inference.eval(feed)\n\t\t\t\tprint('test prediction: %.2f,  expection: %d' % (prediction[0][0], y[0][0]))\n\t\t\t\tprint('{}: Epoch {:>3} Batch {:>4}/{}   test_loss = {:.3f}'.format(\n\t\t\t\t\ttime_str,epoch_i+1, batch_i, (len(test_X) // batch_size),test_loss))\n\n\n\t#save model\n\tsaver.save(sess, save_dir)\n\tprint('model trained and saved')\n\n\n\n\n# plt.plot(losses['train'], label='training loss')\n# plt.legend()\n# _ = plt.ylim()\n\n\n# plt.plot(losses['test'], label='test loss')\n# plt.legend()\n# _ = plt.ylim()\n"
  },
  {
    "path": "基于CNN的电影推荐系统/model_code/user_nn.py",
    "content": "import tensorflow as tf\nimport pickle\n\n\nfeatures = pickle.load(open('features.p',mode='rb'))\n#features info: ['UserID' 'MovieID' 'Gender' 'Age' 'JobID' 'Title' 'Genres']\n\n# title_count, title_set, genres2int, features, target_values,ratings, users,\\\n#  movies, data, movies_orig, users_orig = pickle.load(open('params.p',mode='rb'))\n\n\n\n# MOVIE_CATEGORAY_LENGTH = 18\n# MOVIE_TITLE_LENGTH = 15\n#嵌入矩阵的维度\nembed_dim = 64\n#用户全部特征representation size\nuser_feature_size = 512\n\n#用户ID个数\nuid_max = max(features.take(0,1)) + 1#6040\n#性别个数\ngender_max = max(features.take(2,1)) + 1 #1+1 = 2\n#年龄类别个数\nage_max = max(features.take(3,1)) + 1 #6+1 = 7\n#职业个数\njob_max = max(features.take(4,1)) + 1 #20 + 1 = 21\n\n\n\n\n\n\ndef get_inputs():\n\t'''\n\t定义user特征的placeholder\n\t'''\n\tuid = tf.placeholder(tf.int32, [None,1], name='uid')\n\tuser_gender = tf.placeholder(tf.int32, [None,1], name='user_gender')\n\tuser_age = tf.placeholder(tf.int32, [None,1], name='user_age')\n\tuser_job = tf.placeholder(tf.int32, [None,1], name='user_job')\n\treturn uid, user_gender, user_age, user_job\n\n\ndef get_user_embedding(uid, user_gender, user_age, user_job):\n\t'''\n\t定义对user特征的embedding\n\t其中，对于gender，age，job等种类较少的feature，不需要很大的embedding dim\n\t所以构建embedding size时使用除法\n\t'''\n\twith tf.name_scope('user_embedding'):\n\t\tuid_embed_metrix = tf.Variable(tf.random_uniform([\n\t\t\tuid_max, embed_dim], -1, 1), name='uid_embed_metrix')\n\t\tuid_embed_layer = tf.nn.embedding_lookup(\n\t\t\tuid_embed_metrix, uid, name='uid_embed_layer')\n\t\tgender_embed_matrix = tf.Variable(tf.random_uniform([\n\t\t\tgender_max, embed_dim // 16], -1, 1), name='gender_embed_matrix')\n\t\tgender_embed_layer = tf.nn.embedding_lookup(\n\t\t\tgender_embed_matrix, user_gender, name='gender_embed_layer')\n\t\tage_embed_matrix = tf.Variable(tf.random_uniform([\n\t\t\tage_max, embed_dim // 16], -1, 1), name='age_embed_matrix')\n\t\tage_embed_layer = tf.nn.embedding_lookup(\n\t\t\tage_embed_matrix, user_age, name='age_embed_layer')\n\t\tjob_embed_matrix = tf.Variable(tf.random_uniform([\n\t\t\tjob_max, embed_dim // 8], -1, 1), name='job_embed_matrix')\n\t\tjob_embed_layer = tf.nn.embedding_lookup(\n\t\t\tjob_embed_matrix, user_job, name='job_embed_layer')\n\treturn uid_embed_layer, gender_embed_layer, age_embed_layer, job_embed_layer\n\n\ndef get_user_feature_layer(\n\tuid_embed_layer, gender_embed_layer, age_embed_layer, job_embed_layer):\n\t'''\n\t对与输入的用户特征的embedding vector，首先分别对每个feature embedding构建一个小型神经网络\n\t进行对每个小型神经网络的输出进行顺序连接，\n\t然后用一个全连接神经网络对连接过后的user feature representation进行训练\n\t'''\n\twith tf.name_scope('user_fc'):\n\t\t#对每个输入的feature embedding vector连入一个小型的NN，用以更新embedding\n\t\tuid_fc_layer = tf.layers.dense(\n\t\t\tuid_embed_layer, embed_dim, name='uid_fc_layer', activation=tf.nn.relu)\n\t\tgender_fc_layer = tf.layers.dense(\n\t\t\tgender_embed_layer, embed_dim, name='gender_fc_layer', activation=tf.nn.relu)\n\t\tage_fc_layer = tf.layers.dense(\n\t\t\tage_embed_layer, embed_dim, name='age_fc_layer', activation=tf.nn.relu)\n\t\tjob_fc_layer = tf.layers.dense(\n\t\t\tjob_embed_layer, embed_dim, name='job_fc_layer', activation=tf.nn.relu)\n\n\t\t#将每个小型神经网络的输出进行全连接，然后对拼接后的vector再进行一次全连接\n\t\tuser_combine_layer = tf.concat([\n\t\t\tuid_fc_layer, gender_fc_layer,age_fc_layer, job_fc_layer], 2)#(?, 1, 4*embed_dim)\n\t\tuser_combine_layer = tf.contrib.layers.fully_connected(\n\t\t\tuser_combine_layer, user_feature_size, tf.nn.relu) #(?, 1, 4*embed_dim) -->(?,1 , 512)\n\t\tuser_combine_layer_flat = tf.reshape(user_combine_layer, [-1, user_feature_size])\n\t\tprint(user_combine_layer_flat.get_shape()) #(?, 512)\n\treturn user_combine_layer, user_combine_layer_flat\n\n\ndef user_feature():\n\t'''\n\t对整个user feature的构建整合\n\t:return:\n\t'''\n\tuid, user_gender, user_age, user_job = get_inputs()\n\tuid_embed_layer, gender_embed_layer, age_embed_layer, job_embed_layer = get_user_embedding(\n\t\tuid, user_gender, user_age, user_job)\n\tuser_combine_layer, user_combine_layer_flat = get_user_feature_layer(\n\t\tuid_embed_layer, gender_embed_layer, age_embed_layer, job_embed_layer)\n\t# print(user_combine_layer_flat.get_shape())   512\n\treturn user_combine_layer, user_combine_layer_flat\n\n\n\n\nif __name__ == '__main__':\n\t# uid, user_gender, user_age, user_job = get_inputs()\n\t# uid_embed_layer, gender_embed_layer, age_embed_layer, job_embed_layer = get_user_embedding(\n\t# \tuid, user_gender, user_age, user_job)\n\t# user_combine_layer, user_combine_layer_flat = get_user_feature_layer(\n\t# \tuid_embed_layer, gender_embed_layer, age_embed_layer, job_embed_layer)\n\tuser_combine_layer, user_conbine_layer_flat = user_feature()\n"
  },
  {
    "path": "基于CNN的电影推荐系统/优化和修改.txt",
    "content": "1. ûԶΪ 32 е 32 е 16\n\n2. ӰdropoutӵƴӺõĵӰϣǼӵ title ϡ\n\n3. ƴӵûûʹ dropoutŽû͵Ӱ dropout յǷ\n\n4. ʹ tensorflow Լ batch \n\n5. ߵѵʽе⣬ȡ batch ʱǰ˳ȡģȡյܱ仯"
  },
  {
    "path": "基于CNN的电影推荐系统/基于CNN的电影推荐系统.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# 个性化推荐\\n\",\n    \"本项目使用卷积神经网络，并使用[`MovieLens`](https://grouplens.org/datasets/movielens/)数据集完成电影推荐的任务。\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"推荐系统在日常的网络应用中无处不在，比如网上购物、网上买书、新闻app、社交网络、音乐网站、电影网站等等等等，有人的地方就有推荐。根据个人的喜好，相同喜好人群的习惯等信息进行个性化的内容推荐。比如打开新闻类的app，因为有了个性化的内容，每个人看到的新闻首页都是不一样的。\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"这当然是很有用的，在信息爆炸的今天，获取信息的途径和方式多种多样，人们花费时间最多的不再是去哪获取信息，而是要在众多的信息中寻找自己感兴趣的，这就是信息超载问题。为了解决这个问题，推荐系统应运而生。\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"协同过滤是推荐系统应用较广泛的技术，该方法搜集用户的历史记录、个人喜好等信息，计算与其他用户的相似度，利用相似用户的评价来预测目标用户对特定项目的喜好程度。优点是会给用户推荐未浏览过的项目，缺点呢，对于新用户来说，没有任何与商品的交互记录和个人喜好等信息，存在冷启动问题，导致模型无法找到相似的用户或商品。\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"为了解决冷启动的问题，通常的做法是对于刚注册的用户，要求用户先选择自己感兴趣的话题、群组、商品、性格、喜欢的音乐类型等信息，比如豆瓣FM：\\n\",\n    \"<img src=\\\"assets/IMG_6242_300.PNG\\\"/>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 下载数据集\\n\",\n    \"运行下面代码把[`数据集`](http://files.grouplens.org/datasets/movielens/ml-1m.zip)下载下来\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"f:\\\\Anaconda3\\\\lib\\\\site-packages\\\\h5py\\\\__init__.py:36: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. In future, it will be treated as `np.float64 == np.dtype(float).type`.\\n\",\n      \"  from ._conv import register_converters as _register_converters\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"from sklearn.model_selection import train_test_split\\n\",\n    \"import numpy as np\\n\",\n    \"from collections import Counter\\n\",\n    \"import tensorflow as tf\\n\",\n    \"\\n\",\n    \"import os\\n\",\n    \"import pickle\\n\",\n    \"import re\\n\",\n    \"from tensorflow.python.ops import math_ops\\n\",\n    \"\\n\",\n    \"from urllib.request import urlretrieve\\n\",\n    \"from os.path import isfile, isdir\\n\",\n    \"from tqdm import tqdm\\n\",\n    \"import zipfile\\n\",\n    \"import hashlib\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def _unzip(save_path, _, database_name, data_path):\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    Unzip wrapper with the same interface as _ungzip\\n\",\n    \"    :param save_path: The path of the gzip files\\n\",\n    \"    :param database_name: Name of database\\n\",\n    \"    :param data_path: Path to extract to\\n\",\n    \"    :param _: HACK - Used to have to same interface as _ungzip\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    print('Extracting {}...'.format(database_name))\\n\",\n    \"    with zipfile.ZipFile(save_path) as zf:\\n\",\n    \"        zf.extractall(data_path)\\n\",\n    \"\\n\",\n    \"def download_extract(database_name, data_path):\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    Download and extract database\\n\",\n    \"    :param database_name: Database name\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    DATASET_ML1M = 'ml-1m'\\n\",\n    \"\\n\",\n    \"    if database_name == DATASET_ML1M:\\n\",\n    \"        url = 'http://files.grouplens.org/datasets/movielens/ml-1m.zip'\\n\",\n    \"        hash_code = 'c4d9eecfca2ab87c1945afe126590906'\\n\",\n    \"        extract_path = os.path.join(data_path, 'ml-1m')\\n\",\n    \"        save_path = os.path.join(data_path, 'ml-1m.zip')\\n\",\n    \"        extract_fn = _unzip\\n\",\n    \"\\n\",\n    \"    if os.path.exists(extract_path):\\n\",\n    \"        print('Found {} Data'.format(database_name))\\n\",\n    \"        return\\n\",\n    \"\\n\",\n    \"    if not os.path.exists(data_path):\\n\",\n    \"        os.makedirs(data_path)\\n\",\n    \"\\n\",\n    \"    if not os.path.exists(save_path):\\n\",\n    \"        with DLProgress(unit='B', unit_scale=True, miniters=1, desc='Downloading {}'.format(database_name)) as pbar:\\n\",\n    \"            urlretrieve(\\n\",\n    \"                url,\\n\",\n    \"                save_path,\\n\",\n    \"                pbar.hook)\\n\",\n    \"\\n\",\n    \"    assert hashlib.md5(open(save_path, 'rb').read()).hexdigest() == hash_code, \\\\\\n\",\n    \"        '{} file is corrupted.  Remove the file and try again.'.format(save_path)\\n\",\n    \"\\n\",\n    \"    os.makedirs(extract_path)\\n\",\n    \"    try:\\n\",\n    \"        extract_fn(save_path, extract_path, database_name, data_path)\\n\",\n    \"    except Exception as err:\\n\",\n    \"        shutil.rmtree(extract_path)  # Remove extraction folder if there is an error\\n\",\n    \"        raise err\\n\",\n    \"\\n\",\n    \"    print('Done.')\\n\",\n    \"    # Remove compressed data\\n\",\n    \"#     os.remove(save_path)\\n\",\n    \"\\n\",\n    \"class DLProgress(tqdm):\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    Handle Progress Bar while Downloading\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    last_block = 0\\n\",\n    \"\\n\",\n    \"    def hook(self, block_num=1, block_size=1, total_size=None):\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        A hook function that will be called once on establishment of the network connection and\\n\",\n    \"        once after each block read thereafter.\\n\",\n    \"        :param block_num: A count of blocks transferred so far\\n\",\n    \"        :param block_size: Block size in bytes\\n\",\n    \"        :param total_size: The total size of the file. This may be -1 on older FTP servers which do not return\\n\",\n    \"                            a file size in response to a retrieval request.\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        self.total = total_size\\n\",\n    \"        self.update((block_num - self.last_block) * block_size)\\n\",\n    \"        self.last_block = block_num\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Found ml-1m Data\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"data_dir = './'\\n\",\n    \"download_extract('ml-1m', data_dir)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 先来看看数据\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"本项目使用的是MovieLens 1M 数据集，包含6000个用户在近4000部电影上的1亿条评论。\\n\",\n    \"\\n\",\n    \"数据集分为三个文件：用户数据users.dat，电影数据movies.dat和评分数据ratings.dat。\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 用户数据\\n\",\n    \"分别有用户ID、性别、年龄、职业ID和邮编等字段。\\n\",\n    \"\\n\",\n    \"数据中的格式：UserID::Gender::Age::Occupation::Zip-code\\n\",\n    \"\\n\",\n    \"- Gender is denoted by a \\\"M\\\" for male and \\\"F\\\" for female\\n\",\n    \"- Age is chosen from the following ranges:\\n\",\n    \"\\n\",\n    \"\\t*  1:  \\\"Under 18\\\"\\n\",\n    \"\\t* 18:  \\\"18-24\\\"\\n\",\n    \"\\t* 25:  \\\"25-34\\\"\\n\",\n    \"\\t* 35:  \\\"35-44\\\"\\n\",\n    \"\\t* 45:  \\\"45-49\\\"\\n\",\n    \"\\t* 50:  \\\"50-55\\\"\\n\",\n    \"\\t* 56:  \\\"56+\\\"\\n\",\n    \"\\n\",\n    \"- Occupation is chosen from the following choices:\\n\",\n    \"\\n\",\n    \"\\t*  0:  \\\"other\\\" or not specified\\n\",\n    \"\\t*  1:  \\\"academic/educator\\\"\\n\",\n    \"\\t*  2:  \\\"artist\\\"\\n\",\n    \"\\t*  3:  \\\"clerical/admin\\\"\\n\",\n    \"\\t*  4:  \\\"college/grad student\\\"\\n\",\n    \"\\t*  5:  \\\"customer service\\\"\\n\",\n    \"\\t*  6:  \\\"doctor/health care\\\"\\n\",\n    \"\\t*  7:  \\\"executive/managerial\\\"\\n\",\n    \"\\t*  8:  \\\"farmer\\\"\\n\",\n    \"\\t*  9:  \\\"homemaker\\\"\\n\",\n    \"\\t* 10:  \\\"K-12 student\\\"\\n\",\n    \"\\t* 11:  \\\"lawyer\\\"\\n\",\n    \"\\t* 12:  \\\"programmer\\\"\\n\",\n    \"\\t* 13:  \\\"retired\\\"\\n\",\n    \"\\t* 14:  \\\"sales/marketing\\\"\\n\",\n    \"\\t* 15:  \\\"scientist\\\"\\n\",\n    \"\\t* 16:  \\\"self-employed\\\"\\n\",\n    \"\\t* 17:  \\\"technician/engineer\\\"\\n\",\n    \"\\t* 18:  \\\"tradesman/craftsman\\\"\\n\",\n    \"\\t* 19:  \\\"unemployed\\\"\\n\",\n    \"\\t* 20:  \\\"writer\\\"\\n\",\n    \"\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>UserID</th>\\n\",\n       \"      <th>Gender</th>\\n\",\n       \"      <th>Age</th>\\n\",\n       \"      <th>OccupationID</th>\\n\",\n       \"      <th>Zip-code</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>F</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>10</td>\\n\",\n       \"      <td>48067</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>M</td>\\n\",\n       \"      <td>56</td>\\n\",\n       \"      <td>16</td>\\n\",\n       \"      <td>70072</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>M</td>\\n\",\n       \"      <td>25</td>\\n\",\n       \"      <td>15</td>\\n\",\n       \"      <td>55117</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>M</td>\\n\",\n       \"      <td>45</td>\\n\",\n       \"      <td>7</td>\\n\",\n       \"      <td>02460</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>M</td>\\n\",\n       \"      <td>25</td>\\n\",\n       \"      <td>20</td>\\n\",\n       \"      <td>55455</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   UserID Gender  Age  OccupationID Zip-code\\n\",\n       \"0       1      F    1            10    48067\\n\",\n       \"1       2      M   56            16    70072\\n\",\n       \"2       3      M   25            15    55117\\n\",\n       \"3       4      M   45             7    02460\\n\",\n       \"4       5      M   25            20    55455\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"users_title = ['UserID', 'Gender', 'Age', 'OccupationID', 'Zip-code']\\n\",\n    \"users = pd.read_table('./ml-1m/users.dat', sep='::', header=None, names=users_title, engine = 'python')\\n\",\n    \"users.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"可以看出UserID、Gender、Age和Occupation都是类别字段，其中邮编字段是我们不使用的。\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 电影数据\\n\",\n    \"分别有电影ID、电影名和电影风格等字段。\\n\",\n    \"\\n\",\n    \"数据中的格式：MovieID::Title::Genres\\n\",\n    \"\\n\",\n    \"- Titles are identical to titles provided by the IMDB (including\\n\",\n    \"year of release)\\n\",\n    \"- Genres are pipe-separated and are selected from the following genres:\\n\",\n    \"\\n\",\n    \"\\t* Action\\n\",\n    \"\\t* Adventure\\n\",\n    \"\\t* Animation\\n\",\n    \"\\t* Children's\\n\",\n    \"\\t* Comedy\\n\",\n    \"\\t* Crime\\n\",\n    \"\\t* Documentary\\n\",\n    \"\\t* Drama\\n\",\n    \"\\t* Fantasy\\n\",\n    \"\\t* Film-Noir\\n\",\n    \"\\t* Horror\\n\",\n    \"\\t* Musical\\n\",\n    \"\\t* Mystery\\n\",\n    \"\\t* Romance\\n\",\n    \"\\t* Sci-Fi\\n\",\n    \"\\t* Thriller\\n\",\n    \"\\t* War\\n\",\n    \"\\t* Western\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>MovieID</th>\\n\",\n       \"      <th>Title</th>\\n\",\n       \"      <th>Genres</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>Toy Story (1995)</td>\\n\",\n       \"      <td>Animation|Children's|Comedy</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>Jumanji (1995)</td>\\n\",\n       \"      <td>Adventure|Children's|Fantasy</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>Grumpier Old Men (1995)</td>\\n\",\n       \"      <td>Comedy|Romance</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>Waiting to Exhale (1995)</td>\\n\",\n       \"      <td>Comedy|Drama</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>Father of the Bride Part II (1995)</td>\\n\",\n       \"      <td>Comedy</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   MovieID                               Title                        Genres\\n\",\n       \"0        1                    Toy Story (1995)   Animation|Children's|Comedy\\n\",\n       \"1        2                      Jumanji (1995)  Adventure|Children's|Fantasy\\n\",\n       \"2        3             Grumpier Old Men (1995)                Comedy|Romance\\n\",\n       \"3        4            Waiting to Exhale (1995)                  Comedy|Drama\\n\",\n       \"4        5  Father of the Bride Part II (1995)                        Comedy\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"movies_title = ['MovieID', 'Title', 'Genres']\\n\",\n    \"movies = pd.read_table('./ml-1m/movies.dat', sep='::', header=None, names=movies_title, engine = 'python')\\n\",\n    \"movies.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"MovieID是类别字段，Title是文本，Genres也是类别字段\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 评分数据\\n\",\n    \"分别有用户ID、电影ID、评分和时间戳等字段。\\n\",\n    \"\\n\",\n    \"数据中的格式：UserID::MovieID::Rating::Timestamp\\n\",\n    \"\\n\",\n    \"- UserIDs range between 1 and 6040 \\n\",\n    \"- MovieIDs range between 1 and 3952\\n\",\n    \"- Ratings are made on a 5-star scale (whole-star ratings only)\\n\",\n    \"- Timestamp is represented in seconds since the epoch as returned by time(2)\\n\",\n    \"- Each user has at least 20 ratings\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>UserID</th>\\n\",\n       \"      <th>MovieID</th>\\n\",\n       \"      <th>Rating</th>\\n\",\n       \"      <th>timestamps</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1193</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>978300760</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>661</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>978302109</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>914</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>978301968</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>3408</td>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>978300275</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>2355</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>978824291</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   UserID  MovieID  Rating  timestamps\\n\",\n       \"0       1     1193       5   978300760\\n\",\n       \"1       1      661       3   978302109\\n\",\n       \"2       1      914       3   978301968\\n\",\n       \"3       1     3408       4   978300275\\n\",\n       \"4       1     2355       5   978824291\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"ratings_title = ['UserID','MovieID', 'Rating', 'timestamps']\\n\",\n    \"ratings = pd.read_table('./ml-1m/ratings.dat', sep='::', header=None, names=ratings_title, engine = 'python')\\n\",\n    \"ratings.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"评分字段Rating就是我们要学习的targets，时间戳字段我们不使用。\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 来说说数据预处理\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"- UserID、Occupation和MovieID不用变。\\n\",\n    \"- Gender字段：需要将‘F’和‘M’转换成0和1。\\n\",\n    \"- Age字段：要转成7个连续数字0~6。\\n\",\n    \"- Genres字段：是分类字段，要转成数字。首先将Genres中的类别转成字符串到数字的字典，然后再将每个电影的Genres字段转成数字列表，因为有些电影是多个Genres的组合。\\n\",\n    \"- Title字段：处理方式跟Genres字段一样，首先创建文本到数字的字典，然后将Title中的描述转成数字的列表。另外Title中的年份也需要去掉。\\n\",\n    \"- Genres和Title字段需要将长度统一，这样在神经网络中方便处理。空白部分用‘< PAD >’对应的数字填充。\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 实现数据预处理\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def load_data():\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    Load Dataset from File\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    #读取User数据\\n\",\n    \"    users_title = ['UserID', 'Gender', 'Age', 'JobID', 'Zip-code']\\n\",\n    \"    users = pd.read_table('./ml-1m/users.dat', sep='::', header=None, names=users_title, engine = 'python')\\n\",\n    \"    # 保留以下特征\\n\",\n    \"    users = users.filter(regex='UserID|Gender|Age|JobID')\\n\",\n    \"    users_orig = users.values\\n\",\n    \"    #改变User数据中性别和年龄\\n\",\n    \"    gender_map = {'F':0, 'M':1}\\n\",\n    \"    users['Gender'] = users['Gender'].map(gender_map)\\n\",\n    \"\\n\",\n    \"    age_map = {val:ii for ii,val in enumerate(set(users['Age']))}\\n\",\n    \"    users['Age'] = users['Age'].map(age_map)\\n\",\n    \"\\n\",\n    \"    #读取Movie数据集\\n\",\n    \"    movies_title = ['MovieID', 'Title', 'Genres']\\n\",\n    \"    movies = pd.read_table('./ml-1m/movies.dat', sep='::', header=None, names=movies_title, engine = 'python')\\n\",\n    \"    movies_orig = movies.values\\n\",\n    \"    #将Title中的年份去掉\\n\",\n    \"    pattern = re.compile(r'^(.*)\\\\((\\\\d+)\\\\)$')\\n\",\n    \"\\n\",\n    \"    title_map = {val:pattern.match(val).group(1) for ii,val in enumerate(set(movies['Title']))}\\n\",\n    \"    movies['Title'] = movies['Title'].map(title_map)\\n\",\n    \"\\n\",\n    \"    #电影类型转数字字典\\n\",\n    \"    genres_set = set()\\n\",\n    \"    for val in movies['Genres'].str.split('|'):\\n\",\n    \"        genres_set.update(val)\\n\",\n    \"\\n\",\n    \"    genres_set.add('<PAD>')\\n\",\n    \"    # 将类型进行编号\\n\",\n    \"    genres2int = {val:ii for ii, val in enumerate(genres_set)}\\n\",\n    \"\\n\",\n    \"    #将电影类型转成等长数字列表\\n\",\n    \"    genres_map = {val:[genres2int[row] for row in val.split('|')] for ii,val in enumerate(set(movies['Genres']))}\\n\",\n    \"\\n\",\n    \"    # 将每个样本的电影类型数字列表处理成相同长度，长度不够用<PAD>填充\\n\",\n    \"    for key in genres_map:\\n\",\n    \"        for cnt in range(max(genres2int.values()) - len(genres_map[key])):\\n\",\n    \"            genres_map[key].insert(len(genres_map[key]) + cnt,genres2int['<PAD>'])\\n\",\n    \"    \\n\",\n    \"    movies['Genres'] = movies['Genres'].map(genres_map)\\n\",\n    \"\\n\",\n    \"    #电影Title转数字字典\\n\",\n    \"    title_set = set()\\n\",\n    \"    for val in movies['Title'].str.split():\\n\",\n    \"        title_set.update(val)\\n\",\n    \"    \\n\",\n    \"    title_set.add('<PAD>')\\n\",\n    \"    title2int = {val:ii for ii, val in enumerate(title_set)}\\n\",\n    \"\\n\",\n    \"    #将电影Title转成等长数字列表，长度是15\\n\",\n    \"    title_count = 15\\n\",\n    \"    title_map = {val:[title2int[row] for row in val.split()] for ii,val in enumerate(set(movies['Title']))}\\n\",\n    \"    \\n\",\n    \"    for key in title_map:\\n\",\n    \"        for cnt in range(title_count - len(title_map[key])):\\n\",\n    \"            title_map[key].insert(len(title_map[key]) + cnt,title2int['<PAD>'])\\n\",\n    \"    \\n\",\n    \"    movies['Title'] = movies['Title'].map(title_map)\\n\",\n    \"\\n\",\n    \"    #读取评分数据集\\n\",\n    \"    ratings_title = ['UserID','MovieID', 'ratings', 'timestamps']\\n\",\n    \"    ratings = pd.read_table('./ml-1m/ratings.dat', sep='::', header=None, names=ratings_title, engine = 'python')\\n\",\n    \"    ratings = ratings.filter(regex='UserID|MovieID|ratings')\\n\",\n    \"\\n\",\n    \"    #合并三个表\\n\",\n    \"    data = pd.merge(pd.merge(ratings, users), movies)\\n\",\n    \"    \\n\",\n    \"    #将数据分成X和y两张表\\n\",\n    \"    target_fields = ['ratings']\\n\",\n    \"    features_pd, targets_pd = data.drop(target_fields, axis=1), data[target_fields]\\n\",\n    \"    \\n\",\n    \"    features = features_pd.values\\n\",\n    \"    targets_values = targets_pd.values\\n\",\n    \"    \\n\",\n    \"    return title_count, title_set, genres2int, features, targets_values, ratings, users, movies, data, movies_orig, users_orig\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 加载数据并保存到本地\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"- title_count：Title字段的长度（15）\\n\",\n    \"- title_set：Title文本的集合\\n\",\n    \"- genres2int：电影类型转数字的字典\\n\",\n    \"- features：是输入X\\n\",\n    \"- targets_values：是学习目标y\\n\",\n    \"- ratings：评分数据集的Pandas对象\\n\",\n    \"- users：用户数据集的Pandas对象\\n\",\n    \"- movies：电影数据的Pandas对象\\n\",\n    \"- data：三个数据集组合在一起的Pandas对象\\n\",\n    \"- movies_orig：没有做数据处理的原始电影数据\\n\",\n    \"- users_orig：没有做数据处理的原始用户数据\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"title_count, title_set, genres2int, features, targets_values, \\\\\\n\",\n    \"        ratings, users, movies, data, movies_orig, users_orig = load_data()\\n\",\n    \"\\n\",\n    \"with open('./processed_data/preprocess.pkl', 'wb') as f:\\n\",\n    \"    pickle.dump((title_count, \\n\",\n    \"                 title_set, \\n\",\n    \"                 genres2int, \\n\",\n    \"                 features, \\n\",\n    \"                 targets_values, \\n\",\n    \"                 ratings, \\n\",\n    \"                 users, \\n\",\n    \"                 movies, \\n\",\n    \"                 data, \\n\",\n    \"                 movies_orig, \\n\",\n    \"                 users_orig), \\n\",\n    \"                f)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 预处理后的数据\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>UserID</th>\\n\",\n       \"      <th>Gender</th>\\n\",\n       \"      <th>Age</th>\\n\",\n       \"      <th>JobID</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>10</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>16</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"      <td>15</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>7</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>6</td>\\n\",\n       \"      <td>20</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   UserID  Gender  Age  JobID\\n\",\n       \"0       1       0    0     10\\n\",\n       \"1       2       1    5     16\\n\",\n       \"2       3       1    6     15\\n\",\n       \"3       4       1    2      7\\n\",\n       \"4       5       1    6     20\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"users.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>MovieID</th>\\n\",\n       \"      <th>Title</th>\\n\",\n       \"      <th>Genres</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>[2770, 1146, 4239, 4239, 4239, 4239, 4239, 423...</td>\\n\",\n       \"      <td>[13, 10, 15, 18, 18, 18, 18, 18, 18, 18, 18, 1...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>2</td>\\n\",\n       \"      <td>[4608, 4239, 4239, 4239, 4239, 4239, 4239, 423...</td>\\n\",\n       \"      <td>[5, 10, 2, 18, 18, 18, 18, 18, 18, 18, 18, 18,...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>[1812, 3287, 3404, 4239, 4239, 4239, 4239, 423...</td>\\n\",\n       \"      <td>[15, 11, 18, 18, 18, 18, 18, 18, 18, 18, 18, 1...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>4</td>\\n\",\n       \"      <td>[1702, 359, 4435, 4239, 4239, 4239, 4239, 4239...</td>\\n\",\n       \"      <td>[15, 7, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>5</td>\\n\",\n       \"      <td>[4146, 3163, 2691, 4448, 2800, 677, 4239, 4239...</td>\\n\",\n       \"      <td>[15, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 1...</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   MovieID                                              Title  \\\\\\n\",\n       \"0        1  [2770, 1146, 4239, 4239, 4239, 4239, 4239, 423...   \\n\",\n       \"1        2  [4608, 4239, 4239, 4239, 4239, 4239, 4239, 423...   \\n\",\n       \"2        3  [1812, 3287, 3404, 4239, 4239, 4239, 4239, 423...   \\n\",\n       \"3        4  [1702, 359, 4435, 4239, 4239, 4239, 4239, 4239...   \\n\",\n       \"4        5  [4146, 3163, 2691, 4448, 2800, 677, 4239, 4239...   \\n\",\n       \"\\n\",\n       \"                                              Genres  \\n\",\n       \"0  [13, 10, 15, 18, 18, 18, 18, 18, 18, 18, 18, 1...  \\n\",\n       \"1  [5, 10, 2, 18, 18, 18, 18, 18, 18, 18, 18, 18,...  \\n\",\n       \"2  [15, 11, 18, 18, 18, 18, 18, 18, 18, 18, 18, 1...  \\n\",\n       \"3  [15, 7, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18...  \\n\",\n       \"4  [15, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 1...  \"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"movies.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(1000209, 7)\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"features.shape\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 从本地读取数据\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"with open('./processed_data/preprocess.pkl', mode='rb') as f:\\n\",\n    \"    title_count, title_set, genres2int, features, \\\\\\n\",\n    \"        targets_values, ratings, users, movies, data, movies_orig, users_orig = pickle.load(f)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 模型设计\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<img src=\\\"assets/model.001.jpeg\\\"/>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"通过研究数据集中的字段类型，我们发现有一些是类别字段，通常的处理是将这些字段转成one hot编码，但是像UserID、MovieID这样的字段就会变成非常的稀疏，输入的维度急剧膨胀，这是我们不愿意见到的，毕竟我这小笔记本不像大厂动辄能处理数以亿计维度的输入：）\\n\",\n    \"\\n\",\n    \"所以在预处理数据时将这些字段转成了数字，我们用这个数字当做嵌入矩阵的索引，在网络的第一层使用了嵌入层，维度是（N，32）和（N，16）。\\n\",\n    \"这里的思想其实和 word2vec 比较类似。我们会对用户或者电影的每个属性都指定一个特征维度空间，这就好比我们在自然语言处理中对每个单词指定特征维度空间。从下面的代码中可以看到，我们将用到的属性的特征维度设置为了 32 或者 16.\\n\",\n    \"\\n\",\n    \"电影类型的处理要多一步，有时一个电影有多个电影类型，这样从嵌入矩阵索引出来是一个（n，32）的矩阵，因为有多个类型嘛，我们要将这个矩阵求和，变成（1，32）的向量。\\n\",\n    \"\\n\",\n    \"电影名的处理比较特殊，没有使用循环神经网络，而是用了文本卷积网络，下文会进行说明。\\n\",\n    \"\\n\",\n    \"从嵌入层索引出特征以后，将各特征传入全连接层，将输出再次传入全连接层，最终分别得到（1，200）的用户特征和电影特征两个特征向量。\\n\",\n    \"\\n\",\n    \"我们的目的就是要训练出用户特征和电影特征，在实现推荐功能时使用。得到这两个特征以后，就可以选择任意的方式来拟合评分了。我使用了两种方式，一个是上图中画出的将两个特征做向量乘法，将结果与真实评分做回归，采用MSE优化损失。因为本质上这是一个回归问题，另一种方式是，将两个特征作为输入，再次传入全连接层，输出一个值，将输出值回归到真实评分，采用MSE优化损失。\\n\",\n    \"\\n\",\n    \"实际上第二个方式的MSE loss在0.8附近，第一个方式在1附近，5次迭代的结果。\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 文本卷积网络\\n\",\n    \"网络看起来像下面这样\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"<img src=\\\"assets/text_cnn.png\\\"/>\\n\",\n    \"图片来自Kim Yoon的论文：[`Convolutional Neural Networks for Sentence Classification`](https://arxiv.org/abs/1408.5882)\\n\",\n    \"\\n\",\n    \"将卷积神经网络用于文本的文章建议你阅读[`Understanding Convolutional Neural Networks for NLP`](http://www.wildml.com/2015/11/understanding-convolutional-neural-networks-for-nlp/)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"网络的第一层是词嵌入层，由每一个单词的嵌入向量组成的嵌入矩阵。下一层使用多个不同尺寸（窗口大小）的卷积核在嵌入矩阵上做卷积，<b>窗口大小指的是每次卷积覆盖几个单词</b>。这里跟对图像做卷积不太一样，图像的卷积通常用2x2、3x3、5x5之类的尺寸，而文本卷积要覆盖整个单词的嵌入向量，所以尺寸是（单词数，向量维度），比如每次滑动3个，4个或者5个单词。第三层网络是max pooling得到一个长向量，最后使用dropout做正则化，最终得到了电影Title的特征。\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 辅助函数\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import tensorflow as tf\\n\",\n    \"import os\\n\",\n    \"import pickle\\n\",\n    \"\\n\",\n    \"def save_params(params):\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    Save parameters to file\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    with open('params.p', 'wb') as f:\\n\",\n    \"        pickle.dump(params, f)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def load_params():\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    Load parameters from file\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    with open('params.p', mode='rb') as f:\\n\",\n    \"        return pickle.load(f)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 编码实现\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"#嵌入矩阵的维度\\n\",\n    \"embed_dim = 32\\n\",\n    \"# 下面之所以要 +1 是因为编号和实际数量之间是差 1 的\\n\",\n    \"#用户ID个数\\n\",\n    \"uid_max = max(features.take(0,1)) + 1 # 6040\\n\",\n    \"#性别个数\\n\",\n    \"gender_max = max(features.take(2,1)) + 1 # 1 + 1 = 2\\n\",\n    \"#年龄类别个数\\n\",\n    \"age_max = max(features.take(3,1)) + 1 # 6 + 1 = 7\\n\",\n    \"#职业个数\\n\",\n    \"job_max = max(features.take(4,1)) + 1# 20 + 1 = 21\\n\",\n    \"\\n\",\n    \"#电影ID个数\\n\",\n    \"movie_id_max = max(features.take(1,1)) + 1 # 3952\\n\",\n    \"#电影类型个数，有个<PAD>\\n\",\n    \"movie_categories_max = max(genres2int.values()) + 1 # 18 + 1 = 19\\n\",\n    \"#电影名单词个数\\n\",\n    \"movie_title_max = len(title_set) # 5216\\n\",\n    \"\\n\",\n    \"#对电影类型嵌入向量做加和操作的标志，考虑过使用mean做平均，但是没实现mean\\n\",\n    \"combiner = \\\"sum\\\"\\n\",\n    \"\\n\",\n    \"#电影名长度，做词嵌入要求输入的维度是固定的，这里设置为 15\\n\",\n    \"# 长度不够用空白符填充，太长则进行截断\\n\",\n    \"sentences_size = title_count # = 15\\n\",\n    \"#文本卷积滑动窗口，分别滑动2, 3, 4, 5个单词\\n\",\n    \"window_sizes = {2, 3, 4, 5}\\n\",\n    \"#文本卷积核数量\\n\",\n    \"filter_num = 8\\n\",\n    \"\\n\",\n    \"#电影ID转下标的字典，数据集中电影ID跟下标不一致，比如第5行的数据电影ID不一定是5\\n\",\n    \"movieid2idx = {val[0]:i for i, val in enumerate(movies.values)}\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 超参\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Number of Epochs\\n\",\n    \"num_epochs = 5\\n\",\n    \"# Batch Size\\n\",\n    \"batch_size = 256\\n\",\n    \"\\n\",\n    \"dropout_keep = 0.5\\n\",\n    \"# Learning Rate\\n\",\n    \"learning_rate = 0.0001\\n\",\n    \"# Show stats for every n number of batches\\n\",\n    \"show_every_n_batches = 50\\n\",\n    \"\\n\",\n    \"save_dir = './save'\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 输入\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"定义输入的占位符\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def get_inputs():\\n\",\n    \"    uid = tf.placeholder(tf.int32, [None, 1], name=\\\"uid\\\")\\n\",\n    \"    user_gender = tf.placeholder(tf.int32, [None, 1], name=\\\"user_gender\\\")\\n\",\n    \"    user_age = tf.placeholder(tf.int32, [None, 1], name=\\\"user_age\\\")\\n\",\n    \"    user_job = tf.placeholder(tf.int32, [None, 1], name=\\\"user_job\\\")\\n\",\n    \"    \\n\",\n    \"    movie_id = tf.placeholder(tf.int32, [None, 1], name=\\\"movie_id\\\")\\n\",\n    \"    # 电影种类中要去除<PAD>，所以-1\\n\",\n    \"    movie_categories = tf.placeholder(tf.int32, [None, movie_categories_max-1], name=\\\"movie_categories\\\")\\n\",\n    \"    movie_titles = tf.placeholder(tf.int32, [None, 15], name=\\\"movie_titles\\\")\\n\",\n    \"    targets = tf.placeholder(tf.int32, [None, 1], name=\\\"targets\\\")\\n\",\n    \"    LearningRate = tf.placeholder(tf.float32, name = \\\"LearningRate\\\")\\n\",\n    \"    dropout_keep_prob = tf.placeholder(tf.float32, name = \\\"dropout_keep_prob\\\")\\n\",\n    \"    return uid, user_gender, user_age, user_job, \\\\\\n\",\n    \"            movie_id, movie_categories, movie_titles, targets, \\\\\\n\",\n    \"                LearningRate, dropout_keep_prob\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 构建神经网络\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### 定义User的嵌入矩阵\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 从上面的网络架构图中，我们可以看出，其实用户的特征总数量是 128\\n\",\n    \"# 但是作者在下面的代码中并没有这样做，而是由的特征设置为了 16，这样可能是因为作者的电脑性能比较差\\n\",\n    \"# 我们先尝试这样的设置，如果计算资源允许，我们在后面再次测试的时候全部设置为 32\\n\",\n    \"def get_user_embedding(uid, user_gender, user_age, user_job):\\n\",\n    \"    with tf.name_scope(\\\"user_embedding\\\"):\\n\",\n    \"        # 下面的操作和情感分析项目中的单词转换为词向量的操作本质上是一样的\\n\",\n    \"        # 用户的特征维度设置为 32\\n\",\n    \"        # 先初始化一个非常大的用户矩阵\\n\",\n    \"        # tf.random_uniform 的第二个参数是初始化的最小值，这里是-1，第三个参数是初始化的最大值，这里是1\\n\",\n    \"        uid_embed_matrix = tf.Variable(tf.random_uniform([uid_max, embed_dim], -1, 1), \\n\",\n    \"                                       name = \\\"uid_embed_matrix\\\")\\n\",\n    \"        # 根据指定用户ID找到他对应的嵌入层\\n\",\n    \"        uid_embed_layer = tf.nn.embedding_lookup(uid_embed_matrix, uid, \\n\",\n    \"                                                 name = \\\"uid_embed_layer\\\")\\n\",\n    \"    \\n\",\n    \"        # 性别的特征维度设置为 16\\n\",\n    \"#         gender_embed_matrix = tf.Variable(tf.random_uniform([gender_max, embed_dim // 2], -1, 1), \\n\",\n    \"#                                           name= \\\"gender_embed_matrix\\\")\\n\",\n    \"        gender_embed_matrix = tf.Variable(tf.random_uniform([gender_max, embed_dim], -1, 1), \\n\",\n    \"                                          name= \\\"gender_embed_matrix\\\")\\n\",\n    \"        gender_embed_layer = tf.nn.embedding_lookup(gender_embed_matrix, user_gender, \\n\",\n    \"                                                    name = \\\"gender_embed_layer\\\")\\n\",\n    \"        \\n\",\n    \"        # 年龄的特征维度设置为 16\\n\",\n    \"#         age_embed_matrix = tf.Variable(tf.random_uniform([age_max, embed_dim // 2], -1, 1),\\n\",\n    \"#                                        name=\\\"age_embed_matrix\\\")\\n\",\n    \"        age_embed_matrix = tf.Variable(tf.random_uniform([age_max, embed_dim], -1, 1),\\n\",\n    \"                                       name=\\\"age_embed_matrix\\\")\\n\",\n    \"        age_embed_layer = tf.nn.embedding_lookup(age_embed_matrix, user_age, \\n\",\n    \"                                                 name=\\\"age_embed_layer\\\")\\n\",\n    \"        \\n\",\n    \"        # 职业的特征维度设置为 16\\n\",\n    \"#         job_embed_matrix = tf.Variable(tf.random_uniform([job_max, embed_dim // 2], -1, 1), \\n\",\n    \"#                                        name = \\\"job_embed_matrix\\\")\\n\",\n    \"        job_embed_matrix = tf.Variable(tf.random_uniform([job_max, embed_dim], -1, 1), \\n\",\n    \"                                       name = \\\"job_embed_matrix\\\")\\n\",\n    \"        job_embed_layer = tf.nn.embedding_lookup(job_embed_matrix, user_job, \\n\",\n    \"                                                 name = \\\"job_embed_layer\\\")\\n\",\n    \"    # 返回产生的用户数据数据\\n\",\n    \"    return uid_embed_layer, gender_embed_layer, age_embed_layer, job_embed_layer\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### 将User的嵌入矩阵一起全连接生成User的特征\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def get_user_feature_layer(uid_embed_layer, gender_embed_layer, age_embed_layer, job_embed_layer):\\n\",\n    \"    with tf.name_scope(\\\"user_fc\\\"):\\n\",\n    \"        #第一层全连接\\n\",\n    \"        # tf.layers.dense 的第一个参数是输入，第二个参数是层的单元的数量\\n\",\n    \"        uid_fc_layer = tf.layers.dense(uid_embed_layer, embed_dim, name = \\\"uid_fc_layer\\\", activation=tf.nn.relu)\\n\",\n    \"        gender_fc_layer = tf.layers.dense(gender_embed_layer, embed_dim, name = \\\"gender_fc_layer\\\", activation=tf.nn.relu)\\n\",\n    \"        age_fc_layer = tf.layers.dense(age_embed_layer, embed_dim, name =\\\"age_fc_layer\\\", activation=tf.nn.relu)\\n\",\n    \"        job_fc_layer = tf.layers.dense(job_embed_layer, embed_dim, name = \\\"job_fc_layer\\\", activation=tf.nn.relu)\\n\",\n    \"        \\n\",\n    \"        #第二层全连接\\n\",\n    \"        # 将上面的每个分段组成一个完整的全连接层\\n\",\n    \"        user_combine_layer = tf.concat([uid_fc_layer, gender_fc_layer, age_fc_layer, job_fc_layer], 2)  #(?, 1, 128)\\n\",\n    \"        # 验证上面产生的 tensorflow 是否是 128 维度的\\n\",\n    \"        print(user_combine_layer.shape)\\n\",\n    \"        # tf.contrib.layers.fully_connected 的第一个参数是输入，第二个参数是输出\\n\",\n    \"        # 这里的输入是user_combine_layer，输出是200，是指每个用户有200个特征\\n\",\n    \"        # 相当于是一个200个分类的问题，每个分类的可能性都会输出，在这里指的就是每个特征的可能性\\n\",\n    \"        user_combine_layer = tf.contrib.layers.fully_connected(user_combine_layer, 200, tf.tanh)  #(?, 1, 200)\\n\",\n    \"    \\n\",\n    \"        user_combine_layer_flat = tf.reshape(user_combine_layer, [-1, 200])\\n\",\n    \"    return user_combine_layer, user_combine_layer_flat\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### 定义Movie ID的嵌入矩阵\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def get_movie_id_embed_layer(movie_id):\\n\",\n    \"    with tf.name_scope(\\\"movie_embedding\\\"):\\n\",\n    \"        movie_id_embed_matrix = tf.Variable(tf.random_uniform([movie_id_max, embed_dim], -1, 1), name = \\\"movie_id_embed_matrix\\\")\\n\",\n    \"        movie_id_embed_layer = tf.nn.embedding_lookup(movie_id_embed_matrix, movie_id, name = \\\"movie_id_embed_layer\\\")\\n\",\n    \"    return movie_id_embed_layer\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### 对电影类型的多个嵌入向量做加和\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def get_movie_categories_layers(movie_categories):\\n\",\n    \"    with tf.name_scope(\\\"movie_categories_layers\\\"):\\n\",\n    \"        movie_categories_embed_matrix = tf.Variable(tf.random_uniform([movie_categories_max, embed_dim], -1, 1), name = \\\"movie_categories_embed_matrix\\\")\\n\",\n    \"        movie_categories_embed_layer = tf.nn.embedding_lookup(movie_categories_embed_matrix, movie_categories, name = \\\"movie_categories_embed_layer\\\")\\n\",\n    \"        if combiner == \\\"sum\\\":\\n\",\n    \"            movie_categories_embed_layer = tf.reduce_sum(movie_categories_embed_layer, axis=1, keep_dims=True)\\n\",\n    \"    #     elif combiner == \\\"mean\\\":\\n\",\n    \"\\n\",\n    \"    return movie_categories_embed_layer\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### Movie Title的文本卷积网络实现\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def get_movie_cnn_layer(movie_titles):\\n\",\n    \"    #从嵌入矩阵中得到电影名对应的各个单词的嵌入向量\\n\",\n    \"    with tf.name_scope(\\\"movie_embedding\\\"):\\n\",\n    \"        movie_title_embed_matrix = tf.Variable(tf.random_uniform([movie_title_max, embed_dim], -1, 1), name = \\\"movie_title_embed_matrix\\\")\\n\",\n    \"        movie_title_embed_layer = tf.nn.embedding_lookup(movie_title_embed_matrix, movie_titles, name = \\\"movie_title_embed_layer\\\")\\n\",\n    \"        # 为 movie_title_embed_layer 增加一个维度\\n\",\n    \"        # 在这里是添加到最后一个维度，最后一个维度是channel\\n\",\n    \"        # 所以这里的channel数量是1个\\n\",\n    \"        # 所以这里的处理方式和图片是一样的\\n\",\n    \"        movie_title_embed_layer_expand = tf.expand_dims(movie_title_embed_layer, -1)\\n\",\n    \"    \\n\",\n    \"    #对文本嵌入层使用不同尺寸的卷积核做卷积和最大池化\\n\",\n    \"    pool_layer_lst = []\\n\",\n    \"    for window_size in window_sizes:\\n\",\n    \"        with tf.name_scope(\\\"movie_txt_conv_maxpool_{}\\\".format(window_size)):\\n\",\n    \"            # [window_size, embed_dim, 1, filter_num] 表示输入的 channel 的个数是1，输出的 channel 的个数是 filter_num\\n\",\n    \"            filter_weights = tf.Variable(tf.truncated_normal([window_size, embed_dim, 1, filter_num],stddev=0.1),name = \\\"filter_weights\\\")\\n\",\n    \"            filter_bias = tf.Variable(tf.constant(0.1, shape=[filter_num]), name=\\\"filter_bias\\\")\\n\",\n    \"            \\n\",\n    \"            # conv2d 是指用到的卷积核的大小是 [filter_height * filter_width * in_channels, output_channels]\\n\",\n    \"            # 在这里卷积核会向两个维度的方向进行滑动\\n\",\n    \"            # conv1d 是将卷积核向一个维度的方向进行滑动，这就是 conv1d 和 conv2d 的区别\\n\",\n    \"            # strides 设置要求第一个和最后一个数字是1，四个数字的顺序要求默认是 NHWC，也就是 [batch, height, width, channels]\\n\",\n    \"            # padding 设置为 VALID 其实就是不 PAD，设置为 SAME 就是让输入和输出的维度是一样的\\n\",\n    \"            conv_layer = tf.nn.conv2d(movie_title_embed_layer_expand, filter_weights, [1,1,1,1], padding=\\\"VALID\\\", name=\\\"conv_layer\\\")\\n\",\n    \"            # tf.nn.bias_add 将偏差 filter_bias 加到 conv_layer 上\\n\",\n    \"            # tf.nn.relu 将激活函数设置为 relu\\n\",\n    \"            relu_layer = tf.nn.relu(tf.nn.bias_add(conv_layer,filter_bias), name =\\\"relu_layer\\\")\\n\",\n    \"            \\n\",\n    \"            \\n\",\n    \"            # tf.nn.max_pool 的第一个参数是输入\\n\",\n    \"            # 第二个参数是 max_pool 窗口的大小，每个数值表示对每个维度的窗口设置\\n\",\n    \"            # 第三个参数是 strides，和 conv2d 的设置是一样的\\n\",\n    \"            # 这边的池化是将上面每个卷积核的卷积结果转换为一个元素\\n\",\n    \"            # 由于这里的卷积核的数量是 8 个，所以下面生成的是一个具有 8 个元素的向量\\n\",\n    \"            maxpool_layer = tf.nn.max_pool(relu_layer, [1,sentences_size - window_size + 1 ,1,1], [1,1,1,1], padding=\\\"VALID\\\", name=\\\"maxpool_layer\\\")\\n\",\n    \"            pool_layer_lst.append(maxpool_layer)\\n\",\n    \"\\n\",\n    \"    #Dropout层\\n\",\n    \"    with tf.name_scope(\\\"pool_dropout\\\"):\\n\",\n    \"        # 这里最终的结果是这样的，\\n\",\n    \"        # 假设卷积核的窗口是 2，卷积核的数量是 8\\n\",\n    \"        # 那么通过上面的池化操作之后，生成的池化的结果是一个具有 8 个元素的向量\\n\",\n    \"        # 每种窗口大小的卷积核经过池化后都会生成这样一个具有 8 个元素的向量\\n\",\n    \"        # 所以最终生成的是一个 8 维的二维矩阵，它的另一个维度就是不同的窗口的数量\\n\",\n    \"        # 在这里就是 2,3,4,5，那么最终就是一个 8*4 的矩阵，\\n\",\n    \"        pool_layer = tf.concat(pool_layer_lst, 3, name =\\\"pool_layer\\\")\\n\",\n    \"        max_num = len(window_sizes) * filter_num\\n\",\n    \"        # 将这个 8*4 的二维矩阵平铺成一个具有 32 个元素的一维矩阵\\n\",\n    \"        pool_layer_flat = tf.reshape(pool_layer , [-1, 1, max_num], name = \\\"pool_layer_flat\\\")\\n\",\n    \"    \\n\",\n    \"        dropout_layer = tf.nn.dropout(pool_layer_flat, dropout_keep_prob, name = \\\"dropout_layer\\\")\\n\",\n    \"    return pool_layer_flat, dropout_layer\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"#### 将Movie的各个层一起做全连接\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def get_movie_feature_layer(movie_id_embed_layer, movie_categories_embed_layer, dropout_layer):\\n\",\n    \"    with tf.name_scope(\\\"movie_fc\\\"):\\n\",\n    \"        #第一层全连接\\n\",\n    \"        movie_id_fc_layer = tf.layers.dense(movie_id_embed_layer, embed_dim, name = \\\"movie_id_fc_layer\\\", activation=tf.nn.relu)\\n\",\n    \"        movie_categories_fc_layer = tf.layers.dense(movie_categories_embed_layer, embed_dim, name = \\\"movie_categories_fc_layer\\\", activation=tf.nn.relu)\\n\",\n    \"    \\n\",\n    \"        #第二层全连接\\n\",\n    \"        movie_combine_layer = tf.concat([movie_id_fc_layer, movie_categories_fc_layer, dropout_layer], 2)  #(?, 1, 96)\\n\",\n    \"        movie_combine_layer = tf.contrib.layers.fully_connected(movie_combine_layer, 200, tf.tanh)  #(?, 1, 200)\\n\",\n    \"    \\n\",\n    \"        movie_combine_layer_flat = tf.reshape(movie_combine_layer, [-1, 200])\\n\",\n    \"    return movie_combine_layer, movie_combine_layer_flat\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 构建计算图\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"(?, 1, 128)\\n\",\n      \"WARNING:tensorflow:From <ipython-input-20-559a1ee9ce9e>:6: calling reduce_sum (from tensorflow.python.ops.math_ops) with keep_dims is deprecated and will be removed in a future version.\\n\",\n      \"Instructions for updating:\\n\",\n      \"keep_dims is deprecated, use keepdims instead\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# reset_default_graph 操作应该在 tensorflow 的其他所有操作之前进行，否则将会出现不可知的问题\\n\",\n    \"# tensorflow 中的 graph 包含的是一系列的操作和使用到这些操作的 tensor\\n\",\n    \"tf.reset_default_graph()\\n\",\n    \"train_graph = tf.Graph()\\n\",\n    \"# Graph 只是当前线程的属性，如果想要在其他的线程使用这个 Graph，那么就要像下面这样指定\\n\",\n    \"# 下面的 with 语句将 train_graph 设置为当前线程的默认 graph\\n\",\n    \"with train_graph.as_default():\\n\",\n    \"    #获取输入占位符\\n\",\n    \"    uid, user_gender, user_age, user_job, \\\\\\n\",\n    \"        movie_id, movie_categories, movie_titles, \\\\\\n\",\n    \"            targets, lr, dropout_keep_prob = get_inputs()\\n\",\n    \"    #获取User的4个嵌入向量\\n\",\n    \"    uid_embed_layer, gender_embed_layer, age_embed_layer, job_embed_layer = get_user_embedding(uid, user_gender, user_age, user_job)\\n\",\n    \"    #得到用户特征\\n\",\n    \"    user_combine_layer, user_combine_layer_flat = get_user_feature_layer(uid_embed_layer, gender_embed_layer, age_embed_layer, job_embed_layer)\\n\",\n    \"    #获取电影ID的嵌入向量\\n\",\n    \"    movie_id_embed_layer = get_movie_id_embed_layer(movie_id)\\n\",\n    \"    #获取电影类型的嵌入向量\\n\",\n    \"    movie_categories_embed_layer = get_movie_categories_layers(movie_categories)\\n\",\n    \"    #获取电影名的特征向量\\n\",\n    \"    pool_layer_flat, dropout_layer = get_movie_cnn_layer(movie_titles)\\n\",\n    \"    #得到电影特征\\n\",\n    \"    movie_combine_layer, movie_combine_layer_flat = get_movie_feature_layer(movie_id_embed_layer, \\n\",\n    \"                                                                                movie_categories_embed_layer, \\n\",\n    \"                                                                                dropout_layer)\\n\",\n    \"    #计算出评分，要注意两个不同的方案，inference的名字（name值）是不一样的，后面做推荐时要根据name取得tensor\\n\",\n    \"    # tensorflow 的 name_scope 指定了 tensor 范围，方便我们后面调用，通过指定 name_scope 来调用其中的 tensor\\n\",\n    \"    with tf.name_scope(\\\"inference\\\"):\\n\",\n    \"        # 直接将用户特征矩阵和电影特征矩阵相乘得到得分，最后要做的就是对这个得分进行回归\\n\",\n    \"        inference = tf.reduce_sum(user_combine_layer_flat * movie_combine_layer_flat, axis=1)\\n\",\n    \"        inference = tf.expand_dims(inference, axis=1)\\n\",\n    \"\\n\",\n    \"    with tf.name_scope(\\\"loss\\\"):\\n\",\n    \"        # MSE损失，将计算值回归到评分\\n\",\n    \"        cost = tf.losses.mean_squared_error(targets, inference )\\n\",\n    \"        # 将每个维度的 cost 相加，计算它们的平均值\\n\",\n    \"        loss = tf.reduce_mean(cost)\\n\",\n    \"    # 优化损失 \\n\",\n    \"#     train_op = tf.train.AdamOptimizer(lr).minimize(loss)  #cost\\n\",\n    \"# 在为 tensorflow 设置 name 参数的时候，是为了能在 graph 中看到什么变量进行了什么操作\\n\",\n    \"    global_step = tf.Variable(0, name=\\\"global_step\\\", trainable=False)\\n\",\n    \"#     optimizer = tf.train.AdamOptimizer(lr)\\n\",\n    \"    optimizer = tf.train.AdamOptimizer()\\n\",\n    \"    gradients = optimizer.compute_gradients(loss)  #cost\\n\",\n    \"    train_op = optimizer.apply_gradients(gradients, global_step=global_step)\\n\",\n    \"    \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 取得batch\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 自定义获取 batch 的方法\\n\",\n    \"def get_batches(Xs, ys, batch_size):\\n\",\n    \"    for start in range(0, len(Xs), batch_size):\\n\",\n    \"        end = min(start + batch_size, len(Xs))\\n\",\n    \"        yield Xs[start:end], ys[start:end]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 训练网络\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Writing to D:\\\\28 machine learning\\\\08 项目\\\\八维实训项目\\\\06 电影推荐\\\\基于CNN的电影推荐系统\\\\runs\\\\1536908929\\n\",\n      \"\\n\",\n      \"2018-09-14T15:08:57.935265: Epoch   0 Batch    0/3125   train_loss = 25.717\\n\",\n      \"2018-09-14T15:09:03.961826: Epoch   0 Batch   50/3125   train_loss = 1.420\\n\",\n      \"2018-09-14T15:09:09.619593: Epoch   0 Batch  100/3125   train_loss = 1.449\\n\",\n      \"2018-09-14T15:09:15.142444: Epoch   0 Batch  150/3125   train_loss = 1.450\\n\",\n      \"2018-09-14T15:09:20.093619: Epoch   0 Batch  200/3125   train_loss = 1.397\\n\",\n      \"2018-09-14T15:09:24.683006: Epoch   0 Batch  250/3125   train_loss = 1.356\\n\",\n      \"2018-09-14T15:09:28.609786: Epoch   0 Batch  300/3125   train_loss = 1.377\\n\",\n      \"2018-09-14T15:09:32.593514: Epoch   0 Batch  350/3125   train_loss = 1.220\\n\",\n      \"2018-09-14T15:09:36.441319: Epoch   0 Batch  400/3125   train_loss = 1.077\\n\",\n      \"2018-09-14T15:09:40.309089: Epoch   0 Batch  450/3125   train_loss = 1.218\\n\",\n      \"2018-09-14T15:09:45.538115: Epoch   0 Batch  500/3125   train_loss = 0.906\\n\",\n      \"2018-09-14T15:09:50.876064: Epoch   0 Batch  550/3125   train_loss = 1.222\\n\",\n      \"2018-09-14T15:09:55.671356: Epoch   0 Batch  600/3125   train_loss = 1.244\\n\",\n      \"2018-09-14T15:10:00.614509: Epoch   0 Batch  650/3125   train_loss = 1.381\\n\",\n      \"2018-09-14T15:10:04.545291: Epoch   0 Batch  700/3125   train_loss = 1.202\\n\",\n      \"2018-09-14T15:10:08.451063: Epoch   0 Batch  750/3125   train_loss = 1.136\\n\",\n      \"2018-09-14T15:10:11.774147: Epoch   0 Batch  800/3125   train_loss = 1.095\\n\",\n      \"2018-09-14T15:10:14.531590: Epoch   0 Batch  850/3125   train_loss = 1.199\\n\",\n      \"2018-09-14T15:10:17.070126: Epoch   0 Batch  900/3125   train_loss = 0.977\\n\",\n      \"2018-09-14T15:10:19.507750: Epoch   0 Batch  950/3125   train_loss = 1.154\\n\",\n      \"2018-09-14T15:10:21.839420: Epoch   0 Batch 1000/3125   train_loss = 1.117\\n\",\n      \"2018-09-14T15:10:23.982180: Epoch   0 Batch 1050/3125   train_loss = 1.081\\n\",\n      \"2018-09-14T15:10:25.726187: Epoch   0 Batch 1100/3125   train_loss = 1.080\\n\",\n      \"2018-09-14T15:10:27.543152: Epoch   0 Batch 1150/3125   train_loss = 1.059\\n\",\n      \"2018-09-14T15:10:29.265183: Epoch   0 Batch 1200/3125   train_loss = 1.106\\n\",\n      \"2018-09-14T15:10:30.981204: Epoch   0 Batch 1250/3125   train_loss = 1.151\\n\",\n      \"2018-09-14T15:10:32.723211: Epoch   0 Batch 1300/3125   train_loss = 0.891\\n\",\n      \"2018-09-14T15:10:34.447227: Epoch   0 Batch 1350/3125   train_loss = 0.933\\n\",\n      \"2018-09-14T15:10:36.247202: Epoch   0 Batch 1400/3125   train_loss = 1.012\\n\",\n      \"2018-09-14T15:10:38.201088: Epoch   0 Batch 1450/3125   train_loss = 1.139\\n\",\n      \"2018-09-14T15:10:40.157972: Epoch   0 Batch 1500/3125   train_loss = 0.994\\n\",\n      \"2018-09-14T15:10:42.110858: Epoch   0 Batch 1550/3125   train_loss = 1.034\\n\",\n      \"2018-09-14T15:10:44.067742: Epoch   0 Batch 1600/3125   train_loss = 0.882\\n\",\n      \"2018-09-14T15:10:46.045614: Epoch   0 Batch 1650/3125   train_loss = 0.957\\n\",\n      \"2018-09-14T15:10:48.179401: Epoch   0 Batch 1700/3125   train_loss = 0.913\\n\",\n      \"2018-09-14T15:10:50.315164: Epoch   0 Batch 1750/3125   train_loss = 0.870\\n\",\n      \"2018-09-14T15:10:55.117148: Epoch   0 Batch 1800/3125   train_loss = 0.976\\n\",\n      \"2018-09-14T15:11:00.239258: Epoch   0 Batch 1850/3125   train_loss = 0.910\\n\",\n      \"2018-09-14T15:11:05.661165: Epoch   0 Batch 1900/3125   train_loss = 0.817\\n\",\n      \"2018-09-14T15:11:11.032071: Epoch   0 Batch 1950/3125   train_loss = 0.904\\n\",\n      \"2018-09-14T15:11:15.786360: Epoch   0 Batch 2000/3125   train_loss = 1.071\\n\",\n      \"2018-09-14T15:11:20.704582: Epoch   0 Batch 2050/3125   train_loss = 0.972\\n\",\n      \"2018-09-14T15:11:25.115038: Epoch   0 Batch 2100/3125   train_loss = 0.816\\n\",\n      \"2018-09-14T15:11:28.930863: Epoch   0 Batch 2150/3125   train_loss = 0.904\\n\",\n      \"2018-09-14T15:11:33.183437: Epoch   0 Batch 2200/3125   train_loss = 0.868\\n\",\n      \"2018-09-14T15:11:37.696886: Epoch   0 Batch 2250/3125   train_loss = 0.998\\n\",\n      \"2018-09-14T15:11:41.694603: Epoch   0 Batch 2300/3125   train_loss = 0.904\\n\",\n      \"2018-09-14T15:11:45.334526: Epoch   0 Batch 2350/3125   train_loss = 0.986\\n\",\n      \"2018-09-14T15:11:48.932475: Epoch   0 Batch 2400/3125   train_loss = 0.920\\n\",\n      \"2018-09-14T15:11:52.452447: Epoch   0 Batch 2450/3125   train_loss = 0.938\\n\",\n      \"2018-09-14T15:11:56.090376: Epoch   0 Batch 2500/3125   train_loss = 0.899\\n\",\n      \"2018-09-14T15:11:59.891205: Epoch   0 Batch 2550/3125   train_loss = 0.955\\n\",\n      \"2018-09-14T15:12:02.900506: Epoch   0 Batch 2600/3125   train_loss = 0.871\\n\",\n      \"2018-09-14T15:12:05.705889: Epoch   0 Batch 2650/3125   train_loss = 1.022\\n\",\n      \"2018-09-14T15:12:08.742157: Epoch   0 Batch 2700/3125   train_loss = 0.984\\n\",\n      \"2018-09-14T15:12:13.674344: Epoch   0 Batch 2750/3125   train_loss = 1.049\\n\",\n      \"2018-09-14T15:12:19.932782: Epoch   0 Batch 2800/3125   train_loss = 1.059\\n\",\n      \"2018-09-14T15:12:26.288150: Epoch   0 Batch 2850/3125   train_loss = 0.901\\n\",\n      \"2018-09-14T15:12:32.632532: Epoch   0 Batch 2900/3125   train_loss = 0.830\\n\",\n      \"2018-09-14T15:12:37.269887: Epoch   0 Batch 2950/3125   train_loss = 0.963\\n\",\n      \"2018-09-14T15:12:41.693363: Epoch   0 Batch 3000/3125   train_loss = 0.995\\n\",\n      \"2018-09-14T15:12:45.973922: Epoch   0 Batch 3050/3125   train_loss = 0.813\\n\",\n      \"2018-09-14T15:12:48.846284: Epoch   0 Batch 3100/3125   train_loss = 1.044\\n\",\n      \"2018-09-14T15:12:50.587297: Epoch   0 Batch    0/781   test_loss = 0.865\\n\",\n      \"2018-09-14T15:12:52.249344: Epoch   0 Batch   50/781   test_loss = 0.905\\n\",\n      \"2018-09-14T15:12:53.564601: Epoch   0 Batch  100/781   test_loss = 1.034\\n\",\n      \"2018-09-14T15:12:54.924841: Epoch   0 Batch  150/781   test_loss = 0.921\\n\",\n      \"2018-09-14T15:12:56.288040: Epoch   0 Batch  200/781   test_loss = 0.946\\n\",\n      \"2018-09-14T15:12:57.635277: Epoch   0 Batch  250/781   test_loss = 0.817\\n\",\n      \"2018-09-14T15:12:59.048466: Epoch   0 Batch  300/781   test_loss = 0.868\\n\",\n      \"2018-09-14T15:13:00.377712: Epoch   0 Batch  350/781   test_loss = 0.898\\n\",\n      \"2018-09-14T15:13:01.776913: Epoch   0 Batch  400/781   test_loss = 0.884\\n\",\n      \"2018-09-14T15:13:03.114147: Epoch   0 Batch  450/781   test_loss = 0.845\\n\",\n      \"2018-09-14T15:13:04.411407: Epoch   0 Batch  500/781   test_loss = 0.809\\n\",\n      \"2018-09-14T15:13:05.746647: Epoch   0 Batch  550/781   test_loss = 0.869\\n\",\n      \"2018-09-14T15:13:07.034935: Epoch   0 Batch  600/781   test_loss = 0.881\\n\",\n      \"2018-09-14T15:13:08.367155: Epoch   0 Batch  650/781   test_loss = 0.794\\n\",\n      \"2018-09-14T15:13:09.619460: Epoch   0 Batch  700/781   test_loss = 0.914\\n\",\n      \"2018-09-14T15:13:11.272494: Epoch   0 Batch  750/781   test_loss = 0.848\\n\",\n      \"2018-09-14T15:13:14.288805: Epoch   1 Batch    0/3125   train_loss = 1.068\\n\",\n      \"2018-09-14T15:13:19.750659: Epoch   1 Batch   50/3125   train_loss = 0.897\\n\",\n      \"2018-09-14T15:13:25.023682: Epoch   1 Batch  100/3125   train_loss = 0.925\\n\",\n      \"2018-09-14T15:13:29.980852: Epoch   1 Batch  150/3125   train_loss = 0.915\\n\",\n      \"2018-09-14T15:13:34.540224: Epoch   1 Batch  200/3125   train_loss = 1.048\\n\",\n      \"2018-09-14T15:13:39.216584: Epoch   1 Batch  250/3125   train_loss = 0.840\\n\",\n      \"2018-09-14T15:13:43.556092: Epoch   1 Batch  300/3125   train_loss = 1.083\\n\",\n      \"2018-09-14T15:13:48.623192: Epoch   1 Batch  350/3125   train_loss = 0.827\\n\",\n      \"2018-09-14T15:13:52.789820: Epoch   1 Batch  400/3125   train_loss = 0.858\\n\",\n      \"2018-09-14T15:13:56.585680: Epoch   1 Batch  450/3125   train_loss = 0.823\\n\",\n      \"2018-09-14T15:14:00.381486: Epoch   1 Batch  500/3125   train_loss = 0.683\\n\",\n      \"2018-09-14T15:14:04.170350: Epoch   1 Batch  550/3125   train_loss = 0.904\\n\",\n      \"2018-09-14T15:14:08.078096: Epoch   1 Batch  600/3125   train_loss = 0.806\\n\",\n      \"2018-09-14T15:14:13.152202: Epoch   1 Batch  650/3125   train_loss = 0.862\\n\",\n      \"2018-09-14T15:14:17.839528: Epoch   1 Batch  700/3125   train_loss = 0.933\\n\",\n      \"2018-09-14T15:14:22.484886: Epoch   1 Batch  750/3125   train_loss = 0.844\\n\",\n      \"2018-09-14T15:14:27.211211: Epoch   1 Batch  800/3125   train_loss = 0.720\\n\",\n      \"2018-09-14T15:14:31.710625: Epoch   1 Batch  850/3125   train_loss = 0.965\\n\",\n      \"2018-09-14T15:14:37.199518: Epoch   1 Batch  900/3125   train_loss = 0.841\\n\",\n      \"2018-09-14T15:14:42.630390: Epoch   1 Batch  950/3125   train_loss = 0.840\\n\",\n      \"2018-09-14T15:14:47.930367: Epoch   1 Batch 1000/3125   train_loss = 0.946\\n\",\n      \"2018-09-14T15:14:53.349305: Epoch   1 Batch 1050/3125   train_loss = 0.831\\n\",\n      \"2018-09-14T15:14:57.190086: Epoch   1 Batch 1100/3125   train_loss = 0.806\\n\",\n      \"2018-09-14T15:15:00.632143: Epoch   1 Batch 1150/3125   train_loss = 0.838\\n\",\n      \"2018-09-14T15:15:03.778331: Epoch   1 Batch 1200/3125   train_loss = 0.919\\n\",\n      \"2018-09-14T15:15:06.373865: Epoch   1 Batch 1250/3125   train_loss = 0.882\\n\",\n      \"2018-09-14T15:15:08.775496: Epoch   1 Batch 1300/3125   train_loss = 0.839\\n\",\n      \"2018-09-14T15:15:11.170130: Epoch   1 Batch 1350/3125   train_loss = 0.804\\n\",\n      \"2018-09-14T15:15:13.586752: Epoch   1 Batch 1400/3125   train_loss = 0.914\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"2018-09-14T15:15:17.968111: Epoch   1 Batch 1450/3125   train_loss = 0.881\\n\",\n      \"2018-09-14T15:15:23.030224: Epoch   1 Batch 1500/3125   train_loss = 0.883\\n\",\n      \"2018-09-14T15:15:28.084342: Epoch   1 Batch 1550/3125   train_loss = 0.822\\n\",\n      \"2018-09-14T15:15:33.129464: Epoch   1 Batch 1600/3125   train_loss = 0.764\\n\",\n      \"2018-09-14T15:15:38.173588: Epoch   1 Batch 1650/3125   train_loss = 0.741\\n\",\n      \"2018-09-14T15:15:43.179733: Epoch   1 Batch 1700/3125   train_loss = 0.813\\n\",\n      \"2018-09-14T15:15:48.221859: Epoch   1 Batch 1750/3125   train_loss = 0.763\\n\",\n      \"2018-09-14T15:15:53.283969: Epoch   1 Batch 1800/3125   train_loss = 0.778\\n\",\n      \"2018-09-14T15:15:58.775822: Epoch   1 Batch 1850/3125   train_loss = 0.837\\n\",\n      \"2018-09-14T15:16:04.748409: Epoch   1 Batch 1900/3125   train_loss = 0.728\\n\",\n      \"2018-09-14T15:16:10.657030: Epoch   1 Batch 1950/3125   train_loss = 0.777\\n\",\n      \"2018-09-14T15:16:16.677604: Epoch   1 Batch 2000/3125   train_loss = 1.016\\n\",\n      \"2018-09-14T15:16:22.674207: Epoch   1 Batch 2050/3125   train_loss = 0.910\\n\",\n      \"2018-09-14T15:16:28.407938: Epoch   1 Batch 2100/3125   train_loss = 0.789\\n\",\n      \"2018-09-14T15:16:34.315545: Epoch   1 Batch 2150/3125   train_loss = 0.898\\n\",\n      \"2018-09-14T15:16:40.333136: Epoch   1 Batch 2200/3125   train_loss = 0.805\\n\",\n      \"2018-09-14T15:16:46.239767: Epoch   1 Batch 2250/3125   train_loss = 0.930\\n\",\n      \"2018-09-14T15:16:52.368248: Epoch   1 Batch 2300/3125   train_loss = 0.848\\n\",\n      \"2018-09-14T15:16:58.480786: Epoch   1 Batch 2350/3125   train_loss = 0.920\\n\",\n      \"2018-09-14T15:17:04.549328: Epoch   1 Batch 2400/3125   train_loss = 0.856\\n\",\n      \"2018-09-14T15:17:10.570862: Epoch   1 Batch 2450/3125   train_loss = 0.893\\n\",\n      \"2018-09-14T15:17:16.896283: Epoch   1 Batch 2500/3125   train_loss = 0.791\\n\",\n      \"2018-09-14T15:17:22.805913: Epoch   1 Batch 2550/3125   train_loss = 0.915\\n\",\n      \"2018-09-14T15:17:28.944381: Epoch   1 Batch 2600/3125   train_loss = 0.823\\n\",\n      \"2018-09-14T15:17:34.960958: Epoch   1 Batch 2650/3125   train_loss = 0.742\\n\",\n      \"2018-09-14T15:17:41.083464: Epoch   1 Batch 2700/3125   train_loss = 0.867\\n\",\n      \"2018-09-14T15:17:47.270935: Epoch   1 Batch 2750/3125   train_loss = 0.963\\n\",\n      \"2018-09-14T15:17:52.952695: Epoch   1 Batch 2800/3125   train_loss = 1.025\\n\",\n      \"2018-09-14T15:17:58.940281: Epoch   1 Batch 2850/3125   train_loss = 0.905\\n\",\n      \"2018-09-14T15:18:05.028809: Epoch   1 Batch 2900/3125   train_loss = 0.803\\n\",\n      \"2018-09-14T15:18:11.046400: Epoch   1 Batch 2950/3125   train_loss = 0.968\\n\",\n      \"2018-09-14T15:18:16.874047: Epoch   1 Batch 3000/3125   train_loss = 0.925\\n\",\n      \"2018-09-14T15:18:22.721710: Epoch   1 Batch 3050/3125   train_loss = 0.797\\n\",\n      \"2018-09-14T15:18:28.759267: Epoch   1 Batch 3100/3125   train_loss = 1.002\\n\",\n      \"2018-09-14T15:18:31.692595: Epoch   1 Batch    0/781   test_loss = 0.832\\n\",\n      \"2018-09-14T15:18:33.771410: Epoch   1 Batch   50/781   test_loss = 0.840\\n\",\n      \"2018-09-14T15:18:35.755285: Epoch   1 Batch  100/781   test_loss = 1.015\\n\",\n      \"2018-09-14T15:18:37.734151: Epoch   1 Batch  150/781   test_loss = 0.888\\n\",\n      \"2018-09-14T15:18:39.572109: Epoch   1 Batch  200/781   test_loss = 0.885\\n\",\n      \"2018-09-14T15:18:41.405064: Epoch   1 Batch  250/781   test_loss = 0.807\\n\",\n      \"2018-09-14T15:18:43.226046: Epoch   1 Batch  300/781   test_loss = 0.804\\n\",\n      \"2018-09-14T15:18:45.054975: Epoch   1 Batch  350/781   test_loss = 0.866\\n\",\n      \"2018-09-14T15:18:46.894932: Epoch   1 Batch  400/781   test_loss = 0.857\\n\",\n      \"2018-09-14T15:18:48.757892: Epoch   1 Batch  450/781   test_loss = 0.794\\n\",\n      \"2018-09-14T15:18:50.607807: Epoch   1 Batch  500/781   test_loss = 0.772\\n\",\n      \"2018-09-14T15:18:52.451758: Epoch   1 Batch  550/781   test_loss = 0.837\\n\",\n      \"2018-09-14T15:18:54.256727: Epoch   1 Batch  600/781   test_loss = 0.848\\n\",\n      \"2018-09-14T15:18:56.070700: Epoch   1 Batch  650/781   test_loss = 0.760\\n\",\n      \"2018-09-14T15:18:57.885657: Epoch   1 Batch  700/781   test_loss = 0.883\\n\",\n      \"2018-09-14T15:18:59.856562: Epoch   1 Batch  750/781   test_loss = 0.800\\n\",\n      \"2018-09-14T15:19:02.956794: Epoch   2 Batch    0/3125   train_loss = 0.962\\n\",\n      \"2018-09-14T15:19:08.250751: Epoch   2 Batch   50/3125   train_loss = 0.821\\n\",\n      \"2018-09-14T15:19:13.457782: Epoch   2 Batch  100/3125   train_loss = 0.858\\n\",\n      \"2018-09-14T15:19:18.331023: Epoch   2 Batch  150/3125   train_loss = 0.855\\n\",\n      \"2018-09-14T15:19:23.099303: Epoch   2 Batch  200/3125   train_loss = 1.031\\n\",\n      \"2018-09-14T15:19:27.941542: Epoch   2 Batch  250/3125   train_loss = 0.803\\n\",\n      \"2018-09-14T15:19:32.872708: Epoch   2 Batch  300/3125   train_loss = 1.064\\n\",\n      \"2018-09-14T15:19:38.025790: Epoch   2 Batch  350/3125   train_loss = 0.800\\n\",\n      \"2018-09-14T15:19:42.910981: Epoch   2 Batch  400/3125   train_loss = 0.869\\n\",\n      \"2018-09-14T15:19:47.282482: Epoch   2 Batch  450/3125   train_loss = 0.795\\n\",\n      \"2018-09-14T15:19:51.761952: Epoch   2 Batch  500/3125   train_loss = 0.640\\n\",\n      \"2018-09-14T15:19:56.230404: Epoch   2 Batch  550/3125   train_loss = 0.864\\n\",\n      \"2018-09-14T15:20:00.675844: Epoch   2 Batch  600/3125   train_loss = 0.760\\n\",\n      \"2018-09-14T15:20:04.041927: Epoch   2 Batch  650/3125   train_loss = 0.839\\n\",\n      \"2018-09-14T15:20:06.950264: Epoch   2 Batch  700/3125   train_loss = 0.872\\n\",\n      \"2018-09-14T15:20:09.442845: Epoch   2 Batch  750/3125   train_loss = 0.791\\n\",\n      \"2018-09-14T15:20:11.912437: Epoch   2 Batch  800/3125   train_loss = 0.699\\n\",\n      \"2018-09-14T15:20:16.230004: Epoch   2 Batch  850/3125   train_loss = 0.935\\n\",\n      \"2018-09-14T15:20:22.009678: Epoch   2 Batch  900/3125   train_loss = 0.828\\n\",\n      \"2018-09-14T15:20:27.574533: Epoch   2 Batch  950/3125   train_loss = 0.827\\n\",\n      \"2018-09-14T15:20:33.300243: Epoch   2 Batch 1000/3125   train_loss = 0.897\\n\",\n      \"2018-09-14T15:20:37.017138: Epoch   2 Batch 1050/3125   train_loss = 0.787\\n\",\n      \"2018-09-14T15:20:39.976429: Epoch   2 Batch 1100/3125   train_loss = 0.739\\n\",\n      \"2018-09-14T15:20:43.395505: Epoch   2 Batch 1150/3125   train_loss = 0.797\\n\",\n      \"2018-09-14T15:20:48.358680: Epoch   2 Batch 1200/3125   train_loss = 0.911\\n\",\n      \"2018-09-14T15:20:53.377793: Epoch   2 Batch 1250/3125   train_loss = 0.841\\n\",\n      \"2018-09-14T15:20:58.411916: Epoch   2 Batch 1300/3125   train_loss = 0.768\\n\",\n      \"2018-09-14T15:21:03.981738: Epoch   2 Batch 1350/3125   train_loss = 0.776\\n\",\n      \"2018-09-14T15:21:09.693510: Epoch   2 Batch 1400/3125   train_loss = 0.826\\n\",\n      \"2018-09-14T15:21:14.759597: Epoch   2 Batch 1450/3125   train_loss = 0.852\\n\",\n      \"2018-09-14T15:21:18.401535: Epoch   2 Batch 1500/3125   train_loss = 0.871\\n\",\n      \"2018-09-14T15:21:21.438782: Epoch   2 Batch 1550/3125   train_loss = 0.789\\n\",\n      \"2018-09-14T15:21:24.348144: Epoch   2 Batch 1600/3125   train_loss = 0.750\\n\",\n      \"2018-09-14T15:21:27.211511: Epoch   2 Batch 1650/3125   train_loss = 0.743\\n\",\n      \"2018-09-14T15:21:31.809875: Epoch   2 Batch 1700/3125   train_loss = 0.811\\n\",\n      \"2018-09-14T15:21:36.844004: Epoch   2 Batch 1750/3125   train_loss = 0.741\\n\",\n      \"2018-09-14T15:21:41.958087: Epoch   2 Batch 1800/3125   train_loss = 0.747\\n\",\n      \"2018-09-14T15:21:47.313056: Epoch   2 Batch 1850/3125   train_loss = 0.758\\n\",\n      \"2018-09-14T15:21:52.814895: Epoch   2 Batch 1900/3125   train_loss = 0.693\\n\",\n      \"2018-09-14T15:21:57.796080: Epoch   2 Batch 1950/3125   train_loss = 0.797\\n\",\n      \"2018-09-14T15:22:03.013104: Epoch   2 Batch 2000/3125   train_loss = 0.939\\n\",\n      \"2018-09-14T15:22:08.863766: Epoch   2 Batch 2050/3125   train_loss = 0.853\\n\",\n      \"2018-09-14T15:22:14.796351: Epoch   2 Batch 2100/3125   train_loss = 0.792\\n\",\n      \"2018-09-14T15:22:20.125312: Epoch   2 Batch 2150/3125   train_loss = 0.857\\n\",\n      \"2018-09-14T15:22:25.708128: Epoch   2 Batch 2200/3125   train_loss = 0.815\\n\",\n      \"2018-09-14T15:22:31.621756: Epoch   2 Batch 2250/3125   train_loss = 0.916\\n\",\n      \"2018-09-14T15:22:37.704292: Epoch   2 Batch 2300/3125   train_loss = 0.833\\n\",\n      \"2018-09-14T15:22:42.899354: Epoch   2 Batch 2350/3125   train_loss = 0.915\\n\",\n      \"2018-09-14T15:22:48.086394: Epoch   2 Batch 2400/3125   train_loss = 0.826\\n\",\n      \"2018-09-14T15:22:53.213447: Epoch   2 Batch 2450/3125   train_loss = 0.869\\n\",\n      \"2018-09-14T15:22:58.367525: Epoch   2 Batch 2500/3125   train_loss = 0.756\\n\",\n      \"2018-09-14T15:23:02.764018: Epoch   2 Batch 2550/3125   train_loss = 0.894\\n\",\n      \"2018-09-14T15:23:06.441900: Epoch   2 Batch 2600/3125   train_loss = 0.778\\n\",\n      \"2018-09-14T15:23:09.771001: Epoch   2 Batch 2650/3125   train_loss = 0.715\\n\",\n      \"2018-09-14T15:23:13.151074: Epoch   2 Batch 2700/3125   train_loss = 0.859\\n\",\n      \"2018-09-14T15:23:18.480031: Epoch   2 Batch 2750/3125   train_loss = 0.988\\n\",\n      \"2018-09-14T15:23:24.468615: Epoch   2 Batch 2800/3125   train_loss = 0.998\\n\",\n      \"2018-09-14T15:23:30.650090: Epoch   2 Batch 2850/3125   train_loss = 0.850\\n\",\n      \"2018-09-14T15:23:36.602695: Epoch   2 Batch 2900/3125   train_loss = 0.770\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"2018-09-14T15:23:42.370413: Epoch   2 Batch 2950/3125   train_loss = 0.948\\n\",\n      \"2018-09-14T15:23:47.766334: Epoch   2 Batch 3000/3125   train_loss = 0.922\\n\",\n      \"2018-09-14T15:23:52.650548: Epoch   2 Batch 3050/3125   train_loss = 0.764\\n\",\n      \"2018-09-14T15:23:56.999087: Epoch   2 Batch 3100/3125   train_loss = 0.981\\n\",\n      \"2018-09-14T15:23:58.775050: Epoch   2 Batch    0/781   test_loss = 0.841\\n\",\n      \"2018-09-14T15:24:00.415121: Epoch   2 Batch   50/781   test_loss = 0.820\\n\",\n      \"2018-09-14T15:24:02.215095: Epoch   2 Batch  100/781   test_loss = 0.998\\n\",\n      \"2018-09-14T15:24:03.974093: Epoch   2 Batch  150/781   test_loss = 0.864\\n\",\n      \"2018-09-14T15:24:05.728093: Epoch   2 Batch  200/781   test_loss = 0.855\\n\",\n      \"2018-09-14T15:24:07.648997: Epoch   2 Batch  250/781   test_loss = 0.804\\n\",\n      \"2018-09-14T15:24:09.419010: Epoch   2 Batch  300/781   test_loss = 0.782\\n\",\n      \"2018-09-14T15:24:11.165988: Epoch   2 Batch  350/781   test_loss = 0.833\\n\",\n      \"2018-09-14T15:24:12.940973: Epoch   2 Batch  400/781   test_loss = 0.873\\n\",\n      \"2018-09-14T15:24:14.690974: Epoch   2 Batch  450/781   test_loss = 0.811\\n\",\n      \"2018-09-14T15:24:16.553919: Epoch   2 Batch  500/781   test_loss = 0.777\\n\",\n      \"2018-09-14T15:24:18.278957: Epoch   2 Batch  550/781   test_loss = 0.805\\n\",\n      \"2018-09-14T15:24:20.043921: Epoch   2 Batch  600/781   test_loss = 0.847\\n\",\n      \"2018-09-14T15:24:21.837898: Epoch   2 Batch  650/781   test_loss = 0.747\\n\",\n      \"2018-09-14T15:24:23.548922: Epoch   2 Batch  700/781   test_loss = 0.872\\n\",\n      \"2018-09-14T15:24:25.317914: Epoch   2 Batch  750/781   test_loss = 0.812\\n\",\n      \"2018-09-14T15:24:28.180310: Epoch   3 Batch    0/3125   train_loss = 0.902\\n\",\n      \"2018-09-14T15:24:33.554214: Epoch   3 Batch   50/3125   train_loss = 0.821\\n\",\n      \"2018-09-14T15:24:38.873211: Epoch   3 Batch  100/3125   train_loss = 0.878\\n\",\n      \"2018-09-14T15:24:44.327101: Epoch   3 Batch  150/3125   train_loss = 0.826\\n\",\n      \"2018-09-14T15:24:49.591068: Epoch   3 Batch  200/3125   train_loss = 0.978\\n\",\n      \"2018-09-14T15:24:54.183477: Epoch   3 Batch  250/3125   train_loss = 0.766\\n\",\n      \"2018-09-14T15:24:57.896334: Epoch   3 Batch  300/3125   train_loss = 1.000\\n\",\n      \"2018-09-14T15:25:00.920626: Epoch   3 Batch  350/3125   train_loss = 0.770\\n\",\n      \"2018-09-14T15:25:04.895368: Epoch   3 Batch  400/3125   train_loss = 0.870\\n\",\n      \"2018-09-14T15:25:09.442774: Epoch   3 Batch  450/3125   train_loss = 0.782\\n\",\n      \"2018-09-14T15:25:14.186047: Epoch   3 Batch  500/3125   train_loss = 0.637\\n\",\n      \"2018-09-14T15:25:19.421062: Epoch   3 Batch  550/3125   train_loss = 0.819\\n\",\n      \"2018-09-14T15:25:24.265293: Epoch   3 Batch  600/3125   train_loss = 0.745\\n\",\n      \"2018-09-14T15:25:29.933090: Epoch   3 Batch  650/3125   train_loss = 0.838\\n\",\n      \"2018-09-14T15:25:34.349566: Epoch   3 Batch  700/3125   train_loss = 0.853\\n\",\n      \"2018-09-14T15:25:38.179356: Epoch   3 Batch  750/3125   train_loss = 0.762\\n\",\n      \"2018-09-14T15:25:41.976197: Epoch   3 Batch  800/3125   train_loss = 0.699\\n\",\n      \"2018-09-14T15:25:45.772051: Epoch   3 Batch  850/3125   train_loss = 0.876\\n\",\n      \"2018-09-14T15:25:49.449949: Epoch   3 Batch  900/3125   train_loss = 0.799\\n\",\n      \"2018-09-14T15:25:52.422237: Epoch   3 Batch  950/3125   train_loss = 0.788\\n\",\n      \"2018-09-14T15:25:55.372550: Epoch   3 Batch 1000/3125   train_loss = 0.878\\n\",\n      \"2018-09-14T15:25:58.384831: Epoch   3 Batch 1050/3125   train_loss = 0.762\\n\",\n      \"2018-09-14T15:26:00.949373: Epoch   3 Batch 1100/3125   train_loss = 0.736\\n\",\n      \"2018-09-14T15:26:03.447948: Epoch   3 Batch 1150/3125   train_loss = 0.783\\n\",\n      \"2018-09-14T15:26:06.088456: Epoch   3 Batch 1200/3125   train_loss = 0.873\\n\",\n      \"2018-09-14T15:26:08.506076: Epoch   3 Batch 1250/3125   train_loss = 0.838\\n\",\n      \"2018-09-14T15:26:10.878708: Epoch   3 Batch 1300/3125   train_loss = 0.769\\n\",\n      \"2018-09-14T15:26:13.162406: Epoch   3 Batch 1350/3125   train_loss = 0.752\\n\",\n      \"2018-09-14T15:26:15.331168: Epoch   3 Batch 1400/3125   train_loss = 0.805\\n\",\n      \"2018-09-14T15:26:17.503931: Epoch   3 Batch 1450/3125   train_loss = 0.815\\n\",\n      \"2018-09-14T15:26:21.823473: Epoch   3 Batch 1500/3125   train_loss = 0.856\\n\",\n      \"2018-09-14T15:26:26.848604: Epoch   3 Batch 1550/3125   train_loss = 0.765\\n\",\n      \"2018-09-14T15:26:31.808801: Epoch   3 Batch 1600/3125   train_loss = 0.742\\n\",\n      \"2018-09-14T15:26:36.846904: Epoch   3 Batch 1650/3125   train_loss = 0.749\\n\",\n      \"2018-09-14T15:26:41.781090: Epoch   3 Batch 1700/3125   train_loss = 0.786\\n\",\n      \"2018-09-14T15:26:46.722272: Epoch   3 Batch 1750/3125   train_loss = 0.724\\n\",\n      \"2018-09-14T15:26:51.631465: Epoch   3 Batch 1800/3125   train_loss = 0.729\\n\",\n      \"2018-09-14T15:26:56.581648: Epoch   3 Batch 1850/3125   train_loss = 0.729\\n\",\n      \"2018-09-14T15:27:01.582791: Epoch   3 Batch 1900/3125   train_loss = 0.663\\n\",\n      \"2018-09-14T15:27:06.794848: Epoch   3 Batch 1950/3125   train_loss = 0.766\\n\",\n      \"2018-09-14T15:27:12.088827: Epoch   3 Batch 2000/3125   train_loss = 0.922\\n\",\n      \"2018-09-14T15:27:17.352797: Epoch   3 Batch 2050/3125   train_loss = 0.829\\n\",\n      \"2018-09-14T15:27:22.603836: Epoch   3 Batch 2100/3125   train_loss = 0.769\\n\",\n      \"2018-09-14T15:27:27.734905: Epoch   3 Batch 2150/3125   train_loss = 0.818\\n\",\n      \"2018-09-14T15:27:33.019892: Epoch   3 Batch 2200/3125   train_loss = 0.813\\n\",\n      \"2018-09-14T15:27:38.278891: Epoch   3 Batch 2250/3125   train_loss = 0.923\\n\",\n      \"2018-09-14T15:27:43.489919: Epoch   3 Batch 2300/3125   train_loss = 0.784\\n\",\n      \"2018-09-14T15:27:48.676937: Epoch   3 Batch 2350/3125   train_loss = 0.895\\n\",\n      \"2018-09-14T15:27:53.808034: Epoch   3 Batch 2400/3125   train_loss = 0.810\\n\",\n      \"2018-09-14T15:27:59.047017: Epoch   3 Batch 2450/3125   train_loss = 0.857\\n\",\n      \"2018-09-14T15:28:04.202076: Epoch   3 Batch 2500/3125   train_loss = 0.733\\n\",\n      \"2018-09-14T15:28:07.957958: Epoch   3 Batch 2550/3125   train_loss = 0.882\\n\",\n      \"2018-09-14T15:28:11.746797: Epoch   3 Batch 2600/3125   train_loss = 0.778\\n\",\n      \"2018-09-14T15:28:15.580586: Epoch   3 Batch 2650/3125   train_loss = 0.706\\n\",\n      \"2018-09-14T15:28:19.393435: Epoch   3 Batch 2700/3125   train_loss = 0.886\\n\",\n      \"2018-09-14T15:28:23.235244: Epoch   3 Batch 2750/3125   train_loss = 0.931\\n\",\n      \"2018-09-14T15:28:27.021067: Epoch   3 Batch 2800/3125   train_loss = 0.974\\n\",\n      \"2018-09-14T15:28:30.125290: Epoch   3 Batch 2850/3125   train_loss = 0.811\\n\",\n      \"2018-09-14T15:28:33.192540: Epoch   3 Batch 2900/3125   train_loss = 0.755\\n\",\n      \"2018-09-14T15:28:36.269807: Epoch   3 Batch 2950/3125   train_loss = 0.927\\n\",\n      \"2018-09-14T15:28:39.238092: Epoch   3 Batch 3000/3125   train_loss = 0.901\\n\",\n      \"2018-09-14T15:28:42.279362: Epoch   3 Batch 3050/3125   train_loss = 0.735\\n\",\n      \"2018-09-14T15:28:45.240670: Epoch   3 Batch 3100/3125   train_loss = 0.969\\n\",\n      \"2018-09-14T15:28:46.711851: Epoch   3 Batch    0/781   test_loss = 0.817\\n\",\n      \"2018-09-14T15:28:48.660726: Epoch   3 Batch   50/781   test_loss = 0.802\\n\",\n      \"2018-09-14T15:28:50.439706: Epoch   3 Batch  100/781   test_loss = 0.975\\n\",\n      \"2018-09-14T15:28:52.208697: Epoch   3 Batch  150/781   test_loss = 0.838\\n\",\n      \"2018-09-14T15:28:53.924749: Epoch   3 Batch  200/781   test_loss = 0.823\\n\",\n      \"2018-09-14T15:28:55.694708: Epoch   3 Batch  250/781   test_loss = 0.798\\n\",\n      \"2018-09-14T15:28:57.549653: Epoch   3 Batch  300/781   test_loss = 0.777\\n\",\n      \"2018-09-14T15:28:59.284662: Epoch   3 Batch  350/781   test_loss = 0.837\\n\",\n      \"2018-09-14T15:29:00.997685: Epoch   3 Batch  400/781   test_loss = 0.866\\n\",\n      \"2018-09-14T15:29:02.825642: Epoch   3 Batch  450/781   test_loss = 0.796\\n\",\n      \"2018-09-14T15:29:04.559682: Epoch   3 Batch  500/781   test_loss = 0.734\\n\",\n      \"2018-09-14T15:29:06.265681: Epoch   3 Batch  550/781   test_loss = 0.775\\n\",\n      \"2018-09-14T15:29:08.067664: Epoch   3 Batch  600/781   test_loss = 0.852\\n\",\n      \"2018-09-14T15:29:09.866637: Epoch   3 Batch  650/781   test_loss = 0.726\\n\",\n      \"2018-09-14T15:29:11.713575: Epoch   3 Batch  700/781   test_loss = 0.852\\n\",\n      \"2018-09-14T15:29:13.557529: Epoch   3 Batch  750/781   test_loss = 0.805\\n\",\n      \"2018-09-14T15:29:16.325972: Epoch   4 Batch    0/3125   train_loss = 0.888\\n\",\n      \"2018-09-14T15:29:21.754875: Epoch   4 Batch   50/3125   train_loss = 0.812\\n\",\n      \"2018-09-14T15:29:26.908914: Epoch   4 Batch  100/3125   train_loss = 0.872\\n\",\n      \"2018-09-14T15:29:32.155944: Epoch   4 Batch  150/3125   train_loss = 0.821\\n\",\n      \"2018-09-14T15:29:37.389928: Epoch   4 Batch  200/3125   train_loss = 0.950\\n\",\n      \"2018-09-14T15:29:42.621945: Epoch   4 Batch  250/3125   train_loss = 0.747\\n\",\n      \"2018-09-14T15:29:47.799022: Epoch   4 Batch  300/3125   train_loss = 0.985\\n\",\n      \"2018-09-14T15:29:53.039034: Epoch   4 Batch  350/3125   train_loss = 0.767\\n\",\n      \"2018-09-14T15:29:58.453916: Epoch   4 Batch  400/3125   train_loss = 0.857\\n\",\n      \"2018-09-14T15:30:03.756921: Epoch   4 Batch  450/3125   train_loss = 0.772\\n\",\n      \"2018-09-14T15:30:09.035886: Epoch   4 Batch  500/3125   train_loss = 0.620\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"2018-09-14T15:30:14.271929: Epoch   4 Batch  550/3125   train_loss = 0.791\\n\",\n      \"2018-09-14T15:30:19.715795: Epoch   4 Batch  600/3125   train_loss = 0.748\\n\",\n      \"2018-09-14T15:30:24.334161: Epoch   4 Batch  650/3125   train_loss = 0.819\\n\",\n      \"2018-09-14T15:30:29.016491: Epoch   4 Batch  700/3125   train_loss = 0.821\\n\",\n      \"2018-09-14T15:30:33.808751: Epoch   4 Batch  750/3125   train_loss = 0.755\\n\",\n      \"2018-09-14T15:30:38.886883: Epoch   4 Batch  800/3125   train_loss = 0.681\\n\",\n      \"2018-09-14T15:30:43.818047: Epoch   4 Batch  850/3125   train_loss = 0.862\\n\",\n      \"2018-09-14T15:30:48.872166: Epoch   4 Batch  900/3125   train_loss = 0.765\\n\",\n      \"2018-09-14T15:30:54.565912: Epoch   4 Batch  950/3125   train_loss = 0.777\\n\",\n      \"2018-09-14T15:31:00.504526: Epoch   4 Batch 1000/3125   train_loss = 0.853\\n\",\n      \"2018-09-14T15:31:06.372210: Epoch   4 Batch 1050/3125   train_loss = 0.739\\n\",\n      \"2018-09-14T15:31:12.276819: Epoch   4 Batch 1100/3125   train_loss = 0.732\\n\",\n      \"2018-09-14T15:31:18.005545: Epoch   4 Batch 1150/3125   train_loss = 0.762\\n\",\n      \"2018-09-14T15:31:22.870797: Epoch   4 Batch 1200/3125   train_loss = 0.842\\n\",\n      \"2018-09-14T15:31:27.452180: Epoch   4 Batch 1250/3125   train_loss = 0.826\\n\",\n      \"2018-09-14T15:31:31.120085: Epoch   4 Batch 1300/3125   train_loss = 0.756\\n\",\n      \"2018-09-14T15:31:34.396199: Epoch   4 Batch 1350/3125   train_loss = 0.735\\n\",\n      \"2018-09-14T15:31:37.130654: Epoch   4 Batch 1400/3125   train_loss = 0.788\\n\",\n      \"2018-09-14T15:31:39.594234: Epoch   4 Batch 1450/3125   train_loss = 0.797\\n\",\n      \"2018-09-14T15:31:41.957902: Epoch   4 Batch 1500/3125   train_loss = 0.841\\n\",\n      \"2018-09-14T15:31:45.687787: Epoch   4 Batch 1550/3125   train_loss = 0.739\\n\",\n      \"2018-09-14T15:31:50.679916: Epoch   4 Batch 1600/3125   train_loss = 0.727\\n\",\n      \"2018-09-14T15:31:55.699078: Epoch   4 Batch 1650/3125   train_loss = 0.728\\n\",\n      \"2018-09-14T15:32:00.895082: Epoch   4 Batch 1700/3125   train_loss = 0.771\\n\",\n      \"2018-09-14T15:32:06.159079: Epoch   4 Batch 1750/3125   train_loss = 0.722\\n\",\n      \"2018-09-14T15:32:10.362704: Epoch   4 Batch 1800/3125   train_loss = 0.709\\n\",\n      \"2018-09-14T15:32:13.596859: Epoch   4 Batch 1850/3125   train_loss = 0.730\\n\",\n      \"2018-09-14T15:32:16.689078: Epoch   4 Batch 1900/3125   train_loss = 0.634\\n\",\n      \"2018-09-14T15:32:19.281600: Epoch   4 Batch 1950/3125   train_loss = 0.765\\n\",\n      \"2018-09-14T15:32:21.647250: Epoch   4 Batch 2000/3125   train_loss = 0.930\\n\",\n      \"2018-09-14T15:32:24.036888: Epoch   4 Batch 2050/3125   train_loss = 0.826\\n\",\n      \"2018-09-14T15:32:26.519680: Epoch   4 Batch 2100/3125   train_loss = 0.770\\n\",\n      \"2018-09-14T15:32:29.047238: Epoch   4 Batch 2150/3125   train_loss = 0.795\\n\",\n      \"2018-09-14T15:32:31.647754: Epoch   4 Batch 2200/3125   train_loss = 0.791\\n\",\n      \"2018-09-14T15:32:34.361207: Epoch   4 Batch 2250/3125   train_loss = 0.920\\n\",\n      \"2018-09-14T15:32:37.501429: Epoch   4 Batch 2300/3125   train_loss = 0.772\\n\",\n      \"2018-09-14T15:32:43.457026: Epoch   4 Batch 2350/3125   train_loss = 0.895\\n\",\n      \"2018-09-14T15:32:47.524682: Epoch   4 Batch 2400/3125   train_loss = 0.787\\n\",\n      \"2018-09-14T15:32:52.618807: Epoch   4 Batch 2450/3125   train_loss = 0.847\\n\",\n      \"2018-09-14T15:32:57.647939: Epoch   4 Batch 2500/3125   train_loss = 0.724\\n\",\n      \"2018-09-14T15:33:02.440195: Epoch   4 Batch 2550/3125   train_loss = 0.878\\n\",\n      \"2018-09-14T15:33:05.938200: Epoch   4 Batch 2600/3125   train_loss = 0.768\\n\",\n      \"2018-09-14T15:33:09.412219: Epoch   4 Batch 2650/3125   train_loss = 0.700\\n\",\n      \"2018-09-14T15:33:12.676357: Epoch   4 Batch 2700/3125   train_loss = 0.883\\n\",\n      \"2018-09-14T15:33:16.096407: Epoch   4 Batch 2750/3125   train_loss = 0.913\\n\",\n      \"2018-09-14T15:33:21.820152: Epoch   4 Batch 2800/3125   train_loss = 0.959\\n\",\n      \"2018-09-14T15:33:27.594859: Epoch   4 Batch 2850/3125   train_loss = 0.816\\n\",\n      \"2018-09-14T15:33:33.413541: Epoch   4 Batch 2900/3125   train_loss = 0.713\\n\",\n      \"2018-09-14T15:33:39.301154: Epoch   4 Batch 2950/3125   train_loss = 0.890\\n\",\n      \"2018-09-14T15:33:44.963953: Epoch   4 Batch 3000/3125   train_loss = 0.884\\n\",\n      \"2018-09-14T15:33:50.223929: Epoch   4 Batch 3050/3125   train_loss = 0.708\\n\",\n      \"2018-09-14T15:33:54.874277: Epoch   4 Batch 3100/3125   train_loss = 0.946\\n\",\n      \"2018-09-14T15:33:57.452819: Epoch   4 Batch    0/781   test_loss = 0.825\\n\",\n      \"2018-09-14T15:33:59.345721: Epoch   4 Batch   50/781   test_loss = 0.779\\n\",\n      \"2018-09-14T15:34:01.333590: Epoch   4 Batch  100/781   test_loss = 0.947\\n\",\n      \"2018-09-14T15:34:03.147583: Epoch   4 Batch  150/781   test_loss = 0.811\\n\",\n      \"2018-09-14T15:34:04.919550: Epoch   4 Batch  200/781   test_loss = 0.797\\n\",\n      \"2018-09-14T15:34:06.714525: Epoch   4 Batch  250/781   test_loss = 0.784\\n\",\n      \"2018-09-14T15:34:08.498509: Epoch   4 Batch  300/781   test_loss = 0.755\\n\",\n      \"2018-09-14T15:34:10.298476: Epoch   4 Batch  350/781   test_loss = 0.822\\n\",\n      \"2018-09-14T15:34:12.156420: Epoch   4 Batch  400/781   test_loss = 0.827\\n\",\n      \"2018-09-14T15:34:13.933431: Epoch   4 Batch  450/781   test_loss = 0.786\\n\",\n      \"2018-09-14T15:34:15.785347: Epoch   4 Batch  500/781   test_loss = 0.718\\n\",\n      \"2018-09-14T15:34:17.568328: Epoch   4 Batch  550/781   test_loss = 0.764\\n\",\n      \"2018-09-14T15:34:19.427269: Epoch   4 Batch  600/781   test_loss = 0.849\\n\",\n      \"2018-09-14T15:34:21.344205: Epoch   4 Batch  650/781   test_loss = 0.697\\n\",\n      \"2018-09-14T15:34:23.180135: Epoch   4 Batch  700/781   test_loss = 0.842\\n\",\n      \"2018-09-14T15:34:24.983118: Epoch   4 Batch  750/781   test_loss = 0.792\\n\",\n      \"Model Trained and Saved\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"%matplotlib inline\\n\",\n    \"%config InlineBackend.figure_format = 'retina'\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"import time\\n\",\n    \"import datetime\\n\",\n    \"\\n\",\n    \"losses = {'train':[], 'test':[]}\\n\",\n    \"\\n\",\n    \"with tf.Session(graph=train_graph) as sess:\\n\",\n    \"    \\n\",\n    \"    #搜集数据给tensorBoard用\\n\",\n    \"    # Keep track of gradient values and sparsity\\n\",\n    \"    grad_summaries = []\\n\",\n    \"    for g, v in gradients:\\n\",\n    \"        if g is not None:\\n\",\n    \"            grad_hist_summary = tf.summary.histogram(\\\"{}/grad/hist\\\".format(v.name.replace(':', '_')), g)\\n\",\n    \"            # tf.nn.zero_fraction 用于计算矩阵中 0 所占的比重，也就是计算矩阵的稀疏程度\\n\",\n    \"            sparsity_summary = tf.summary.scalar(\\\"{}/grad/sparsity\\\".format(v.name.replace(':', '_')), tf.nn.zero_fraction(g))\\n\",\n    \"            grad_summaries.append(grad_hist_summary)\\n\",\n    \"            grad_summaries.append(sparsity_summary)\\n\",\n    \"    grad_summaries_merged = tf.summary.merge(grad_summaries)\\n\",\n    \"        \\n\",\n    \"    # Output directory for models and summaries\\n\",\n    \"    timestamp = str(int(time.time()))\\n\",\n    \"    out_dir = os.path.abspath(os.path.join(os.path.curdir, \\\"runs\\\", timestamp))\\n\",\n    \"    print(\\\"Writing to {}\\\\n\\\".format(out_dir))\\n\",\n    \"     \\n\",\n    \"    # Summaries for loss and accuracy\\n\",\n    \"    loss_summary = tf.summary.scalar(\\\"loss\\\", loss)\\n\",\n    \"\\n\",\n    \"    # Train Summaries\\n\",\n    \"    train_summary_op = tf.summary.merge([loss_summary, grad_summaries_merged])\\n\",\n    \"    train_summary_dir = os.path.join(out_dir, \\\"summaries\\\", \\\"train\\\")\\n\",\n    \"    train_summary_writer = tf.summary.FileWriter(train_summary_dir, sess.graph)\\n\",\n    \"\\n\",\n    \"    # Inference summaries\\n\",\n    \"    inference_summary_op = tf.summary.merge([loss_summary])\\n\",\n    \"    inference_summary_dir = os.path.join(out_dir, \\\"summaries\\\", \\\"inference\\\")\\n\",\n    \"    inference_summary_writer = tf.summary.FileWriter(inference_summary_dir, sess.graph)\\n\",\n    \"\\n\",\n    \"    sess.run(tf.global_variables_initializer())\\n\",\n    \"    saver = tf.train.Saver()\\n\",\n    \"    for epoch_i in range(num_epochs):\\n\",\n    \"        \\n\",\n    \"        #将数据集分成训练集和测试集，随机种子不固定\\n\",\n    \"        train_X,test_X, train_y, test_y = train_test_split(features,  \\n\",\n    \"                                                           targets_values,  \\n\",\n    \"                                                           test_size = 0.2,  \\n\",\n    \"                                                           random_state = 0)  \\n\",\n    \"        \\n\",\n    \"        train_batches = get_batches(train_X, train_y, batch_size)\\n\",\n    \"        test_batches = get_batches(test_X, test_y, batch_size)\\n\",\n    \"    \\n\",\n    \"        #训练的迭代，保存训练损失\\n\",\n    \"        for batch_i in range(len(train_X) // batch_size):\\n\",\n    \"            x, y = next(train_batches)\\n\",\n    \"\\n\",\n    \"            categories = np.zeros([batch_size, 18])\\n\",\n    \"            for i in range(batch_size):\\n\",\n    \"                categories[i] = x.take(6,1)[i]\\n\",\n    \"\\n\",\n    \"            titles = np.zeros([batch_size, sentences_size])\\n\",\n    \"            for i in range(batch_size):\\n\",\n    \"                titles[i] = x.take(5,1)[i]\\n\",\n    \"\\n\",\n    \"            feed = {\\n\",\n    \"                uid: np.reshape(x.take(0,1), [batch_size, 1]),\\n\",\n    \"                user_gender: np.reshape(x.take(2,1), [batch_size, 1]),\\n\",\n    \"                user_age: np.reshape(x.take(3,1), [batch_size, 1]),\\n\",\n    \"                user_job: np.reshape(x.take(4,1), [batch_size, 1]),\\n\",\n    \"                movie_id: np.reshape(x.take(1,1), [batch_size, 1]),\\n\",\n    \"                movie_categories: categories,  #x.take(6,1)\\n\",\n    \"                movie_titles: titles,  #x.take(5,1)\\n\",\n    \"                targets: np.reshape(y, [batch_size, 1]),\\n\",\n    \"                dropout_keep_prob: dropout_keep, #dropout_keep\\n\",\n    \"                lr: learning_rate}\\n\",\n    \"\\n\",\n    \"            step, train_loss, summaries, _ = sess.run([global_step, loss, train_summary_op, train_op], feed)  #cost\\n\",\n    \"            losses['train'].append(train_loss)\\n\",\n    \"            train_summary_writer.add_summary(summaries, step)  #\\n\",\n    \"            \\n\",\n    \"            # Show every <show_every_n_batches> batches\\n\",\n    \"            if batch_i % show_every_n_batches == 0:\\n\",\n    \"                time_str = datetime.datetime.now().isoformat()\\n\",\n    \"                print('{}: Epoch {:>3} Batch {:>4}/{}   train_loss = {:.3f}'.format(\\n\",\n    \"                    time_str,\\n\",\n    \"                    epoch_i,\\n\",\n    \"                    batch_i,\\n\",\n    \"                    (len(train_X) // batch_size),\\n\",\n    \"                    train_loss))\\n\",\n    \"                \\n\",\n    \"        #使用测试数据的迭代\\n\",\n    \"        for batch_i  in range(len(test_X) // batch_size):\\n\",\n    \"            x, y = next(test_batches)\\n\",\n    \"            \\n\",\n    \"            categories = np.zeros([batch_size, 18])\\n\",\n    \"            for i in range(batch_size):\\n\",\n    \"                categories[i] = x.take(6,1)[i]\\n\",\n    \"\\n\",\n    \"            titles = np.zeros([batch_size, sentences_size])\\n\",\n    \"            for i in range(batch_size):\\n\",\n    \"                titles[i] = x.take(5,1)[i]\\n\",\n    \"\\n\",\n    \"            feed = {\\n\",\n    \"                uid: np.reshape(x.take(0,1), [batch_size, 1]),\\n\",\n    \"                user_gender: np.reshape(x.take(2,1), [batch_size, 1]),\\n\",\n    \"                user_age: np.reshape(x.take(3,1), [batch_size, 1]),\\n\",\n    \"                user_job: np.reshape(x.take(4,1), [batch_size, 1]),\\n\",\n    \"                movie_id: np.reshape(x.take(1,1), [batch_size, 1]),\\n\",\n    \"                movie_categories: categories,  #x.take(6,1)\\n\",\n    \"                movie_titles: titles,  #x.take(5,1)\\n\",\n    \"                targets: np.reshape(y, [batch_size, 1]),\\n\",\n    \"                dropout_keep_prob: 1,\\n\",\n    \"                lr: learning_rate}\\n\",\n    \"            \\n\",\n    \"            step, test_loss, summaries = sess.run([global_step, loss, inference_summary_op], feed)  #cost\\n\",\n    \"\\n\",\n    \"            #保存测试损失\\n\",\n    \"            losses['test'].append(test_loss)\\n\",\n    \"            inference_summary_writer.add_summary(summaries, step)  #\\n\",\n    \"\\n\",\n    \"            time_str = datetime.datetime.now().isoformat()\\n\",\n    \"            if batch_i % show_every_n_batches == 0:\\n\",\n    \"                print('{}: Epoch {:>3} Batch {:>4}/{}   test_loss = {:.3f}'.format(\\n\",\n    \"                    time_str,\\n\",\n    \"                    epoch_i,\\n\",\n    \"                    batch_i,\\n\",\n    \"                    (len(test_X) // batch_size),\\n\",\n    \"                    test_loss))\\n\",\n    \"\\n\",\n    \"    # Save Model\\n\",\n    \"    saver.save(sess, save_dir)  #, global_step=epoch_i\\n\",\n    \"    print('Model Trained and Saved')\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 在 TensorBoard 中查看可视化结果\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"tensorboard --logdir /PATH_TO_CODE/runs/1513402825/summaries/\\n\",\n    \"\\n\",\n    \"<img src=\\\"assets/loss.png\\\"/>\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 保存参数\\n\",\n    \"保存`save_dir` 在生成预测时使用。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"save_params((save_dir))\\n\",\n    \"\\n\",\n    \"load_dir = load_params()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 显示训练Loss\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAvIAAAH0CAYAAABfKsnMAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAWJQAAFiUBSVIk8AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMS4yLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvNQv5yAAAIABJREFUeJzs3Xd8VfX9x/H3N5MkhEAIe+89JAwZKriooIgDq1VrraOtWiduqNQ6UGtb18/VirRqVRSRgoqKyJAdUGTIDhB2CISQndzv748k14QkEODce3LC6/l45HHvPefccz6J3PZ9v+c7jLVWAAAAALwlxO0CAAAAAJw4gjwAAADgQQR5AAAAwIMI8gAAAIAHEeQBAAAADyLIAwAAAB5EkAcAAAA8iCAPAAAAeBBBHgAAAPAggjwAAADgQQR5AAAAwIMI8gAAAIAHEeQBAAAADyLIAwAAAB5EkAcAAAA8iCAPAAAAeFCY2wUEgjFmq6Q6kpJdLgUAAAA1W2tJh621bYJ94RoZ5CXViYqKiu/SpUu824UAAACg5lq3bp2ys7NduXZNDfLJXbp0iU9KSnK7DgAAANRgiYmJWrFiRbIb16aPPAAAAOBBBHkAAADAgwjyAAAAgAcR5AEAAAAPIsgDAAAAHkSQBwAAADyIIA8AAAB4UE2dRx4AAFSBz+dTWlqaMjIylJubK2ut2yUBrjHGKDIyUrGxsYqPj1dISPVu8ybIAwBwmvL5fNqxY4eysrLcLgWoFqy1ysnJUU5OjjIzM9WiRYtqHeYJ8gAAnKbS0tKUlZWlsLAwNW7cWDExMdU6tACB5vP5lJmZqT179igrK0tpaWlKSEhwu6xK8WkFAOA0lZGRIUlq3LixYmNjCfE47YWEhCg2NlaNGzeW9PNnpLriEwsAwGkqNzdXkhQTE+NyJUD1UvKZKPmMVFcEeQAATlMlA1tpiQfKMsZIUrUf/M0nFwAAACilJMhXdwR5AAAAwIOYtcYh1loV+n6+/RIWynckAAAABA5p0yE5+T61f/RztX/0c3WfMMvtcgAAgIccOXJExhhdfPHFp3yuvn37qnbt2g5U5ZyXX35Zxhh99NFHbpdSoxDkAQDAacsYc0I/b7/9ttslA350rQEAAKetxx57rNy2f/zjH0pPT9ddd92lunXrltnXu3fvgNQRExOjdevWOdKS/vHHH1f7aRPhDII8AAA4bU2YMKHctrffflvp6em6++671bp166DUYYxR586dHTlXq1atHDkPqj+61gAAAJygkn7o2dnZGjdunNq3b6+IiAjdcccdkqQDBw5o4sSJOuecc9S0aVNFRESoUaNGuuKKK7RixYpy56usj/zYsWNljNHy5cv17rvvKjExUVFRUUpISND111+vffv2VVpbaTNmzJAxRn/961+1dOlSDR8+XHFxcapdu7bOP/98JSUlVfh7bt++Xdddd50SEhIUHR2txMREffDBB2XOd6oWLVqkSy+9VAkJCYqMjFTbtm119913a//+/eWO3bVrl+666y517NhR0dHRqlevnrp06aKbbrpJO3bs8B/n8/n05ptvasCAAUpISFBUVJRatmypESNGaNq0aadcc3VBi3wAVPO1AwAAgAN8Pp8uvvhirV+/XsOHD1f9+vX9reErV67UY489pqFDh+rSSy9VXFyctm7dqunTp2vGjBn66quvdPbZZ1f5Ws8++6xmzJihSy+9VMOGDdN3332nd955R6tXr9by5csVGhpapfMsWLBA48aN09ChQ3XLLbdoy5YtmjZtmoYOHarVq1eXac1PSUnRwIEDtWvXLp133nnq16+fdu7cqRtuuEEXXXTRif2xKvHhhx/q2muvVWhoqMaMGaPmzZtr8eLFeuGFF/Tpp5/qu+++U9OmTSVJhw8f1oABA7Rr1y5deOGFGj16tPLz87Vt2zZ99NFHuv7669WiRQtJ0t13362XXnpJHTp00DXXXKPatWtr165dWrJkiaZNm6bRo0c7Ur/bCPIO8ci6AQAAwCHZ2dnKyMjQ6tWry/Wl79Onj/bs2aN69eqV2b5582YNGDBA9913n5YtW1bla82ePVvff/+9OnbsKKlo2uvRo0dr+vTpmjVrlkaMGFGl83z66aeaMmWKrrzySv+2559/XmPHjtUrr7yiZ5991r/9vvvu065du/T4449r/Pjx/u233XabhgwZUuXaK5OWlqabb75ZxhgtWLBAffv29e8bP368nnjiCd1xxx2aOnWqJGnmzJlKSUnRuHHj9Je//KXMuXJyclRQUCDp59b4du3a6ccff1RkZGSZY1NTU0+59uqCIA8AACrU+qGZbpdQZckTR7py3aeffrpciJek+Pj4Co9v166dRo0apUmTJunAgQOqX79+la5z//33+0O8VNSn/uabb9b06dO1dOnSKgf54cOHlwnxknTrrbdq7NixWrp0qX9bRkaGpk6dqoYNG+r+++8vc/yZZ56pMWPG6P3336/SNSszZcoUZWRk6JZbbikT4iXp0Ucf1T//+U99+umnSk1NVUJCgn9fVFRUuXPVqlWrzGtjjCIiIiq8U1H6XF5HH3kAAICT1L9//0r3zZkzR5dffrmaN2+uiIgI/xSWkyZNklTU37uqjg66kvzdSA4ePHhK54mNjVVcXFyZ86xevVoFBQVKTEwsF5IlOdIiXzJW4Nxzzy23r1atWho0aJB8Pp9++OEHSdIFF1ygBg0aaPz48br44ov1yiuv6Pvvv5fP5yvz3pCQEF199dVat26dunfvrvHjx+vLL79URkbGKddc3dAiDwAAcBKio6MVGxtb4b533nlHv/71r1W7dm1dcMEFatOmjWJiYmSM0ZdffqlFixad0BSRFbX6h4UVxbjCwsJTOk/JuUqfJz09XZLUqFGjCo+vbPuJKLlGkyZNKtxfsv3QoUOSilrSlyxZogkTJmjGjBmaOXOmv5Y777xTDz74oL8F/vXXX1fnzp01efJkPfHEE5Kk8PBwjRo1Ss8//3yNmdmHIB8AjHUFANQEbnVX8QpzjAFy48aNU2xsrFauXKm2bduW2bdx40YtWrQo0OWdkjp16kiS9u7dW+H+yrafiLi4OEnSnj17Kty/e/fuMsdJUps2bTR58mT5fD6tXr1as2fP1ssvv6xHH31UoaGhevDBByUVhfYHHnhADzzwgPbs2aP58+frnXfe0ccff6yffvpJP/zwQ5UHCFdndK0BAABwUEFBgbZt26bevXuXC/H5+fnVPsRLUo8ePRQWFqakpCTl5OSU279gwYJTvsYZZ5whSfr222/L7cvNzdWiRYtkjKlwEa6QkBD17NlT99xzj2bMmCFJlU4r2bhxY40ZM0affvqp+vfvrzVr1mjTpk2nXH91QJAHAABwUFhYmJo1a6Y1a9aUmSHF5/Pp4Ycf1tatW12srmpiY2M1evRo7du3T88991yZfUuWLNGUKVNO+RpXXXWVateurUmTJvn7wZd4+umntXv3bv/88pL0/fffKyUlpdx5Su4OREdHSyqak3/u3LnljsvNzfV356lowKwX0bUGAADAYffcc4/Gjh2rnj176vLLL1dISIjmzp2r5ORkXXTRRfr888/dLvG4nn/+eS1YsEB/+tOfNG/ePPXr108pKSn68MMPdckll2jatGkKCTn5NuH4+Hi98cYbuv766zVw4ECNGTNGzZo10+LFizVnzhy1aNFCL7/8sv/4GTNm6LHHHtOQIUPUqVMnJSQkaNu2bfr0008VGhqqsWPHSirqUz906FC1a9dO/fv3V8uWLZWVlaUvvvhCGzdu1K9+9Su1bNnylP8+1QFBHgAAwGH33nuvateurZdffllvvfWWYmJiNHToUH344Yd68803PRHkW7ZsqcWLF+vhhx/WrFmztGDBAnXt2lWTJ09Wdna2pk2b5u9Lf7KuueYatWzZUhMnTtSMGTOUkZGhpk2b6o9//KPGjRunhg0b+o8dNWqU9u/fr/nz52vq1Kk6cuSImjRpoksuuUT33Xeff0ae+vXr66mnntKcOXM0f/587d+/X3Xq1FGHDh304IMP6oYbbjilmqsTYx1YhtQYc6WkcyT1ltRLUqykd62111Xx/f+S9Nvilx2stafUcckYk9SnT58+lS03HAg5+YXqPP4LSVJEaIg2POnMimcAAATKunXrJEldunRxuRJ4zV133aUXX3xRCxYs0ODBg90uJyCq+vlITEzUihUrVlhrE4NRV2lO9ZEfJ+kOFQX5nSfyRmPMJSoK8UccqsUVrOwKAABqmormul+2bJneeOMNNW3aVAMGDHChKpRwqmvNPZJSJG1SUcv8nKq8yRjTQNKbkj6Q1Lj4vQAAAKgGunTpoj59+qhbt26qVauW1q9f7+8W9Morr/jnsoc7HPnrW2v9wf1Yc6pW4I3ix9slfexELQAAAHDGbbfdps8++0zvvvuujhw5onr16uniiy/WAw88oEGDBrld3mnPta9RxpjfSBot6TJr7YET/AIAAACAAHv66af19NNPu10GKuFKkDfGtJL0gqR3rLUVz95ftfNUNpq188me0wmWtV0BAAAQYEFfEMoYEyJpsooGt94Z7OsHihF3FAAAABA8brTI36OiQa0jrbUHT+VElU3zU9xS3+dUzg0AAIDTkxPTswdDUFvkjTEdJD0paZK19rNgXhsAAJRVMj7N5/O5XAlQvZQE+eo+hjPYXWu6SYqUdKMxxpb+0c9TT24s3jY6yLUBAHBaiYyMlCRlZma6XAlQvZR8Jko+I9VVsLvWJEv6VyX7RqpoLvkpkg4XHwsAAAIkNjZWOTk52rNnjyQpJiZGxphq3woJBIK1VtZaZWZm+j8TsbGxLld1bEEN8tba7yXdXNE+Y8y3Kgryj1hrNwWzLqd5pFsVAOA0Fx8fr8zMTGVlZSklJcXtcoBqJTo6WvHx8W6XcUyOBPnibjAlXWEaFz8ONMa8Xfw81Vo71olrVVc0XgAAvCYkJEQtWrRQWlqaMjIylJub65lBfkAgGGMUGRmp2NhYxcfHKyQk6BM8nhCnWuR7S7rhqG1ti38kaZukGh3kAQDwopCQECUkJCghIcHtUgCcIEe+ZlhrJ1hrzTF+WlfhHEOLj/V0txoAAAAgGKr3/QIAAAAAFSLIBwC9CwEAABBoBHmHMNYVAAAAwUSQBwAAADyIIA8AAAB4EEEeAAAA8CCCfACwmAYAAAACjSDvEMPSrgAAAAgigjwAAADgQQR5AAAAwIMI8gAAAIAHEeQDgKGuAAAACDSCvEMY6goAAIBgIsgDAAAAHkSQBwAAADyIIA8AAAB4EEE+AFjYFQAAAIFGkHcIC7sCAAAgmAjyAAAAgAcR5AEAAAAPIsgDAAAAHkSQBwAAADyIIA8AAAB4EEHeIYZpawAAABBEBHkAAADAgwjyAAAAgAcR5AEAAAAPIsgHiLXW7RIAAABQgxHkAQAAAA8iyAMAAAAeRJAHAAAAPIggDwAAAHgQQT5AGOsKAACAQCLIO4jFXQEAABAsBHkAAADAgwjyAAAAgAcR5AEAAAAPIsgHCGNdAQAAEEgEeQcx1hUAAADBQpAHAAAAPIggDwAAAHiQI0HeGHOlMeYlY8x8Y8xhY4w1xrxTybEdjDEPGmO+McbsMMbkGWP2GmM+NcYMc6IeAAAAoKYLc+g84yT1knREUoqkzsc49i+SfilpraTPJKVJ6iRplKRRxpi7rLUvOlQXAAAAUCM5FeTvUVGA3yTpHElzjnHsF5KesdauLL3RGHOOpK8kPWeMmWKt3e1Qba6w1orhrwAAAAgUR7rWWGvnWGs32qL0erxj3z46xBdvnyvpW0kRkgY5UVewGUNwBwAAQHBUt8Gu+cWPBa5WAQAAAFRzTnWtOWXGmFaSzpOUJWleFd+TVMmuY/XRBwAAADyvWgR5Y0ykpHclRUp6wFp70OWSAAAAgGrN9SBvjAmV9B9JgyV9IOmvVX2vtTaxknMmSerjSIEn6biDBQAAAIBT4Gof+eIQ/46kMZI+lHRdVQbMVlcMdQUAAECwuBbkjTFhkv4r6WpJ70n6lbWWQa4AAABAFbjStcYYE6GiFvhLJf1b0o3WWp8btQAAAABeFPQW+eKBrZ+oKMT/S4R4AAAA4IQ50iJvjBktaXTxy8bFjwONMW8XP0+11o4tfv6apBGSUiXtlPSnChZS+tZa+60TtbnFuz39AQAA4AVOda3pLemGo7a1Lf6RpG2SSoJ8m+LHBEl/OsY5v3WotqBhYVcAAAAEiyNB3lo7QdKEKh471IlrAgAAAKczV6efBAAAAHByCPIAAACABxHkA8SytisAAAACiCDvIMPargAAAAgSgjwAAADgQQR5AAAAwIMI8gAAAIAHEeQDhJVdAQAAEEgEeScx1hUAAABBQpAHAAAAPIggDwAAAHgQQR4AAADwIII8AAAA4EEEeQAAAMCDCPIOYtIaAAAABAtBHgAAAPAggjwAAADgQQR5AAAAwIMI8gFirdsVAAAAoCYjyDvIMNoVAAAAQUKQBwAAADyIIA8AAAB4EEEeAAAA8CCCfIBYMdoVAAAAgUOQd5BhbVcAAAAECUEeAAAA8CCCPAAAAOBBBHkAAADAgwjyAcLKrgAAAAgkgryDWNkVAAAAwUKQBwAAADyIIA8AAAB4EEEeAAAA8CCCPAAAAOBBBPkAYdIaAAAABBJB3kFMWgMAAIBgIcgDAAAAHkSQBwAAADyIIA8AAAB4EEE+QKxluCsAAAAChyDvIGMY7goAAIDgcCTIG2OuNMa8ZIyZb4w5bIyxxph3jvOeQcaYz4wxacaYLGPMKmPM3caYUCdqAgAAAGqyMIfOM05SL0lHJKVI6nysg40xl0r6WFKOpA8kpUm6RNLfJQ2WNMahugAAAIAayamuNfdI6iipjqQ/HOtAY0wdSW9KKpQ01Fp7k7X2fkm9JS2SdKUx5mqH6gIAAABqJEeCvLV2jrV2o63aCM8rJTWQ9L61dnmpc+SoqGVfOs6XAS9gqCsAAAACyY3BrucWP35Rwb55krIkDTLGRAavJGcw1BUAAADB4lQf+RPRqfhxw9E7rLUFxpitkrpJaitp3bFOZIxJqmTXMfvoAwAAAF7nRot8XPFjeiX7S7bXDUItAAAAgCe50SJ/PCU9VI7bzdxam1jhCYpa6vs4WRQAAABQnbjRIl/S4h5Xyf46Rx3nSSzsCgAAgEByI8ivL37sePQOY0yYpDaSCiRtCWZRjmC0KwAAAILEjSD/TfHjLyrYd7akaEkLrbW5wSsJAAAA8BY3gvxHklIlXW2M6Vuy0RhTS9ITxS9fdaEuAAAAwDMcGexqjBktaXTxy8bFjwONMW8XP0+11o6VJGvtYWPMLSoK9N8aY96XlCZplIqmpvxI0gdO1AUAAADUVE7NWtNb0g1HbWtb/CNJ2ySNLdlhrZ1mjDlH0qOSrpBUS9ImSfdKerGKK8RWb97/DQAAAFCNORLkrbUTJE04wfd8J2mEE9evLhjrCgAAgGBxo488AAAAgFNEkAcAAAA8iCAPAAAAeBBBHgAAAPAggnyAWKatAQAAQAAR5B1kDPPWAAAAIDgI8gAAAIAHEeQBAAAADyLIAwAAAB5EkA8Qy1hXAAAABBBB3kGMdQUAAECwEOQBAAAADyLIAwAAAB5EkAcAAAA8iCAfIIx1BQAAQCAR5B2Unp3vdgkAAAA4TRDkHVR6yslVKYfcKwQAAAA1HkE+QP6zaJvbJQAAAKAGI8gDAAAAHkSQBwAAADyIIB8gzFoDAACAQCLIAwAAAB5EkAcAAAA8iCAfIMbtAgAAAFCjEeQBAAAADyLIBwiDXQEAABBIBHkAAADAgwjyAAAAgAcR5AEAAAAPIsgDAAAAHkSQBwAAADyIIB8g1jJvDQAAAAKHIA8AAAB4EEE+QIxhbVcAAAAEDkEeAAAA8CCCfIDQRx4AAACBRJAHAAAAPIggDwAAAHgQQT5AGOwKAACAQCLIBwgxHgAAAIFEkAcAAAA8yNUgb4wZaYz50hiTYozJNsZsMcZMMcYMdLMuAAAAoLpzLcgbY56RNENSH0lfSHpB0gpJl0r6zhhznVu1AQAAANVdmBsXNcY0ljRW0l5JPa21+0rtGybpG0mPS3rHjfqcwFhXAAAABJJbLfKtiq+9pHSIlyRr7RxJGZIauFGYc0jyAAAACBy3gvxGSXmS+htjEkrvMMacLSlW0tduFAYAAAB4gStda6y1acaYByX9TdJaY8w0SQcktZM0StJXkn7nRm0AAACAF7gS5CXJWvsPY0yypLck3VJq1yZJbx/d5aYixpikSnZ1PvUKAQAAgOrLzVlrHpD0kaS3VdQSHyMpUdIWSe8aY551qzYnMNgVAAAAgeTWrDVDJT0j6RNr7b2ldq0wxlwmaYOk+4wxr1lrt1R2HmttYiXnT1LRtJYAAABAjeRWi/zFxY9zjt5hrc2StFRFtZ0RzKIAAAAAr3AryEcWP1Y2xWTJ9rwg1AIAAAB4jltBfn7x463GmGaldxhjLpI0WFKOpIXBLgwAAADwArdmrflIRfPEny9pnTHmE0l7JHVRUbcbI+kha+0Bl+o7ZYx1BQAAQCC5NY+8zxgzQtLtkq6WdJmkaElpkj6T9KK19ks3agMAAAC8wM155PMl/aP4p8Zh+kkAAAAEkmvzyAMAAAA4eQR5AAAAwIMI8gESGRbqdgkAAACowQjyARJCH3kAAAAEEEE+QEIY7QoAAIAAIsgDAAAAHkSQBwAAADyIIB8o9KwBAABAABHkAQAAAA8iyAeIoUkeAAAAAUSQD5CIMII8AAAAAocgHyA9m9d1uwQAAADUYAR5B12Z2NztEgAAAHCaIMg7KIzlXAEAABAkBHkAAADAgwjyAWKt2xUAAACgJiPIO8jQswYAAABBQpAPECua5AEAABA4BHlH0SQPAACA4CDIAwAAAB5EkA8QBrsCAAAgkAjyDmKwKwAAAIKFIB8gNMgDAAAgkAjyDqJBHgAAAMFCkAcAAAA8iCAfKIx2BQAAQAAR5B3EYFcAAAAEC0E+QGiPBwAAQCAR5B1kGO4KAACAICHIAwAAAB5EkA8QxroCAAAgkAjyDmKwKwAAAIKFIB8gliZ5AAAABBBB3kE0yAMAACBYCPIAAACABxHkA4SONQAAAAgkgryDDKNdAQAAECQE+QBhrCsAAAACiSAPAAAAeBBBHgAAAPAggnyA0LMGAAAAgUSQdxBjXQEAABAsrgd5Y8xZxpiPjTG7jTG5xY9fGmNGuF3bqWBlVwAAAARSmJsXN8aMk/QXSamSZkjaLSlB0hmShkr6zLXiToJhbVcAAAAEiWtB3hgzRkUh/mtJl1trM47aH+5KYadgX0aO//nu9JxjHAkAAACcGle61hhjQiQ9IylL0q+ODvGSZK3ND3php2jGqt3+5/9asNXFSgAAAFDTudUiP0hSG0kfSTpojBkpqbukHElLrbWLXKoLAAAA8AS3gny/4se9klZI6lF6pzFmnqQrrbX7j3USY0xSJbs6n3KFAAAAQDXm1qw1DYsffy8pStL5kmJV1Co/S9LZkqa4UxoAAABQ/bnVIh9a/GhU1PL+Q/HrNcaYyyRtkHSOMWbgsbrZWGsTK9pe3FLfx8mCAQAAgOrErRb5g8WPW0qFeEmStTZbRa3yktQ/qFUBAAAAHuFWkF9f/Hiokv0lQT8qCLUAAAAAnuNWkJ8nqUBSB2NMRAX7uxc/JgetIgAAAMBDXAny1tpUSR9IipP0p9L7jDEXSBouKV3SF8GvDgAAAKj+XFvZVdK9kgZIetQYc7akpZJaSbpMUqGkW6y1lXW9AQAAAE5rrgV5a+0+Y8wASeNUFN7PlJQhaaakp621i92qDQAAAKju3GyRl7U2TUUt8/e6WQcAAADgNW4NdgUAAABwCgjyAAAAgAcR5AEAAAAPIsg76MKujfzP+7aq52IlAAAAqOkI8g46q0OC/3mnxrEuVgIAAICajiDvJGP8T62LZQAAAKDmI8gHyMxVu90uAQAAADUYQd5BX63d63+enp3vYiUAAACo6QjyDtp5MMvtEgAAAHCaIMg7yJTqIw8AAAAEEkHeQSHkeAAAAAQJQd5BIbTIAwAAIEgI8g6iaw0AAACChSDvIGI8AAAAgoUg7yAa5AEAABAsBHkH0UceAAAAwUKQdxCz1gAAACBYCPJOokUeAAAAQUKQdxAt8gAAAAgWgryDyPEAAAAIFoK8g5hHHgAAAMFCkHcQMR4AAADBQpB3EA3yAAAACBaCvIPoWgMAAIBgIcg7iBgPAACAYCHIO4iVXQEAABAsBHkHkeMBAAAQLAR5BxHkAQAAECwEeQfRtQYAAADBQpAHAAAAPIgg7yBa5AEAABAsBHkHhZDjAQAAECQEeQexIBQAAACChSAPAAAAeBBBHgAAAPAggryD6FgDAACAYCHIAwAAAB5EkHcQY10BAAAQLAR5B1nrdgUAAAA4XRDkHfS7c9q5XQIAAABOEwR5B7WuH+1/Hh0R6mIlAAAAqOmqTZA3xlxvjLHFPze7Xc9JKdVHniAPAACAQKoWQd4Y00LSS5KOuF3LqTClkjz95QEAABBIrgd5Y4yRNEnSAUmvuVzOKSk9aw05HgAAAIHkepCXdKekcyXdKCnT5VpOSenZJy1N8gAAAAggV4O8MaaLpImSXrDWznOzFieYUk3yxHgAAAAEUphbFzbGhEn6j6Ttkh45yXMkVbKr88nWdSrKtsi7UQEAAABOF64FeUl/knSGpCHW2mwX63BMmT7yJHkAAAAEkCtB3hjTX0Wt8M9baxed7HmstYmVnD9JUp+TPe/JKj1rzeGcgmBfHgAAAKeRoPeRL9WlZoOk8cG+fkCZsi8LfbTKAwAAIDDcGOxaW1JHSV0k5ZRaBMpKeqz4mDeLt/3DhfpOmjkqyP+QcsidQgAAAFDjudG1JlfSvyrZ10dF/eYXSFov6aS73bjhqByvg5l5rtQBAACAmi/oQb54YOvNFe0zxkxQUZCfbK39ZzDrcoI5qkmenjUAAAAIlOqwIFSNcfRMNcxcAwAAgEAhyDvo6NhOjAcAAECgVKsgb62dYK01XuxWAwAAAARTtQryNQ09awAAABAoBHkAAADAgwjyDooODz1qC03yAAAACAyCvIPCQvlzAgAAIDjhA5BQAAAgAElEQVRIngFEH3kAAAAECkEeAAAA8CCCfADRIA8AAIBAIcgDAAAAHkSQD6D9GblulwAAAIAaiiAfQP9dut3tEgAAAFBDEeQDKDTEuF0CAAAAaiiCfAAR5AEAABAoBPkAalEv2u0SAAAAUEMR5AOoZ/M4t0sAAABADUWQDyDmkQcAAECgEOQDqH2D2m6XAAAAgBqKIO+wwe3r+5/TIg8AAIBAIcg7LDoizP88OTXTxUoAAABQkxHkHfbV2r3+509+ts7FSgAAAFCTEeQBAAAADyLIAwAAAB5EkAcAAAA8iCAPAAAAeBBBHgAAAPAggjwAAADgQQR5AAAAwIMI8gAAAIAHEeQBAAAADyLIAwAAAB5EkAcAAAA8iCAPAAAAeBBBHgAAAPAggjwAAADgQQR5AAAAwIMI8gAAAIAHEeQDzFrrdgkAAACogQjyATZvY6rbJQAAAKAGIsgH2M2Tl7ldAgAAAGoggnyA5RfStQYAAADOI8g7bHTvpm6XAAAAgNMAQd5h4y/uWm7b3sM5LlQCAACAmsyVIG+MqW+MudkY84kxZpMxJtsYk26MWWCMuckY49kvGPVrR5bb9uf/rXGhEgAAANRkYS5dd4ykVyXtljRH0nZJjSRdLumfki4yxoyxNWTuxt3ptMgDAADAWW4F+Q2SRkmaaa31lWw0xjwiaamkK1QU6j92pzxnHczMc7sEAAAA1DCudGGx1n5jrf1f6RBfvH2PpNeKXw4NemEBknwgy+0SAAAAUMNUx77o+cWPBa5WAQAAAFRjbnWtqZAxJkzSr4tfflGF45Mq2dXZsaIAAACAaqi6tchPlNRd0mfW2lluF+OkQl+NGLcLAACAaqLaBHljzJ2S7pP0k6Trq/Iea21iRT/F56hWfvefJMI8AAAAHFMtgrwx5nZJL0haK2mYtTbN5ZIc9/W6vfrXgi1ulwEAAIAawvUgb4y5W9LLklarKMTvcbmkUzbpN/0q3P7UZ9XuRgEAAAA8ytUgb4x5UNLfJX2vohC/z816nNKtWR23SwAAAEAN51qQN8aMV9Hg1iRJ51lrU92qxWlhIZX/WUe9vEALN6UqadtB5Rf6Kj0OAAAAOBZXpp80xtwg6XFJhZLmS7rTGHP0YcnW2reDXJojQsv/Ln6rUtL1q38ukSSd1SFB/7lpQLDKAgAAQA3i1jzybYofQyXdXckxcyW9HZRqHOazVZudZv7GVOUX+hQe6vpQBQAAAHiMKwnSWjvBWmuO8zPUjdqcEBNZ9e9HTEkJAACAk1GtVnatKSLCqv79qPP4L9Q0rpbqRkfo77/srU6NYys8LiMnX7G1wuXzWSUfyFSbhBhV0B0JAAAApwn6dARI/zbxVT52V3qO1u4+rJsmL9OGvRnKyS8ss/+l2RvV689f6o73VuiGSUt17vNz9ei01U6XLJ/P6n8/7NKU5TsYiAsAAFDN0SIfICEn0ViecjBbF/59nqSigbD3D++kns3r6vmvNkiSZqza7T/2vSXbNW5kF70we6PCQoz+eG4H1QoPrfC8e9Jz9NRn69QwNlIPj+ii0EqKm7N+n/7435WSpAKf1TX9W574LwEAAICgIMgHyEXdm2jxlpNfoHb+xlQt2Zqm7x48t9Jjuv5plv95ZFioLunVVJ+s3Kk+LetqaKeGkqQdaVk669k5/uNWpaRr8m/769v1+9S3dbwaxEb699387+X+5w9P/THgQX7z/iN66ONVahwXpf5t4rVy+0HdPqy92jWo7T9m8sJkfbh8h24b2l4jezYJaD0AAABeQpAPkAFtq961pjJ5BT71e/LrKh37t6826G/FLfeS9N1D56pZ3Sg98smPZY5bmpymuz9YqVlr9kqSVo6/QLXCQxUVEaqjJ9vZezhHj37yo0JDjO65oKM6Ny670JW1VsYYpWfn66a3l2n5toO69ey2uveCjpXeHSjt9/9J0sZ9RyQd1P9+2CVJStp2UHPvHyZJSs/O12PT10iSbn9vhUb2HFnheXw+q7kb9yssxGhI+4Sgjx2wxX+4xVvSFBMZqp7N6wb1+gAA4PREkA8Qn8tdzAdP/EYz/jhE8zeWX2erJMRL0hl/+UqS9MGtZ5Y7bsBTs/3Pk7Yd1NJHzteiLQfUrkFtHcnN163/TlLygUyVnnjnjXlbVC86Qn8Y2u6Y9RUU+opDfFnbDmRp0eYDmr1urwa3Tzju75mRk6+v1+3VPR/8IEl656YBGtLh+O+rTHJqphrWiVR0RNU+Gp9+v1OP/2+tJOlAZl7RttsHq1cLwjwAAAgsY6s457mXGGOS+vTp0ycpKcm1GlbvTNfFLy1w7fqBVj8mwh9cK7L+iV8oMuznVvnsvEJtST2ikS8uUOfGsTqQmaf9GbkndM3kiUUt8nkFPoWHGv20J0NXvLpQWXk/Dw6OjgjV2sd/Ue69e9Jz9MDHq1Q7MlTPXdlLa3Yd1uSFyRrVu6mGd2ssSfrv0u16eOqPqh8ToXkPDKvSNKKtH5pZblvbhBh9M3aovl67Vyt3HNQNA1urYZ1aJ/S7AgAAb0hMTNSKFStWWGsTg31tWuQDpKqLQnnVsUK8JJ351Gzde0FHjf90Tbl9P+3JOOnrLktO05jXFlW632etrLXKyivU1+v2KjuvUJf3aa6Hp67SvA37JUkt6kXr9XlbJEkzf9ytpY+ep4axtfTw1KJuSAcy8zTmtUW67sxW+kX3xoqPifCf/+u1e7XjYJau6ttC2UfNLlRiS2qmth/I8o85WL3zsCb/tv9xf7d5G/ZrwaZUXTeglVrWj67aH+QohT6rA0dyq9UXh8M5+fpqzV4NaBuv7LxC5RX61K1pnNtlAQDgeQT5AGlR7+SCWE1xMCu/whB/Kipq/T5aTr5PbR7+rMy2fJ/VnPX7/a+nF/fHL9H/ydk62trdh/XIJz/qb19t0EMXdVbL+Ght2JuhccXTfi7dmqbPV++ptI4Plm/3P5+7YX+lx5U4cCRXv35rqaSiQD/1tkE6cCRPLeKjlV/o06qUdB04kquB7eortlZ4uffvSc/RW99t1RvFX1D+PKqbbhjUusJr/bDjkGav26srEpurVf2Y49ZWWk5+oSLDQk5oHMJDH6/SZz+W/Vv9+7f9dXbHBid07bwCn75dv09dmtRRi/jgfr72Hs7Rkq1pOrdzQ9U+gQXfAAAIJLrWBNC0lTt19wffu1oDqoenL++hy85opojQEIWEGB3KytNj09eooNBqwqhumrthv8ZO+cF/fFR4qLLzC3XneR304uyN/u19WtbVrWe31btLtmtM3xYa1aupJOnKVxdq+baDZa7564Gt1Ld1vPYdztHV/VsqJiJUuQU+dR7/hf+YHydcWOEXA2utDmTmKaF2pHakZWnC9DXasC9DqRl5ahEfpel3DKnSgGap4i9gxkhbn6548HJlJn7+k16bu1kxEaFa/Mh5FdYdCIU+q7OfnaOdh7I1okdj/d+1Qb9zCgCoxtzsWkOQD7Aej81SRm6B22WgGhnVq2m5uwIna+FD5yorr1Dn/21ulY5/9+YBuvafS8ps+9cNfXVOxwby2Z9XJb558jJ9vW6f2iTEaGtqZoXn2vLUCIVUsCbB/I37Nem7ZA3v1kidGtfR6Fe+q/D9fxjaTokt6+nczg310NRV2rw/U09e1r3c7Eg7D2XrzXlb9PbCZP+2R0Z01q1nH3tAtVN+2HFIl5b6HUrGaqBi1lp9v+OQWsZHq37tyOO/AQA8jj7yNdjjo7v5Z1QBpPJde07FoInfnNDxR4d4Sbpp8s/rBwxoE68lW39e/6CyEC9Jn6zcqSsSm8vns1q7+7BufHtZmQHM3/y0T20TKu+68+q3myVJd57bXh8uT5Ek3fDWUi155HwV+qy2HchUm4QY3fXfleXuNhQUT5WUnJqpZ774SR0bxeru8zvIGKO8Ap//C8kb8zZr7ob9uveCTtq4N0Pp2fmqExWux6avUV6BT9cOaKk/j+qmsNCfF7ku9Fl989M+1Y0OV7/W8eXGu/zj6w3q1aKuMnML1KlRrDo0iq30d6yMtVb5hdZfp1Q0jWpeoe+4dzqstZq7Yb/W78lQysFsDW6foF90b3zCNThtw94MZeYWKGnbQT0xc51iIkK18OHzFBcVnDsnp8rns3pi5jrtPJSlcSO7Br37FoJn9c50xUWF898YNQIt8gFW6LP6cPkObd53RP9csNXtcoBq7/1bz9TVbyw+5jFjL+yoZvWiynxJvnFwazWvF62/zCiaDvRE73wkTxypQp/VHe+t8I9/mH7HYKUczNZt76447vvn3T/suIOUc/IL9bv/JPnHTXz4u4Hq17qeMvMKNerlBdqyP1MxEaH68PcD1bhOLYWFhpQLwh8u26EHPl5VZtvk3/ZXp0axiokMVe3IMBlj9P2OQ0o5mKULuzYu84WhKrLyCo45BWt6dr7emLdZ9WMidePg1lqz63CFs3TdPqyd7h/e+YSufTgnX4s2H9CgSsaDBMqHy3fogY+K/q6Jrerp4z8MCtq1vapkLREvmblqt25/b4WMkb65b6jaHKOxAagqutY4rDoF+RIHjuQq8YmqLe4EwJs+/N1AfbJyp4Z1aqALuzXW7vRsvTh7k9o1iNHNZ7XV37/aoBdKjXmQpO7N6qhDw1h9snJnhee8sGsjvXpdokJDjEa9vECrUtKPWUP/1vF69sqeGvrXbyVJDWMjtfTR8yVJaZl5em7Wet16dtsyAcZaq4mf/+SfzSk0xGh072Z6/qpeFV7jyZlr9eb8ooaJetHhysn3VTiL028GtdaEUd0kFa0yfft7KxQVHqo3ft1XcVHhys4rVEZOvhrWqaUV2w9q6ooUvbtku6wtujv0we8GHvN3PdpPew7rgY9WqUV8tF74ZW/NWb9f//ftJq3cfkjSsdd4uHHS0jKD4ide3kMXdG0U8O5BPp9VboFPURHl78SUDsq7DmXr/WU7NLhdfQ1oWz+gNVXmx5R0PfDxKrVrEKMezeL0ypxNumFQa913YSdX6iktt6Do3196dr4axlY+a1fpMTuD2tXXe7eUX0MFRVNGV/RvEhUjyDusOgZ5Sbrun0u0YFP5BZoA1HwvXXOG/vjflUG5Vq3wEOXkl12Vrl/relqW/HMXpdV/Hq6731+pr9ftq/Q8o3s31T+uPkOSdCS3QK/PLeqqdLwvE6W1bRCjQ1n5Sis1ZW14qNHtw9rrH19vPMY7i+6SWGt1y7+T9PW6vfrbVb10eZ/m+jElXV+u3aPL+zRXozqRGv3Kd9qwt+wCczERocrMK//lInniSB3JLdDUFSnak56jEGO0cHOqVhSH/aOd3bGBftW/pfq1rqfoiLBKA/emfUfUtkFthYYYrdmVrt9MKupqdsew9rrngo4KLR5PciS3QJFhIQoPDVF2XqEueXmBdh/K1qvXJersjg2UV+DT63M3a8GmVH83twaxkWW6rY3o0Vi/O7uderWoq7kb9uuGt5ZqwiVd9ZvBbfzHpGfnV9itKSe/UPszchUeGqIfUg7pnI4NKu3ONXvdXj312TrViQrXWzf00+BnvimzbkeJtY8PP+YdnBPpNiap0lb+g5l5ql0rTOGlusKV/vdRYvzFXXXTkDYVnaJMkO/ZPE7T7xjiP48bdxeSUzP16fe7dGG3RurSpI6+25SqWWv2aExiCzWqE+mfSrjQZ7U/I1eN45yfWvidxdv0vx926Y5z2+usDg304uyNemH2Ro1JbK7zuzTSsm1pumFgazWtG+X4tU9ETn7R9MVJyQfVIDZS3ZtVn2mMCfIOq65B3lpbbmpEAEDwPH5pN329bp9/XYkTNfHyHhp9RjNt2JuhPek5OrdzQ42btlrvL9vhb+E9eqam1vWjNaxzQ2XnFWrqip2qGx2uns3rlgmfknRJr6aatXqP8gqPvzR4iJHWPv6LMrNQvXZdoga3r68eE76UJF3ep5meuqyH3luyXXWiwjWoXf0Kx9U8c0UPXdC1sepFh8sYo7TMPL2zeJv+9tWGKv1NfjWgpXYezNYjI7qoU+Ofx4ykZ+eroNDnvxvdp2Vd1Y2O0KMjuygyLESb9h3RkPYJCgsN0bYDmTrnuW8lSc+P6aUrEpvrv0u3Kye/UL/s10ILNqbqjvdWKqF2hJ6/qremLN+h4d0ba+aq3RV2oUueOFIpB7M0b0OqLujaSHWjw5VX4FO3x2aVOe6py3roq7V7tHb3Yd16djttO5CpoZ0a6NzOjcqdc+2uw0raflCjejZVXHS4klMz9cHyHWpcp5Z+2a+FaoWHKr/Qp1lr9ujJmet0Ufcm+tMlXZVyMEv3fPC9IsJC9NI1fZSWmacGsZGavDD5mH/jECP9/Ze9dXHPpmr3SFF2aBJXS4sePu+4/032Hs7RzkPZ+tf8rTqUnadnruip5hVMi70/I1f9nvy5t0DyxJEVzjTWv3W83rtlgIwx/i+lJ2N/Rq4+WLZdfVrV06B2x16FvaDQp52HstWqfoz2Hs7RRS/ML9Mg8PEfBimxVT1J7nfzIsg7rLoGeUnq+OjnZf5H+qPfD9SY1xepBv5nAIDTzlu/6avfvr38+Ac64P7hnfTcrPWOnvP2Ye30ypzNJ/3+iNAQ1a8dod3pOVV+T99W9coNaC+td4u6+n5HxXdMKnNFn+b6eEXKCb2ntCZxtfTSNWcoJ9+nXi3iZIzRwKdmKyO3QFf0aa7nr+qlgU/P9v+ejevU0m3D2ulvX23Qoax8/3lG9miimT/uPuk6pKIvG4988qP/9YIHh2nF9kO6s/gO32d3nqWuTX+e7Wt3erbOfnaO8gvLBovXr0/Uiu0H1b1pnC7u2URLtqbpgY9WaXtalv+Yy/s009QVFXfzK1nR/enLe+ia/i3926212pWeo6teW6QOjWorMixEMZFhemJ0d/+dmpz8QtUKD9VVry3S0uSiO02f3DZIsbXC9cf/rtTo3k11y1lttXLHId08eZkSakdq7+EcHc4p0OjeTbV5f6Z+3Fn+TuCmJy/Sbycv17wN+/WbQa318IjOZVaVDxaCvMOqc5DfkZalK15dKCvpxavP0MB29ZVf6NPMVbuZcx4AAA/4zaDWZabEDaTh3Rpp1pq9xzwmoXak2jWIUURYiOZvDE4X3hbxUdqRln3MY2JrhSkjp6Dc84qczJfgns3jynT1+/057fTQRSc2wN4JBHmHVecgfyxXvLpQScdolQAAAEDl3Fjrw80gf2JzkiGg/u/aPppwSVfNvX+onrqsR5l9Cx4cVu74Xw9spS1PjdC7Nw9Qm4QY9WtdT/93bR9teWqENj55kTpVcX7r6IhQPTKis341oKW/v5kTmhw1KIel7QEAQCD5fDWvgfpYSFbVSKM6tfyzDjStG6XwUKPlyQf12yFtyg1SmXRjPw3r1FCSNLh9guaMHVpmf4iMZt1ztiZMX+O//RcVHqpnr+ypqStSFBcVrolX9Cw3i0DJYjPf/LRP/160zb89PNToT5d005jE5goLKRrsMuyv3yr5QFHfuhsGtlKP5nU1dkrRvN5v/rqvLujaSP9dul3Pf7lBv+zXXHee10Gz1uzVo5/8qOy8Qv16YGuN7NlYufk+dWgUW2bAzbHcclYbtYiP1hvztiihdtE81ne9T7ckAABOd6/O3azbh7V3u4ygoWuNh5SE8hbxUfp27LBTGjleFVOW79CCTan6w9B2al4vulyLenp2vqauSFHP5nFKbBUvSdq4N0NZeYVl5mo+ejR5bkGh8gp85RZ76Tlhlg5X0n9uyu8HatJ3WzWoXYKuO7NVuf1//2qDFm85oFb1ozWkQwP/IKCqOL9LQ13Rp7kKfFaHsvM1ftrqKr8XAABUL8HuXkMfeYfV1CDv81klbT+oLk3q1MhuKulZ+VqwKVVDOiSoVniICgqtYk7y91yenKYrX1tUbnvzelH65r6h6v34l8rKK6xwvuGKpt46Wt9W9fTh7waq7SNlpxPt1aKufjhqdoVrB7TUhr0ZGn9xV6UeyQ3ajBYAAJyOTqcgX/PSYA0WEmLUr3W822UETFx0uEb2bOJ/fSrfVfq2jvd/kO+f8oOmJBVNQ3bj4DaKCAvR2sd/Uel7//7LXho7ZZUKK+ln9+3YoWoZH62QEKMZfxyiq99YrLBQo//dMUQt4qPLfRF48qjxDi9dc4bm/LRPfzyvg4YVr74pSe0b1tamfWUXtTnaQxd11uItB7QnPUdbUjOVV+BT07ha2nUCU72VaNsgRlv2Z1a6v3m9KPVqXveUp04DAACBQZBHjffIiC4KCzWKrRWu6yvolnO0y85orrM6NFDdqHClZ+crO79QZz87Rz4rPXxRZ7UutbR992ZxWvLIeQoNMf7xBqWnw+rerE6581/Sq6ku6dW03PYXru6tyLBQnf+3uf5t7948QGOn/KDdxQvP/P6cdvr9Oe0kFc3LGxlWNF795W826fnihUXaNYhRlyZ1NGPVsQP4lN8N1BWvLvSPczjax38YpIaxkdr/eq5/3t+GsZGykn+VyYUPnasmcbX8XacKfVYzVu1S0raD2nkwW7N/2qeI0BAltqqnge3qV3mBmZK/x85D2Xr2C2fmyT6ZuagBAKjO6FoDVMHqnenakZal87s2KrM8eEW2pmbq1n8vV3RkmCbf2E91oyMqPTZp20E9N+snndWhgW4f1l7WWl352iIlbTuo685sqSdG99Ce9Bwt3Jyq8zo3Ulx0+SXXS8zbsF+LtxzQdWe2UnxMhP46a70KfFZXFq+Q2L9NvC7t3Uyb9h1R07q1FB0RpqVb03TV60VdkJ66rIcu79NM8zemqlX9aHVsVHaFxo17M9ShUaziosK1NTVTDWIjq9TFK7/Q5/+b5Rf6dOnL32nT/iN6fkwvDW6foDfmbVFsrTBd0LWRCn1WtSPD1CL+58Hdr367WV+u3aN7L+ioszo0kPTzUu5DnpmjnYfKz2N8+RnNNLBdfd3/0SpJPy+Y8vmPuzVu2mqN6t1Uk75LPm7tUtGCI+0f/dz/ul2DGI3s2VQvzt5YpfcDAIKnZ/M4Tb9jSFCvSR95hxHk4bZTWS66oNCnzfsz1bFR7YAvOW2t1Zz1+5SRU6ARPZoc90uKU9fMzCt0ZJxHQaFPHyWlKCoitMzMRSVLvO9Jz1F8TIQiwsr/XpMXJuv1uZvVt3W8Hrukq38Z+dISW9XTx38YpFfmbNJzs9areb0ozRk7VOGhIWW6UCXUjlCTuCilZ+frkRGddWHXxsr3+WSttGjzAd349jL/sV/cfZb+PH2tFm054N92db8Wen/ZDv/rrU+PUFpmnmat2etf0bF5vSilHPz5S8td53XQC1X4MvHR7wfqyc/WaeX2iu9GvHB1b721YKsu6dVUr83drNQjeeWOWfLIecrOK9Tr8zYrLipCr82tfOXPhQ+dq0ETvzluXVXRMDZS+4rv/lTkrA4JZRa/ubR3UyWnZuqHlPIrQJ6oF68544QGzQOoHv46ppeuTGwe1GsS5B1GkAdOP2NeW6hlyUULqi199Dw1jK11nHeUtTw5Tdf+c4kiw0L0+KXdtTU1U7/s10JN60ZJKpqRqUV8tL8L1Rerd+v376xQ7cgw/fDYhcecRWr0K9/p+x2H9ItujfXa9Yk6nJOv856fq0NZefq/axPVt1U9DXnmG2XmFR7z/4TyC32au36/MnLzdXHPplqwKVU3TlqmYZ0aqGV8tN5bul2D2yfo2/X7/e+Z/8AwFfqsnvxsndomxOj6ga20YvshTV6YrCsTm5dZan1/Rq4Wbk7V0E4NtTU1U3Wjwst0JSuxZle6Hv/fWnVvFqf7h3fSkGe+UeqRPN11Xgfdc0FH/7kKfVY/7Tms/yzapjnr9+nu8zvq/C6NNOLF+ZKkK/o011/H9NS/F23TY9PXSJKevbKnrurbosz1znr2mwpXkEyeOFLjpv2odxZvL6rrz8MVExmm1TvT9c1P+1QrPESTvkvW7iqMIZl55xCNfHGBJCkmIlRrHv+F9mXkqP+Tsyt9z2OXdNXOg9ka2K6+bppcdhD7/cM76blZx+4WdlaHBF3Tv6Vue3dFpcf8Yej/t3fnYVJU5x7Hv+8wMOygCCigggiKggRxAyKoGKOiEU30Rm9wy+aNcc1z3XI1mBglbjEabxKNCy5J3CE3bigEUYgRV0CHTRhkkwFGlllhZs7945wemp7uWXpmehl+n+fpp2aqzqk+/XZV11tVp6oG8ofZiXecIn5/wQh++pfEOx65OUZlPffXvnh0f9rl5vDQnBV079iWLaU7E5YddVCP3XZGk9W9Y1seueho5hcUMeXVxXHLxN5E4OELj+KeGUtY/OX2Jr+/tD4zrhm72xnlVFAi38yUyIvsedZtKePpf6/i2AE9GDu4Z1Lz2Fq6k3a5OXRo16b+wjT8zEv5zio+Xr2FkQfuVXPWo6KyiuLySnp0zqt5743F5Rzcq3EboOg2VFRWkZfbhlcWrueu15dw5vA+XBsS65a0tWwnn28sZsT+3RPGo6SisuYuVK8t+pJlG7YzadSBNV3PFq7ZyqaSCsYO6llrp6ikopKXF67nkN5dmPTIv9lWXsmgXp1549pxAOyorI571iXCOcfywmI2Fe/g/Iff3W2aGTxy0VGcdGhvFq3dyquL1nP2iL4130NkJwzgyAO6M/lbh3NEv+613uPzjcWMv8df33LJmP784szDuf75BTzzvj/TcvvZw6isruaW6X6HZeqlxzBu8K6uYsUVlXRp35Zbpi+qeYbHaUP35fcXHMkz81cz5dV8fj5hCI++U8CqohKuOGnQbjsKBVMmsGjtVp56dxXjh/TGgCUbtlO4rZwrxg+ijRkL1m5l9MAelO2sYt7yTQzu3YV/rdjM8H7dad+2DQf36rzbZ4o+6/TH743ksqf8NvWB80dw5vA+vPDBGq5/YQEd27Xhx+MG1rRn8pmH8Ub+BuYu94l+n27tufH0IczM38C0j9cB0LtrHjeeNoSJI/rWfIeD/+dV4imYMoHrnv+EZ99fwyzWehkAABN9SURBVE2nH8qPxvrrhLaU7uCxuQX89b0vKNxewYE9fJe8VQmu+3ng/BHk5ebwoyf955h03IH8auJQpn+8Nu6zSM4c3odzjuzLF5tL2bi9glOH7ssZD7wTd94Rz102inOj7ph2z7nDGTu4Jx+sKuKypxLvsN173nCuffaTOucNfsf8+Dv/WWv8f50wkLO+1odT7/M7yft0zmNTcfyzWQf26EjPznkM7duNrWU7eemjtXHL/eSEgfz3Nw/hPx56l/dWFtWafvKQXryZX1hvm8HHpbi8kpunL9rtzGK0S8b0363L46VjBvDo3JUNmn+0t687cbfumamgRL6ZKZEXEWmd8tdv483PNnDW1/pyQI/Gb6zLd1YxM7+QI/p1o3NeLtvLK+ucT/nOKj76YgtH9d+r3q5nc5ZuZFlhMecd1Y8u7duypXQHv31jKd06tOXK8YOoco4XP1xLl/a5TBi2X9ydnqpqx3srizi8b1e6tq99TYxzjtIdVXTKy+U3ry3m5QXrueG0Qzl92H61yjbVKwvX8+g7K7ng2AM4e0RfZi0upKKymm8evm/NztZXJTvo1qEtOTnG6qJS1m4p45j+e1NUuoObpy2iQ9s23Hb2UDq2y6V8ZxV//3gd+3ZrH3dne9biDbzwwVomHLEf1zzzMRWV1fzyrMO5cFT/RrX71Pvm7Ha0PjfH+P7xA7jh1EMxM95aupFlG7Zz3tH707V9W6qrHTe9tJD3CoqoqnYM7dON288ZRrcOteNfsKmE70+dT/u2bXji0mPo0TmPZ+Z/wS3TP+X4QT15+MKRzMwv5NZ/fMoJg3vxq4lDa+puLduJc46u7dty8r1vsWJTCUf068b0y8dgZjz/wRoWrtnCGcP7cPO0ReTl5vBV6U6+KNq1Y1IwZQIbtpXzyeotjDukJ4btthO7aO1WNhVXcPygnuysqmbu8k306d6BBWu2MH5Ib/YJBw4ipn20lquf2bUTc8c5w7jxxYXs3akdb193Ys3O94Zt5fTqksfqojJunr6ILu1zufvc4Rx682s1da85eTCXfL0/d7++hCf+tYp9u7bnjm8P4+sH71Oz7hRuK2f0lFm1zg4dtl9Xpl0+hj/M/pzt5Tu59pTBdGzn33vFxmKmziugqHQn7XNzOP2I/RjQoxMnRN31LeJbw/tw//kjEi8cLUSJfDNTIi8iIpK9CreVs3ZLGV+r4yxPIs45Vm0uxQwO7FG7a1hTRfKm2Acd5uU27Ewe+B2g+QVFHD+oZ9wzgJEzbeu3ljHurtnsqKzmD/95JKc18w5bVbVjwv1vs3TDdm6bOIwLjj2AlZtK6N01ryaRrsvLC9Zzw4sLOO6gHjw0aSRmhnOOT9dtY1DvznFj8tm6bSzfWExebg4/fvIDzOD1qxvfHeaBmcu4542l5Bjk/+pUnKPW0+pTRYl8M1MiLyIiIq1BUckOtpTu4KCenesvnITqasdXpTtquvk1VmVVNblJ3ihheWExHdq1oW+4Filb6YFQIiIiIlLL3p3asXenxLcxbqqcHEs6iQeSTuKBWtdlSOO1/L3mRERERESk2SmRFxERERHJQkrkRURERESykBJ5EREREZEspEReRERERCQLKZEXEREREclCSuRFRERERLKQEnkRERERkSyU1kTezPqZ2aNmts7MKsyswMzuM7O90tkuEREREZFMl7Ynu5rZQGAe0AuYDiwGjgGuAk41szHOuc3pap+IiIiISCZL5xH5/8Un8Vc65yY6525wzp0E/BY4BPh1GtsmIiIiIpLR0pLIm9lBwClAAfBgzORfACXAJDPrlOKmiYiIiIhkhXQdkT8pDGc456qjJzjntgNzgY7AcalumIiIiIhINkhXIn9IGC5NMH1ZGA5OQVtERERERLJOui527RaGWxNMj4zvXtdMzOyDBJMOTaZRIiIiIiLZIlPvI29h6NLaChERERGRDJWuI/KRI+7dEkzvGlMuLufcyHjjzWxzfn5+x5Ej404WEREREWkW+fn5AP3T8d7pSuSXhGGiPvCDwjBRH/r6bCsrK+PDDz8sSLJ+siJdehan+H2zneKWHMUtOYpbchS35ChuyVHckqO4JaepcesPbGuepjSOOZf63ivhYVDL8befHBh95xoz6wKsx3f76emcK0l5A5MU6bOf6EyBxKe4JUdxS47ilhzFLTmKW3IUt+QobsnJ5rilpY+8c+5zYAZ+D+bymMm3Ap2AJ7IpiRcRERERSaV0da0B+AkwD7jfzMYD+cCxwIn4LjU/T2PbREREREQyWtruWhOOyh8FPI5P4H8GDATuB0Y55zanq20iIiIiIpkunUfkcc6tBi5JZxtERERERLJRpt5HXkRERERE6pCWu9aIiIiIiEjT6Ii8iIiIiEgWUiIvIiIiIpKFlMiLiIiIiGQhJfIiIiIiIllIibyIiIiISBZSIi8iIiIikoWUyIuIiIiIZCEl8s3AzPqZ2aNmts7MKsyswMzuM7O90t225mJmPczsB2b2kpktN7MyM9tqZu+Y2ffNLO6yZGajzewVMysys1IzW2BmV5tZmzre6wwzmx3mX2xm/zazi+pp30Vm9l4ovzXUP6Opn7ulmNkkM3Ph9YMEZVo8DmbWJnwfC8J3WhS+r9FN/YzNxcyON7MXzGx9WL/Wm9kMMzs9Tlktb4CZTQgxWhO+1xVm9pyZjUpQfo+Im5l9x8weMLO3zWxbWP+eqqdORsYmletuY+JmZoPM7Hozm2Vmq81sh5ltMLPpZnZiPe/T4jEwsw5mdquZLTGzcjMrNLNnzWxIwyPSMMksbzH1H7Fd24mDE5RJSQzMbG/zeU2B+d/hdebznn4N/TwNleR6amH5mR1iUGZmK8PnGpygTutY3pxzejXhBQwENgAOmAZMAWaF/xcDPdLdxmb6nJeFz7QOeBq4A3gU2BLGP094wFhUnbOASqAYeAS4K8TEAc8leJ+fhumbgAeB3wKrw7i7E9S5O0xfHco/CGwO436a7tjFae/+IW7bQxt/kI44AAY8F7Ws3hW+p+LwvZ2VAbH6n9C+jcBjwO3AQ8B84E4tb3Hb95uoz/Tn8Jv0PLADqAa+t6fGDfg4vN92ID/8/VQd5TMyNqledxsTN+BvYfqnwJ/w24oXQ7sccGW6YgDkAe+EOvPDuvIXYCdQAhybzuUtpu6ZUXUdcHC6YgD0AJaEOjPxvynTwv8bgIPSvJ62B/4vKg6/D8vdVGAFcEZrXt6aLfB76gt4PXxJV8SMvzeM/2O629hMn/Ok8MOSEzN+X+CL8Fm/HTW+K1AIVABHRY1vD8wL5b8bM6/+QHlYmfpHjd8LWB7qjIqpMzqMXw7sFTOvzWF+/Zvy2Zs5jga8CXwefghqJfKpigNwfqgzF2gfNf7o8L0VAl3SGKtzQ/veiNcOoK2Wt1ox2ReoAr4EesVMOzG0fcWeGrcQg0FhPTyBuhPSjI0NKV53Gxm3i4ERccaPw+9MVgD7pSMGwI2hznNEbcvwO2yRnY+c+uLREnGLqdcTvw7/DZhN4kQ+JTHA75A54N6Y8VeG8a+laz0N5R8MZW6P9/0Rta1ojctbswV+T3wBB4UvY2WcBb8Lfk+tBOiU7ra2cBxuCnF4IGrcpWHc1DjlTwrT3ooZ/8sw/tY4deLOD3gijL8kTp2E80tjrK7CHxUdC0wmfiKfkjgAc8L4E+PUSTi/FMUpB38kpQTo2YDyWt58G44NbZieYPo2YLvi5qD+hDRjY5POdbe+uNVTdwYxB31SFQN8UrgqjB8Qp07C+aU6bsBL+ES+B3Un8i0eA6ATUIrPZ2IT1Rx8/uNo5qPyDY0bvldEFfAeMb0C6phnq1re1Ee+aU4KwxnOueroCc657fg9t47AcaluWIrtDMPKqHGR2LwWp/wc/A/DaDPLa2CdV2PKNKVOWoQ+cVOA3znn5tRRtMXjEOI+Gv89vN2I90mV0cAA4BXgK/N9vq83s6ssfj9vLW/eMvxRz2PMbJ/oCWY2Fn+A4c2o0YpbYhkZmyxYd+sSb1sBqYnBQOAAYKlzbmUD66ScmV0MTAQuc85trqNcqmIwCugAzA15TY2Q98wI/9Z5/UMLOh+/QzEV6Gpm3zOzG83sR4muK6CVLW9K5JvmkDBcmmD6sjCMe6FFa2BmucCF4d/olSJhbJxzlfi9+Fz8WY2G1FmPPzrbz8w6hvfuBPQFisP0WBkT/xCnJ/HdkG6qp3gq4nAw0AbfzSJ2o5qoTiodHYYbgA+Bf+B3gu4D5pnZW2bWM6q8ljfAOVcEXA/0Bj4zs4fM7A4zexa/wX0D+HFUFcUtsUyNTaavu3GZ2YHAeHwyNCdqfKpikPHb6xCj3+GPPk+rp3iqYpDpcYtsK7rhu6w+ie9i8ydgqZk9aFEXprfG5U2JfNN0C8OtCaZHxndPQVvSZQowFHjFOfd61PhkYtPQOt1ihtkQ/1uAEcDFzrmyesqmIg6ZHrteYXgZ/mjQyfijyUPx16WMxfc7jNDyFjjn7gPOwSeZPwRuwF9vsBp43DlXGFVccUssU2OTdfEMRzSfxl/8N9k591XU5FTFIKPjZv7Ob1PxXViubEAVxc2LbCt+CbwPDMNvK8bjE/ufADdHlW91cVMi37IsDF1aW9FCzOxK4Gf4K7gnNbZ6GDYmNsnGM63xN7Nj8Efh73HO/as5ZhmGLRmHdC+7kSMoBnzHOTfTOVfsnPsUOBtYA4xL0M0mnj1pebsOf5eax/GndzsBI/HXHDxtZnc2ZnZh2OrjloRMjU26193dhKOhTwJjgGfwdwtJRkvHIN1xuwZ/QfAPY3Z0kpWqGKQ7bpFtxXrgbOfcorCtmAV8B39N2rVm1q6R882auCmRb5rYoyuxusaUazXM7HL8KcDP8BdrFMUUSSY2Da2zrYHl69sjbnFRXWqWsvtRgbqkIg6ZvuxGNmQrnHOfRE8IZzQiZ3+OCUMtb4CZnYC/xdnfnXPXOudWOOdKnXMf4neA1gI/M7NIdxDFLbFMjU2mr7s1QhL/FP6M0LP4W5/GJi6pikHGxs3MBgG/Bh5zzr3SwGqpikHGxi2IbCteiz3bHbYdK/FH6CP3bW91y5sS+aZZEoaJ+jgNCsNEfaSykpldjb9P6yJ8Ev9lnGIJYxOS2wH4C55WNLDOfvgji2ucc6UAzrkSfGLSOUyPlQnx74z/PEOA8qiHezjgF6HMw2HcfeH/VMRhOf5K/4PC99GQOqkUicGWBNMjP94dYsrv6ctb5GEm/4ydED7He/jf/RFhtOKWWKbGJtPXXaAmRn8Fvou/d/YF8foXpzAGmby9Phzf7eiS6G1E2E6MC2WWhXETw/+pikEmxw0aua1ojcubEvmmiWwsT7GYJ5uaWRf8qcQy4N1UN6ylmNn1+IcnfIxP4gsTFJ0VhqfGmTYWfzefec65igbWOS2mTFPqpFIF/qER8V4fhTLvhP8j3W5aPA4h7vPw38PxjXifVJmDT5IGJTglOjQMC8JQy5sXuYNKzwTTI+N3hKHillhGxiYL1l3COvs8/kj8E8Ak51xVHVVSEYPP8TcbGGxmAxpYJ1UKSLydiBwoey78XwApjcG7+DxmTMhraoS855Twb62DBykyMwyHxk4I12ZEEuaCqEmta3lr6v0r9/QXe8gDocJnujl8pveBvesp2xX/NM7GPExlAFn6oJkk4zmZ+PeRT0kcaNgDLrqmMT5PhfbdFjP+G/h+j1uA7lredmvfeaF9XwJ9Y6adFuJWRnji9J4cNxr2QKiMjE06190GxC0PeDmU+TMNeOBNqmJAih8I1Zi41VFvNonvI5+SGLDrgVD3xIxvkQdCNXJ5a4dPmquBb8RMuy3Und2al7cWCfye9MJfTLYhfCnT8I8FnhX+X0LYYGb7C7gofKZK/BH5yXFeF8fUmciux5v/GbiTqMebE+fhDcAVYXpjHm9+T5ge/ajlTWFcSh79nmRMJxMnkU9VHNj9kdP54ftpsce8JxGfXvhbdDn8Efq7Q3sr8fejPlfLW6225eBvMenw/bCnEvrM4zd0DrhqT41b+KyPh9dr4b0/jxp3d5zyGRcbUrzuNiZuwGNh+kbgVuJvK05IRwzwOxlzQ535+Luu/QX/e1ICHJvO5S3BPGaTOJFPSQzwD6ZaEurMxOc508L/G4CBaV5Pv46/rWlliMfdwFuhXiEwuDUvb80W+D35BeyP//Fajz9lvQp/IWidR62z6cWupLOu1+w49cYQHuqDPxK4EH91fps63uvMsBJuDwv7fOCietp3UShXEuq9BZyR7rg1MKa1EvlUxQF/i8JrwvdSFr6nV4DR6Y5PaN/e+LNbK8O6tRmYDhyXoPwev7wBbYGr8afEt4WNTCH+Xvyn7Mlxa8DvWEG2xCaV625j4sauxLOu1+R0xQDfV/pW/EGCCvwOx3PAYZmwvMWZRySetRL5VMYA/1v8O3x+swOf7zwK9MuEuAGH4e+KVBjatxp/JiFh+1rL8mbhjUREREREJIvoYlcRERERkSykRF5EREREJAspkRcRERERyUJK5EVEREREspASeRERERGRLKREXkREREQkCymRFxERERHJQkrkRURERESykBJ5EREREZEspEReRERERCQLKZEXEREREclCSuRFRERERLKQEnkRERERkSykRF5EREREJAspkRcRERERyUJK5EVEREREspASeRERERGRLPT/gWKHwWt6eXYAAAAASUVORK5CYII=\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x2adfe3a76d8>\"\n      ]\n     },\n     \"metadata\": {\n      \"image/png\": {\n       \"height\": 250,\n       \"width\": 377\n      }\n     },\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plt.plot(losses['train'], label='Training loss')\\n\",\n    \"plt.legend()\\n\",\n    \"_ = plt.ylim()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 显示测试Loss\\n\",\n    \"迭代次数再增加一些，下降的趋势会明显一些\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAvIAAAH0CAYAAABfKsnMAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAWJQAAFiUBSVIk8AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDIuMS4yLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvNQv5yAAAIABJREFUeJzs3Xd4FVX6B/DvJPTeRBALoKJYEEGxoLCI7q6KiG131RXXsru6a91lbWthLYgi/lSKIkWkWClSRUAIJfSEkhBKSEgnkN7rvfP7IySk3DLlTL3fz/PwkNw798x7507uvHPmnXMkWZZBRERERETOEmZ1AEREREREpB4TeSIiIiIiB2IiT0RERETkQEzkiYiIiIgciIk8EREREZEDMZEnIiIiInIgJvJERERERA7ERJ6IiIiIyIGYyBMRERERORATeSIiIiIiB2IiT0RERETkQEzkiYiIiIgciIk8EREREZEDMZEnIiIiInIgJvJERERERA7ERJ6IiIiIyIGaWR2AmSRJOg6gA4Aki0MhIiIiInfrDaBQluU+Rq0gpBJ5AB1at27dpX///l2sDoSIiIiI3OvQoUMoKyszdB2hlsgn9e/fv0tUVJTVcRARERGRiw0ePBjR0dFJRq6DNfJERERERA7ERJ6IiIiIyIGYyBMRERERORATeSIiIiIiB2IiT0RERETkQEzkiYiIiIgciIk8EREREZEDhdo48kREROQCXq8Xubm5KCoqQkVFBWRZtjokcjFJktCyZUu0b98eXbp0QViYPfrCmcgTERGRo3i9XqSmpqK0tNTqUChEyLKM8vJylJeXo6SkBOedd54tknkm8kREROQoubm5KC0tRbNmzdCjRw+0bdvWFkkVuZfX60VJSQkyMzNRWlqK3NxcdOvWzeqwWCNPREREzlJUVAQA6NGjB9q3b88kngwXFhaG9u3bo0ePHgDO7INW455PREREjlJRUQEAaNu2rcWRUKip3edq90GrMZEnIiIiR6m9sZU98WQ2SZIAwDY3V/MvgIiIiIhIgdpE3i6YyBMRERERORATeXIlu1zyIiIiIjIKE3lylcLyKtw7PRK3frwJx04VWx0OERERBXHNNdegXbt2VofhSEzkyVU+XHMY0Sn5SMgqwdMLoqwOh4iIyBCSJKn6N3fuXEPjKS4uhiRJGDVqlKHroYY4IRS5yvaEnLqf49kjT0RELvXWW281eeyTTz5BQUEBnn/+eXTq1KnBcwMHDjQrNDIRE3kiIiIihxk/fnyTx+bOnYuCggK88MIL6N27t+kxkflYWkNEREQUQrKysjBu3DhccsklaNWqFTp37ozf/e53iIiIaLJsWVkZPvroIwwcOBCdOnVC27Zt0adPH9x7773YvHkzAGDq1Klo3749AGDVqlUNSno++ugjzXF6PB589tlnGDRoENq2bYt27drh+uuvx5w5c3wu/+uvv+L2229Hr1690LJlS/Ts2RNDhw7FBx980GC5jIwMPP/88+jXrx/atGmDzp07o3///njiiSeQmpqqOV4rsEeeiIiIKEQcPXoUt9xyC9LT0zFixAjceeedKCwsxPLlyzFy5EjMnz8fDz30UN3yf/zjH7FixQpcffXV+Mtf/oKWLVsiPT0dmzdvxoYNGzBs2DAMGTIEr776Kt5//31cfPHFDV5/4403aorT6/Xivvvuw7Jly9CnTx/8/e9/h8fjwZIlS/DEE09gx44d+PLLL+uWX7x4Me6//3507doVo0ePRo8ePZCdnY24uDjMmDEDL7/8MgCgsLAQ1113HTIyMvDb3/4WY8aMQVVVFZKTk7Fo0SI88sgjOO+88zRuXfMxkSdX4aCTRERE/j388MPIzMzEsmXLMHr06LrHc3JyMHToUDz11FO444470KlTJ5w4cQIrVqzAsGHDEBER0WAyJFmWkZubCwAYMmQILrvsMrz//vvo16+fz7IftWbPno1ly5bhxhtvxPr169G6dWsAwDvvvIMbb7wRM2fOxKhRo+reQ21Sv2PHDlx00UUN2srOzq77edWqVUhLS8Prr7+Od955p8Fy5eXlqK6u1h27mZjIExERkav0fmWV1SEoljTxTtPWFRkZiT179uAvf/lLgyQeALp27Yo33ngDf/7zn7F8+XKMHTu27rmWLVs2mdFUkiR07drVsFhry2cmTZpUl8QDQIcOHfDee+9hzJgxmDVrVoP3IUkSWrVq1aStbt26NXmsfpu1fL3W7pjIk6vYa+JkIiIi+9i+fTuAmhp5X73m6enpAIBDhw4BAHr27IkRI0Zg3bp1uOaaa3DPPffg5ptvxpAhQwxPevfu3YtWrVrhhhtuaPLcLbfcUrdMrYcffhhr167FwIED8cc//hEjRozA0KFD0bNnzwavve2223DWWWfhjTfewLZt23D77bdj6NChGDBgAMLCnHfrKBN5IiIiohCQk1MzRPOqVauwapX/qxbFxWeGb16+fDkmTJiA77//Hq+//joAoE2bNvjTn/6ESZMmoUuXLsLjLC8vR0VFBXr37t3kSgAAtG/fHm3btkV+fn7dY2PHjkW7du3wySefYMaMGZg+fToA4Prrr8fEiRMxfPhwADW98zt37sT48eOxcuXKuu1w9tln47nnnsPLL7+M8PBw4e/JKEzkyVVYI09ERGaWqzhJx44dAdTUnz/++OOKXtOuXTtMmDABEyZMQHJyMjZt2oTZs2djzpw5yMjIwM8//yw8zlatWqFly5Y4efKkz+eLi4tRUlKCXr16NXj83nvvxb333ouioiLs2LEDy5cvx4wZM3DHHXcgJiYGffv2BQD06dMHX3/9NbxeL2JjY/Hrr79i6tSp+O9//4vw8PC6G2OdwHnXEIiIiIhIteuvvx4AsGXLFk2vv+CCCzB27Fj8+uuv6NWrF9auXYuysjIAqOvF9ng8QmIdOHAgysrKsHPnzibPbdiwAQAwaNAgn69t3749brvtNkyZMgUvvvgiSktLsW7duibLhYWFYcCAAXjxxRexcuVKAMBPP/0kJH6zMJEnIiIiCgHDhw/HoEGDsGDBAnz77bc+l9m7dy/y8vIA1Iy3Hh0d3WSZoqIilJSUoEWLFnUJfOvWrdG6dWukpKQIibX2isFLL72EioqKBuuuLfF54okn6h5ft25dg+Vq1fbqt2nTBgCwb98+pKWlBV3OKVhaQ0RERBQCJEnCjz/+iJEjR+Khhx7C5MmTce2116JDhw5ITU3F3r17cfjwYcTExKBz585ITEzEzTffjCuvvBIDBw5Er169kJ+fjxUrViA/Px+vvfYaWrRoUdf+yJEjsXLlStx333248sor0axZM9x66611VwLUePLJJ7FixQqsXLkSV1xxBUaPHl03jnxqaioef/xx3H333XXLP/3008jLy8Pw4cPRu3dvhIeHY+fOndiyZQv69euHe+65BwCwcuVKvPXWW7jppptwySWXoFu3bkhOTsayZcsQHh6OcePG6d/QJmIiT67CUWuIiIj869u3L/bu3YtPP/0US5cuxbx58yDLMnr27InLL78c//nPf+rGYb/00kvx5ptvIiIiAuvXr0dOTg66du2K/v3745NPPsH999/foO0vvvgCL7zwAiIiIvDTTz/B6/WiVatWmhL5sLAwLF26FFOnTsXXX3+Nzz//HJIk4fLLL8ebb77ZoDceAN566y2sWLEC0dHRWLt2LcLDw3H++edj/PjxePbZZ9GuXTsAwOjRo5GVlYUtW7ZgyZIlKC4uRs+ePXHXXXfh3//+N6655hqNW9YakiyHzu2BkiRFDRo0aFBUVJTVoZBBbpkcgcSskrrfecMTEZH71A6P2L9/f4sjoVCkdP8bPHgwoqOjo2VZHmxULKyRJyIiIiJyICbyRBqtOnAC/1txEGl5pVaHQkRERCGINfJEGhzPLsE/v6m5k39vSj5++udQiyMiIiKiUMMeeSIN1sedmaRiX2p+gCWJiIiIjMFEnoiIiIjIgZjIE2kgI3RGeyIiIiJ7YiJPRERERKSA3YZtZyJPREREjiJJNdP/eb1eiyOhUFObyNfug1ZjIk/uYq8TZSIiMkDLli0BACUlJUGWJBKrdp+r3QetxkSeiIiIHKV9+/YAgMzMTBQVFcHr9dqu5IHcQ5ZleL1eFBUVITMzE8CZfdBqHEeeiIiIHKVLly4oKSlBaWkp0tLSrA6HQkybNm3QpUsXq8MAwESe3MYeJWtERGSgsLAwnHfeecjNzUVRUREqKirYI0+GkiQJLVu2RPv27dGlSxeEhdmjqIWJPBERETlOWFgYunXrhm7dulkdCpFl7HE6QSQKO2SIiIgoRDCRJyIiIiJyICbyRBqwFJOIiIisxkSeiIiIiMiBmMiHiH2p+Xjmm2isPJBhdSjG4qg1REREFCI4ak2IGDMtEgCw8sAJDL2wGzq3beF32ZKKahzMKMTgCzojPMxhmTFLXoiIiChECOmRlyTpfkmSpkiStEWSpEJJkmRJkhYIaPeR023JkiQ9KSJWApJy/E9p7fXKuGvqVvxhxna8uSxWyPoKy6twPJvTaBMRERGJJKq05nUAzwAYCCBdRIOSJJ0HYAqAYhHtkTJ7kvOQmFWTdC/cmQIASMouwQNfbMPTC6JQXuVR1V5+aSWGvr8BIz6KwNK9nH2PiIiISBRRifyLAPoB6ADgab2NSZIkAfgKQA6AL/S2R8pVVnubPPbMt9HYnZSHn2Mz8eXmRFXtTV57FEUV1QCAF7/fLyRGO2AFDxEREVlNSCIvy/JGWZbjZXHzIz8H4BYAjwFgTYbFYtML637eeOSUqtfmllaKDoeIiIiIYMNRayRJ6g9gIoBPZVnebHU81JDqW19d2nXtsFuAiYiIyIVsNWqNJEnNAMwHkALgNR3tRPl56lKtbYYK2a2Zt2DcSkRERGQ1WyXyAN4EcDWAm2RZLrM6GBKAXddEREREhrBNIi9J0hDU9MJPlmV5u562ZFke7GcdUQAG6WmbVGLXNREREZEhbFEjX6+k5iiANywOhwKoGVDIvnjeQERERKHCFok8gHaoGb6yP4DyepNAyQDeOr3MzNOPfWJZlCFA2LhDRERERGQou5TWVACY7ee5Qaipm98K4AgAXWU3FFiwPN5O/fHf7UrBlmPZeGbERejfswMAe8VHREREZCTTE3lJkpoDuBBAlSzLCQBw+sbWJ/0sPx41ifzXsizPMitOsrfErGK8siQGABB5LBv73vytqevnlQsiIiKympBEXpKkMQDGnP61x+n/b5Akae7pn7NlWR53+udeAA4BSAbQW8T6qalDJwpx6EQhbr+iJ1q3CLc6HOH2JOfV/ZxfWmVhJERERETWENUjPxDAo40e63v6H1CTtI8DmSK3pBJ3T4tEZbUXR04W4dXb+1sdkmnYUU5EREShQsjNrrIsj5dlWQrwr3e9ZZMaP6awbZbVKDQ38jgqq70AgBmbEoW2bfNBa4iIiIhChl1GrSGB9PRKyyz+JiIiInIEJvKkimTzcWGsii4uo9CiNRMREVGoYiLvANMjjuHhWTuwNyUv+MIhTu/1hGOnilFW6VGwnoZreuCLbTrXTERERKQOE3mbO5hRgA/XHEHksRzcM934ZFF0YU3jhNfOZm1JxK0fb8KIjyJQUR08ma+vREHyT0RERCQSE3mbO5BWYHUIIePdVYcAAJmF5fhhd2rAZe1eYkRERETux0Te5ky/91Tw1K5OTXgLy6sDPu+kKw1ERETkTkzkSRW1ablTEt780kqrQyAiIiJShYm8C+npxV+4M1lcIA4y8efDVodAREREpAoTeZszu0d7/aFTQttzSmlN/KniBr+H4sRX2xNycM/0SEzdEG91KERERKRAM6sDIHdzSmkNAQ/O3AEA2JuSj99d3gMXn93e4oiIiIgoEPbIkyqh2FMdio6eLA6+EBEREVmKPfJkufIqDyasPoSSCg8ev6k3zunYGp3btrA6rIBMH02IiIiIqBEm8qSKETXvs7YkYt72mptsF0enoUWzMKx9YRh6d2uruI3pEcfw9PALhcdGREREZFcsrbG5UOj5XbgzpcHvldVevLT4gKo2PlxzBKtiTogMi4iIiMjWmMiT5XydrJwqLFfdzjeNTgj0cMpoO0RERBS6mMiT5XyNbBP0QoSPBULh6gURERFRLSbyNme33HR7Yg7G/bgfsk2zZrvGRURERCQaE3lSbVFUGn45mGltED4qX7SOWb8u7iSikvN0BuQuHP+fiIjI/pjIkyYx6QVWhyBEYXkV/jpvj9VhEBEREanGRN5h8koqVb/mREGZ8DhE3gyqqRrGz2sklTNWJWeXBnz+/Z8P4YEvtmF/ar6qdomIiIiMxkTeYd5ZFaf6NUMnbhAeh9J82cyS9R2JuTieXSKsvW3HsjFjUyJ2J+Xh/i+2CWuXiIiISAQm8nbXKBNeEp2uugmvG8udDR4dUpKA6JQzdfNVHjduRCIiInIyJvKkicg82leKbIfBZ+wQAxEREZE/TORdKCRGHBH0FkNiWxEREZErMZEnbVTeVGqz5oOqqPIyxSciIiJbYyLvQO+vPoSKao+lMQgtrdEyS6vBif7/rT+Kj9cdNXYlRERERDowkbc5X/nsjM2JmBuZZHYoRERERGQjTOQdatbW45au3+rSF1F1L1rHw5d5JywRERFZjIk82YB1STFvdiUiIiKnYiJPmoic2VVjANau3scliWOnii2IhIiIiEIVE3nSRGRpja8qleziClsnxp9HJDR57NaPN2FupLUlT0RERBQ6mMjbXKiWYpdWenDrx5uwJvaE7wUs3C4JWcUorqj2+dz4FXEmR0NEREShiok8BeTxWnsm8dSCaEvX70v8SfteKSAiIqLQ0czqAOiMymovErKKcWmP9j5rsOvT01MfrO36xkyL1L4iBI5z1/Fc5JZUolrLyYLVo+YQERERWYyJvE3Isox7pkfiYEYhHh/aB2+M6g9JkgwZ5lBNmzHpBT4f15tHx6YX4A8ztutsRb9QLV0iIiIi52NpjU3sTyvAwYxCAMCcyOMYOXkT4k8W+V3e6nHc668/v7QSH689gh/2pAZcrr5XlhzQFwATcCIiIgpx7JG3ifIqT4PfE7NL8Lf5UXj0hgssiki5CasP4Yc9aQCAczu3xo0Xdqt7zl+Pt9drRmSBebwyXlkSo/p1Vp9EmYFXKoiIiOyPPfI2djy7xO9z9RMtWZZx7FSx4htT1dTIK2mjNokHgLmRSQpfrzcAna8H8O2uFBw6Uai/ISIiIiILMJF3gdeWxuLWjzfh0Tm7FC1vRN29WmoS+Ydm7kBldaMufAFvYcPhU/obcalQuOoQqjYfzcK/f9iP6JQ8q0MhIiKdmMjbnJJ89dtdKQCArceykVlQ7rqyiG0JOfjb/D1Wh1EnFHJcu+9DeSWVeP/nQ5i3PckWJ6ZOUV7lwdg5u7A4Og33Tt9mdThERKQTa+RtQm1y6K/HtMpjTvG52T22EUeyUFRehfatmpu7YrKld1bFYUl0OgDgvM5tMOLS7hZH5Ay5JZVWh0BERAKxR96h/HVCVnm8mB6RYG4w9SjtG5U09GvHn6o3EVModIuTX7VJPADM3ZZkXSBEREQWYiJvA6cKy7E3NV9IWwt3pghpJxgtiXiD1+tNxFlNQURERCGOpTUWyy2pxLBJG1Fe5bskRm357+ajWQKi0s7IjnJ2wpMVqj1eeGQZLZuFWx0KERFRA+yRt9iUDfF+k3gtvCbd+OevR73x2mV2nZODnSwsx7APN+LG9zfgcCaHKiUiInthIm+x0gpP8IVUUDJGfFRyHuZGHkdBWZX29Wh+pfbXNzglENA9r3W0ExHj8JMz/HdpDDIKypFTUom/zrPPyElEREQAS2ssJzonPFb/hlA/3l11CAAwfkUcDr/ze7RqblzJgN9aeg1v/GRB+Zlf2NFPJohJL6j7OTW3zMJIiIiImmKPvAV+2JOK3q+swpNf7w66bGy9RMIIMzcnanqd0jzcX2mNlvOXcT/u1/Aq/7T2rLM/noiIiOyAibzJqj1evLToAABg/aFTQW9OXbI3PeDzek1ed9TQ9kUqqRRbhlRcXi20vVCWkV+GB77Yhkdm70RhufaSLV9SckoNP6H1x21zTbEqjIjIXZjIm+xkUUWD3zPql4s4iNLhJ/UOUxmgYd0qTJo8KxSM+3E/diflYUt8Nj5cc1hYuwlZxRj+0UaMmrIVa2JP+FyGyalybjsxISIKdUzkTbYkKs3qEITQXVrDceRdZVtCTt3P6+JOCmv35UUH6pLPpxZE+1yGySkREYUqJvImc1Ipi5HYiUpKFLH8SShevSAichcm8g5WWlmNt1fEWR2Gc2keflJwHEQm4dWL0LEkOg3vrYrDqUJnlm8SkTIcftIkReVV2F6v/ECEzyMSMCfyuLD2qgXUjIt+j6LM2XocsRkFeGFkP5zftY3V4ZBAPLEiaig2vQD/+qFmlK/4U8WY+9gQiyMiIqMwkTfJX77ajajkPKFtTo9IENZWen4Z7v98m+LlJUlCWaUHy/c3HFWnuKIaheVV6NCqedDXm2VPUi7eXllz5eLoySKsfPZm09ZNZCc86QkNS6LPfC9HHAk8MhoRORtLa0xQ5fEKT+IBsXXmLy86gBMqRtCRAEyPOIaXF8c0ee5QRvCp7M3MJ345mFn3c2x68NhI373Eho1U5AfLRYiIKFQxkTeB16BMQ2Tv2r7UfNWvmbLhmM/Hw8KCB2Zmz2B4mO/dXO2n8s3OFFR7vOzVDCE8RyAiIjtjaY0JjOoxrClPsSbVCJTMhgV4cuHOZJwsKEdhmXmjkYQLOl19bWkMWjUPQ6c2gcuGnMLrlf2edDnpXIUnVkREFKrYI+9govKXoyeLhK47UIf8f5fG4rMNx3BEwzrrUxNzoBMLtd74KVZYW1aatvEYBvxvLSavPeLzefZE1+A5AhER2RkTeROk5pYa0q6o/HT01K0orhDXQy4ycfalvMqDWVuVj9bjL55Qrq2e9MsRFFdUY8qGY6io9lgdjm2F8C5CREQOwETeBM9+u9eQdkXdVFhepX7YyUCjzhidyEenqLtxOFxBzb5SZo62Y5bDJ/RdHWnMhZuIiIjIlpjIm+BwpthEqZbA/FSo+omcEb3eHq+6RkVvJ7NHZTHak/P2CG0vlK90EBERmYmJvGPJlvYOa73ZVYRqFYl8WaXH7w2dsobCCZElSHaRVVRhdQhEJBCvihGFDibyDpVdXGlpUhnwZleD9yqPR3kCft2E9TiRL3aK8h/2pAptz22YRBBZi1fFiEIHE3kSLtzgTM6j4ihVWF6N+TuSfT6n9WD3c2xm8IVICKtPCtyWELmtLIyIKNQxkSfh3l4Zh+PZJYa1r7ZGvrFZWxIFRUJGc1sibTUt5WTkPFafABOReZjIk3Bb4rPxhxnbsTrmBArKqoS3r6ZG3pd3Vx0SFAm5HRMiIrIrj1fG8v0ZWL4/Q3cHFzkXZ3YlbYJkOFlFFfjHwmjhqz2eXQKvoC8s9vZSMG7bR1haQ+Qeq2NO4LnTw1uHScCoAedYHBFZgT3ypIlV6cDz3+3V3SNfK+5EoZB2qCGR+wZ7xImIfKs/R80z3xgzXw3ZHxN5cpQDaQXweNVPYGV3FdUevLokBv9cGI1TRWJH2XEyJT3izPWJiChUsbSGNLGyp7So3H1juc/eehzf7koBAFR5vPhy7DWa2skprsCe5DwM73cWWjUPFxmibbms+oWIiEgxJvLkOCJuVr3v820CIhFncVRa3c9r405qasPjlTFmeiRSc8sw+qpz8NmDV4sKzzIsrSEiIvKPpTWkidNvmotKzrM6hAZE9CrvT8tHam4ZAGD5/gwBLRL7+4mIyM6YyJMm7Cm1H1Gj+TgNd0Wihvg3QRQ6mMgTUROy28Zd1IwpERER2RcTedIks4Ajq5BvksmXa4w95eAJTX3HThXh2W/3Yv72JKtDISIi8GZX0mjaxmNWh+AuNssX9STjInvzeWHAXh6dsxvp+WVYsT8Dgy7ojMvP6Wh1SEREIY098qQJ8yv/KqudP869k0prWPxinvT8srqftx3LEdZuRbUHi6LSEHksW1ibREShQEgiL0nS/ZIkTZEkaYskSYWSJMmSJC1Q2UZXSZKelCRpqSRJxyRJKpMkqUCSpK2SJD0hSRJPOmwknHe7+jVra6LVIQRkdJIusrTGbrtZam6p1SHoYrftWevrbUkY9+N+PDxrJ+IyOOMyEZFSopLj1wE8A2AggHSNbTwAYCaA6wDsBPAJgMUArgAwC8APktnFt+RXGE+r/NqeoL6n0m79327+U/N4Zc0nM8995+xp0Bu/bT0ndSJ3kQmrD9f7Wf88EUREoUJUOvYigH4AOgB4WmMbRwGMBnCuLMsPy7L8qizLjwO4FEAqgPsA3CsiWNKPPfL65ZdWoqLaY3UYPjmptEaN2PQC3DjxV9z+6RYUllepfv3elHwDonIml+4iRESOIiSRl2V5oyzL8bKOo78syxtkWV4hy7K30eOZAL44/etvdIRJAoWFMZHXY/PRLAyZ8CuGTtyIvJJKq8MJGY/O2YWThRU4nFmESWuOWB0OERGRLk4Ztaa266za0iioTjgTeb+UnM6OnbMLAJBdXIGJPx82tQc8lHtSc+qdNB1IL7AwEmvIjYq4ZFl7iQwvyhERWc/2ibwkSc0AjD396xqFr4ny89SlQoIihPEoLkxqnrNvoHQsBWc0oXzSQ87Fr2ei0OGEWxYnouaG19WyLP9idTBUw6011E51JLMImYWcpItIi1OF5fjv0hh8uTnBFd9tLngLRKSQrXvkJUl6DsC/ARwG8IjS18myPNhPe1EABomJLrR5eaDwq3H5gtFWx5zAPxZG+3zO45WxLSEbF3dvjx4dWwEwf4Sc2PQCdGnbAud0am3ymoMIwW7LJqPWWBNGQGb//QDAy4sPYOORLADAxd3bY8Sl3U2PgYhIC9v2yEuS9E8AnwKIAzBCluVci0Oierzs8rENf0k8AEzZEI9HZu/CyMkRKNIwSoteP+1Nx6gpW3HzhxuRZrcSIu7DdFptEg8Ai6LTLIxEDL3nqPmllVi+PwP5pbwRn8jubJnIS5L0AoCpAGJRk8RnWhwSNeJll7xQRm3NT9bHAwBKKj2Ytz3ZoLX498L3+wDUXBmiY4kCAAAgAElEQVQYvzzO9PVTYHYsI5HqzdXr9cqISs5FaSXHOTDTE1/vwXPf7sXjc3dbHQoRBWG7RF6SpJcB/B+AfahJ4k9ZHBL5UFJpz/HP7UBtbmRWLlVR5Tm9PmuSN6OuCLh58irR7Je2N1W/tOat5Qdx3+fbMWrKVnYemCgqOQ8AEJ2Sz+1OZHOmJ/KSJDWXJOlSSZIu9PHcG6i5uTUKwEhZlrPNjo+IiOxh/o6aq0iJWSXYlcTqSivwPJnI3oTc7CpJ0hgAY07/2uP0/zdIkjT39M/ZsiyPO/1zLwCHACQD6F2vjUcBvA3AA2ALgOd89LQlybI8t/GDRE5m1oHSrH41f++n8frLqzz4MSoN3dq2wO+v6KG5Z92O5SFOoWfLGXUlpH5pTX1VHq/Px0ks/j0ROYuoUWsGAni00WN9T/8DapL2cQisz+n/wwG84GeZTQDmaoiPyDR2Ka1pfECu/dUuh+lZWxLx0dqjAIDv/3Y9ruvb1eKImrLLtgolVoxaQ0TkVEJKa2RZHi/LshTgX+96yyY1fkxhG5Isy78RES+R3ShJ5r/YlID7P9+G7Qk5itpcuDNFZ1SCNXqPtUk8AExcc1hzs6yRV469rRRMkyFKBe4ym49m4e5pkZgecUxco6TZoqg0vLL4AJKyS6wOhXSw9TjyRE6ktkdRSR6amFWMiT/XJLsPztyBpIl3orC8Cq8sPuD3Na//FKsqjlDDlJYjcLqVXU9ux87ZBQDYn5qPO67oid7d2locUeiKP1mEcT/uBwBEp+Rh7YvDLY6ItLLdqDVEoUZJMnX0ZHGTxz765QhWxygfmdXqkoVA69+bkm9iJET+2TMFVscJV16O57AX2EoR9eZO8HV8IedgIk/kUD/u0TZxjdHHeJt2BjbhkDB1mR5xDH+etRP7UmtOlJrO7Kp9ZwiF7ReK7H8KQET1MZEnEixYolxS0XByG0kyp7dcTQL//Hf78MPuVMPXU19segFi0gq0vViDSo+MHYk5KK9y55wIsekF+HDNEWw9lo17pkdaHQ6ZSGRpjWHfTBacMVR7vNiWkN3kO9ip9HzMVl+hJXGYyBOZ7M+zdzb43ayr4GpX89LiA0KT3Nr3+eXmBNz52ZYmz4+ashV3Td2KyGOBp484VVQuJJ5DJwrxpy934M+zduJUYTnS8kp9xOzcg93+tDPlSg5+G6SBnv3Wyft8MK8sicFDM3dizLRIV7xPF7wFEoCJPJGJCsurfNaDl5k4U66anhgtcQUaR/5kYTkmrD6MgxmFfl//xNf+p4WftSURQ977VXVMgexJzsOQCb9i2IcbsTNR2YhAbsFEgCxjQW3WoqiacsT4U8WITff/HUTkJEzkiQTzlRsVlFZh3I/78dqSGJ+vyS6uVL0etZdVtSRtouvdM/LLgi5TXuV/4p93Vx0SGU4DXhl49KtdDR7zVaJgZvmPnTnlXohQpKe0JlTO7aq9zp9gjH+DBDCRJzLFB78cxqKoNKw8cKLJc3ml6pN4QMPEUyFziNau8UmEr8vvd03dii3xWU0eJ2P5m/GVjOWGEhQiN2MiTySaj+PeNwEmZ/J4zT1Q+joue/3EIDJ5clNC8Phc/+U/dubkj4AnokTiOPm7gBpiIk/kUCIvq94yOUJcY3646bhR5XHTuyE6gwkeOV1JRTV2JuaY3klmFSbyRBbz9VWjpPda5AE3KafpiC1aBerFt+uMk6FKzz7ET5J0CY0cKyRVebw4mFFgyVVYWZZx97RI/PHLHfjvUt/3pLkNE3kiwUSUAGyObzgEo5D8V0tYDsjW7BxieZUHP8ecwMlCMUNmhjLWyJuj8fcX821S68Evd+DOz7biVT+DOxhpX2o+jp2qman2O41zoTgNE3kiG5q1JbHB7746NlSPWqMjHhGM6pwx8n3pbfv1n2Lx9MJojJ66FVUe60fJYJ15cLxqZBJuZldKzinBnuQ8ANYk0qFY9shEnsiG7FKn6sScprLai2KbzNxYO271ycIKbA0y0ZUVmNg35Yabsh3xZ+v8zWw5O37OduiwCDVM5IkEE5EHeBs1IiKhrk1QzMhTqjzeJgmRGcftrKIKDP1gA657bz32JOU2eG5NbKaqtrxeGfmlVcJiMztBdGopigvyaMvp2YTc/s7Bj4oAJvJEwjVOwq1qQ4T6YexLzcc/FkZh2b70gK9JyS3FDe9vwMjJmwyOrqm3V8Yhq6gCJZUePDRzZ93jsekFeGpBlKq2lu4N/D7tzldvu012K1tjaU1Dhu0z3MxEQjCRJxIsOiVfd++rbUbNqhfHmGmRWB2Tiee/24fs4oqAL8surkBidonu1SvpEd9w+BT+Pn8PZFlGwumbnACgst4l3hmbE329NKDvdvsf+1+P3JJKVFR7DGlbLTsm9syj9XPEJrThvuc0ej5nbn73YCJPZICo0zf7KOEr6VdyIqD2S1xk0paYpSFJl2VVMWcVVSBT4Wgvvxw8iXVxJ22fBG44fBLXTViPoRM3IF/jjL5KGV1aY1TPtR1PLojIGdxwj4taTOSJDFCk82ZLJT3yar+u5Lr/lb/S37JaviyLK6oxJ/K44uU/XHNYVfvHBVwBqM+IRPjxuXtQ5ZGRXVyJSb8cEd5+MI0/tdA75FEwoZIHsYSK3KKZ1QEQhTpfB5RgM9LJsozSSvXlGcdOFeGVxdZMkpGQVYIEFT35eSp7rJ2Wf2Tkl1kdgi0xv9JGlmVDklPDRjay+HMOxZ7bUBCKJ2hM5IkspqW05peDJzWsp6ZHOCVX+SyusgycLCxHeFjDL0czvizV3ieQkV+GgxmFxgRDZFMFZVUYO3snisqr8eXYa3BR93ZWh6QM82giIZjIE9lQsGOc2hFYatqUVSXxQE2t/98XRCHcAb0c87YnWx2C4+jplTRql2BHqToTfz6M/WkFAICnF0Rh3b+G62ovVOYWCMWeW3In1sgTWczXYTNYaY1Znpy3Bx6v3GAEGLNYfulb8HG+8dtRm0hsPpqFOz7dgo981NYXlFZh2b505AQZTcjybUrC7UzMqfs5vt6oTbZXb/f/YXcqHpq5A5uPZpm2ev4tkFuwR57IhmySx/tlxkFQ5Brc0Pc2ds4uAEDciUKMuqonLu3Roe65vy/Ygx2Jubj8nA5Y+exNPk8SvHbfqU6zuqPUDfuKHo3/tA37Uz/dbn5pJV5afAAAsC0hB0kT7zRohe4jSZLmD4jnMe7BHnkiEwRKTnw9dehEIab8Gi80Bqd9cTst3mBEJqhb47OxNyWv7oRqR2LNLLYHMwpRWO57xKQVBzKaPGbHTWz1565l9QfS8jF57REkCR45STMHnY0oHWJWNDeU1vCqQlOhuE2YyBOZINAhw9/XzuR1R1WNR+82bv861pNGvLvqEO6Zvg3f7U5V/JrPfo3nVQ4FVuzPUHX1oqLag9FTIzFlwzE8Mmdn8BfYnNv/7ojchok8kQkC9f4EmlxpT1KuEeE4glU9K7Is442fYrHruP23/atL9A0lGoKdV4qsOZipeNnUejeQp+ZySFG1uA9q54arCqKF4jZhIk9kgtD7atHO6u/hjUdOYf4OB4+Aw8RIt8lrzZ+si4j0Y2kNERnC6uQUEPsF568OWySR38cV1conz9qXki9uxRYINHxgKB3jlu/PwIxNCSjWMMtyCG2mJsxOhOzw3RiKQmWY0VDAUWuIjCADo6duxYG0Arx6+6WQIEFPeiDiWPe1wHHWX1q0H3vf/K2w9nwRcaB57Ktd+P0VPVRNoGXYIB1Nhp80aEV+2vd5ydlBx3I122tnYg6e+3YvACCnpBKv3dHfoKhswOGJcCidXBIZgT3yRAZYG3cSB05P0vL+z4dR7dU2Drvc6H+7yCutMnwdIg7wG49k4eXF+urInaZ2uxmeIGk4E8kqqsAHaw5j2b501a9V835eqXfvwJebE1Wvy1EEf852+64hY0hOPwP0IxRr5NkjT2SAxjepOmQIbwKQnmfMDYvGzYSqZueydkd8bWkM1sXVXB258Kx2uKJXR0PWc1zvMJD8e63DHnN7KKmoxre7UnBu59b4/RU9dbfn1tIa1sgTkRCivkqkRv+HEqu+j5fsVd9brETT9yPmU31n5aGG66ltvXFpja+YBO2pW+Ozcfe0SEzbeKzJc9UeL7bEZyGvpLIuiQeARVFpqtZR//1UVHvw455UU2cCta1Q/HIIQZ/9Go93Vx3CUwuisTcldIclpqaYyBPZ2JLodGTkh+aQdk7sMdqbkocx0yLx9oo409Y5J/J4g99re6TMPBH68+yd2J+aj0m/HEFiVnGD595eGYdHZu/C7z/dLGx987Yl4z+LDmDsnF2ITS8Q1q7d7UnKxecRCcgurjBsHSHYoekIM+qViE3d0PSEmWqEYmkNE3kiA4i6vHfkZBEe+GI7vCF0dK39GnbiW37gi+3Yl5qPOZHHsalRb7Edjy96trG/t5PQaF6Eeadvsj5ZqC/5rB/re6vPXIV4d5V5J01Wyi2pxP1fbMcHaw7jlcUHAi7r1vpnomBYWkNEQjROZvRIzy9DXEahsPacwolfx9X1boaIbjQrr1nHF7+lNZK5J0clFdUNJksyihHvSW+TG4+cwl1TtmJ6hLie03VxZyapWn/oVMBldV3Nkhv/6sS/RGOsic3E1A3xyC+ttDoUojq82ZXICezYnWs0h+cPwcI37uZXY9pVvn4ZBaVVGDZpIwrKxI1u5KQ/gce+2g0AiEkvwF0DzsF5XdrobpO97NaKyyjEUwuiAADJOaWY9MBVFkek7/YIq78nSBz2yBM5AA/hDuSAI6VREf7f+qNBk3gzE/OpG+JxqrDcvBXWk2LCVYnG9CT9TuuB93plU8op5m1Pqvv5R5U3aotm12GJyRpM5IkcwEm9kXrV3qzktISiscbRm/UZBpzZVeB6Ar2fLANvxtTio7VH8e8f9yte3so623VxJ/HPhdHYmZijuQ2n/+0odTizEDd/uBG3f7oFBSbMbUH65BRXIDa9ICTr2I3ERJ7IAb6KTLI6BL+qPdomuwrG6WPvl1Z6GvzeeE4wX3lwlceLV5ccwBNzdyMtT2xPrujSjNziSszcnNhkKDwZ5l5BUrqbbInPNjQOf9TkLOVVHvx13h6sijmBP365o+GTFp3M2znnevLrPUjPL8PhzCK8//Oh4C+ox659I1UeL97/+RBeXXIAuSWBa/Ht+h58ySupxE0fbMSoKVuxcGeK6td7nH5AMBBr5IkcQGStsSiyLOOv8/ZgR2Ju8IU1tu9ks7c2HBZydcyJoK+Zvz0Z3+5KBQAUllfhx6duVL9iFZtNzzaevO6o5teSb4ESNzVJm67SGgF/drIs43BmES7u3g7Nwo3rL0yrN3lbtMqx1e367bJwRzJmbKoZarKiyouP/zjQ4ojE+PTXeJRV1XRuvP5TLP58/QWKX7tifwZeWxqDmy/uhmkPDQo4xCSHnyQiUijiSBbWHzqF4opqq0NxhNiM4OOd/xx7JtnfnXQmMVEzSkagBMWMcyNZdv7B1KokT8t67bilX158ALd/ugVj5+yyOhTHmb8jue5noyans0JhufbOqGe/3Yui8mqsjsnE9oTAJWdO7wDSgok8EWny2NzdhrRbN468Ia1bR+vxZXXMCVz73nrd6/eVW1u5ja0YheX1n2IQlWzurJii6tX9nRyJ/gxFtPfDnpqbQbcl5OCkn5uMRdfxq/37suMJEOD8k2C/BH3c9a/CUA0m8kRkS27rWNH6dv6xMBpVHuWvtn67KQvAXyJnZPwLdqTgvs+3hWSvnVZ6t1SVQffQ6GXXPcClaTwZiIk8EdmSXQ+0Wpl1gFbT07n7uDH3N5iajBgxIZQNdz7T9h+T3rzoKzI2/MioPp6hGIaJPBHZkx2zKYGsmBCqcZL/9MJo5BRXYGdiDm77eBMemb0TUzfE40BaviHrr89fImdGZYFTdq0/fLEdj321C0XlVY4dgjZYqUigz6KwvAo/7E7F8WxxM2XXsuvmdOrnHJRD/uaciKPWEJGt1B7I3Pa9b9b7UbueXw+fwkuLDgAA4k8VY0t8Nj5aexSH3v49WrcI1xSDnmTEX2InMr8prqxGh1bNBbZojF1JNVdMJq89igHndvS5jN3zPj09/G/8FItl+zLQtW0LbHv1FrRspm1/dBuWhlF97JEnIlupPUa57VjVOOEy6mbP2oO83taVjLLjc/0612tGu9M2HAuyLnFrU7Mf+0vQ1h7M9Hty5OsVuk6kFMbUWF5JJVbHnFA9ilWgWJftywAA5JRUYqvgeQDs+vVixU3gWk3dEI+7p0Ui8pg1czRQDSbyRGRLoTI7pWiyDBzPLsGkX474fE5NO2bYePhUg99rE7tgw8zV0rKf+BtJRamySg82Hj6FEpsOvWr2SbAsy3hw5g78Y2E0nv0musFzekpr1Magxve71U9K1Nj6uJP41/f7sD9VeymaFnYY2ebYqSJ8tPYo9qfm4+FZO01bL48LTbG0hohspa60xmXf12a+nT/P2omcILNCGklJmlH7OTcexrT2c39wZqOZTW3kb/P3YEt8NgZf0Bkf3Hel4eurmS3Xzz0FotelYkctLK/Cp+vjkV9ahcOZRQCAjUeylK1H9PCTKpf/dlcqnripLy7q3k7T+orKq/DkvD0AasZ7T5p4p6Z2tKi76qarhE3f9o8/Wazr9Vq57bggAnvkiYhsQsRldVkG0vObjrVcVF6Nj1XMxqr1QC/iQOurN15kwhosxGDvYcvpMo+o5DyUVHjEBBUkHjVJm79ly6s82BKfhbJKMTF/vPYoZm89jsXRaULaM9vuJO2jNqXm6hvPvKSiGolZTZNhG3S2k8MwkSciW3Jbz0vj4/Oag5mGrMdfT2d6fhnWxZ1U0Y52ei79V3m8PnvjH5u7W1X8ehSUVcHjVbYFvEF2VDvtxn+fH4VHZu/C2Dn+SyEa7z+B4p+7LUlzLMJrwTVsaKu+Y0oqqjHsw424ZfImLNyZHPwFNmSn/TrUMZEnIlsKliBZTW2Pta+ljRhWz+rNprdkYo+fmVcrqr3467w9SM5puM12J+Xh5UUHkF8qrpSoqLwat368CeVVxve2K6Fmm3oDnIBsOlpT9rI7KQ+lldbW96vdT4Lt14nZJfjXD/uQVVShIyrl9PScz956vK707b9LYwVFZBe8pGA2JvJEZCtVHhler6y4R9Qqry6JUbW8r8Q/Jbe04TIC+rlEbTWrTwj8GT4poslj3+9JxYTVh1S1U+3xYv72JMzZetzn88ezSzAn0vdzRgm0zVcdOKGojbUKr1psT8hBtU1nXVUiu7hpwr4kOh1v/KQ8Mbbqxsn80iq/z9nhRlYl/EepbZsq/b636deSpZjIE5HtjJqyFdU2T+S/252qu41Avadaqb1SsNZPiY/WJEf5hFBi/bBHeZ22LJ9O+pYdxNsr4/wul+HjXoPGZvs5ETizLv2fcXZxpeIEPU/hlYknvt6DV3ydjJr0Z6e3tKay2vdJiFElayIZfQIRk1aAr7cloSDACYNeIt/B+OUHceX4X4L+LZFvTOSJyHbiThQaUnZiJV89bY3Lh4Tc7Kpy+fWHTvl+QseRuqI6eEmK1adpby4XU9KwUmFPuR5GXZ1aFBX85MeoKzOqS2tULPv+6kOKTsLsSO83QEFpFe6ethVvLT+I8SsOConJSKeKyjF3WxJKKz14J8BJNfnHRJ6ISCclva6+ljEiSRI2LrfJr3OLonLjekHN0Pjzm7ctCb/9v01YrCDpN1OgCpQZmxPxwnf7zAtGIL2VNStjMlB73rd0b7rf5Uyfa8DP40Xl9pyLwUmYyBMR6fCv7/dh8LvrsTpGfc+sx4Cj6S8OKC0ArL0lbndSLsqrjKkPn7xW+RCfRhC9XSevO4qjJ4vx7x/3GxKPUWUmuxQMLWnVfSCN11tW6RFSgkWhiYk8EZFGu5NysWRvOnJLKvGPhdHBX9BIsIP3pF8Oq27T14yuWmjNKxKzilFYZu9ethMF+mZ2DWTBDvOGE8wvrURClrISNBGJYlxGIab8Go/URjdpayF8+EkN9A2xKiwMDHx7Lf705Q54vbLwceRnbz2OYoEzEM/akoh//bCvyY36Wlm/FzgfZ3YlItJIb0ITrPR52sYEXe3rkVGgrcb4k/XxgiMJDVUeL3YkNp0Iyx+PV8adn21VvLzSPD7QcndP24oqj4zl+zOw7l/DFa/b53pOp9F2SOitVlHtxc7juaqvptVsu8Af7Dsr43Aivwyvj7pMR4Q1diTm4N1V6kaHEo0XLppijzwRkUZ6e8/sPFb+S4sOWB2CIzX+RP19wsdOFeFU4ZkrA//6YT/+o2Kbb0/I8TmDryT57uUUsadVeWpaiT/VdEZSrZSW1lhRejJ57RHcMz0Su45rnwFWjYyCckNObGbpHA1mW0I2bvt4E/70ZdOJ2uzO7sMYi8BEnojIIqFwkDFTZbUX3+xMsTqMoNbEZuLWjzfjxokb6q7qrNifoaqNKq+6Gn+libBVY6s3VhjkpmGje/L3p+ZjyoZj2JuSjz/M2G7a+vV2DiiNS82n/NDMnUJP3uozetz8Z75RX/LoNEzkiYg00nswt3GHvOGMOH5/tzsFry1VN1GXaEre1lMLogAA1V5ZeLz+7k+w667m72/of8sbDkVoSPwB/gBjMwqMWGMIMDYxf3dVHGZuTlR8YvpzrDNu/teDiTwRkUZuLq1xojeXiR03W8vHo/YlBWVih6v8YI3vG6RF1MgbwdcVgLiMQiyOtna4S6tq95WsNdBHpPSKinHvztgdqLTSg/dWHwqJBF0pJvJERBZhZQ1p5mff8TcjstUlM2pmGf3rvD1NHissq0K1R105UbCZk9NUTBql5kZkrcy8D8AuXz1aTyjmbU8SGIWzMZEnIjKBrwMne+RDQIh/xLVXrdTMMurrJt7/LDqA4ZMiUKJiKMWjp4oCPj9jU6Lf5xpfbUvKKQ34vDA6G7Z+FCCx6y+v8j1LNL86z+Dwk0REFmnSY2j1MZiCEt1rqrk5FfuK1ysrL63RFo3/9vzMMvp/6+IRm16IYf3OUtxWen4ZPtsQj1dv768o312wIxltWzTDrqRcXNqjvZqwg27eqOQ8Ve0pVVBa2eSxtDwxY7abQ+weNH+7efMyOBUTeSIijfSOuGDwgA3kYl9FJile9oXv9+HD+wcYF4wGMekFiEkvwLq4k6pel5anvBxmwY4zIxjtTclXtZ5gXl0i/qbqrOKKJj3/6fllGD4pQvi6GisorUJKbimu6NXB8JFk6nv/58Dj0qudvC0UO+pZWkNERBSA1yvjy80JmPjzYdWz1hpVm775aJbf5xrnYcv3Z6i42VVsvMFywph0laPDmJSpWXGS7avU5+0VB00ZpnbYpI24a+pWzNziv9xID1/7VbXHi18OqjuRq7XzeC7+MGM7MlTc5+BWTORt5I4re+CCrm2sDiMk3XbZ2VaHQA6k5lifmFXS5LFQrvM0s9dPq9qPZ/n+DExYfRhfbErApLW+R4XRKia9QPiEQ772K6tvdqUz1JwslVQ0rRGPOOL/JE55DA1/rx09acJqvfu38r/rb3en6lrTruO5eHlxw0nU7P+tIh4TeZu46aJumP7wYESM+42lcZzbuTXCw5z1p/DgkPN0t3FD367o1am1gGgolOjNRVccUDcJEFnji00JdT/XL9cQxdeEQ6LZdfhJuxJ502hmQTkSsmomVIpKzsXXBtZ9W39+7HsH8nXi/sZPsUFbC/Z+tsRnoyrIaEbxJwPf9Ox0TORtRpIkvHP35Zatf8tLIyw/mVBr2MXKb5YispPIY8YPaafHepX1y26l5uqBmUMI+jM9IqHJY9ZHpczd0yIVLWdEvirLMvan5vscNUerxKxiDP1gA0ZO3oRl+9Jx3+cCT9p8bAQb7H4+Gfl3cdX/1uIvX+3yu44Xvt9n2LrtgIm8DY2+qpdl65YkCed1cVZ5j4geCOt7MciJrB/qzVhP+hjPO5TUJgZ6PuXs4qajkFjBDicYSuxPDXxTqpElQj/tS8fd0yIx7MONyCgQk8y/tOhAXY3789+5O6Gsoe87MdjY/76UVnoQcSQLGw6f8vl8VlGFrpjsjom8Cfp2a2t1CC6nP5lydzpGRjFjkhiyzre7UrE9Qd9n/NKiA8EXMoFVabyTTnZf/H4/AMDjlfHJ+njd7aXmlmKPYcNUip0RuL5fDmZi6oZ45PsYCjO4hnva2yvisHSv8ll6B769Fm8tO1Nyo2bvWXngBCqqm5bZuH3iPQ4/aYIubVsgMbvpjW5+Oed7zxYcVtJPLjJ/B8c41sopf7YPztyBy8/pYHUYuonukB/3435l6zXqFMIBO5CvGWpFmR5xzOfjSq8uB/pc/j4/CgBwPLsUk/9wlerY6psTeRwAFI/jX1heja+3J+OJm/rifJWDfyzdm95kvoIa7s7k2SNvQyzzUEfUzbnc7kTkWoJvdl0UpbyX1QhF5eqGAbXC4UzjbrL0N+OpSIujtXzGvg+kardFTom4chiHVJVpxkSeHK9183BFyz0z4iK/z0mS5Po/drKnSh+Xgu3meHYJYtWO9+0ibjjJj0oRO8SlUkaU1iyOSsPIyZuEt0siiDmQijwcu/3QzkTehlxwzDDV2R1bKVouUMe9JLnjYE3Oc/OHGzB763FkFVWY0sum1pHMIoz4KAKjpmy1OhTS4fG57rlx+d8Ky3qU+HCN2HkBRNuTbM0JmJs45UZvrZjIm8Ddu5D1mH+Tk50srMA7K+Nw7XvrcSDNfr3eSmuh3cxJN2zqZfeJo0TnZNMjEpBTbN9RTcqr/F+x85Wgum1PFdHBZu89Wj8hibwkSfdLkjRFkqQtkiQVSpIkS5K0QGNb50qSNEeSpAxJkiokSUqSJOkTSZI6i4jVrup/edphxsNHb7jA6hAUC1O6vWywXYmcprDcuNEx3MjtSYMbFVfYv97elypPw73N67X+NOyt5QctjqApLUNaOomoUWteB3AVgFfb40UAACAASURBVGIAaQAu1dKIJEkXAtgGoDuAZQAOAxgC4HkAv5ckaagsy64f780O6eb40ZfDKztjVA7FebzG54gotIVSH4DLqxBcbdrGY+jWvqVl66+s9gqb5E7kfuj2XVpUac2LAPoB6ADgaR3tTEdNEv+cLMtjZFl+RZblWwD8H4BLALynO1ILKKnPstulW0mS8M6YK6wOQyi3/zETGSE5p9SYhu31lScME+GGnHAS5MTPzNeV+8nrjloQyRkeFT3fJWZeBXHg56uGkEReluWNsizHyzruKJAkqS+A3wJIAjCt0dNvASgB8IgkSa6fXckJX3x2ori0hohIAzuUOxql8WHb5TmP6yndU60+ebluwq+mrcvt+7Sdbna95fT/a2VZbnB3hyzLRQAiAbQBcL3ZgVEIcPGBmoj0cfO3wwIHlE/WZ3UCSv6pqdBXel+CiJNot49aY6eZXS85/b+/a0PxqOmx7wcg4KmcJElRfp7SVLuvl5JdqMHNrq4+bIhndg7+8HXn49KeHZBVWA5JkvDpr/qn8iYissIbyw7ikRt6Wx2G40Ul52LwBV2sDkO4LzYlWLRmGbHpBfhyc6KAltzNTol8x9P/+xt/rfbxTibEYrrwMDtdHHEWxWfsAc7KJSg/IXjvnivrfv7lYKayFxGRY+1Lzbc6BNO4vffSKPd/sR3H37/TtPXtOm7O+PITf1Y+zr7oXefuaZFC2vG6fJ+2UyIfTG2aFfQTkWV5sM8GanrqB4kMSpTWzc8k8qzyUEfx5gqyYbX8rau5uYeIzpixKRHX9+lqdRhEQpidK8adKDR3hQqI3gSijq9uP0zbqRu4tse9o5/nOzRazjGU/IG3ah5ufCAupfjEJ1CPvMaZXXnORaTdY3N3Wx2CKZzUyy06Uie8dQeESHq4/AO2UyJ/5PT//fw8f/Hp/60dX8kgrZoxkddK6ag1Lv9bJiKbqk1mMwvKMYX31NjOvO1JqPb4n0GVlLHrCav102QZy06lNRtP//9bSZLC6o9cI0lSewBDAZQB2GFFcEb7w7Xn1f3M0hp1RGwuCZKmniM3D0tHRGJ4ZRlhkPD0wijsTbFfvf2sLYno3bUtbr3sbNv3oBuRlH0VmYT+PToEX9BFbP4xC2X3fVov03vkJUlqLknSpadnca0jy3ICgLUAegP4Z6OX/Q9AWwDzZFkuMSVQkww6vxM+vG8ABl/Q2epQcJaFM8LpIgELn7wO53dpI7TZAed2xNgbLgi8aubxRBREbR5hxyQeAN5ddQhPztuDuAz71V2b5Z2VcVaH4Hgi82XO7KqckERekqQxkiTNlSRpLoBXTj98Q+1jkiR9VG/xXgAOwfcQkv8AcArAZ5Ik/SRJ0vuSJG1AzcyxRwH8V0S8Zgu0E70x6rIGvfGANcNPhknAzLHXmL5eXyQJePvuy5UvDwlDL+qGzS+NwOQHrhIWxzd/vR5v330FNo77jbA2iSj0OGXUjBmbxQ816PayBruxsnPJrsm3XUt+RBFVWjMQwKONHut7+h8AJAMYF6wRWZYTJEm6BsDbAH4P4A4AJwB8BuB/siybM96Sxcz+Q1zyjxvRo0MrnNOptbkrDkDNJgirt7DWP1df27z2oRbN/J/vuvz7gYgEcMr3RM13nr2DzSutsjoEW7O01F9kIi+wLbePWiMkkZdleTyA8QqXTUKAPE2W5VQAj4mIi5Q5t1NrdO/QyuowGlJxNqO0Tj3YF4NTDrZE5CzVDskkJEmyNhFUwKzx0/XYfDQLkQnZlqz7210plqwXsPfVl8VRabhv8LlWh2EIO41a414qM0QjOuT7dGtr7gr18rHNLureTsHLzP4ise8XFxHZw0wBs1OaYenedPzuk81Wh2GJsiqPkHZyiiswds4uzNhkzWcek65whG4DjpVCS2sEx/fvH/cLbc9OmMiHgE5tmmPdi8PQPNx3xq50+EYrPT/yYoy/y3fdfIPSGo1/+4G2QKDn2ItPRMF8GsJDTjrlO1LEVROvV8aORPtfMTCK0Lp2gW25nZ2Gn6TTRAxp2KJZGDq2bg6PV8b3f7sezcL9n7PZMY0PC2sYVf+e7f0u27rFmTH4q7z+rwurvexX+zEEehW/bIiICAA2x2dZHYJf6+NOYltCDm69rDtuvLCbITfjiexFd8oJoB0wkTfByP5no9/ZNYnoj1FppqzzvM6tseaFYfDKMloGmWzKjj3yzcKCx9SiWRjev+fKBu9P1JTOgLLRg/hlQ0REAPDst3sx8d4BVofh05Pz9gAA5kQex7oXh+EzA64Sie2R58FVKSbyJnhu5MV1PytJ5P2lj83CJLRoFobSSmW1fM0D9MI3WJ/98niEhwWP/ei7tzd5rNqj7Y8/0Daw4eYhIoeZsPqQ1SEQAQDu+GyLIe0K7dhiHq8Ya+RtKCxMwn2Dmt5dPbJ/d+x5/VZFbagpz7Hj7KSNz0FkWdkZenWA0ppAamZ2bdh+7blE4NIaftsQUXBfOuSGV9FC7RvShofTJqo0dngFw+OhNZjI29Qzt1zk8/E2LbRfRPFXKqKgisV0SnrkfQn0BaW2tyBYSZKWNomIyJ2KyquxJNqc8llbEng8TMopFdeYyzGRDyH+zpYD9cjPfvQa9Du7HZ675SKc18W8CaOaazy7CFQjf36XNpratOF5DhER2dD6Q6esDsEyIvu1XlsaI7A1d2ONvE35Sh6V3HypRaCceWT/szGy/9kAgJ/2Zahu+9renbE7KU99TBoT+eoAs5m0bdkMX/3lWqyOOYGknJKGcQVYXTM/w3YCoXfZmIiIyBdeobYGe+RDiL8TAaNOEADgh7/foOl1jUetkaHsS6Jdq8DnpiMu7Y5JD1yFy8/p2ODxQFuge/tWuKFvVwDAvYN6BQ+CiIgAWDFJH1mFNfLWYI+8S/lKTHt0bIWU3KZ1Z0benKP1RlqtZTCPXN8bE1Yf9hNL4NcG+gqa/8QQHDlZhP49OjR8DQ9SRERE7JG3CHvkXcrX39P0hwch3EfJih3vsr/4bP8TQAXSukU4/nTteYKjAZqFh+Hyczo2KfnhFxcRUWDs8AgN/JStwUTeZPOfGKJoufqzldbSm3Bf0asjtr1yCxY+eV2Dx+02IZSvaNQcB3xtu8ZuubR7g9/P69KGSTkRkWCyDPzxyx1Wh0Em4AmbNZjIm+zmi89StNzZHVrh9it6NHisNt++8cKuTZZvPKKMv9T87A6t0LNjK0XLOpW/75L69wIM63cWLu1R0+t/1bkdcX3fpttU0brYB0FE5NeGw6ew63iu1WGQCZjHW4M18jY2/eFBuPqddcgvrQIADO9XcxIw6YGr8Nev96BZuITX7uiPqOQ8jBrQE8MnRShq9+wODRN5u/XI+yIiYW7cC7/mhWGQZdmWE2IREbnB5xEJVodA5GpM5G1MkiQsfvpGvLXsIM7v2gYPDK6p/e7VqTVWPXdTXQKqtje5bctmePSGC/D19mQ8cv0Fmod6tCtfl/fuvbqXn3KlM+9dy8kCeyCIiPzLLCy3OgQyCY+H1mAib3MXntUOCxrVtAPaR4Op9b+7r8C4312C9q2a62qn1s0Xd0N4mITObVpg6d50IW02pvQ7wtdyWm+eDboufnERERGx1NQirJEPYaKSeAB4fGgfzH1sCAac2zH4wgZjck1ERGQuHnutwUTeYt0b1auLYkTZt5I2ff0h19b266HmC0Jrr4CWLyF+bxEREfF4aBUm8haY+tDV6NOtLZ4feTF6dWod/AUO9+H9A/DY0N662vA1/r0/ZvYKcLgtIiIKdRXVHry8+IDVYYQkJvIWGDXgHGwc9xu8eFs/q0MRzldae3aHVnjrrssVt/HPERcBAB667nwAQLd2LTCyf/dALwkag1GYxhMRUaibteU4hxm1CG92JSFE3eTy5E198PRvLgQAvHXXZRhxSXcMOLcjWjYLPslTXSzM5ImIiEyzODrN6hBCFhN5so3ObZrj9VGX1f3eslk4brvs7LrflZexMLsmIiIyDQ+7lmFpjUtJJs/XaqdSca2xaHkZh9tylr5ntbU6BCIi10nMLrE6hJDFRJ6EssPNn1pDGHrhmYm1rrLBMJok3qT7B1gdAhERkTAsrSHX8dVLfvPF3YK+7s27LkdCVgnKqjz49E9XK1uX9ectpEL39sYM90pERGQFJvIkhBkJreIK+UYL/m/05biiV/Ae9i5tW2DFszdBlmXFM+cyjyciIrK/ao8XzcLdV4jivndEAIyZEEqv//zukoDPi0qKG7fz6I29Vb1eaRIPAL+7vIeqtomIiMh8y/ZlWB2CIdgj71J2LPl44qY+kGUZzcLDMPHnw4atx8z33qVtC/NWRrrZ8QSXiIiM99byg7hv8LlWhyEce+TJNK2ah+OZWy7GU8Mv9Pm8qAScI8mQP2quthARkXvYYTAOIzCRdymz8xVb/XmYHMy5nVubu0LSLIx5PBERuQgTeVLMKTmQ2ScVM8degw6tWKXmBGbPr0BERPZgqw5HgZjIk1B6rlwFveylsG2zL5/179kB214daeo6SRv2yBMRhSaXVtYwkSfl/nvnZVaHoIgVf6vNmCE6Az8mIqKQ5Nb755jIk2K39u+OyQ9chfF3NU3oa3vB7fCH4tazblJmeL+z/D4XxptdiYjIRZjIk2KSJOG+wefiL0P7NHlORO785M19BbQCXNu7c93Pnds0F9KmKBPuudLqEFyvbctwv89pSeN5sYWIyPnc2snHRJ5s4Ymb+uBvw8Qk8g8OOR93XtkTl/XsgAVPXiekTVH692yPXp04yo1VtAw/efB/vzcgEiIiIv041AYJpeWM9+6B5+CNUeLq75uFh2Haw4OEtSdSmCShQ+vmSM8vszqUkKSld711C/89/ERE5Awu7ZBnjzyRmViibS0OP0lEFKJcmskzkSch9NSeKb0B0Q430pL9BUrWJX7jERGFJLfmEDysuZRVU9Hfc3Wvup/vuuocRa8JtT5St04TbRsBdqhQ29eIiMjdWCNPQlx+TgcAQPcOrfD9367H/rR8PDD4PIujsh+WdliLw08SEYWmKo87O9GYyJNu/c5uh/O6tKn7/bq+XXFd367KG3BBbsX80D4CfRT8nIiIyE2YyJNuDw05X9fr3dBLrbRahomktdT0yLdv2Qwv336pgdEQERHpw0TepZyULzK5tcag8zshOiXf6jCEE3V/yP63foswzgZFREQ2xptdyTHsfI+oE09GPnvwanRsba+Zb42mpkeeSTwREdkdE3kXuemibnU/3zmgp2nr1ZtfM12yxrmd2+DdMVdYHYapnHjCRURE5A9La1xk0gMD8MZPsejcpgWevLmP1eEo5obkqmUzZbN/uuG92l2gTcxRa4iIyE2YyLtIz46tMevRa01fr97UyA03uwLAvjdvw8KdKSiuqMbnEQk+l7HLe/3qMfP3Ezuwx9YnIiISg6U1pJvu0hqF2ZWda+QBoFObFvjniIvQo0Mrv8vYoUP4jit7YMQl3f0+f2mP9n6fe2bERUaEZBpf2/8P15xrfiBEREQCMJEny9khuTWT1SckbVqcuRDnK5TP/zwYXdq28Pna2om/7CzQ/uRrRBu7XCUhIiJSi4k8kYnscNISKIQf/n4D+nRri/lPDDEtHiIiItKGiTzZgA2yWxt56LrzcVH3doa1H+hkYkifLoatl4iIiMRiIk+66S0VUdpLHRYie+voq87B+n8NN6x9PaUkNr9NQRPZle+KiIhCQYikRmRnStPKmy46C93atQQA3DfImTco2qEeu/6Jk2x1wb4BrN/CZLV/jrjQ6hCIiEzBRJ4sp7RHvkWzMCx7Zig+e/BqvDPmcmODMtD7910Z8HmjE1FfN3y6SesWgUfVvfPK4JOlvfT7Sxr83qtTa10xkbn+enNfq0MgIjIFE3mynJpe6l6dWmP0Vec0GHnFbgKPmgJcfV4nzHt8CD578GrcP9j8KwtG5PF2GsLxxdsuRotw/19tQ+vNgOzLN09eh6eGNezRbd/KvvsbNWWHK19ERGZgIk+Wc3kHcQMSanrEh/U7C6OvOgfNwqx9880DJLxqfHDfACHt+DJm4Dmqlj+rXUv8f3v3HSdHXf8P/PXevd77XXK95pJckmu5XC49ISEBYkIgkJCEEDqE3qQoRUTAgnTBAlixoOLvK6goXRFEAbEAghhBUFEEpAQk5PP7Y+cue3s7O2Vnd3ZmXs/HYx97N20/+5nP7r7nM59y35mLddfHtokvzc8e9/9IRxVCLp8XIiIiMxjIU9L818o6dcxctKS66Uv00feaWovq4ki/g0PnNts/ZgrTfP7q6Th8XivOWdVtep/JZfkTJubSS+IJSztRnBupcb9sXfxmTz7sSuBvNopjWUG28UZERBmG94vJdX6r+7QS9CUb/5659xT85+3/4Us//4ut18zJCuHHJy/A7156w7DJCeBOQFtRmIPzV0/D7t0Kl/7oacPt9S4q9LK6ND8bP//wUvzzzXfRVas/qy3526/P2wsd5/3I7WQQEVnCGnlynd87X45n/F6tZEd1US4+ut80iykY/wKVRblYPKXGsWY2XlRakJ0wiOcQlf6XFeDyT0TexW8uckV/U9nY36t66lxMifMy/bok09Onx6vppvRjWSGioGDTGkqanbHIr9rQh2vueRbddSWY01aZglRlpkwIMDIgCa6y0zyIbeSJiCgTMZAnVzRWFOCTB85yOxkZYGJYbSnQthGVJ9OUaXJZnvFGJm2b14Kbf7HD9PbJNsFKJhZnHO8tQb9YJaLgYNMaojTyeoDR11SOdf31jhwrKyRoqyp05FhW2AnK/TgDLhEReR8DeSIfGmguR4nOJEbJNu+54qBeNFUUJHcQRGrYe6P6SgCRMeP7Y5Y5JZm3XV9u7f1evLYniVdzTiY05XJDblbY7SQQEaUFA3miNIptHhIv0Eo2+MrNCuG7x41gVmP8gPiA/uRnYXUiQFRK4YQlHeOWXbmhD+UFOckf3GGf2N9aYL5l2P6Y/E4KG5yo5srkL8gyUU4Wf9qIKBj4bUfksOGozrtVRbmOHvvcfeJPilQeNZlNrTYR0hkrpowtO2ROE45e2IYrD+5FT32p4euka4r7/JyJNaepasQy0h4ZJ39Wg/H7j9VgsUY+UySaofb8/aahT+dij8iv3J5Nm8hpDOSJHNZVW4yPr+3BfjMn4etHzhm3zsxPSEVh/OD/zpMW4OiF7XHXfXHrbIQECIcE12/qBwDMaizDjVsG8LE10/HRfafh3H2mYm2fufbtRuOmO9FkvL4sH1mh9H0FXX7gTADAzIYynLa8C8NtFfje8SNpe303JKqRP3x+q+66webyVCSHUqQol+NWmPXQOUvdTgKRo/jpJ0qBzcPN2ByneYXRLf9D5jShVacD6LTJJROWjYZpA83lePDDSxEWQV3pnpFl9p6emWP0d9cV45A5zcjJCmGopQK/2vEfrJ41OaWvWV+WP/b3Scs6cdKyzpS+XiYIB7j2saOmCM+98pbbyaAMU1Ps3MhbRJmAgTxRim0ebsLXHn4BCzqrMDkqmAQm1tB/Yv8Ztl+nPubYqZTMTKfbl7TjjBVTxvoLfO3IOfjDy29gZkOkmQdHiHGOXhzv5xp3p5uzUeY6eVknrrr7WbeTQeQqBvJEKXbxmh4cMb8NzQ6M9OIHhblZ4zr95mSF0Nfk38DSTXo18ldu6E1zStLnsBHjjsaFOWHs31+Prz38QhpSlHpBvfg109+HyO8YyBOlmIjoNpfJVOnq7EqppTeJllc775qxW4tpjYLbD3anITGUUkG9gCGKxs6ulDR+l9qX7DCOyc52alcy59xoXxYnSofdu1nSvG7n+x+4nQQi1zGQJyJH3L59niNj1DslqJMheVFnTZFjxzJzkSki2M0aCM97+z0G8kQM5ClplUWZN4EPJcdOZ9bexjJ85qBZKUjNHium1QIAFnRWGW7LOC2YRsuu0en3U4W8j96KJf/bxUCeJirOzQrUiF0M5MmWS9fNQEgiwwiu6TU3Njn5R3JNa+yPUf+5zQO4ffs83HTY7LSO0hM0XggM9Sb2Mls249XIz7QxWZhX+eGOlZ8uxii+vabWWt5n6dQaPHjWkhSkJjMxkCdbNg414dHz9sKdJy0I1JWv0zprik1tV5qfHXd5qnI+Uzu7hkOC3sYyZIdD+PyhA7r5AvgjUHGC3mzAgHt9LJxw1Ya+uMvNxnZTJ0387F2y1trwr9XFmT3U5aY5TbrrCnO8P9YFm0f5X11pLvadOcnSPgJvVEY4xbFAXkQaROQmEXlZRN4TkR0icqWIWBpXTkTmi8gPtP3fFZEXROROEVnpVFrJGZVFuQmngCdjh8xpwmBzOUrzs/Hlw4d0t0v0g+w1Tv32Tp9cikfOXRaomhc7to60WN7HC5/qFoORoBK9BwFw2EgrhlorUFOci28fMxcAUFNiLTC/9ahhS9un21l761/E+QHj+GCw2jFdRALVmd2RS3IRaQfwEIAaAD8A8DSAIQAnA1gpIvOUUq+aOM5xAK4H8DaA7wP4G4AGAOsArBKRjyilLnEizUSZIDscwm3HjeD9D3YjO8wbZIC1mpS87DDvCBnIzQpjVkMpfvu3N0zv4+mfQGXcRl4hMn/Bt4+Zi927le0KiQ4HO+k6ra+pDKUF+nesPvB4oHP5ATPw2jvvu50MSgOrd15EgnW3xqnI4XpEgviTlFJrlVJnK6WWAvgsgCkADINvEckGcCmAdwEMKKW2KKXOUUptATAI4D0A54lIZt/LJLLBKIhPdwuIZGZuNT42pZ2Hm9BYZTU+DepdRa8H8gu7qgMVrAXZ+x9YDOQhgeo/kXQgLyJtAFYA2AHgupjVFyBSu75FRIxmxKkAUArgT0qpZ6JXKKWeAvAnAPkAMrcKhCggkpmIZaS90sGU6Dt+cfvY30fMb03La2asDA940n2dofdyXg3p7ZzeXbu9PSOWQDK9WJND7nn6FUvbiwRrsjAnauSXas93KaXGfTMopd4E8AsABQCMGhO+AuBfALpEpDN6hYh0AegE8ISZJjpEQZGqACheZ9fl06yPHhCtsSIfZ62cgsGWiqSOY9aGoSactrwLxyxswyl7dRrvQL4wdjcpOL/jCb8Hpk4qibvc6zWWIpzUa9T2Je3GGwWIIFhNa5xoIz9Fe/6TzvpnEamx7wJwt95BlFJKRLYD+BqA34jI9wG8DKAewP4A/gBgg5kEichvdFb5u+cPBUJedgjvvh+5Zp7VWJa21/3swb1J7f+FQwfRXRc/qIhmtSalriQPjRX5ePE/OzG7ZU/f+uxwCCctYwBP/hdKEMnfuHkACz9174Tl9WX5eOn1nalMVkpFgjW3U5EZlnbX4rp7/+x2MjJGpI2826lIHydq5EcH3tXrSTW63DDiUEp9B5Ea/tcBHArgbABbEGmeczOA55NKKZEP3HbsCFZMq8XFa3vQXp2+lmbhqGAhk74jQyHBN44cxsVrpuO6Q/rdTo5v7TW1Bh/Zd6rl/U5Y0pGC1OhLqiLOo21rEtXIN1UWxF2ek+XxzvUCfGDzZJ+59xTjjTxiTmsFeuqNK0i8rNbiaFIC8XwfECvS8Uke/YoxzFUR2QzgZwAeBDAVkSY5UxGpyb8WwDfNvKBSaiDeA5HRdIg8J7qpS099KT5/6CC2DDe7mCLrUjk2fWNFAbbMbUFNSV7KXiPauv56TCpNz2tlDkFTRfygMJEtc9NbTnebaVnj0YBdT7yRm4zeohttiJ3sqxJpI299NBMgfn551SFzmjJ23g8ndNeVWL44D4Uye0QppzkRyI/WuOtNiVcSs11cWjv4mxBpQrNFKfW0UmqnUuppRGrlfwNgvYgsTj7JRJRIZ+3EL8HoWj87MYCfBk6ZWV+KrHDiN/TxtT1pSg2woLMKH5o1ecLyVT11ANy9g5KRp10nQ7waEIXjfLj8Xh9pZ4hBb57dxLw8qZsZG2Y32mgmI4EaztmJdzo6wkyXzvrRRqp6behHrQCQDeD+OJ1mdwN4QPt3wE4iici87HAI3zl2rq19Rzte5WWP/3rx98/NRBuHmnDzYbNx50kLUv5aXz1iDq7eOH6m046aIpy10l63IC+P+FCWYOx0v/LKEJpOptJOG/lEfQm8LNHbqijMSV9CUiArHILVy9LR/LDaJMernAjkR3vRrBCRcccTkWIA8wDsBPCwwXFGc7xaZ/3o8v/ZSSQRWdNhs/39ycu6cOOWAfz45IXjlvvpN1REDGtvwyHBku4aTJus3371gtXTnE7amJu2zkZpfvCC2q1zW4w38lFZBOLXyPvlLe47Y1Lc5SJiuUber4F8In5oK265aY3Y28+rkg7klVJ/BnAXgBYA22NWXwSgEMBXlFJvjy4UkW4Ria0qelB7PlBEZkavEJFeAAcicll2T7JpJiJjiX7zEk0YlZMVwt7T69BSFTt1hLkfUa98+SY7adb9Zy7GYSMtprZdOb3O8vEzJWbJzQ6n7bWWddcgP8f+62VKnlnlpzbfsT62ZrruOsvDT9rIpu66Ynzv+BHrO6ZRorflhyE6rb4DrzaRs8upRkTHIzIO/NUicruIXCoi9wA4FZEmNefFbP+U9hijlPoVIiPT5AN4VES+KSKXi8i3ADwCIA/AVUqpPziUZiJKI68GSanSXKk/R15V0fhbwldu6MVNhw06ngYrp8TO+ds2rwWl+dnYONRokA5nCkdeGi8aMkkoA5oDt+iMjpMsvaYhAmB1TL8QozTYvd4pyXNipO7USdROfpcPAnnLfSEC9lvjyMdfq5UfBHALgDkATgfQDuBqAHMtTOJ0BIBtAH4JYG/tOMsB/BzARqXUqU6kl4iMBa1Ww4pU/lBUFeXi+k3jh9HMyw5jabe1CbnM1NKm8if+ifOX44LVkdrU0ed0stPO36slPl7TmnS769RFhtvYSaZekCoCzGwYP6p1W0xzwJNj5pHwa9OaRO/KD01rrN5V8OdZ1ufYZaZS6kVEgnAz28bNFnZwAAAAIABJREFUZxX55r1FexCRxpXfn0RNa+yMWmNyu2SbrHjdQ2cvRXZY0FlThGdfeQtzWs3PhLusuwZ3P/0Kpk0qcX14zOhRIzKtptxvP/R2AlSnP2XpHpfeTEVD7HscGwvbR18xgkhn5wP6G/Ddx/42Yf2u3bsn7uQxlpvW+PSCTU8G3JAjIiM1xe73vk/2u9FPX64CZ+5YxMuTnKwQRARfPWIOLj9gxoTa+ViVUU0PrtvUjy9tHcQ3jxked+xzVu2ZyMmtyXCy0tyOe35n1djf02M6HBfkZHZTCavijVpj9HnzfDBrozjZrZH3Ql5dsn/84W59UCFvOZL30U+NKQzkiTLUFQfNQlZI0FFThA1DTWl//cSdXW0cz3ZKgqmuNA8Hz25CZZH+RVxNcS6+fPjQ2P952WEsm1qLkrzxo9UMt1Xgc5v6cfHaHtuT8lg9f7Hl57vHOd9h8BtHzdFdd9bKbgy1VKC7rhjXHtKPm7fNHlt33aa+uPt49WKzt9Fw4vQJrLY79oLYszfhf2+e3oRG35PeXa+1vRPnl/Aau51d/VfC4/NXtQSRj6zrb8DiKTUozc92ZVSKRK/4yQNmYtstjwIAPrH/DHPHM/kWfBhfTLCwS2+UXfOOX9yO05Z3aeMsJyYiWBVnGD+9U+LEKYi9YzHLRrBpZKS9SnddSV42vh01F0JrVSFu3z4P2WHB9Ml68xd6U+uEEaKMef1zZqsPhI1IXkQ8fQEw2FKB2594Oa2vuc+MOtz5u384drzYi86QJL7T4OXzZQdr5IkyWEVhTkYOLbd4SjWu39SPT6+fhfWDDab28VPn2WmTS5Nqy3/FQbOSToMITAXxTpo6SX9MfDM2zUn/naVovY1lvgvi7fLypF+AvSYjQQvw3OL0d31sUf3swb0Jt8/An8yUYiBPRHHF1l5FfzmLCPaZMQkHDjSYngrb6z+i3zx6GDMbSnHsonYMNJfbPk5uVmjC8JJe0VhRgEv278HS7hrDbeOd77NWduPQuc04dlG74bZuSHcyDuhvQEtlAcIhwYJO/bsLZnz9SP1mRvG40XbayaZLWWHrx/LrqDVet9/MSThxaYfu+thKE6PZar3aRM4uBvJEFFewvgqNDbdV4v+dMB9nr4rMZWel1ikn6mKnOM/+bKvRbaFXTo8/42WqjP42bprTjJsOm514Yx2l+dn42JqesTwMupwswc9OW4RHzl2GAwfM3dnSM6/D2oWAU6ND5WeH8en1yd9hsmJmQ+mEfiDxiIxvdjSj3t7dGI/fvEg/iz8eVUW5mNtWqbs+9qLT6Ls3aL9dDOSJKKN45UfTSpvv6I6WN2zWH4VmqCXxUJPXHtKHQ+Y04bJ1MzCjIXVNRNz4IdzoQIfuZINTNyryssKROzTpri12qkb+txesSPoixKqLPmRuXgKlgM9t7kdlYQ7qSvJw2QHm+vOQvlSd64S16NZ7uwYKO7sSUVyx36t24owFnVV48Nl/o626EA3l+c4kLENcuHoafv/SG3jnf7tw8GAjrr7nOd1t53VU4Y6T5iMrFMKUumLd7T62NnGA0lBeYLpzcTIc6exqsbxcvGY69plRhyf/9gY+9ZNnHEiBtxj1hZlcmocTl3WiMDcLJ936eNKv59QFs5Xx452Kr/SSHq/MddeV4KFzliIsMtanxOoFX7LXWFccNAunf+e3KamkMKqddvolP7LvVNz2m4nj1Uezk12Jin9sZ9fY85GXHcK77+8ZL99P/bHMYCBPRHE58WV4zcY+/OypVzC/o8p37RYri3Jx92mLsFsp/PSP/zTc3kwny5pidydxAvTvNKT6xzErHMKCzmrsePUd28fw8g+4UY18U2UBNg414WcmypoZXu/sasZoluZm2Z+QzIkSNauxDA+cuQS7lcKiT91n+zjhkFifqdWF82x3dCA9ehN7jfrl2cvQd/FPx/5nZ1ciIoeUFeTgwIEG1FmYZdRLM7uGQpL2kWNS7dqN8cdYt8pu/DAcNZOt1U7BSTetsRG2ffe4uVjUVa07IU8i0XlkdnQqs+O/Gx3NO58ydzmRT0pFOoo3V1ofJjRavEnVjGJmr5znhC1rDMp87IRoo8cKwLUqAAbyRKTDrQr0ykJvjujiF40VBY4cx26b787aYnx8bQ/2mznJ8kgsbhhorsCXDx/CpjnNlveNnsQndvZZPU61bU9FjfxH95vm+DFpj+4EzfL07HZweKLmSnPfDU41rVnXX6+tM+jcGtsM1MN35uxgIE9EpqTrq/Gj+01Drtbu9vpN+h1DM4lTFz1++PlprSrEhaunWWo7HWvzcDOuPaQ/YX+ClEjjCcjJCo0bcm9yWT4+vX4WVvXUJdzPqQA8FcNPHjy70fmD+oBT3w/nrzbXyTeaU+e5raoQXzh00JmDxRGvac1op+YvbLX2uj5rxWmIbeSJKKPUlebhobOX4vWd76O9usjt5ARSd10xHn/h9XHLYn8c9505CXc8+fcJ+957xmJH09JRU4TnXnnL0WOadf+Zi5Nq06zn1qOG0VRZgMqYpkMHDjTgwIEGtJx9h+6+7TXOfCZcaSOf5gDLiZpZJ5LsVFZX25h/wqmzfPfpiyAieOOd9w23tRNIx9tldKjexbEzYRsc32/9sYywRp6I4nLzu7CyKJdBvIvOXjkVTQZNbK7Z0Icfnjg/4XCaTvjCoYNYP9CA4tz01ztZ6dsBAPM69MfCjja3vRL1ZfZGceqqLcZJyzpt7RstFXG8+x1oU/OlVVPifid0wN53slPnZDQ4NtMPxV7TGv29jALz2LXBCuMZyBORjtjarKDVcgRZaUE27jOoWQ+FBD31pSkf/7y1qhCfWj8L6wdT32wj2ba2n1k/cer4hvJ8nLBEf9ZKO05b3oX8qPb1g3FmGjY6LWY7zVrhdhifKiV52bjy4F4smVKNbyTZb6O92n6H1/wc66PvuH5tZZKV7xHDCaEC9lPFQJ6IKKgS/ODFjgShxyNxQlrUleZh5fTxbdzvP3MJWqqSG60EAE7dq2vc/98+Zi7mtlXixKUdmBNnVkyjAC4V5y03iX4RdkXf2Zjbbu6OiJ3gdm1fPW7eNoQRizPoxirJN56RNjss42akHVWYM/GulNGn1OkLNjMXt/aGn7STGp1jBaxOnoE8EcUVtFqNZPQ37akRrSn256g7euUhk2r8JpU6O+mYnc9AT/2e0WfCITE9rGS00enqWyoLcP5+03DtIX0TgvUZDaW49ehhnL5iivVEIjU18rlZYVy6Tn/CslQEWDcdNhuzGkqx74xJ2DrX+shB6bEnr8MGhWr7knY8cNYSVBXlTFhnpzw63qk5Rb8LTv7ecBx5IiIEr51hMmpK8nDD5n5sHGr0xJCJfvKFQweRHRbUFOfilL2SazvuRJk/amEbZreUo7YkF98+ZtjWMT63uR9XHtyL244bweHzW7HfzMmm9lvaXTP297r+hoTbmgnw2mw0A9k41GR5n2Sam0ypK8YPTpiP6zb1e2JOB6MmJH2N5ZhUmq97fr5//Mi4/43HkXc2ki81cUfB6Tbyhq8nsc1AR//KoFqGFMr8Uk9EGYGBfWIreybh0nUz0Vmb5iETk+HI71x6fiy3juypbY0OFpdPq8XD5yzDzz+8dGyUC6fYKfO5WWF859gR/PLsZRhorjDeIY6yghys7au3PCHWpetmYP++ehy9sM14KEid07auvx7hkGDapBJsm9dq6fWtGmguR1dtEa7fNJDS10lGvPhynxmJhwi1erx4ovtAROtrmtgfIpFU3DE7Yr5BubD4wRFJLpCfeLxg/VoxkCeiuIL2ZZgJMjnL9ZpFdNSk58KlubIQXztiDj6y71Scs0/3uHWVRblJjVs/yskyb7aPgZNqS/Lw2YN7ce4+Uw2b9NSWxr9IOHiwEb8+by/88MT5hs1A9Hz1iCG0VhVi49D4i4nYw333uBH85JSFcduDJ2I2OE3V5+majdZGaior2NNMZtnUmgRb7vGxNRPHjLfVtCYFEwYU2uh0a8TRNvIZ/D2aCgzkiSiugH0XBpMDJ7mjpghn7j0FfU1l+MZRqW1WNL+zCkcuaEOJwzXvevx8MXv9IfFrwUUE5YU5SV2ILOisxr1nLMal62Yabisingu8zPZ7aKzIx2nLu8bdWdk2rxUfmjUZQ60VuH37PHzr6PjNr9qqi3D36YuSTmsq7pcZHVPvor+xQr8Pi5NFYLLDfWUyHSeEIiIKqIWd1fjeYy8lfZztSzqw3eEhFim1ZjSUGm7jdICtV5Nu9DJTaovxzD/fNPUabdWFeP5fbwMAFk+pNtg6tR48a+mEZdnhEK7e2Gdqfyfm0khFp+apk0oSro8tN23VhWgoL8DSKdW48P/+qLOPheEn42x61YZenHXbk+ipL8WHZpnrU+IXrJEnorgmjKntsVozMpYpP3iZUvOdGanwL7un+QuHDpre9ktbZ2P/vnp8bM10zGwos/eCNpy2vAvddfaamUUHxoMt1trAG0lFG/lVPXXYd8Yk09vfc/pifOXwIWQnaP6WbEu0Nb31ePz85bjt2Lljd5MyaUStVGIgT0QUUKGQ4My9TQ5fGMAoVwCcuHTPnQY3ZpdNt+hgO12n3OhCrqky8SzD0VqrCvHZg3tx6NyWJFOVWPSY+UMtFUnNtvv5LQM4bnE7vnHknHHt6c3oMuhcn4oaeRFJeFdB72wmSooTF/MFOVkZUymQTgzkiSiuIH4hUrDFK/LHL+7AxWt7cPO22YZNCvSooFQN2uTFb5qvHjEH2WFBXnYIn1pv3BcgkcaKAnx4Zbfpyaa+efQwhlorcM6qbrQZNL8xE8hPLs0z9brJSpSSZGrkvVh+nOT/6gUisu3kZZ34/APP46iFbQzsKXBEgPycMLYMR4a+/Ny9f3Y5RemVKEgMCXDRmh5Lx9ML1jL5q0UvbUOtFXjo7GXIyQqZGlvdScNtlfj2MXNNbWvmGtLWTKwJj2c9MVaGnywKwJ0xK1gjT0S6Tl3ehd9duAKnLe8y3piS5sbU4pkcRGUcm3nl1YvgodYKHDzYiElxamwfPW+vsQscs9qqisYmmdpraq0jaUy1RIFwdXFuyoP40Q67I+2VyM1yfthHwP3vADPfe6drv0ELOqvQU2/cUTtIeFlDRAl5YbZEv3B6FkYneTMUtSY2oJgQgNs8PV5uWnP5gTOhlML6G36JX//1tbHllRYnqwIiAeO3j5mLh59/FYun1EQtD0LpsufzWwbx2Auvoa/JXsfdI+a34vr7Et9JsjMZk9Ml2mi40xOXdWLjnCZUFlrrQxAE/IUmIiJCZl9IuUlEUFviTDvqqqJc7Ddz8oTmEcu6zU2UlG5uX2PkZIUw3GavNn5WQ6mpCy4779FOtiTbRr6qKNfSRV9QPs0M5ImIMoQrTWsCUddOZumVhvNXT0NBThghAW46zPxwkGbduGUA3z9+xNS2VmeCDSqjEW1G2fkGCIUElx8wA911xTh7VbfxDkjcTMnOXQGKYNMaIqIMkZ3FHzPKTLUleXj43GV4691dmFzm/MyZWeEQ+pr0x1D/3vEj+OKDz2NlzyRUpKB5xepZk/F/v30Z9WX5eOn1nY4f3w1ma6TtNm06eHYTDp7dhFffeg+X/ejpPcfTuTRI1MSskB1YbWONPBGRi05b3oXcrBCOWtCKgpzM/TFLZTtmXr6448uHDyHLwrh/JXnZSQXxZorQYHN53L/7m8px/aaBlE1i9skDZuLGLQP4wQnzxi0Pwh0ro/Ny87bZKU9DUW6W7Q7QQa/MZyBPROSik5Z14vcX7Y3z9p3myusn+hE8OWqSm1P2sj/hjZFmCxP+kHMWdVXjoXOWjluWyqDITJ/fKw7qxeTSPNSX5eOKg3pTl5goV23oRX5OGHtPr0NVTJvyIPSbOHCgIe7yyaV5uOf0RVgyxZn+C3o5OVrmjlvcZuu4QW+Wk7nVP0REAZGdoSMDHbe4HfVl+WiqLEC7wcQzVn3z6GFsvelXKMgJ46IPTXf02Kni1aDu5m2zse3mR+OuqylOz2RAZjVVFuDBD0cuLsLJzBJkwZre+rS8TrqZHSzpiPmteOm1nXh95/u448m/jy2vLc0znHAqHr242snBm/bvq8f3H38JK6bVIi87NcNyegUDeSIiiisvO4yDZjem5NjDbZX41bl7ITc7FPgf4lRzqkY1WWYrTlMdwHt5ONBUyM0K45L9ZwAA7njyDpdTY84VB83C9iUdaGPHZzatISIKMjdvSpcWZDOIT5PyArMTFwW7mUIsv7aRHx2Xvj9mfPrDRlrG/j52UbupY5m9LHLy8klE0FFTZDj+fBCwRp6IiMiEs1Z2Y/0NvwQAnLqX+dmOWf9LbkjUFOymrbPxwLP/wsLO6nHLT1vRhZL8bFQX5WDFNHudT1t0asmN74Q4G5QH5c4LA3kiogALeD8xS2a3VOCGzf145c33sH4gNU2OUoWzp/rfx9f24CO3/97UtuWFOXH7BpTkZeO05eYvUuPZNq8FP3jiZbzw6tu49pD+seVGs9OyiNrDQJ6IiMiklT2T3E4CZSi3K4A3DzePD+RdSk9uVhh3njQf7+3aPa7p3EBzBbYvaccjz/8Hv/7ra2PLR1vHzGooGxvHf98Z/JyZxUCeiIgIQFaI3cZYK0pOEJG4/V/O3DsyC+wVdz2Dq+95DjnhEI7R2uKHQ4LvHjeCR/7yKpbZHFM+iBjIExEFmNlp3IMgJyuEj+w7Fbc8tGMsuPCLTIjPM6XjqNs15+m2rq8e33v8JbeTMc72pR3orC1GZ23RuLH760rzfDscaKowkCciCrBFXdU4cKABj/zlVVyydobbyXHdkQvacOQCexPT6ImeobQ03+zoMc5iTbs9Xs630euVC9dMR252CLf+6kVX0xMtNyuM1SmapVfPJ/b35/cbA3kiogATEXx6/Sy3k+FrbdVFuHTdDPz82X/jhKUdbieHAqYkLxvrBxszKpB3wyFzmtxOQkowkCciIkqxjUNN2Djkz0CCiNzDnj1ERES+Z66NiNMtSea0Voz9vaCzyuGjp8ZZK6eM/X3OqqkupiQ56RpHPVP7HGRoshzHGnkiIiJKias29OHWX72A4bZKVEZ1asxkh89rRUleNioLczDcVmG8g2akoxLP/PNNAMAUdiKnNGEgT0RERClRV5qHU5OcYCjd8rLD2DzcbHm/01dMwR9f/i/e2Pk+rtvUb7xDGmVqrTklj4E8ERGRz3l59BWvKMrNwreOmet2MsYwdg8GtpEnIiIiIvIgBvJEREQ+Z7ZCXlh171Osn/crBvJEREREPsN28cHAQJ6IiIiIbCkv2DNbcXEuu16mGwN5IiIinxtsKR/7u6OmSHe7kjwGYmRNVjiE27fPw9EL23DbcSNuJ2dMUO5I8BNLRETkcxd9qAdP//1NvPv+B/hczNCIZ+49BZ+56xms6pmEtmr9IN8vAhLfpfV99jaWobexLI2vSKMYyBMREflcdXEu7j59EXYrIBwa36F1+5IObB1pQRGbRfhWUGqng4ifWiIiogAQEYR1BqVhEO8/itF7ILCNPBERERGRBzGQJyIiosCY11E19ndtSa6LKUkf1s37F++lERERUWAMNJfj7FXdeOyvr+GMvae4nZyUYfAeDAzkiYiIKFCOXdTudhJSLsRZegOBTWuIiIiIfODcfboBACLAh1f6926DGUHp7MsaeSIiIiIf2DavFU0VBWgojzzI/xjIExEREflAdjiElT2TJiwPSOV0ILFpDRERERGRBzGQJyIiIvKx9upCt5NAKcKmNUREREQ+VlmUi6s29OInf/gHjlrQ5nZyyEEM5ImIiIh8bk1vPdb01rudjLSpKsrFf9/dBQDICfu3AYp/3xkRERERBdLVG/swOpT+LYfPdjcxKcQaeSIiIiLylZ76Ujxw5hLs2q3QWuXfPgIM5ImIiIjIdxor/D+WPpvWEBERERF5EAN5IiIiIiIPYiBPRERERORBDOSJiIiIiDyIgTwRERERkQcxkCciIiIi8iAG8kREREREHsRAnoiIiIjIgxjIExERERF5kGOBvIg0iMhNIvKyiLwnIjtE5EoRKbdxrBki8hUReVE71isicr+IHOpUeomIiIiIvCzLiYOISDuAhwDUAPgBgKcBDAE4GcBKEZmnlHrV5LEOA/BFAO8A+CGAHQDKAPQA2AfAV5xIMxERERGRlzkSyAO4HpEg/iSl1DWjC0XkCgCnArgEwLFGBxGRYUSC+N8DWKmU+kfM+myH0ktERERE5GlJN60RkTYAKxCpOb8uZvUFAN4GsEVECk0c7pMAwgA2xwbxAKCUej+51BIRERER+YMTNfJLtee7lFK7o1copd4UkV8gEugPA7hb7yAi0gBgAYBfA/iDiCwBMABAAXgCwL2xxyciIiIiCionAvkp2vOfdNY/i0gg34UEgTyA2VHb3wNgccz634nIOqXUc0YJEpHf6KzqNtqXiIiIiMgLnBi1plR7fkNn/ejyMoPj1GjPBwGYCmCdduwOAF8FMAPAHSKSYz+pRERERET+4FRn10REe1YG24Wjno9USv1Q+/+/IrIVkeB+EMABAG5NdCCl1EDchIi8+tRTTxUMDMRdTURERETkiKeeegoAWlL5Gk4E8qM17qU660tittPzmvb8HoA7o1copZSI/ACRQH4IBoF8Av/duXMnHnvssR0290/GaLOep114bS9jvtnDfLOH+WYP880e5pt1zDN7mG/2JJtvLQD+60xS4nMikH9Ge+7SWd+pPeu1oY89zps6nVpHA/18C2kbRynVanffZI2229e7W0DxMd/sYb7Zw3yzh/lmD/PNOuaZPcw3e7yQb060kb9Xe14hIuOOJyLFAOYB2AngYYPjPAng3wCqRKQ2zvoe7XmH/aQSEREREflD0oG8UurPAO5C5PbB9pjVFwEoBPAVpdTbowtFpFtExo0go5TaBeBG7d9PRl8UiMgMAIcB2AXgtmTTTERERETkdU51dj0ewEMArhaRZQCeAjAHwBJEmtScF7P9U9qzxCz/BIBlAA4FMENE7gNQjUgH1zwAp5sZfpKIiIiIyO+caFozWis/COAWRAL40wG0A7gawFyl1Ksmj/MOIoH8RQAKEKnh/xAiFwn7KKWucCK9RERERERe59jwk0qpFwFsM7ltbE189Lp3AFyoPYiIiIiIKA5Rymh4dyIiIiIiyjSONK0hIiIiIqL0YiBPRERERORBDOSJiIiIiDyIgTwRERERkQcxkCciIiIi8iAG8kREREREHsRAnoiIiIjIgxjIp5iINIjITSLysoi8JyI7RORKESl3O23poL1fpfP4h84+IyJyp4j8R0TeEZEnReQUEQkneJ39ROQ+EXlDRN4SkUdEZGvq3lnyRORAEblGRB4Ukf9qefI1g33SkjcislVEfqVt/4a2/35236uTrOSbiLQkKH9KRL6Z4HUs5YGIhLVz8aSI7NTO0Z0iMuLE+06GiFSKyJEi8n0ReU5L3xsi8nMROUJE4v4WBL28Wc03lrc9RORyEblbRF6MSt/jInKBiFTq7BPo8gZYyzeWt8REZEtUXhyps03Ky0/K804pxUeKHgDaAfwTgAJwO4DLANyj/f80gEq305iGPNgB4HXsma03+nFGnO3XANgF4C0AXwLwKS2vFIDv6LzGCdr6fwO4DsBnAbyoLfu023mQIG+e0NL4JoCntL+/lmD7tOQNgE9r61/Utr8OwKvashO8lG8AWrT1T+iUwQOdyAMAAuA7UZ/tT2nn6C3tnK1xOc+O1dL2MoCvA7gUwE3aZ1MBuA3aBIEsb/bzjeVtXBr/B+BhLb8uA3ANgEe1NL8EoJHlLbl8Y3lLmI+N2uf0TS3dR7pRftKRd65ntp8fAH6inbwTY5ZfoS2/we00piEPdgDYYXLbEgCvAHgPwGDU8jwAD2l5tiFmnxYA72ofpJao5eUAntP2met2Pui83yUAOrUP+mIkDkjTkjcARrTlzwEojznWq9rxWpJ532nOtxZt/S0Wjm85DwBs1Pb5BYC8qOWztXP2CoBiF/NsKYDVAEIxy+sAvKCl/QCWt6TzjeUtqqzoLL9ES/v1LG9J5xvLW/z3KAB+BuDPiATOEwL5dJWfdOSd6xnu1weANu3k/QUTfwSKEbkaextAodtpTXE+7ID5QP5wLc++HGfdUm3d/THLP6Ytv8jK8TLtAeOANC15A+Ar2vJtcfbRPV4G51sLrP/QWc4DAA9oy5dYOV4mPACcq6XvGpa3pPON5c34/c7S0vdTlrek843lLf57PBnAbgALEbkzES+QT0v5SUfesY186izVnu9SSu2OXqGUehORq7MCAMPpTpgLckVks4icKyIni8gSnTaPo3n24zjrHgDwDoAREck1uc+PYrbxsnTljV/zc7KIHKOVwWNEZGaCbS3lgZbnI4icgwfN7JNh3teed0UtY3kzFi/fRrG86VutPT8ZtYzlzVi8fBvF8qYRkamINEm6Sin1QIJNU15+0pV3WcnsTAlN0Z7/pLP+WQArAHQBuDstKXJPHYCvxiz7i4hsU0rdH7VMN8+UUrtE5C8ApiNyt+MpE/v8XUTeBtAgIgVKqXeSeRMuS3neiEghgHoAbyml/h4nDc9qz11JvA+3LNceY0TkPgBblVIvRC2zkwcdAMIAnldKxQvqMjbfRCQLwKHav9E/TixvCSTIt1EsbxoROQNAEYBSAIMA5iMSjF4WtRnLWwyT+TaK5Q1jn8uvItLs7VyDzdNRftKSd6yRT51S7fkNnfWjy8vSkBY33QxgGSLBfCGAGQBuROSW4I9EZFbUtnbyzOw+pTrrvSIdeePHMvsOgIsBDCDS9rEcwCIA9yLSLOdu7Qt6VCrzORPz7TIAPQDuVEr9JGo5y1tievnG8jbRGQAuAHAKIsHojwGsUEr9K2oblreJzOQby9t45wPoA3CYUmqnwbbpKD9pyTsG8u4R7Vm5mooUU0pdpJS6Ryn1T6XUO0qp3yvZ5l6mAAAE4ElEQVSljkWkw28+Iu3XzLKTZ4HIZ6Q3bzyTl0qpV5RS5yulHlNKva49HkDkbtgjiNSYxB2WzOjQFrbNyDIoIicBOB2RkRS2WN1dew5ceUuUbyxvEyml6pRSgkhlzjpEatUfF5F+C4cJXHkzk28sb1GJEBlCpBb+M0qpXzpxSO05leXHkbxjIJ86RjXBJTHbBc0N2vPCqGV28szsPv+1lLrMk468MdreqHbBM7TbnF/U/rVSBuPlgec+6yKyHcBVAP6ISCes/8RswvIWh4l8iyvo5Q0AtMqc7yMSZFYi0tFvFMubDoN809snUOUtqknNnwB81ORu6Sg/ack7BvKp84z2rNf2qVN71mtD73evaM/Rt/1080z7oLYi0rHseZP7TNKO/zePt48H0pA3Sqm3ERmnuEhbH8tvZXb0FvVYGbSZB88B+ABAm3YuzOzjGhE5BcC1AH6PSDAab2I2lrcYJvMtkUCWt1hKqb8iciE0XUSqtMUsbwZ08i2RIJW3IkTKwVQA70ZNAqUQaZ4EAF/Qll2p/Z+O8pOWvGMgnzr3as8rZOLsf8UA5gHYicjED0E0V3uO/mK+R3teGWf7hYiM8vOQUuo9k/usitnGy9KVN0HJT2DPiFHPxyy3lAdanj+EyDlYYGYft4jIhxGZxOQJRILRV3Q2ZXmLYiHfEglceUtgsvb8gfbM8mZObL4lEqTy9h4ikyzFezyubfNz7f/RZjcpLz9py7tkxq7kw3As00BPCIXIKAMVcZY3I9JbWwE4N2p5CSK1CFYmBWmFRyeEinkfi5F4PPS05A08MGGKxXybAyAnzvKl2ntRAEaSzQOYm/SjxOW8+qiWxl/H+1yyvDmSbyxvkXR0A6iLszyEPRMb/YLlLel8Y3kzztMLEX8c+bSUn3TkneuZ7OcHgHYA/9RO4u2ITO99j/b/MwAq3U5jit//hVrB/hGA6wFcjsiU5ju1PLgj9ksIwFrsmab7iwA+iahpuhEzjby2z4naetPTLGfCQ3uvt2iPH2vp/XPUsk/H2T7leQPgM9r66Cmo/60ty4QpzE3nG4D7EAkQvqO9l88iMtyr0h4fcSIPMH4a7qe0c5MxU5gD2KqlbZf2fi6M8ziM5S25fGN5G0vfKYiMs383gM8j8tt3EyKfUwXg7wCmsbwll28sb6by9ELECeTTVX7SkXeuZ7LfHwAaERmC8e8A/gfgr4h0lkpYs+OHByLDYN2qfRm/rn1B/QvATxEZg3nCF7O23zwAdwJ4DZGg/3cATgUQTvBaqwHcD+BNRGbMfRSRMXRdz4cEaR79gtF77HArbxAJYB7Vtn9T238/t/PMar4BOALADxGZYfgtRGpAXgDwLQALnMwDROblOFU7Jzu1c3QnYmrEMjTPFID7WN6SyzeWt7G09SAS4DyBSJCzC5EOfY9qeRr394/lzVq+sbyZytPRz/CEQD5d5SfVeSfaixARERERkYewsysRERERkQcxkCciIiIi8iAG8kREREREHsRAnoiIiIjIgxjIExERERF5EAN5IiIiIiIPYiBPRERERORBDOSJiIiIiDyIgTwRERERkQcxkCciIiIi8iAG8kREREREHsRAnoiIiIjIgxjIExERERF5EAN5IiIiIiIPYiBPRERERORBDOSJiIiIiDyIgTwRERERkQf9f1KWrctWuK27AAAAAElFTkSuQmCC\\n\",\n      \"text/plain\": [\n       \"<matplotlib.figure.Figure at 0x2ad8a057f60>\"\n      ]\n     },\n     \"metadata\": {\n      \"image/png\": {\n       \"height\": 250,\n       \"width\": 377\n      }\n     },\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"plt.plot(losses['test'], label='Test loss')\\n\",\n    \"plt.legend()\\n\",\n    \"_ = plt.ylim()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 获取 Tensors\\n\",\n    \"使用函数 [`get_tensor_by_name()`](https://www.tensorflow.org/api_docs/python/tf/Graph#get_tensor_by_name)从 `loaded_graph` 中获取tensors，后面的推荐功能要用到。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def get_tensors(loaded_graph):\\n\",\n    \"\\n\",\n    \"    uid = loaded_graph.get_tensor_by_name(\\\"uid:0\\\")\\n\",\n    \"    user_gender = loaded_graph.get_tensor_by_name(\\\"user_gender:0\\\")\\n\",\n    \"    user_age = loaded_graph.get_tensor_by_name(\\\"user_age:0\\\")\\n\",\n    \"    user_job = loaded_graph.get_tensor_by_name(\\\"user_job:0\\\")\\n\",\n    \"    movie_id = loaded_graph.get_tensor_by_name(\\\"movie_id:0\\\")\\n\",\n    \"    movie_categories = loaded_graph.get_tensor_by_name(\\\"movie_categories:0\\\")\\n\",\n    \"    movie_titles = loaded_graph.get_tensor_by_name(\\\"movie_titles:0\\\")\\n\",\n    \"    targets = loaded_graph.get_tensor_by_name(\\\"targets:0\\\")\\n\",\n    \"    dropout_keep_prob = loaded_graph.get_tensor_by_name(\\\"dropout_keep_prob:0\\\")\\n\",\n    \"    lr = loaded_graph.get_tensor_by_name(\\\"LearningRate:0\\\")\\n\",\n    \"    #两种不同计算预测评分的方案使用不同的name获取tensor inference\\n\",\n    \"#     inference = loaded_graph.get_tensor_by_name(\\\"inference/inference/BiasAdd:0\\\")\\n\",\n    \"    inference = loaded_graph.get_tensor_by_name(\\\"inference/ExpandDims:0\\\") # 之前是MatMul:0 因为inference代码修改了 这里也要修改 感谢网友 @清歌 指出问题\\n\",\n    \"    movie_combine_layer_flat = loaded_graph.get_tensor_by_name(\\\"movie_fc/Reshape:0\\\")\\n\",\n    \"    user_combine_layer_flat = loaded_graph.get_tensor_by_name(\\\"user_fc/Reshape:0\\\")\\n\",\n    \"    return uid, user_gender, user_age, user_job, movie_id, movie_categories, movie_titles, targets, lr, dropout_keep_prob, inference, movie_combine_layer_flat, user_combine_layer_flat\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 指定用户和电影进行评分\\n\",\n    \"这部分就是对网络做正向传播，计算得到预测的评分\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def rating_movie(user_id_val, movie_id_val):\\n\",\n    \"    loaded_graph = tf.Graph()  #\\n\",\n    \"    with tf.Session(graph=loaded_graph) as sess:  #\\n\",\n    \"        # Load saved model\\n\",\n    \"        loader = tf.train.import_meta_graph(load_dir + '.meta')\\n\",\n    \"        loader.restore(sess, load_dir)\\n\",\n    \"    \\n\",\n    \"        # Get Tensors from loaded model\\n\",\n    \"        uid, user_gender, user_age, user_job, movie_id, movie_categories, movie_titles, targets, lr, dropout_keep_prob, inference,_, __ = get_tensors(loaded_graph)  #loaded_graph\\n\",\n    \"    \\n\",\n    \"        categories = np.zeros([1, 18])\\n\",\n    \"        categories[0] = movies.values[movieid2idx[movie_id_val]][2]\\n\",\n    \"    \\n\",\n    \"        titles = np.zeros([1, sentences_size])\\n\",\n    \"        titles[0] = movies.values[movieid2idx[movie_id_val]][1]\\n\",\n    \"    \\n\",\n    \"        feed = {\\n\",\n    \"              uid: np.reshape(users.values[user_id_val-1][0], [1, 1]),\\n\",\n    \"              user_gender: np.reshape(users.values[user_id_val-1][1], [1, 1]),\\n\",\n    \"              user_age: np.reshape(users.values[user_id_val-1][2], [1, 1]),\\n\",\n    \"              user_job: np.reshape(users.values[user_id_val-1][3], [1, 1]),\\n\",\n    \"              movie_id: np.reshape(movies.values[movieid2idx[movie_id_val]][0], [1, 1]),\\n\",\n    \"              movie_categories: categories,  #x.take(6,1)\\n\",\n    \"              movie_titles: titles,  #x.take(5,1)\\n\",\n    \"              dropout_keep_prob: 1}\\n\",\n    \"    \\n\",\n    \"        # Get Prediction\\n\",\n    \"        inference_val = sess.run([inference], feed)  \\n\",\n    \"    \\n\",\n    \"        return (inference_val)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"INFO:tensorflow:Restoring parameters from ./save\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[array([[3.700735]], dtype=float32)]\"\n      ]\n     },\n     \"execution_count\": 32,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"rating_movie(234, 1401)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 生成Movie特征矩阵\\n\",\n    \"将训练好的电影特征组合成电影特征矩阵并保存到本地\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 33,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"INFO:tensorflow:Restoring parameters from ./save\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"loaded_graph = tf.Graph()  #\\n\",\n    \"movie_matrics = []\\n\",\n    \"with tf.Session(graph=loaded_graph) as sess:  #\\n\",\n    \"    # Load saved model\\n\",\n    \"    loader = tf.train.import_meta_graph(load_dir + '.meta')\\n\",\n    \"    loader.restore(sess, load_dir)\\n\",\n    \"\\n\",\n    \"    # Get Tensors from loaded model\\n\",\n    \"    uid, user_gender, user_age, user_job, movie_id, movie_categories, movie_titles, targets, lr, dropout_keep_prob, _, movie_combine_layer_flat, __ = get_tensors(loaded_graph)  #loaded_graph\\n\",\n    \"\\n\",\n    \"    for item in movies.values:\\n\",\n    \"        categories = np.zeros([1, 18])\\n\",\n    \"        categories[0] = item.take(2)\\n\",\n    \"\\n\",\n    \"        titles = np.zeros([1, sentences_size])\\n\",\n    \"        titles[0] = item.take(1)\\n\",\n    \"\\n\",\n    \"        feed = {\\n\",\n    \"            movie_id: np.reshape(item.take(0), [1, 1]),\\n\",\n    \"            movie_categories: categories,  #x.take(6,1)\\n\",\n    \"            movie_titles: titles,  #x.take(5,1)\\n\",\n    \"            dropout_keep_prob: 1}\\n\",\n    \"\\n\",\n    \"        movie_combine_layer_flat_val = sess.run([movie_combine_layer_flat], feed)  \\n\",\n    \"        movie_matrics.append(movie_combine_layer_flat_val)\\n\",\n    \"\\n\",\n    \"pickle.dump((np.array(movie_matrics).reshape(-1, 200)), open('movie_matrics.p', 'wb'))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"movie_matrics = pickle.load(open('movie_matrics.p', mode='rb'))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 生成User特征矩阵\\n\",\n    \"将训练好的用户特征组合成用户特征矩阵并保存到本地\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"INFO:tensorflow:Restoring parameters from ./save\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"loaded_graph = tf.Graph()  #\\n\",\n    \"users_matrics = []\\n\",\n    \"with tf.Session(graph=loaded_graph) as sess:  #\\n\",\n    \"    # Load saved model\\n\",\n    \"    loader = tf.train.import_meta_graph(load_dir + '.meta')\\n\",\n    \"    loader.restore(sess, load_dir)\\n\",\n    \"\\n\",\n    \"    # Get Tensors from loaded model\\n\",\n    \"    uid, user_gender, user_age, user_job, movie_id, movie_categories, movie_titles, targets, lr, dropout_keep_prob, _, __,user_combine_layer_flat = get_tensors(loaded_graph)  #loaded_graph\\n\",\n    \"\\n\",\n    \"    for item in users.values:\\n\",\n    \"\\n\",\n    \"        feed = {\\n\",\n    \"            uid: np.reshape(item.take(0), [1, 1]),\\n\",\n    \"            user_gender: np.reshape(item.take(1), [1, 1]),\\n\",\n    \"            user_age: np.reshape(item.take(2), [1, 1]),\\n\",\n    \"            user_job: np.reshape(item.take(3), [1, 1]),\\n\",\n    \"            dropout_keep_prob: 1}\\n\",\n    \"\\n\",\n    \"        user_combine_layer_flat_val = sess.run([user_combine_layer_flat], feed)  \\n\",\n    \"        users_matrics.append(user_combine_layer_flat_val)\\n\",\n    \"\\n\",\n    \"pickle.dump((np.array(users_matrics).reshape(-1, 200)), open('users_matrics.p', 'wb'))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 36,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"users_matrics = pickle.load(open('users_matrics.p', mode='rb'))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 开始推荐电影\\n\",\n    \"使用生产的用户特征矩阵和电影特征矩阵做电影推荐\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 推荐同类型的电影\\n\",\n    \"思路是计算当前看的电影特征向量与整个电影特征矩阵的余弦相似度，取相似度最大的top_k个，这里加了些随机选择在里面，保证每次的推荐稍稍有些不同。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 37,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def recommend_same_type_movie(movie_id_val, top_k = 20):\\n\",\n    \"    \\n\",\n    \"    loaded_graph = tf.Graph()  #\\n\",\n    \"    with tf.Session(graph=loaded_graph) as sess:  #\\n\",\n    \"        # Load saved model\\n\",\n    \"        loader = tf.train.import_meta_graph(load_dir + '.meta')\\n\",\n    \"        loader.restore(sess, load_dir)\\n\",\n    \"        \\n\",\n    \"        norm_movie_matrics = tf.sqrt(tf.reduce_sum(tf.square(movie_matrics), 1, keep_dims=True))\\n\",\n    \"        normalized_movie_matrics = movie_matrics / norm_movie_matrics\\n\",\n    \"\\n\",\n    \"        #推荐同类型的电影\\n\",\n    \"        probs_embeddings = (movie_matrics[movieid2idx[movie_id_val]]).reshape([1, 200])\\n\",\n    \"        probs_similarity = tf.matmul(probs_embeddings, tf.transpose(normalized_movie_matrics))\\n\",\n    \"        sim = (probs_similarity.eval())\\n\",\n    \"    #     results = (-sim[0]).argsort()[0:top_k]\\n\",\n    \"    #     print(results)\\n\",\n    \"        \\n\",\n    \"        print(\\\"您看的电影是：{}\\\".format(movies_orig[movieid2idx[movie_id_val]]))\\n\",\n    \"        print(\\\"以下是给您的推荐：\\\")\\n\",\n    \"        p = np.squeeze(sim)\\n\",\n    \"        p[np.argsort(p)[:-top_k]] = 0\\n\",\n    \"        p = p / np.sum(p)\\n\",\n    \"        results = set()\\n\",\n    \"        while len(results) != 5:\\n\",\n    \"            c = np.random.choice(3883, 1, p=p)[0]\\n\",\n    \"            results.add(c)\\n\",\n    \"        for val in (results):\\n\",\n    \"            print(val)\\n\",\n    \"            print(movies_orig[val])\\n\",\n    \"        \\n\",\n    \"        return results\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 38,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"INFO:tensorflow:Restoring parameters from ./save\\n\",\n      \"您看的电影是：[1401 'Ghosts of Mississippi (1996)' 'Drama']\\n\",\n      \"以下是给您的推荐：\\n\",\n      \"1123\\n\",\n      \"[1139 'Everything Relative (1996)' 'Drama']\\n\",\n      \"1380\\n\",\n      \"[1401 'Ghosts of Mississippi (1996)' 'Drama']\\n\",\n      \"426\\n\",\n      \"[430 'Calendar Girl (1993)' 'Drama']\\n\",\n      \"3125\\n\",\n      \"[3194 'Way We Were, The (1973)' 'Drama']\\n\",\n      \"795\\n\",\n      \"[805 'Time to Kill, A (1996)' 'Drama']\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"{426, 795, 1123, 1380, 3125}\"\n      ]\n     },\n     \"execution_count\": 38,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"recommend_same_type_movie(1401, 20)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 推荐您喜欢的电影\\n\",\n    \"思路是使用用户特征向量与电影特征矩阵计算所有电影的评分，取评分最高的top_k个，同样加了些随机选择部分。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 39,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def recommend_your_favorite_movie(user_id_val, top_k = 10):\\n\",\n    \"\\n\",\n    \"    loaded_graph = tf.Graph()  #\\n\",\n    \"    with tf.Session(graph=loaded_graph) as sess:  #\\n\",\n    \"        # Load saved model\\n\",\n    \"        loader = tf.train.import_meta_graph(load_dir + '.meta')\\n\",\n    \"        loader.restore(sess, load_dir)\\n\",\n    \"\\n\",\n    \"        #推荐您喜欢的电影\\n\",\n    \"        probs_embeddings = (users_matrics[user_id_val-1]).reshape([1, 200])\\n\",\n    \"\\n\",\n    \"        probs_similarity = tf.matmul(probs_embeddings, tf.transpose(movie_matrics))\\n\",\n    \"        sim = (probs_similarity.eval())\\n\",\n    \"    #     print(sim.shape)\\n\",\n    \"    #     results = (-sim[0]).argsort()[0:top_k]\\n\",\n    \"    #     print(results)\\n\",\n    \"        \\n\",\n    \"    #     sim_norm = probs_norm_similarity.eval()\\n\",\n    \"    #     print((-sim_norm[0]).argsort()[0:top_k])\\n\",\n    \"    \\n\",\n    \"        print(\\\"以下是给您的推荐：\\\")\\n\",\n    \"        p = np.squeeze(sim)\\n\",\n    \"        p[np.argsort(p)[:-top_k]] = 0\\n\",\n    \"        p = p / np.sum(p)\\n\",\n    \"        results = set()\\n\",\n    \"        while len(results) != 5:\\n\",\n    \"            c = np.random.choice(3883, 1, p=p)[0]\\n\",\n    \"            results.add(c)\\n\",\n    \"        for val in (results):\\n\",\n    \"            print(val)\\n\",\n    \"            print(movies_orig[val])\\n\",\n    \"\\n\",\n    \"        return results\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 40,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"INFO:tensorflow:Restoring parameters from ./save\\n\",\n      \"以下是给您的推荐：\\n\",\n      \"523\\n\",\n      \"[527 \\\"Schindler's List (1993)\\\" 'Drama|War']\\n\",\n      \"1132\\n\",\n      \"[1148 'Wrong Trousers, The (1993)' 'Animation|Comedy']\\n\",\n      \"2836\\n\",\n      \"[2905 'Sanjuro (1962)' 'Action|Adventure']\\n\",\n      \"3228\\n\",\n      \"[3297 'With Byrd at the South Pole (1930)' 'Documentary']\\n\",\n      \"2495\\n\",\n      \"[2564 'Empty Mirror, The (1999)' 'Drama']\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"{523, 1132, 2495, 2836, 3228}\"\n      ]\n     },\n     \"execution_count\": 40,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"recommend_your_favorite_movie(234, 10)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 看过这个电影的人还看了（喜欢）哪些电影\\n\",\n    \"- 首先选出喜欢某个电影的top_k个人，得到这几个人的用户特征向量。\\n\",\n    \"- 然后计算这几个人对所有电影的评分\\n\",\n    \"- 选择每个人评分最高的电影作为推荐\\n\",\n    \"- 同样加入了随机选择\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 41,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import random\\n\",\n    \"\\n\",\n    \"def recommend_other_favorite_movie(movie_id_val, top_k = 20):\\n\",\n    \"    loaded_graph = tf.Graph()  #\\n\",\n    \"    with tf.Session(graph=loaded_graph) as sess:  #\\n\",\n    \"        # Load saved model\\n\",\n    \"        loader = tf.train.import_meta_graph(load_dir + '.meta')\\n\",\n    \"        loader.restore(sess, load_dir)\\n\",\n    \"\\n\",\n    \"        probs_movie_embeddings = (movie_matrics[movieid2idx[movie_id_val]]).reshape([1, 200])\\n\",\n    \"        probs_user_favorite_similarity = tf.matmul(probs_movie_embeddings, tf.transpose(users_matrics))\\n\",\n    \"        favorite_user_id = np.argsort(probs_user_favorite_similarity.eval())[0][-top_k:]\\n\",\n    \"    #     print(normalized_users_matrics.eval().shape)\\n\",\n    \"    #     print(probs_user_favorite_similarity.eval()[0][favorite_user_id])\\n\",\n    \"    #     print(favorite_user_id.shape)\\n\",\n    \"    \\n\",\n    \"        print(\\\"您看的电影是：{}\\\".format(movies_orig[movieid2idx[movie_id_val]]))\\n\",\n    \"        \\n\",\n    \"        print(\\\"喜欢看这个电影的人是：{}\\\".format(users_orig[favorite_user_id-1]))\\n\",\n    \"        probs_users_embeddings = (users_matrics[favorite_user_id-1]).reshape([-1, 200])\\n\",\n    \"        probs_similarity = tf.matmul(probs_users_embeddings, tf.transpose(movie_matrics))\\n\",\n    \"        sim = (probs_similarity.eval())\\n\",\n    \"    #     results = (-sim[0]).argsort()[0:top_k]\\n\",\n    \"    #     print(results)\\n\",\n    \"    \\n\",\n    \"    #     print(sim.shape)\\n\",\n    \"    #     print(np.argmax(sim, 1))\\n\",\n    \"        p = np.argmax(sim, 1)\\n\",\n    \"        print(\\\"喜欢看这个电影的人还喜欢看：\\\")\\n\",\n    \"\\n\",\n    \"        results = set()\\n\",\n    \"        while len(results) != 5:\\n\",\n    \"            c = p[random.randrange(top_k)]\\n\",\n    \"            results.add(c)\\n\",\n    \"        for val in (results):\\n\",\n    \"            print(val)\\n\",\n    \"            print(movies_orig[val])\\n\",\n    \"        \\n\",\n    \"        return results\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 42,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"INFO:tensorflow:Restoring parameters from ./save\\n\",\n      \"您看的电影是：[1401 'Ghosts of Mississippi (1996)' 'Drama']\\n\",\n      \"喜欢看这个电影的人是：[[100 'M' 35 17]\\n\",\n      \" [763 'M' 18 10]\\n\",\n      \" [3557 'M' 18 5]\\n\",\n      \" [4200 'M' 45 7]\\n\",\n      \" [3780 'M' 1 0]\\n\",\n      \" [5005 'M' 45 16]\\n\",\n      \" [3833 'M' 25 1]\\n\",\n      \" [4849 'F' 18 4]\\n\",\n      \" [5143 'M' 18 4]\\n\",\n      \" [4903 'M' 35 12]\\n\",\n      \" [3703 'M' 18 12]\\n\",\n      \" [5567 'M' 50 3]\\n\",\n      \" [3901 'M' 18 14]\\n\",\n      \" [4043 'F' 25 15]\\n\",\n      \" [3031 'M' 18 4]\\n\",\n      \" [1855 'M' 18 4]\\n\",\n      \" [4718 'M' 35 7]\\n\",\n      \" [1763 'M' 35 7]\\n\",\n      \" [2338 'M' 45 17]\\n\",\n      \" [1644 'M' 18 12]]\\n\",\n      \"喜欢看这个电影的人还喜欢看：\\n\",\n      \"847\\n\",\n      \"[858 'Godfather, The (1972)' 'Action|Crime|Drama']\\n\",\n      \"49\\n\",\n      \"[50 'Usual Suspects, The (1995)' 'Crime|Thriller']\\n\",\n      \"1178\\n\",\n      \"[1196 'Star Wars: Episode V - The Empire Strikes Back (1980)'\\n\",\n      \" 'Action|Adventure|Drama|Sci-Fi|War']\\n\",\n      \"315\\n\",\n      \"[318 'Shawshank Redemption, The (1994)' 'Drama']\\n\",\n      \"3228\\n\",\n      \"[3297 'With Byrd at the South Pole (1930)' 'Documentary']\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"{49, 315, 847, 1178, 3228}\"\n      ]\n     },\n     \"execution_count\": 42,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"recommend_other_favorite_movie(1401, 20)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# 结论\\n\",\n    \"\\n\",\n    \"以上就是实现的常用的推荐功能，将网络模型作为回归问题进行训练，得到训练好的用户特征矩阵和电影特征矩阵进行推荐。\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"## 扩展阅读\\n\",\n    \"如果你对个性化推荐感兴趣，以下资料建议你看看：\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"- [`Understanding Convolutional Neural Networks for NLP`](http://www.wildml.com/2015/11/understanding-convolutional-neural-networks-for-nlp/)\\n\",\n    \"\\n\",\n    \"- [`Convolutional Neural Networks for Sentence Classification`](https://github.com/yoonkim/CNN_sentence)\\n\",\n    \"\\n\",\n    \"- [`利用TensorFlow实现卷积神经网络做文本分类`](http://www.jianshu.com/p/ed3eac3dcb39?from=singlemessage)\\n\",\n    \"\\n\",\n    \"- [`Convolutional Neural Network for Text Classification in Tensorflow`](https://github.com/dennybritz/cnn-text-classification-tf)\\n\",\n    \"\\n\",\n    \"- [`SVD Implement Recommendation systems`](https://github.com/songgc/TF-recomm)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"今天的分享就到这里，请多指教！\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.4\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 1\n}\n"
  },
  {
    "path": "基于CNN的电影推荐系统/改进和修改.txt",
    "content": "1. 加上年份信息，看看是否影响推荐效果。\n\n2. GBDT（lightGBM，xgboost）。\n\n3. 电影类型不使用 sum，使用其他方式来描述电影特征，获得更好地效果。\n\n4. 尝试随机采样。"
  },
  {
    "path": "基于CNN的电影推荐系统/数据集描述.txt",
    "content": "一、用户数据\n\n数据格式：UserID::Gender::Age::Occupation::Zip-code\n\nGender is denoted by a \"M\" for male and \"F\" for female\n\nAge is chosen from the following ranges:\n\n    1: \"Under 18\"\n    18: \"18-24\"\n    25: \"25-34\"\n    35: \"35-44\"\n    45: \"45-49\"\n    50: \"50-55\"\n    56: \"56+\"\n\nOccupation is chosen from the following choices:\n\n    0: \"other\" or not specified\n    1: \"academic/educator\"\n    2: \"artist\"\n    3: \"clerical/admin\"\n    4: \"college/grad student\"\n    5: \"customer service\"\n    6: \"doctor/health care\"\n    7: \"executive/managerial\"\n    8: \"farmer\"\n    9: \"homemaker\"\n    10: \"K-12 student\"\n    11: \"lawyer\"\n    12: \"programmer\"\n    13: \"retired\"\n    14: \"sales/marketing\"\n    15: \"scientist\"\n    16: \"self-employed\"\n    17: \"technician/engineer\"\n    18: \"tradesman/craftsman\"\n    19: \"unemployed\"\n    20: \"writer\"\n\n\n\n二、电影数据\n\n数据格式：MovieID::Title::Genres\n\nTitles are identical to titles provided by the IMDB (including year of release)\n\nGenres are pipe-separated and are selected from the following genres:\n    Action\n    Adventure\n    Animation\n    Children's\n    Comedy\n    Crime\n    Documentary\n    Drama\n    Fantasy\n    Film-Noir\n    Horror\n    Musical\n    Mystery\n    Romance\n    Sci-Fi\n    Thriller\n    War\n    Western\n"
  },
  {
    "path": "基于CNN的电影推荐系统/问题.txt",
    "content": "﻿1. user_combine_layer_flat = tf.reshape(user_combine_layer, [-1, 200]) 为什么还要把最后一层变形？\n答：因为最后要计算得分，得分等于用户特征矩阵和电影特征矩阵的乘积。所以要将用户矩阵和电影矩阵拉平。\n\n2. Session 在 tensorflow 中的作用？\n答：Session 为创建的 tensor 分配计算资源。\n\n3. Graph 在 tensorflow 中的作用？\n答：Graph 中包含运算和涉及到的 tensor。它可以明确得表现出各个 tensor 之间的运算关系。"
  },
  {
    "path": "基于矩阵分解的协同过滤的电影推荐系统/ml-latest-small/README.txt",
    "content": "Summary\n=======\n\nThis dataset (ml-latest-small) describes 5-star rating and free-text tagging activity from [MovieLens](http://movielens.org), a movie recommendation service. It contains 100004 ratings and 1296 tag applications across 9125 movies. These data were created by 671 users between January 09, 1995 and October 16, 2016. This dataset was generated on October 17, 2016.\n\nUsers were selected at random for inclusion. All selected users had rated at least 20 movies. No demographic information is included. Each user is represented by an id, and no other information is provided.\n\nThe data are contained in the files `links.csv`, `movies.csv`, `ratings.csv` and `tags.csv`. More details about the contents and use of all these files follows.\n\nThis is a *development* dataset. As such, it may change over time and is not an appropriate dataset for shared research results. See available *benchmark* datasets if that is your intent.\n\nThis and other GroupLens data sets are publicly available for download at <http://grouplens.org/datasets/>.\n\n\nUsage License\n=============\n\nNeither the University of Minnesota nor any of the researchers involved can guarantee the correctness of the data, its suitability for any particular purpose, or the validity of results based on the use of the data set. The data set may be used for any research purposes under the following conditions:\n\n* The user may not state or imply any endorsement from the University of Minnesota or the GroupLens Research Group.\n* The user must acknowledge the use of the data set in publications resulting from the use of the data set (see below for citation information).\n* The user may redistribute the data set, including transformations, so long as it is distributed under these same license conditions.\n* The user may not use this information for any commercial or revenue-bearing purposes without first obtaining permission from a faculty member of the GroupLens Research Project at the University of Minnesota.\n* The executable software scripts are provided \"as is\" without warranty of any kind, either expressed or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. The entire risk as to the quality and performance of them is with you. Should the program prove defective, you assume the cost of all necessary servicing, repair or correction.\n\nIn no event shall the University of Minnesota, its affiliates or employees be liable to you for any damages arising out of the use or inability to use these programs (including but not limited to loss of data or data being rendered inaccurate).\n\nIf you have any further questions or comments, please email <grouplens-info@umn.edu>\n\n\nCitation\n========\n\nTo acknowledge use of the dataset in publications, please cite the following paper:\n\n> F. Maxwell Harper and Joseph A. Konstan. 2015. The MovieLens Datasets: History and Context. ACM Transactions on Interactive Intelligent Systems (TiiS) 5, 4, Article 19 (December 2015), 19 pages. DOI=<http://dx.doi.org/10.1145/2827872>\n\n\nFurther Information About GroupLens\n===================================\n\nGroupLens is a research group in the Department of Computer Science and Engineering at the University of Minnesota. Since its inception in 1992, GroupLens's research projects have explored a variety of fields including:\n\n* recommender systems\n* online communities\n* mobile and ubiquitious technologies\n* digital libraries\n* local geographic information systems\n\nGroupLens Research operates a movie recommender based on collaborative filtering, MovieLens, which is the source of these data. We encourage you to visit <http://movielens.org> to try it out! If you have exciting ideas for experimental work to conduct on MovieLens, send us an email at <grouplens-info@cs.umn.edu> - we are always interested in working with external collaborators.\n\n\nContent and Use of Files\n========================\n\nFormatting and Encoding\n-----------------------\n\nThe dataset files are written as [comma-separated values](http://en.wikipedia.org/wiki/Comma-separated_values) files with a single header row. Columns that contain commas (`,`) are escaped using double-quotes (`\"`). These files are encoded as UTF-8. If accented characters in movie titles or tag values (e.g. Misérables, Les (1995)) display incorrectly, make sure that any program reading the data, such as a text editor, terminal, or script, is configured for UTF-8.\n\nUser Ids\n--------\n\nMovieLens users were selected at random for inclusion. Their ids have been anonymized. User ids are consistent between `ratings.csv` and `tags.csv` (i.e., the same id refers to the same user across the two files).\n\nMovie Ids\n---------\n\nOnly movies with at least one rating or tag are included in the dataset. These movie ids are consistent with those used on the MovieLens web site (e.g., id `1` corresponds to the URL <https://movielens.org/movies/1>). Movie ids are consistent between `ratings.csv`, `tags.csv`, `movies.csv`, and `links.csv` (i.e., the same id refers to the same movie across these four data files).\n\n\nRatings Data File Structure (ratings.csv)\n-----------------------------------------\n\nAll ratings are contained in the file `ratings.csv`. Each line of this file after the header row represents one rating of one movie by one user, and has the following format:\n\n    userId,movieId,rating,timestamp\n\nThe lines within this file are ordered first by userId, then, within user, by movieId.\n\nRatings are made on a 5-star scale, with half-star increments (0.5 stars - 5.0 stars).\n\nTimestamps represent seconds since midnight Coordinated Universal Time (UTC) of January 1, 1970.\n\nTags Data File Structure (tags.csv)\n-----------------------------------\n\nAll tags are contained in the file `tags.csv`. Each line of this file after the header row represents one tag applied to one movie by one user, and has the following format:\n\n    userId,movieId,tag,timestamp\n\nThe lines within this file are ordered first by userId, then, within user, by movieId.\n\nTags are user-generated metadata about movies. Each tag is typically a single word or short phrase. The meaning, value, and purpose of a particular tag is determined by each user.\n\nTimestamps represent seconds since midnight Coordinated Universal Time (UTC) of January 1, 1970.\n\nMovies Data File Structure (movies.csv)\n---------------------------------------\n\nMovie information is contained in the file `movies.csv`. Each line of this file after the header row represents one movie, and has the following format:\n\n    movieId,title,genres\n\nMovie titles are entered manually or imported from <https://www.themoviedb.org/>, and include the year of release in parentheses. Errors and inconsistencies may exist in these titles.\n\nGenres are a pipe-separated list, and are selected from the following:\n\n* Action\n* Adventure\n* Animation\n* Children's\n* Comedy\n* Crime\n* Documentary\n* Drama\n* Fantasy\n* Film-Noir\n* Horror\n* Musical\n* Mystery\n* Romance\n* Sci-Fi\n* Thriller\n* War\n* Western\n* (no genres listed)\n\nLinks Data File Structure (links.csv)\n---------------------------------------\n\nIdentifiers that can be used to link to other sources of movie data are contained in the file `links.csv`. Each line of this file after the header row represents one movie, and has the following format:\n\n    movieId,imdbId,tmdbId\n\nmovieId is an identifier for movies used by <https://movielens.org>. E.g., the movie Toy Story has the link <https://movielens.org/movies/1>.\n\nimdbId is an identifier for movies used by <http://www.imdb.com>. E.g., the movie Toy Story has the link <http://www.imdb.com/title/tt0114709/>.\n\ntmdbId is an identifier for movies used by <https://www.themoviedb.org>. E.g., the movie Toy Story has the link <https://www.themoviedb.org/movie/862>.\n\nUse of the resources listed above is subject to the terms of each provider.\n\nCross-Validation\n----------------\n\nPrior versions of the MovieLens dataset included either pre-computed cross-folds or scripts to perform this computation. We no longer bundle either of these features with the dataset, since most modern toolkits provide this as a built-in feature. If you wish to learn about standard approaches to cross-fold computation in the context of recommender systems evaluation, see [LensKit](http://lenskit.org) for tools, documentation, and open-source code examples.\n"
  },
  {
    "path": "基于矩阵分解的协同过滤的电影推荐系统/ml-latest-small/links.csv",
    "content": "movieId,imdbId,tmdbId\n1,0114709,862\n2,0113497,8844\n3,0113228,15602\n4,0114885,31357\n5,0113041,11862\n6,0113277,949\n7,0114319,11860\n8,0112302,45325\n9,0114576,9091\n10,0113189,710\n11,0112346,9087\n12,0112896,12110\n13,0112453,21032\n14,0113987,10858\n15,0112760,1408\n16,0112641,524\n17,0114388,4584\n18,0113101,5\n19,0112281,9273\n20,0113845,11517\n21,0113161,8012\n22,0112722,1710\n23,0112401,9691\n24,0114168,12665\n25,0113627,451\n26,0114057,16420\n27,0114011,9263\n28,0114117,17015\n29,0112682,902\n30,0115012,37557\n31,0112792,9909\n32,0114746,63\n34,0112431,9598\n35,0112637,47018\n36,0112818,687\n37,0112286,139405\n38,0113442,33689\n39,0112697,9603\n40,0112749,34615\n41,0114279,31174\n42,0112819,11443\n43,0114272,35196\n44,0113855,9312\n45,0114681,577\n46,0113347,11861\n47,0114369,807\n48,0114148,10530\n49,0114916,8391\n50,0114814,629\n52,0113819,11448\n53,0110299,49133\n54,0112499,26441\n55,0113158,97406\n57,0113321,9089\n58,0110877,11010\n59,0112714,99040\n60,0113419,11359\n61,0116260,17182\n62,0113862,2054\n63,0116126,10607\n64,0118002,19760\n65,0115683,9536\n66,0116839,11525\n68,0113149,4482\n69,0113118,10634\n70,0116367,755\n71,0113010,11859\n72,0113537,28387\n73,0113828,48750\n74,0115644,20927\n76,0114367,9102\n77,0113973,124626\n78,0112744,27526\n79,0116731,9623\n80,0112445,46785\n81,0114660,400\n82,0112379,880\n83,0114039,146599\n84,0113612,188588\n85,0112365,8447\n86,0118158,10534\n87,0116151,17414\n88,0115697,13997\n89,0113972,2086\n92,0117002,9095\n93,0114825,12158\n94,0115639,9283\n95,0115759,9208\n96,0113403,40154\n97,0113247,406\n98,0111173,45549\n99,0113283,63076\n100,0115907,11062\n101,0115734,13685\n102,0117102,47475\n103,0118040,2045\n104,0116483,9614\n105,0112579,688\n107,0117110,10874\n108,0112646,89333\n110,0112573,197\n111,0075314,103\n112,0113326,33542\n113,0115645,43566\n114,0113774,71754\n116,0112373,51352\n117,0115033,16934\n118,0116606,10324\n119,0114536,78406\n121,0106473,32119\n122,0103859,11066\n123,0109424,11104\n124,0114808,37975\n125,0116324,2074\n126,0110647,27793\n129,0114131,110972\n130,0112364,32622\n131,0113107,73067\n132,0113451,11863\n135,0116130,9101\n137,0113756,5757\n140,0118055,9302\n141,0115685,11000\n144,0112585,16388\n145,0112442,9737\n146,0112342,30765\n147,0112461,10474\n148,0112427,22279\n149,0109093,30157\n150,0112384,568\n151,0114287,11780\n152,0112288,34996\n153,0112462,414\n154,0061395,649\n155,0112495,1873\n156,0112541,5894\n157,0109370,1775\n158,0112642,8839\n159,0112688,20649\n160,0112715,10329\n161,0112740,8963\n162,0109508,26564\n163,0112851,8068\n164,0112857,8512\n165,0112864,1572\n166,0112887,13552\n167,0113044,259209\n168,0113071,6520\n169,0113114,9073\n170,0113243,10428\n171,0113464,17447\n172,0113481,9886\n173,0113492,9482\n174,0113500,19326\n175,0113540,9344\n176,0113677,9071\n177,0113690,8973\n178,0107447,15730\n179,0113729,47608\n180,0113749,2293\n181,0113820,9070\n183,0110604,48787\n184,0110620,34574\n185,0113957,1642\n186,0113986,11472\n187,0114095,36196\n188,0114194,11980\n189,0114241,58372\n190,0114323,32646\n191,0114345,10533\n193,0114436,10802\n194,0114478,10149\n195,0114496,18402\n196,0114508,9348\n198,0114558,281\n199,0058450,5967\n200,0114666,79593\n201,0114663,47939\n202,0114702,36834\n203,0114682,9090\n204,0114781,3512\n205,0114798,52856\n206,0114805,77350\n207,0114887,9560\n208,0114898,9804\n209,0114928,31611\n211,0109340,49805\n213,0111579,50797\n214,0110882,19155\n215,0112471,76\n216,0112508,11017\n217,0112438,37141\n218,0112571,9382\n219,0112757,6715\n220,0112643,18256\n222,0112679,22625\n223,0109445,2292\n224,0112883,1909\n225,0109635,8984\n227,0109676,4954\n228,0112854,62488\n229,0109579,10531\n230,0109642,11929\n231,0109686,8467\n232,0111797,10451\n233,0109759,20156\n234,0109758,18395\n235,0109707,522\n236,0113117,397\n237,0113097,10525\n238,0113028,27985\n239,0113198,15789\n240,0113303,27303\n241,0113089,21183\n242,0109771,10954\n243,0113199,47867\n244,0113234,43475\n245,0109906,72031\n246,0110057,14275\n247,0110005,1024\n248,0110066,17207\n249,0110116,13701\n250,0110006,14819\n251,0113360,32631\n252,0110099,11777\n253,0110148,628\n254,0113463,87729\n255,0110189,18713\n256,0110216,6280\n257,0113501,9061\n258,0113538,37108\n259,0113552,6071\n260,0076759,11\n261,0110367,9587\n262,0113670,19101\n263,0110296,49980\n264,0109731,17961\n265,0103994,18183\n266,0110322,4476\n267,0110443,11008\n268,0110365,47504\n269,0107566,32325\n270,0110391,43742\n271,0113691,28313\n272,0110428,11318\n273,0109836,3036\n274,0113755,40490\n275,0110538,24070\n276,0110516,8986\n277,0110527,10510\n278,0113808,17402\n279,0113896,38722\n280,0113870,8438\n281,0110684,11593\n282,0110638,1945\n283,0113967,39310\n285,0106402,56428\n287,0110671,131957\n288,0110632,241\n289,0110737,9058\n290,0110729,527\n291,0114151,18220\n292,0114069,6950\n293,0110413,101\n294,0114113,63020\n295,0114210,2307\n296,0110912,680\n299,0110889,40156\n300,0110932,11450\n301,0114129,30304\n302,0110963,10452\n303,0114214,12106\n304,0114296,161495\n305,0110907,3586\n306,0111495,110\n307,0108394,108\n308,0111507,109\n309,0110769,159185\n312,0114571,28033\n313,0111333,22586\n314,0111112,14334\n315,0111255,2636\n316,0111282,2164\n317,0111070,11395\n318,0111161,278\n319,0111149,9905\n320,0108260,87078\n321,0106966,12527\n322,0114594,20306\n324,0111309,36614\n325,0113936,27993\n326,0110081,31439\n327,0114614,9067\n328,0114608,9059\n329,0111280,193\n330,0114609,25066\n331,0111454,46797\n332,0114852,12122\n333,0114694,11381\n334,0111590,32636\n335,0114788,36141\n336,0114888,95963\n337,0108550,1587\n338,0114857,9271\n339,0114924,2064\n340,0111667,19855\n341,0109655,60855\n342,0110598,236\n343,0112435,48287\n344,0109040,3049\n345,0109045,2759\n346,0106339,12635\n347,0104779,10497\n348,0109348,11382\n349,0109444,9331\n350,0109446,10731\n351,0109484,10464\n352,0109504,34152\n353,0109506,9495\n354,0109450,29973\n355,0109813,888\n356,0109830,13\n357,0109831,712\n358,0113305,16295\n360,0110093,10879\n361,0110167,10660\n362,0110213,10714\n363,0107472,41647\n364,0110357,8587\n365,0107426,1689\n366,0111686,11596\n367,0110475,854\n368,0110478,9359\n369,0110588,23333\n370,0110622,36593\n371,0110771,12280\n372,0110950,2788\n373,0105226,10427\n374,0110989,11011\n375,0111054,49803\n376,0110997,8987\n377,0111257,1637\n378,0111256,15128\n379,0111438,8831\n380,0111503,36955\n381,0111693,10449\n382,0111742,10395\n383,0111756,12160\n384,0112443,40480\n387,0110399,26352\n388,0112570,39953\n389,0109454,41580\n390,0059170,315\n391,0110186,22067\n392,0108069,18242\n393,0111301,11667\n401,0113827,226229\n405,0110027,8011\n407,0113409,2654\n408,0109021,18069\n409,0109035,19092\n410,0106220,2758\n412,0106226,10436\n413,0109068,13595\n414,0109067,46094\n415,0106292,9409\n416,0109198,11853\n417,0109219,16771\n418,0106379,46924\n419,0106400,11041\n420,0109254,306\n421,0109279,14522\n422,0109297,26203\n423,0109303,178\n424,0109305,19819\n425,0109306,57834\n426,0106452,4722\n427,0106471,18215\n428,0106489,1607\n429,0109361,26391\n431,0106519,6075\n432,0109439,11310\n433,0109443,18658\n434,0106582,9350\n435,0106598,9612\n436,0109456,2124\n437,0109480,26261\n438,0109493,19176\n439,0106660,49299\n440,0106673,11566\n441,0106677,9571\n442,0106697,9739\n443,0109729,24257\n444,0106834,34444\n445,0106873,26141\n446,0106332,10997\n447,0109783,50463\n448,0106881,10443\n449,0106880,20239\n450,0111732,16297\n451,0106926,18551\n452,0111712,25440\n453,0106941,9024\n454,0106918,37233\n455,0106965,1634\n456,0109842,13815\n457,0106977,5503\n458,0107004,35588\n459,0109890,2087\n460,0109891,41579\n461,0109913,18620\n463,0107057,4916\n464,0107076,2019\n465,0107096,31642\n466,0107144,9255\n467,0113674,26271\n468,0112966,10612\n469,0107151,2259\n470,0110064,16097\n471,0110074,11934\n472,0110097,106143\n473,0110123,12475\n474,0107206,9386\n475,0107207,7984\n476,0110137,59930\n477,0108551,15765\n479,0107286,6\n480,0107290,329\n481,0107302,10909\n482,0110265,507\n483,0107322,34024\n484,0110305,29918\n485,0107362,9593\n486,0107413,42580\n487,0110353,22317\n488,0107468,1413\n489,0107478,12121\n490,0107497,2246\n491,0107501,10502\n492,0107507,10440\n493,0107554,9516\n494,0116253,2320\n495,0074102,5879\n496,0111689,83718\n497,0107616,11971\n498,0107611,2625\n499,0107613,31911\n500,0107614,788\n501,0107653,21450\n502,0110657,11231\n504,0110678,10447\n505,0110687,31586\n506,0107756,9300\n507,0107808,9559\n508,0107818,9800\n509,0107822,713\n510,0107840,8291\n511,0107889,18133\n512,0111003,25557\n513,0110939,22588\n514,0110955,10872\n515,0107943,1245\n516,0110971,11858\n517,0107969,7007\n518,0111001,10467\n519,0107978,5550\n520,0107977,8005\n521,0107983,2088\n522,0105275,10412\n523,0108000,47889\n524,0108002,14534\n526,0105032,41878\n527,0108052,424\n528,0111094,35233\n529,0108065,14291\n531,0108071,11236\n532,0111127,11592\n533,0111143,8850\n534,0108101,10445\n535,0108122,695\n536,0111194,43535\n537,0111201,12519\n538,0108149,23210\n539,0108160,858\n540,0108162,867\n541,0083658,78\n542,0108186,13203\n543,0108174,10442\n544,0108238,11074\n546,0108255,9607\n547,0111323,17585\n548,0111400,9057\n549,0108328,20967\n550,0111418,10635\n551,0107688,9479\n552,0108333,10057\n553,0108358,11969\n554,0111488,41590\n555,0108399,319\n556,0108515,26408\n558,0110763,15139\n559,0107779,161158\n561,0110259,85247\n562,0114906,11446\n563,0107002,51980\n564,0109403,24405\n565,0104029,11655\n567,0107315,8223\n568,0106408,14587\n569,0110363,31504\n571,0111709,53185\n573,0107225,23637\n574,0111252,17600\n575,0110366,10897\n577,0109120,21352\n580,0110892,37345\n581,0112651,32562\n582,0107642,47507\n585,0112572,9066\n586,0099785,771\n587,0099653,251\n588,0103639,812\n589,0103064,280\n590,0099348,581\n592,0096895,268\n593,0102926,274\n594,0029583,408\n595,0101414,10020\n596,0032910,10895\n597,0100405,114\n599,0065214,576\n600,0110395,15477\n603,0112606,30528\n605,0117247,7300\n606,0112625,10824\n608,0116282,275\n609,0116552,25059\n610,0082509,11827\n611,0116514,8766\n612,0117283,23570\n613,0116684,47333\n614,0110374,54850\n615,0070506,51242\n616,0065421,10112\n617,0113083,4307\n619,0116165,32308\n620,0102855,88893\n621,0107471,52873\n626,0117891,28121\n627,0113613,12520\n628,0117381,1592\n630,0115837,36447\n631,0115509,19042\n632,0114671,38884\n633,0112844,47449\n635,0116275,41852\n637,0117608,9099\n638,0113448,2021\n639,0116414,61752\n640,0116095,10988\n647,0115956,10684\n648,0117060,954\n650,0117071,18989\n651,0117788,10801\n653,0116136,8840\n656,0116168,11107\n659,0054189,10363\n661,0116683,10539\n662,0116287,10543\n663,0116768,18414\n664,0116269,47502\n665,0114787,11902\n667,0112536,25087\n668,0048473,5801\n670,0052572,896\n671,0117128,3065\n673,0117705,2300\n674,0062711,8069\n678,0108181,27768\n679,0114307,221917\n680,0058898,8072\n681,0082206,35797\n685,0113443,33245\n687,0109491,124460\n688,0114048,27281\n690,0111613,105045\n691,0117104,40001\n692,0117688,29621\n694,0117774,20762\n695,0114736,37144\n696,0112604,48260\n697,0116289,12656\n698,0109593,38867\n700,0112368,25969\n702,0062952,753\n703,0115742,43634\n704,0117420,9103\n705,0115951,90214\n707,0117107,10990\n708,0117979,8866\n709,0095776,12233\n710,0115851,23449\n711,0116322,36355\n714,0112817,922\n715,0113362,11876\n718,0108500,11687\n719,0117108,9304\n720,0118114,\n721,0114103,\n722,0113270,73183\n724,0115963,9100\n725,0116448,20759\n726,0116827,46063\n728,0112701,32513\n731,0116508,36915\n733,0117500,9802\n735,0109592,21588\n736,0117998,664\n737,0115624,11867\n741,0113568,9323\n742,0117894,10280\n743,0117723,10535\n745,0112691,532\n746,0040366,26744\n747,0117768,16299\n748,0115571,10547\n750,0057012,935\n753,0113849,41007\n754,0113188,35645\n755,0042644,110465\n756,0109381,255546\n757,0109688,40751\n759,0110480,85778\n760,0108211,11101\n761,0117331,9826\n762,0117765,9879\n764,0113280,22621\n765,0116669,7095\n766,0116594,26890\n767,0113211,46732\n769,0116992,\n775,0063715,41225\n778,0117951,627\n779,0118523,32872\n780,0116629,602\n781,0117737,14553\n782,0116277,9566\n783,0116583,10545\n784,0115798,9894\n785,0116778,11543\n786,0116213,9268\n787,0113147,52059\n788,0117218,9327\n793,0106810,124306\n798,0116040,11228\n799,0116365,10779\n800,0116905,26748\n801,0116493,38223\n802,0117333,9294\n803,0118113,49963\n804,0117628,11363\n805,0117913,1645\n806,0115530,31546\n808,0115493,36344\n809,0116320,18550\n810,0116756,11511\n813,0116823,34170\n816,0117999,124645\n818,0118073,12606\n820,0049521,35206\n824,0110246,12632\n828,0115472,18975\n829,0116707,11962\n830,0116313,2925\n831,0114550,28628\n832,0117438,3595\n833,0116531,9308\n834,0117332,92381\n835,0116353,18555\n836,0115857,12123\n837,0117008,10830\n838,0116191,3573\n839,0115986,10546\n840,0116571,18862\n841,0053459,31417\n842,0117826,9431\n844,0108227,297645\n845,0111424,48144\n846,0113080,46986\n848,0117718,47907\n849,0116225,10061\n850,0112767,36266\n851,0115632,549\n852,0117918,10478\n854,0051980,116690\n858,0068646,238\n861,0104558,11134\n864,0114936,132641\n865,0114474,42758\n866,0115736,9303\n867,0115836,23945\n869,0116745,22479\n870,0119214,9054\n872,0109066,11985\n875,0110693,410921\n876,0106544,38955\n879,0120004,11015\n880,0116654,9306\n881,0116311,12559\n882,0117965,58770\n885,0115725,3587\n886,0115783,10723\n888,0113596,19004\n889,0109001,101230\n891,0113253,10987\n892,0117991,44705\n893,0117093,20318\n896,0111019,26933\n897,0035896,27854\n898,0032904,981\n899,0045152,872\n900,0043278,2769\n901,0050419,13320\n902,0054698,164\n903,0052357,426\n904,0047396,567\n905,0025316,3078\n906,0036855,13528\n907,0025164,28288\n908,0053125,213\n909,0053604,284\n910,0053291,239\n911,0056923,4808\n912,0034583,289\n913,0033870,963\n914,0058385,11113\n915,0047437,6620\n916,0046250,804\n917,0031580,26531\n918,0037059,909\n919,0032138,630\n920,0031381,770\n921,0084370,31044\n922,0043014,599\n923,0033467,15\n924,0062622,62\n926,0042192,705\n927,0032143,22490\n928,0032976,223\n929,0032484,25670\n930,0038787,303\n931,0038109,4174\n932,0050105,8356\n933,0048728,381\n934,0042451,20758\n935,0045537,29376\n936,0031725,1859\n937,0050658,18299\n938,0051658,17281\n939,0052126,64382\n940,0029843,10907\n941,0032762,32093\n942,0037008,1939\n943,0039420,22292\n944,0029162,3598\n945,0027125,3080\n946,0035446,198\n947,0028010,13562\n948,0049261,1712\n949,0048028,220\n950,0025878,3529\n951,0032599,3085\n952,0048960,2897\n953,0038650,1585\n954,0031679,3083\n955,0029947,900\n956,0034012,43795\n957,0017350,85638\n960,0038300,22688\n961,0027893,23114\n962,0032022,26378\n963,0041509,40206\n964,0039152,22356\n965,0026029,260\n966,0038235,43488\n968,0063350,10331\n969,0043265,488\n970,0046414,22733\n971,0051459,261\n972,0047162,57575\n973,0033891,32574\n976,0022879,22649\n980,0093229,39448\n981,0118927,52855\n982,0048491,39940\n984,0117357,85328\n986,0116329,11076\n987,0118742,63945\n988,0116442,58985\n990,0117011,10861\n991,0117039,1770\n992,0117473,44465\n994,0115678,18203\n996,0116830,9333\n997,0115847,47260\n998,0117603,9400\n999,0115438,9401\n1003,0116259,11306\n1004,0116421,9625\n1005,0116000,10680\n1006,0115862,6346\n1007,0072653,18660\n1008,0047977,35115\n1009,0072951,14821\n1010,0064603,14136\n1011,0071607,10869\n1012,0050798,22660\n1013,0055277,19186\n1014,0054195,31102\n1015,0107131,6878\n1016,0053271,15944\n1017,0054357,18444\n1018,0059793,20723\n1019,0046672,173\n1020,0106611,864\n1021,0109127,24795\n1022,0042332,11224\n1023,0063819,81310\n1024,0038166,15947\n1025,0057546,9078\n1026,0041890,29682\n1027,0102798,8367\n1028,0058331,433\n1029,0033563,11360\n1030,0076538,11114\n1031,0066817,12335\n1032,0043274,12092\n1033,0082406,10948\n1034,0116361,11229\n1035,0059742,15121\n1036,0095016,562\n1037,0104692,10163\n1040,0117582,47199\n1041,0117589,11159\n1042,0117887,9591\n1043,0117924,30500\n1044,0117791,41843\n1046,0115640,10938\n1047,0116908,11412\n1049,0116409,10586\n1050,0116913,42314\n1051,0117958,27845\n1053,0117202,23223\n1054,0116404,49471\n1055,0120107,38153\n1056,0116722,25147\n1057,0116242,9716\n1059,0117509,454\n1060,0117802,10218\n1061,0117665,819\n1063,0116714,56830\n1064,0115491,11238\n1066,0029546,31530\n1067,0028757,66473\n1068,0039286,28120\n1069,0037101,1834\n1073,0067992,252\n1076,0055018,16372\n1077,0070707,11561\n1078,0066808,11302\n1079,0095159,623\n1080,0079470,583\n1081,0084865,12614\n1082,0068334,21711\n1083,0059243,11575\n1084,0061418,475\n1085,0052027,11331\n1086,0046912,521\n1087,0113731,21202\n1088,0092890,88\n1089,0105236,500\n1090,0091763,792\n1091,0098627,8491\n1092,0103772,402\n1093,0101761,10537\n1094,0104036,11386\n1095,0104348,9504\n1096,0084707,15764\n1097,0083866,601\n1099,0029992,25842\n1100,0099371,2119\n1101,0092099,744\n1103,0048545,221\n1104,0044081,702\n1105,0115885,25750\n1111,0117040,9305\n1112,0117284,37616\n1113,0115580,11112\n1114,0116378,21612\n1120,0117318,1630\n1123,0117320,124837\n1124,0082846,11816\n1125,0072081,11843\n1126,0101775,10379\n1127,0096754,2756\n1128,0080749,790\n1129,0082340,1103\n1130,0082533,11298\n1131,0091288,4480\n1132,0091480,4481\n1133,0111357,\n1135,0081375,10765\n1136,0071853,762\n1137,0116587,44497\n1145,0117677,79306\n1147,0118147,10548\n1148,0108598,531\n1150,0084589,4483\n1151,0109781,18919\n1152,0040427,31556\n1153,0040723,26167\n1154,0039881,26174\n1161,0078875,659\n1162,0069198,30892\n1163,0110521,86369\n1164,0060304,8074\n1165,0115715,124676\n1167,0116059,38554\n1168,0115610,49763\n1169,0099028,41326\n1171,0103850,10608\n1172,0095765,11216\n1173,0097108,7452\n1174,0109942,64567\n1175,0101700,892\n1176,0101765,1600\n1177,0101811,26561\n1178,0050825,975\n1179,0099703,18129\n1180,0102014,54405\n1181,0120121,150823\n1183,0116209,409\n1184,0102426,38251\n1185,0097937,10161\n1186,0098724,1412\n1187,0105107,41768\n1188,0105488,10409\n1189,0096257,14285\n1190,0101026,2469\n1191,0102370,10174\n1192,0100332,31225\n1193,0073486,510\n1194,0078446,11455\n1196,0080684,1891\n1197,0093779,2493\n1198,0082971,85\n1199,0088846,68\n1200,0090605,679\n1201,0060196,429\n1202,0094336,13446\n1203,0050083,389\n1204,0056172,947\n1206,0066921,185\n1207,0056592,595\n1208,0078788,28\n1209,0064116,335\n1210,0086190,1892\n1211,0093191,144\n1212,0041959,1092\n1213,0099685,769\n1214,0078748,348\n1215,0106308,766\n1216,0095250,175\n1217,0089881,11645\n1218,0097202,10835\n1219,0054215,539\n1220,0080455,525\n1221,0071562,240\n1222,0093058,600\n1223,0104361,530\n1224,0097499,10705\n1225,0086879,279\n1226,0045061,3109\n1227,0087843,311\n1228,0081398,1578\n1230,0075686,703\n1231,0086197,9549\n1232,0079944,1398\n1233,0082096,387\n1234,0070735,9277\n1235,0067185,343\n1236,0103130,37291\n1237,0050976,490\n1238,0085859,11235\n1240,0088247,218\n1241,0103873,763\n1242,0097441,9665\n1243,0100519,18971\n1244,0079522,696\n1245,0100150,379\n1246,0097165,207\n1247,0061722,37247\n1248,0052311,1480\n1249,0100263,9322\n1250,0050212,826\n1251,0056801,422\n1252,0071315,829\n1253,0043456,828\n1254,0040897,3090\n1255,0092610,9964\n1256,0023969,3063\n1257,0088794,13667\n1258,0081505,694\n1259,0092005,235\n1260,0022100,832\n1261,0092991,765\n1262,0057115,5925\n1263,0077416,11778\n1264,0082269,4485\n1265,0107048,137\n1266,0105695,33\n1267,0056218,982\n1268,0100436,8428\n1269,0036613,212\n1270,0088763,105\n1271,0101921,1633\n1272,0066206,11202\n1273,0090967,1554\n1274,0094625,149\n1275,0091203,8009\n1276,0061512,903\n1277,0099334,11673\n1278,0072431,3034\n1279,0102536,339\n1280,0101640,10404\n1281,0032553,914\n1282,0032455,756\n1283,0044706,288\n1284,0038355,910\n1285,0097493,2640\n1286,0081534,16633\n1287,0052618,665\n1288,0088258,11031\n1289,0085809,11314\n1290,0094006,15143\n1291,0097576,89\n1292,0078841,10322\n1293,0083987,783\n1295,0096332,10644\n1296,0091867,11257\n1297,0089886,14370\n1298,0084503,12104\n1299,0087553,625\n1300,0089606,8816\n1301,0049223,830\n1302,0097351,2323\n1303,0073341,983\n1304,0064115,642\n1305,0087884,655\n1306,0101458,10341\n1307,0098635,639\n1310,0116589,30180\n1311,0117550,31388\n1312,0116293,41801\n1317,0116601,61536\n1320,0103644,8077\n1321,0082010,814\n1322,0103678,41671\n1323,0085159,27214\n1324,0115535,52263\n1325,0106262,33519\n1326,0083550,16235\n1327,0078767,11449\n1328,0099030,41848\n1329,0071233,25944\n1330,0090655,24913\n1331,0075704,49126\n1332,0092632,32076\n1333,0056869,571\n1334,0051418,8851\n1335,0082083,37843\n1336,0101492,32146\n1337,0037549,30346\n1339,0103874,6114\n1340,0026138,229\n1341,0074258,13549\n1342,0103919,9529\n1343,0101540,1598\n1344,0055824,11349\n1345,0074285,7340\n1346,0083722,6217\n1347,0087800,377\n1348,0013442,653\n1349,0091651,28198\n1350,0075005,794\n1351,0115710,31640\n1352,0115495,8744\n1353,0117057,25189\n1354,0115751,145\n1355,0119791,2212\n1356,0117731,199\n1357,0117631,7863\n1358,0117666,12498\n1359,0116705,9279\n1361,0117293,17204\n1363,0117372,21539\n1365,0117477,12709\n1366,0115988,20539\n1367,0115433,11674\n1369,0110171,64900\n1370,0099423,1573\n1371,0079945,152\n1372,0102975,174\n1373,0098382,172\n1374,0084726,154\n1375,0088170,157\n1376,0092007,168\n1377,0103776,364\n1378,0096487,11967\n1379,0100994,9086\n1380,0077631,621\n1381,0084021,9037\n1382,0100114,10173\n1384,0117773,168535\n1385,0105690,8845\n1387,0073195,578\n1388,0077766,579\n1389,0085750,17692\n1390,0117119,17795\n1391,0116996,75\n1392,0115906,13891\n1393,0116695,9390\n1394,0093822,378\n1395,0094155,10896\n1396,0105435,2322\n1397,0115633,41240\n1398,0116621,26949\n1399,0116999,9819\n1401,0116410,31908\n1404,0119783,46027\n1405,0115641,3179\n1406,0112769,1802\n1407,0117571,4232\n1408,0104691,9361\n1409,0117038,2928\n1410,0116240,30285\n1411,0116477,10549\n1413,0118163,18451\n1414,0117091,27265\n1415,0118100,49935\n1416,0116250,8818\n1417,0117364,36758\n1419,0067959,36040\n1420,0117028,74239\n1422,0119731,9415\n1423,0116506,55146\n1425,0119115,12145\n1427,0120390,34314\n1428,0112362,2892\n1429,0116704,9404\n1430,0120414,85242\n1431,0118708,9622\n1432,0119664,8860\n1433,0110425,197537\n1437,0106535,14832\n1438,0118928,9619\n1440,0106266,31000\n1441,0106387,4104\n1442,0119937,26306\n1444,0109949,43775\n1445,0119640,14908\n1446,0116790,784\n1447,0119225,12489\n1449,0118111,16448\n1450,0116754,55936\n1453,0118691,17894\n1454,0120238,28059\n1455,0116565,58911\n1456,0119887,17949\n1457,0119141,1968\n1458,0120357,61563\n1459,0118548,66\n1460,0120317,20735\n1461,0120434,11419\n1463,0120318,25796\n1464,0116922,638\n1465,0120036,25624\n1466,0119008,9366\n1468,0118750,21915\n1472,0118859,18420\n1473,0118702,19952\n1474,0119432,9446\n1475,0116743,28005\n1476,0119951,9403\n1479,0120053,10003\n1480,0120152,9311\n1482,0118064,11844\n1483,0115964,884\n1484,0116041,49806\n1485,0119528,1624\n1487,0120094,16052\n1488,0118972,4477\n1489,0118829,24662\n1490,0118663,18423\n1493,0116931,76996\n1495,0120389,6499\n1497,0119013,9405\n1498,0119381,12723\n1499,0118615,9360\n1500,0119229,9434\n1501,0116762,118991\n1502,0116783,21626\n1503,0118541,13982\n1504,0113314,93946\n1507,0119859,77223\n1508,0120366,31465\n1513,0120032,9611\n1515,0120461,10357\n1516,0115886,9977\n1517,0118655,816\n1518,0118771,2163\n1523,0120383,31017\n1525,0120479,49478\n1526,0119109,12499\n1527,0119116,18\n1529,0119809,1811\n1531,0116920,109614\n1532,0120190,60082\n1535,0119578,64802\n1537,0117615,11239\n1539,0120394,15321\n1541,0118556,2058\n1542,0115744,9450\n1543,0118964,125021\n1544,0119567,330\n1545,0117359,38523\n1546,0117561,16375\n1549,0114303,45671\n1550,0120373,17770\n1552,0118880,1701\n1554,0114134,26422\n1555,0112951,124642\n1556,0120179,1639\n1562,0118688,415\n1563,0119019,47686\n1564,0120034,65889\n1566,0119282,11970\n1569,0119738,8874\n1570,0105569,17991\n1571,0115856,11956\n1572,0057345,266\n1573,0119094,754\n1575,0116384,43771\n1580,0119654,607\n1581,0119848,18080\n1582,0120512,38225\n1583,0120133,17834\n1584,0118884,686\n1586,0119173,4421\n1587,0082198,9387\n1588,0119190,10603\n1589,0118887,2142\n1590,0119081,8413\n1591,0120177,10336\n1592,0118570,20737\n1593,0119896,9413\n1594,0119361,14585\n1595,0119152,18519\n1596,0118818,49462\n1597,0118883,8834\n1598,0118966,9458\n1599,0120207,8854\n1600,0120112,38295\n1601,0119311,22073\n1602,0119509,37244\n1603,0119675,4961\n1604,0119695,9416\n1605,0119086,26180\n1606,0119484,17832\n1608,0118571,9772\n1609,0118531,6072\n1610,0099810,1669\n1611,0102494,468\n1612,0119465,32519\n1613,0120197,108401\n1614,0119360,10806\n1615,0119051,9433\n1616,0119874,6623\n1617,0119488,2118\n1619,0120102,978\n1620,0119468,9437\n1621,0120169,29461\n1623,0120524,10351\n1624,0120323,66588\n1625,0119174,2649\n1626,0119123,14289\n1627,0120399,10155\n1629,0119632,20457\n1631,0118647,18355\n1632,0120151,33657\n1633,0120402,55306\n1635,0119349,68924\n1636,0120192,36434\n1639,0118842,2255\n1640,0119326,28353\n1641,0119164,9427\n1642,0116631,172545\n1643,0119280,17589\n1644,0119345,3597\n1645,0118971,1813\n1646,0120029,36797\n1647,0119906,12628\n1648,0119324,33344\n1649,0119107,25099\n1652,0120539,62422\n1653,0119177,782\n1654,0119095,29911\n1655,0119891,9827\n1657,0120529,251481\n1658,0119535,8067\n1660,0119080,45153\n1661,0119210,10871\n1663,0083131,10890\n1665,0118689,1281\n1667,0119592,9770\n1668,0119832,12616\n1669,0120275,34838\n1670,0120490,14905\n1671,0119527,14583\n1672,0119978,11975\n1673,0118749,4995\n1674,0090329,9281\n1676,0120201,563\n1678,0107282,19931\n1680,0120148,10215\n1681,0119707,9823\n1682,0120382,37165\n1683,0120520,45609\n1684,0119723,38904\n1686,0119994,9407\n1687,0119395,4824\n1688,0118617,9444\n1689,0120483,9414\n1690,0118583,8078\n1692,0112318,29938\n1693,0118607,11831\n1694,0118632,2895\n1696,0118698,19601\n1699,0118804,22797\n1701,0118954,2639\n1702,0119137,9574\n1703,0119142,10371\n1704,0119217,489\n1707,0119303,9714\n1711,0119668,8197\n1713,0119715,6283\n1715,0119819,49728\n1717,0120082,4233\n1719,0120255,10217\n1721,0120338,597\n1722,0120347,714\n1726,0119925,9922\n1727,0119314,547\n1728,0120521,25994\n1729,0119396,184\n1730,0119485,9746\n1731,0119718,9438\n1732,0118715,115\n1733,0118566,26941\n1734,0119590,27103\n1735,0119223,9410\n1739,0118539,32302\n1744,0120670,41417\n1746,0120820,12538\n1747,0120885,586\n1748,0118929,2666\n1750,0120478,54007\n1752,0120696,11258\n1753,0120693,9490\n1754,0119099,9411\n1755,0120122,25719\n1756,0118643,9033\n1757,0112913,11220\n1759,0119815,21253\n1760,0120185,6116\n1762,0118956,9457\n1767,0119734,39424\n1769,0120008,11702\n1771,0119784,12238\n1772,0118747,11568\n1777,0120888,11003\n1779,0120184,10153\n1783,0120782,30949\n1784,0119822,2898\n1785,0099939,9558\n1788,0119656,320011\n1791,0119594,26269\n1792,0120873,11808\n1794,0119574,47452\n1795,0112619,18205\n1796,0140282,36943\n1797,0120661,21736\n1798,0118744,17941\n1799,0120241,10668\n1801,0120744,9313\n1804,0120769,42807\n1805,0120890,617\n1806,0125454,36568\n1807,0120642,37272\n1809,0119250,5910\n1810,0119942,9440\n1812,0120510,32911\n1816,0124179,32456\n1819,0120219,62695\n1821,0120772,17127\n1822,0120645,40688\n1824,0119305,17133\n1826,0120598,17644\n1827,0124295,1774\n1831,0120738,2157\n1833,0120749,8838\n1834,0120176,29193\n1835,0120632,795\n1836,0120728,16980\n1837,0120773,27472\n1839,0120765,47881\n1840,0124718,9469\n1841,0119196,12488\n1844,0118819,267\n1845,0120906,16148\n1846,0119792,21252\n1848,0118755,9449\n1852,0118727,215373\n1854,0120723,15513\n1855,0120725,31220\n1856,0138563,13907\n1858,0117786,10622\n1859,0120265,30020\n1860,0119448,17139\n1861,0118785,34582\n1862,0120841,10216\n1863,0120742,9771\n1864,0120838,24560\n1865,0141986,76330\n1866,0120609,9448\n1870,0118925,78373\n1873,0119683,4415\n1874,0120211,39467\n1875,0118866,55561\n1876,0120647,8656\n1878,0120531,58680\n1880,0119506,35796\n1881,0120800,18937\n1882,0120685,929\n1883,0118798,9452\n1884,0120669,1878\n1885,0120777,9844\n1886,0131436,40505\n1887,0119053,14342\n1888,0119313,9715\n1889,0119375,26610\n1891,0120401,40961\n1892,0120787,1965\n1894,0120828,6068\n1895,0127723,15037\n1896,0118894,50043\n1897,0139362,37636\n1900,0118849,21334\n1901,0150290,416437\n1902,0116141,32284\n1903,0126938,51955\n1904,0122529,37410\n1907,0120762,10674\n1909,0120902,846\n1910,0126344,12655\n1911,0118998,3050\n1912,0120780,1389\n1913,0073540,11020\n1914,0120321,20862\n1916,0118789,9464\n1917,0120591,95\n1918,0122151,944\n1919,0123987,35680\n1920,0122718,11551\n1921,0138704,473\n1922,0140688,102304\n1923,0129387,544\n1924,0052077,10513\n1925,0018578,28966\n1926,0019729,65203\n1927,0020629,143\n1928,0021746,42861\n1929,0022958,33680\n1931,0026752,12311\n1932,0027698,43277\n1933,0029146,43278\n1934,0030993,34106\n1935,0033729,43266\n1936,0035093,27367\n1937,0036872,17661\n1938,0037884,28580\n1939,0036868,887\n1940,0039416,33667\n1941,0040416,23383\n1942,0041113,25430\n1943,0044672,27191\n1944,0045793,11426\n1945,0047296,654\n1946,0048356,15919\n1947,0055614,1725\n1948,0057590,5769\n1949,0060665,874\n1950,0061811,10633\n1951,0063385,17917\n1952,0064665,3116\n1953,0067116,1051\n1954,0075148,1366\n1955,0079417,12102\n1956,0081283,16619\n1957,0082158,9443\n1958,0086425,11050\n1959,0089755,606\n1960,0093389,746\n1961,0095953,380\n1962,0097239,403\n1963,0065063,11485\n1964,0067309,466\n1965,0087995,13820\n1966,0100142,15389\n1967,0091369,13597\n1968,0088847,2108\n1969,0089686,10014\n1970,0093629,10072\n1971,0095742,10131\n1972,0097981,10160\n1973,0101917,11284\n1974,0080761,4488\n1975,0082418,9725\n1976,0083972,9728\n1977,0087298,9730\n1978,0089173,9731\n1979,0091080,10225\n1980,0095179,10281\n1981,0097388,10283\n1982,0077651,948\n1983,0082495,11281\n1984,0085636,10676\n1985,0095271,11357\n1986,0097474,11361\n1987,0081383,36599\n1988,0093176,39929\n1989,0098136,41828\n1990,0105179,41769\n1991,0094862,10585\n1992,0099253,11186\n1993,0103956,11187\n1994,0084516,609\n1995,0091778,11133\n1996,0095889,10306\n1997,0070047,9552\n1998,0076009,11586\n1999,0099528,11587\n2000,0093409,941\n2001,0097733,942\n2002,0104714,943\n2003,0087363,927\n2004,0099700,928\n2005,0089218,9340\n2006,0120746,9342\n2007,0119910,38509\n2008,0117898,60033\n2009,0070723,12101\n2010,0017136,19\n2011,0096874,165\n2012,0099088,196\n2013,0069113,551\n2014,0076054,16084\n2015,0054594,17984\n2016,0078790,22328\n2017,0054649,32611\n2018,0034492,3170\n2019,0047478,346\n2020,0094947,859\n2021,0087182,841\n2022,0095497,11051\n2023,0099674,242\n2024,0102757,1411\n2025,0119558,9769\n2026,0134619,9424\n2027,0120741,9835\n2028,0120815,857\n2029,0137386,17539\n2031,0066728,22777\n2032,0066811,20173\n2033,0088814,10957\n2034,0078869,9570\n2035,0062737,16249\n2036,0109287,13962\n2037,0075807,14612\n2038,0077305,19378\n2039,0097053,65157\n2040,0065566,29228\n2041,0082199,19379\n2042,0109520,11164\n2043,0052722,18887\n2044,0082263,40866\n2045,0106868,24736\n2046,0091059,10122\n2047,0061715,24816\n2048,0091149,9994\n2049,0061749,25445\n2050,0080861,12129\n2051,0076137,14140\n2052,0107120,10439\n2053,0104437,11158\n2054,0097523,9354\n2055,0077698,28736\n2056,0056095,34774\n2057,0057180,37969\n2058,0120768,9631\n2059,0120783,9820\n2060,0131857,14013\n2062,0120687,96196\n2063,0124115,98505\n2064,0098213,1779\n2065,0089853,10849\n2066,0039689,678\n2067,0059113,907\n2068,0083922,5961\n2069,0090203,47908\n2070,0086423,42121\n2071,0106273,2887\n2072,0096734,11974\n2073,0089126,20348\n2074,0071910,26648\n2075,0082736,11911\n2076,0090756,793\n2077,0089385,35144\n2078,0061852,9325\n2079,0053994,43037\n2080,0048280,10340\n2081,0097757,10144\n2082,0104868,10414\n2083,0104940,10437\n2084,0104990,15300\n2085,0055254,12230\n2086,0089731,13380\n2087,0046183,10693\n2088,0081353,11335\n2089,0100477,11135\n2090,0076618,11319\n2091,0078158,14822\n2092,0107952,15969\n2093,0089908,13155\n2094,0102803,10249\n2095,0075200,15943\n2096,0053285,10882\n2097,0086336,24808\n2098,0057518,19762\n2099,0038969,13850\n2100,0088161,2619\n2101,0111271,65158\n2102,0019422,53565\n2103,0111359,41841\n2104,0084783,27332\n2105,0084827,97\n2106,0108265,10419\n2107,0120694,11675\n2108,0102250,2107\n2109,0079367,6471\n2110,0083798,9442\n2111,0085894,11591\n2112,0101969,13697\n2113,0099697,19158\n2114,0086066,227\n2115,0087469,87\n2116,0077869,123\n2117,0087803,9314\n2118,0085407,11336\n2119,0091499,9980\n2120,0107665,10657\n2121,0085382,10489\n2122,0087050,10823\n2123,0096787,11497\n2124,0101272,2907\n2125,0120631,9454\n2126,0120832,8688\n2128,0120813,16155\n2130,0080388,23954\n2131,0077711,12761\n2132,0061184,396\n2133,0092513,14367\n2134,0090305,11814\n2135,0061584,16081\n2136,0057372,18331\n2137,0070016,15171\n2138,0078480,11837\n2139,0084649,11704\n2140,0083791,11639\n2141,0090633,4978\n2142,0101329,10380\n2143,0089469,11976\n2144,0088128,15144\n2145,0091790,11522\n2146,0090060,11557\n2147,0090848,13853\n2148,0091223,11415\n2149,0093220,37530\n2150,0080801,8393\n2151,0097443,11937\n2152,0140796,21661\n2153,0118661,9320\n2154,0120703,33644\n2155,0120831,14662\n2159,0099763,10692\n2160,0063522,805\n2161,0088323,34584\n2162,0100240,34636\n2163,0080391,2182\n2164,0094077,28070\n2165,0119517,77469\n2166,0124595,10278\n2167,0120611,36647\n2168,0120576,17915\n2169,0118301,14557\n2170,0120901,9417\n2171,0119778,41469\n2173,0095709,34637\n2174,0094721,4011\n2176,0040746,1580\n2177,0074512,5854\n2178,0068611,573\n2180,0061107,5780\n2181,0058329,506\n2182,0051207,22527\n2183,0049470,574\n2184,0048750,11219\n2186,0044079,845\n2187,0042994,1978\n2188,0120577,3682\n2189,0119346,51942\n2190,0123324,46702\n2191,0119453,54795\n2193,0096446,847\n2194,0094226,117\n2195,0120654,14577\n2197,0119125,38621\n2200,0042004,4175\n2201,0039694,31667\n2202,0037017,13321\n2203,0036342,21734\n2204,0035279,31997\n2205,0033922,24197\n2206,0034248,11462\n2207,0031505,31995\n2208,0030341,940\n2210,0028212,12684\n2212,0025452,8208\n2214,0023285,15007\n2215,0023395,36049\n2219,0021165,31930\n2221,0019702,543\n2227,0017075,2760\n2231,0128442,10220\n2232,0123755,431\n2236,0124879,22796\n2237,0119934,22256\n2238,0075040,37550\n2239,0073817,37916\n2240,0081207,21873\n2241,0085346,21500\n2243,0092699,12626\n2244,0092537,37818\n2245,0096463,3525\n2246,0096166,129628\n2247,0095593,2321\n2248,0098258,2028\n2249,0100212,16384\n2250,0100134,91217\n2252,0104412,10699\n2253,0105629,11597\n2254,0082172,218624\n2255,0084938,47947\n2256,0084472,48311\n2257,0087810,44772\n2259,0086973,14347\n2260,0092225,41090\n2261,0091680,18282\n2262,0090583,18169\n2263,0096073,11082\n2264,0098625,5971\n2265,0102558,11933\n2266,0101523,20096\n2267,0102469,30815\n2268,0104257,881\n2269,0107211,4478\n2271,0120788,22318\n2272,0120776,53113\n2273,0120812,2109\n2275,0118736,24746\n2276,0120835,72987\n2278,0122690,8195\n2279,0146336,9877\n2280,0118863,26618\n2282,0126604,11855\n2283,0100594,24016\n2284,0109206,14785\n2285,0063850,14794\n2286,0080731,3486\n2287,0047573,11071\n2288,0084787,1091\n2289,0105151,10403\n2290,0081554,11337\n2291,0099487,162\n2292,0117276,25723\n2294,0120587,8916\n2295,0120823,28134\n2296,0120770,9429\n2297,0120889,12159\n2300,0063462,30197\n2301,0082517,10156\n2302,0104952,10377\n2303,0073440,3121\n2304,0119577,4975\n2305,0139615,37532\n2306,0120701,9713\n2307,0122642,134368\n2310,0119670,9821\n2311,0086837,4437\n2312,0090830,1890\n2313,0080678,1955\n2314,0120603,39437\n2315,0144120,11932\n2316,0120791,6435\n2318,0147612,10683\n2320,0118636,9445\n2321,0120789,2657\n2322,0120157,9425\n2323,0150230,32326\n2324,0118799,637\n2325,0124819,8675\n2327,0100740,20701\n2328,0120877,9945\n2329,0120586,73\n2330,0116481,18603\n2331,0120722,46889\n2333,0120684,3033\n2334,0133952,9882\n2335,0120484,10663\n2336,0127536,4518\n2337,0120879,1808\n2338,0130018,3600\n2339,0155753,17037\n2340,0119643,297\n2342,0116488,21589\n2344,0089941,11893\n2345,0090934,123056\n2346,0073747,12223\n2347,0087932,32081\n2348,0091954,14924\n2349,0091538,10002\n2350,0099750,41817\n2351,0050783,19426\n2352,0085244,12560\n2353,0120660,9798\n2354,0134067,14444\n2355,0120623,9487\n2356,0120533,9466\n2357,0140888,666\n2359,0166396,10162\n2360,0154420,309\n2361,0069089,692\n2362,0045826,24018\n2363,0047034,1678\n2364,0087344,39256\n2365,0056142,1680\n2366,0024216,244\n2367,0074751,10730\n2368,0091344,31947\n2369,0089017,8130\n2370,0089087,11532\n2371,0089155,9749\n2372,0097366,14628\n2373,0089893,9626\n2374,0091159,13698\n2375,0091541,10466\n2376,0090264,707\n2377,0089489,11954\n2378,0087928,9336\n2379,0089822,10157\n2380,0091777,12118\n2381,0093756,10587\n2382,0095882,11825\n2383,0098105,11895\n2384,0120595,9447\n2385,0119304,12257\n2386,0165494,37536\n2387,0124198,10029\n2388,0119248,27104\n2389,0155975,11252\n2390,0147004,8545\n2391,0120324,10223\n2392,0141109,9745\n2393,0120844,200\n2394,0120794,9837\n2395,0128445,11545\n2396,0138097,1934\n2397,0087688,110643\n2398,0039628,11881\n2399,0089961,13764\n2400,0098115,24951\n2401,0089767,8879\n2402,0089880,1369\n2403,0083944,1368\n2404,0095956,1370\n2405,0089370,10303\n2406,0088011,9326\n2407,0088933,10328\n2408,0094890,11285\n2409,0079817,1367\n2410,0084602,1371\n2411,0089927,1374\n2412,0100507,1375\n2413,0088930,15196\n2414,0090357,11904\n2415,0092173,215875\n2416,0090685,15596\n2417,0091188,13818\n2418,0091653,29968\n2419,0091024,44326\n2420,0087538,1885\n2421,0091326,8856\n2422,0097647,10495\n2423,0097958,5825\n2424,0128853,9489\n2425,0120706,16885\n2427,0120863,8741\n2428,0133751,9276\n2429,0120751,9822\n2430,0041650,39314\n2431,0129290,10312\n2432,0120686,9441\n2433,0120633,9422\n2434,0142231,125582\n2435,0119336,24525\n2436,0120857,10368\n2437,0120514,11365\n2438,0144546,140897\n2439,0118564,31662\n2440,0127722,36136\n2441,0120699,1363\n2442,0150915,46992\n2443,0145734,825\n2445,0132512,15556\n2446,0120710,28902\n2447,0139699,14709\n2448,0120458,9423\n2449,0093072,14443\n2450,0091225,10658\n2451,0093075,6917\n2453,0090768,24086\n2454,0051622,11815\n2455,0091064,9426\n2456,0097368,10344\n2457,0091875,15698\n2458,0090660,2620\n2459,0072271,30497\n2460,0092076,16337\n2461,0099994,25018\n2462,0110978,16780\n2463,0091877,12151\n2464,0092112,25438\n2465,0090917,33278\n2467,0091605,192\n2468,0091306,10945\n2469,0091738,10013\n2470,0090555,9671\n2471,0092493,9396\n2472,0092105,11038\n2473,0091991,12278\n2474,0090863,11873\n2475,0090567,18588\n2476,0091187,10015\n2478,0092086,8388\n2479,0120683,45712\n2481,0151691,8129\n2482,0149151,1618\n2483,0112922,10722\n2485,0160862,10314\n2486,0138279,125548\n2487,0163984,47139\n2488,0054167,11167\n2490,0120784,2112\n2491,0145893,16172\n2492,0138987,111794\n2493,0128133,9524\n2494,0174852,20595\n2495,0070544,16306\n2496,0124298,11622\n2497,0139462,10207\n2498,0120764,9849\n2499,0119207,82865\n2500,0155776,18892\n2501,0132477,13466\n2502,0151804,1542\n2504,0137338,15256\n2505,0134273,8224\n2506,0123209,18417\n2507,0120618,12479\n2511,0070334,1847\n2513,0098084,8913\n2514,0105128,10906\n2515,0106557,25748\n2516,0109415,25749\n2517,0085333,8769\n2518,0084412,14742\n2519,0051744,15856\n2520,0065377,10671\n2521,0071110,27932\n2522,0075648,7227\n2523,0076636,10670\n2524,0072308,5919\n2525,0080354,33518\n2526,0079550,40160\n2527,0070909,2362\n2528,0074812,10803\n2529,0063442,871\n2530,0065462,1685\n2531,0069768,1705\n2532,0068408,1688\n2533,0067065,1687\n2534,0077189,166680\n2535,0071455,11123\n2536,0078740,29723\n2537,0078856,31638\n2539,0122933,9535\n2540,0142192,9455\n2541,0139134,796\n2542,0120735,100\n2545,0159696,84586\n2546,0120646,30943\n2548,0144814,7341\n2549,0131646,10350\n2550,0057129,11772\n2551,0094964,9540\n2552,0107626,31503\n2553,0054443,11773\n2554,0056931,30202\n2555,0118665,22345\n2557,0157016,1567\n2558,0141098,1641\n2559,0160429,47288\n2560,0129332,10212\n2561,0139668,10354\n2562,0118682,11526\n2563,0118892,8583\n2565,0049408,16520\n2566,0187819,16508\n2567,0131369,11374\n2568,0120757,16379\n2569,0122906,125123\n2570,0120613,28029\n2571,0133093,603\n2572,0147800,4951\n2573,0120274,65749\n2574,0129280,8970\n2575,0120449,9840\n2577,0119665,30950\n2579,0154506,11660\n2580,0139239,9430\n2581,0151738,11355\n2582,0105399,18764\n2583,0126250,9465\n2585,0133363,1414\n2586,0119219,49981\n2587,0123964,6522\n2589,0143261,114719\n2590,0136244,10209\n2594,0125659,1902\n2596,0133189,6396\n2597,0120836,39964\n2598,0120797,12596\n2599,0126886,9451\n2600,0120907,1946\n2605,0137494,1844\n2606,0138510,6552\n2607,0162973,24584\n2609,0115669,25471\n2610,0138874,4154\n2611,0155388,28519\n2612,0037913,3309\n2613,0087799,18462\n2615,0089652,18252\n2616,0099422,8592\n2617,0120616,564\n2618,0118826,13852\n2620,0120865,25232\n2621,0115005,33194\n2622,0140379,10210\n2624,0165078,17962\n2625,0115693,9460\n2626,0138414,4927\n2627,0120659,122190\n2628,0120915,1893\n2629,0166252,31342\n2630,0149723,44297\n2631,0120680,95627\n2633,0023245,15849\n2634,0053085,18990\n2635,0037098,29242\n2636,0037099,29243\n2637,0032818,31498\n2638,0035096,29239\n2639,0082766,15660\n2640,0078346,1924\n2641,0081573,8536\n2642,0086393,9531\n2643,0094074,11411\n2644,0021814,138\n2647,0036931,3103\n2648,0021884,3035\n2649,0031951,3077\n2650,0034786,3074\n2651,0035899,3076\n2652,0050280,3079\n2653,0036376,32023\n2654,0034398,13666\n2655,0089308,29794\n2656,0048696,9077\n2657,0073629,36685\n2659,0084156,30168\n2660,0044121,10785\n2661,0045920,19483\n2662,0046534,8974\n2664,0049366,11549\n2668,0084745,17918\n2669,0053183,37305\n2670,0052151,18784\n2671,0125439,509\n2672,0139809,1090\n2673,0156794,24858\n2674,0126859,15059\n2676,0128278,12117\n2677,0186508,11779\n2678,0126261,41730\n2681,0141105,13533\n2682,0164085,62676\n2683,0145660,817\n2686,0120802,14283\n2687,0120855,37135\n2688,0144214,2275\n2689,0184510,68426\n2690,0122541,24137\n2691,0120731,10376\n2692,0130827,104\n2693,0120370,15800\n2694,0142342,9032\n2696,0119038,9421\n2697,0119743,55955\n2699,0099052,6488\n2700,0158983,9473\n2701,0120891,8487\n2702,0162677,10279\n2704,0101318,2767\n2706,0163651,2105\n2707,0137363,1073\n2708,0137439,10239\n2709,0158811,10208\n2710,0185937,2667\n2712,0120663,345\n2713,0139414,9825\n2714,0161100,16158\n2715,0120878,133575\n2716,0087332,620\n2717,0097428,2978\n2718,0157503,10490\n2719,0171363,11618\n2720,0141369,332\n2721,0162710,1812\n2722,0149261,8914\n2723,0132347,9824\n2724,0163187,4806\n2725,0162830,33430\n2726,0049406,247\n2727,0048254,10056\n2728,0054331,967\n2729,0056193,802\n2730,0072684,3175\n2731,0053198,147\n2732,0055032,1628\n2733,0096378,21185\n2734,0091557,11120\n2735,0091129,10136\n2736,0090774,32060\n2738,0090886,48259\n2739,0088939,873\n2741,0091637,26789\n2745,0091530,11416\n2746,0091419,10776\n2747,0054033,24452\n2748,0092534,9710\n2749,0091554,31924\n2750,0093818,30890\n2751,0093051,24081\n2752,0093690,20242\n2753,0092627,39074\n2754,0092850,66194\n2755,0093415,2115\n2757,0083967,3526\n2758,0089816,41166\n2759,0144168,16406\n2761,0129167,10386\n2762,0167404,745\n2763,0155267,913\n2764,0063688,912\n2766,0168449,67323\n2767,0120709,91076\n2769,0138946,19457\n2770,0131325,11353\n2771,0120620,17707\n2772,0165710,9781\n2774,0168987,18212\n2775,0138487,13817\n2776,0119614,126996\n2779,0077663,12185\n2780,0057449,29056\n2781,0053363,26857\n2782,0055304,28501\n2783,0059821,29030\n2784,0058333,25319\n2786,0091178,24103\n2787,0088889,10552\n2788,0066765,9267\n2789,0077394,10766\n2790,0082377,10768\n2791,0080339,813\n2792,0083530,2665\n2793,0118604,9406\n2794,0089670,11418\n2795,0085995,11153\n2796,0095188,14170\n2797,0094737,2280\n2798,0100419,11077\n2799,0102719,28597\n2800,0104740,22611\n2801,0119843,39780\n2802,0096244,10396\n2803,0107798,9944\n2804,0085334,850\n2805,0130121,10154\n2806,0133046,10342\n2807,0176269,10366\n2808,0105698,9349\n2809,0188863,15122\n2810,0156887,10494\n2812,0160401,22314\n2815,0091278,11037\n2816,0095382,11955\n2817,0103617,2038\n2819,0073802,11963\n2820,0058175,141489\n2822,0104839,9096\n2824,0181733,113273\n2826,0120657,1911\n2827,0138304,2900\n2828,0160236,17709\n2829,0164108,37718\n2832,0144286,30964\n2835,0163579,2162\n2836,0125971,14578\n2837,0126810,40694\n2839,0157183,49184\n2840,0145531,10307\n2841,0164181,11601\n2843,0118843,1075\n2844,0151582,21719\n2845,0178988,40879\n2846,0097050,47951\n2847,0031762,43832\n2848,0045251,47697\n2849,0102741,49792\n2850,0107895,77064\n2851,0081454,\n2852,0088146,26522\n2853,0076150,23761\n2855,0086014,42114\n2856,0059297,28295\n2857,0063823,12105\n2858,0169547,14\n2859,0088178,24128\n2860,0181316,11001\n2861,0126916,10390\n2862,0080491,9453\n2863,0058182,704\n2864,0127296,35122\n2866,0077280,24153\n2867,0089175,11797\n2868,0097390,18086\n2869,0111342,124475\n2870,0061385,17887\n2871,0068473,10669\n2872,0082348,11527\n2874,0050814,40867\n2875,0108185,1049\n2876,0111419,28032\n2877,0073812,11326\n2878,0082511,28377\n2879,0099558,10975\n2880,0091431,10974\n2881,0150377,10398\n2882,0120716,2290\n2883,0140397,24071\n2884,0129884,62994\n2885,0160338,60994\n2886,0159421,16112\n2887,0168172,32305\n2888,0164114,14429\n2889,0134618,15198\n2890,0120188,6415\n2891,0162360,24066\n2892,0133122,21430\n2893,0134033,10381\n2894,0194314,171982\n2897,0087188,5622\n2898,0106664,10349\n2899,0031397,42518\n2900,0095652,29787\n2901,0079714,9638\n2902,0086154,10576\n2903,0091799,12662\n2904,0023369,61369\n2905,0056443,11712\n2906,0156934,12618\n2907,0167427,13824\n2908,0171804,226\n2912,0165854,10388\n2913,0165874,17198\n2915,0086200,9346\n2916,0100802,861\n2917,0082089,14412\n2918,0091042,9377\n2919,0086617,11541\n2920,0037674,2457\n2921,0068699,11901\n2922,0061747,4929\n2923,0076123,85325\n2924,0080179,11230\n2925,0065571,8416\n2926,0095270,11054\n2927,0037558,851\n2928,0087980,24453\n2929,0082979,18254\n2930,0176093,56235\n2932,0077405,16642\n2935,0033804,3086\n2936,0034240,16305\n2937,0035169,32255\n2938,0091214,48797\n2939,0046126,19997\n2940,0038559,3767\n2941,0052225,17352\n2942,0085549,535\n2943,0104507,2731\n2944,0061578,1654\n2945,0087722,31043\n2946,0059260,14831\n2947,0058150,658\n2948,0057076,657\n2949,0055928,646\n2950,0080453,5689\n2951,0058461,391\n2952,0119256,8052\n2953,0104431,772\n2956,0094008,31650\n2959,0137523,550\n2961,0160916,12220\n2962,0119114,1610\n2964,0192194,42881\n2966,0166896,404\n2967,0048977,42196\n2968,0081633,36819\n2969,0061138,42726\n2970,0083946,9343\n2971,0078754,16858\n2972,0093206,42006\n2973,0097123,11562\n2974,0200469,10496\n2975,0168501,16162\n2976,0163988,8649\n2977,0142201,31306\n2978,0144640,10563\n2979,0172627,14484\n2981,0072742,94857\n2982,0099710,32043\n2983,0059319,15247\n2984,0067527,29251\n2985,0093870,5548\n2986,0100502,5549\n2987,0096438,856\n2988,0081150,38772\n2989,0082398,699\n2990,0097742,709\n2991,0070328,253\n2992,0091829,13511\n2993,0059800,660\n2995,0185371,11377\n2996,0166943,26149\n2997,0120601,492\n2998,0144178,108346\n3000,0119698,128\n3001,0157075,46286\n3002,0200849,8672\n3003,0170705,8056\n3004,0120596,2020\n3005,0145681,9481\n3006,0140352,9008\n3007,0181288,14242\n3008,0156729,16129\n3010,0200071,11489\n3011,0065088,28145\n3013,0099180,18111\n3015,0077355,11223\n3016,0083767,16281\n3017,0092796,16288\n3018,0089885,1694\n3019,0097240,476\n3020,0106856,37094\n3021,0082427,13555\n3022,0017925,961\n3024,0078087,24831\n3025,0062218,64963\n3028,0061407,25560\n3029,0082817,21610\n3030,0055630,11878\n3031,0100475,11510\n3032,0067525,11234\n3033,0094012,957\n3034,0070608,11886\n3035,0048380,37853\n3036,0082484,62204\n3037,0065988,11040\n3038,0050371,21849\n3039,0086465,1621\n3040,0079540,14035\n3041,0087700,40771\n3042,0093516,40772\n3043,0104837,40773\n3044,0101669,11498\n3045,0105130,11790\n3046,0113416,29371\n3047,0083911,276635\n3048,0083254,47941\n3051,0149691,21349\n3052,0120655,1832\n3053,0151137,10047\n3054,0190641,10228\n3055,0165773,47692\n3057,0118150,144953\n3060,0101605,11663\n3061,0034862,13485\n3062,0056197,9289\n3063,0105156,9264\n3064,0119908,18222\n3066,0066473,11165\n3067,0095675,4203\n3068,0084855,24226\n3069,0068528,88875\n3070,0086856,11379\n3071,0094027,29154\n3072,0093565,2039\n3074,0068762,11943\n3075,0059646,11481\n3076,0057187,2690\n3077,0164312,20565\n3078,0165859,27141\n3079,0178737,10399\n3081,0162661,2668\n3082,0143145,36643\n3083,0185125,99\n3086,0024852,25898\n3087,0096061,9647\n3088,0042546,11787\n3089,0040522,5156\n3090,0093509,24276\n3091,0080979,11953\n3093,0067411,29005\n3094,0093512,26371\n3095,0032551,596\n3096,0050738,52470\n3097,0033045,20334\n3098,0087781,11393\n3099,0073692,31121\n3100,0105265,293\n3101,0093010,10998\n3102,0089360,12235\n3103,0100680,36094\n3104,0095631,9013\n3105,0099077,11005\n3106,0099291,59820\n3107,0101393,2924\n3108,0101889,177\n3109,0088007,38557\n3110,0087091,42087\n3111,0087921,13681\n3112,0090556,34760\n3113,0146675,9946\n3114,0120363,863\n3115,0155711,31582\n3116,0189744,125520\n3117,0134154,22267\n3118,0161023,55123\n3120,0104114,10411\n3121,0045877,41462\n3122,0033021,1718\n3125,0172396,20024\n3127,0144715,13787\n3128,0160513,54933\n3129,0158371,9684\n3130,0099165,9586\n3133,0015863,33015\n3134,0028950,777\n3135,0079239,21887\n3136,0050558,5652\n3138,0096171,32331\n3140,0014538,32628\n3141,0100828,32669\n3142,0096328,18161\n3143,0063056,31681\n3144,0060463,33666\n3145,0150216,32274\n3146,0205000,10402\n3147,0120689,497\n3148,0124315,1715\n3150,0141974,42739\n3152,0067328,25188\n3153,0051337,15515\n3155,0166485,1439\n3156,0182789,2277\n3157,0164912,10137\n3158,0162866,10387\n3159,0120910,49948\n3160,0175880,334\n3161,0119079,30237\n3163,0151568,46435\n3165,0106455,22213\n3166,0096978,47070\n3167,0066892,36492\n3168,0064276,624\n3169,0087231,26578\n3171,0053226,43103\n3173,0146838,9563\n3174,0125664,1850\n3175,0177789,926\n3176,0134119,1213\n3177,0195945,10471\n3178,0174856,10400\n3179,0145653,10397\n3180,0196857,20761\n3181,0120866,12524\n3182,0192335,28216\n3183,0174268,36773\n3185,0120834,10219\n3186,0172493,3558\n3188,0208261,41276\n3189,0156812,17908\n3190,0134983,10384\n3192,0169302,48233\n3194,0070903,10236\n3196,0046359,632\n3197,0095897,11851\n3198,0070511,5924\n3199,0050815,33734\n3200,0070290,14886\n3201,0065724,26617\n3202,0065436,11900\n3203,0097162,10493\n3204,0077269,16241\n3205,0054067,27632\n3206,0086859,22160\n3207,0045162,4460\n3208,0107659,9644\n3210,0083929,13342\n3211,0094924,35119\n3213,0106364,14919\n3214,0088707,14040\n3216,0066380,17343\n3217,0029606,22692\n3218,0102687,47620\n3219,0100318,2990\n3221,0083851,10831\n3223,0090366,33078\n3224,0058625,16672\n3225,0186975,10472\n3232,0016332,32600\n3235,0081748,13005\n3238,0120662,18681\n3239,0141399,75531\n3240,0156639,20468\n3241,0201840,14521\n3243,0104187,10406\n3244,0076095,14741\n3245,0058604,32015\n3246,0104797,1883\n3247,0105417,2005\n3248,0108147,6279\n3249,0104389,11087\n3250,0106246,7305\n3251,0088683,24735\n3252,0105323,9475\n3253,0105793,8872\n3254,0108525,8873\n3255,0104694,11287\n3256,0105112,9869\n3257,0103855,619\n3258,0104070,9374\n3259,0104231,11259\n3260,0104454,8293\n3261,0105415,11068\n3262,0105665,1923\n3263,0105812,10158\n3264,0103893,10206\n3265,0104684,11782\n3266,0103905,10086\n3267,0104815,9367\n3268,0105477,9876\n3269,0104291,10326\n3270,0104040,16562\n3271,0105046,9609\n3272,0103759,12143\n3273,0134084,4234\n3274,0105414,9605\n3275,0144117,8374\n3276,0171356,29076\n3281,0144801,113096\n3282,0116102,106837\n3284,0067848,27841\n3285,0163978,1907\n3286,0184907,15489\n3287,0220099,15655\n3289,0209189,36210\n3292,0047878,22342\n3294,0074455,30062\n3296,0062376,25934\n3298,0181984,14181\n3299,0162983,10385\n3300,0134847,2787\n3301,0190138,2069\n3302,0159272,61416\n3303,0221023,79515\n3304,0077248,14839\n3306,0018773,28978\n3307,0021749,901\n3308,0087265,25010\n3309,0009018,36208\n3310,0012349,10098\n3313,0084395,33374\n3314,0044420,43368\n3316,0184858,2155\n3317,0185014,11004\n3318,0158583,25212\n3320,0164756,139\n3324,0186045,25166\n3325,0156841,1831\n3326,0181151,10416\n3327,0218043,14271\n3328,0165798,4816\n3329,0094347,19958\n3330,0055471,28569\n3331,0085980,2193\n3334,0040506,11016\n3338,0097372,20423\n3339,0074695,10839\n3340,0047898,36489\n3341,0042276,24481\n3342,0086969,11296\n3343,0092559,61651\n3344,0056875,28172\n3347,0086005,14280\n3349,0039698,149687\n3350,0055353,29478\n3351,0058694,28177\n3354,0183523,2067\n3355,0142688,622\n3357,0181530,28463\n3358,0101698,12186\n3359,0078902,20283\n3360,0091217,5693\n3361,0094812,287\n3362,0072890,968\n3363,0069704,838\n3364,0042208,16958\n3365,0049730,3114\n3368,0051411,12501\n3370,0094731,31618\n3371,0074235,42232\n3377,0035966,22178\n3379,0053137,35412\n3380,0039748,43463\n3384,0072251,8333\n3385,0090274,19259\n3386,0102138,820\n3387,0098645,11718\n3388,0093148,8989\n3390,0091934,58048\n3391,0094321,26827\n3392,0098309,11157\n3393,0092834,28370\n3394,0092666,918\n3395,0093596,61178\n3396,0079588,11176\n3397,0082474,14900\n3398,0087755,11899\n3399,0089994,36536\n3400,0108526,18890\n3401,0088760,19736\n3402,0090219,123047\n3404,0046435,16535\n3405,0051994,10971\n3406,0043379,23928\n3408,0195685,462\n3409,0195714,9532\n3412,0095800,2383\n3414,0048316,53879\n3415,0072443,1396\n3417,0044517,11570\n3418,0103074,1541\n3420,0078718,17443\n3421,0077975,8469\n3422,0091939,27995\n3423,0096054,36739\n3424,0097216,925\n3425,0100168,41823\n3426,0102175,1713\n3427,0062824,26170\n3428,0078950,30547\n3429,0099317,54825\n3430,0071402,13939\n3431,0082250,14373\n3432,0089003,24873\n3434,0109578,34746\n3435,0036775,996\n3436,0101787,9079\n3437,0101615,1496\n3438,0100758,1498\n3439,0103060,1497\n3440,0108308,1499\n3441,0087985,1880\n3442,0090693,33762\n3444,0092675,11690\n3445,0077530,29143\n3446,0113133,35292\n3447,0028944,36652\n3448,0093105,801\n3449,0095238,104301\n3450,0107050,11520\n3451,0061735,1879\n3452,0165929,2085\n3453,0195778,13539\n3454,0202402,16222\n3456,0191043,17078\n3457,0127349,37722\n3459,0091142,33516\n3460,0061765,99008\n3461,0057261,9960\n3462,0027977,3082\n3463,0110629,49338\n3465,0092079,52961\n3466,0107091,12187\n3467,0057163,24748\n3468,0054997,990\n3469,0053946,1908\n3470,0071411,9764\n3471,0075860,840\n3474,0117468,26689\n3475,0043924,25673\n3476,0099871,2291\n3477,0112950,13531\n3478,0093378,16620\n3479,0089457,526\n3480,0091445,13346\n3481,0146882,243\n3483,0138749,10501\n3484,0192614,11478\n3487,0061619,6644\n3489,0102057,879\n3490,0068713,32613\n3491,0091579,39406\n3492,0017416,85689\n3494,0065126,17529\n3495,0105267,40841\n3496,0095564,118098\n3497,0085919,1793\n3498,0077928,11327\n3499,0100157,1700\n3500,0104928,54087\n3501,0089643,34322\n3502,0107630,41659\n3503,0069293,593\n3504,0074958,10774\n3505,0093640,10083\n3506,0079640,29786\n3507,0063374,11356\n3508,0075029,10747\n3509,0165643,38809\n3510,0186151,10559\n3511,0217756,20697\n3512,0122459,2621\n3513,0160797,10479\n3515,0183503,49721\n3516,0051406,2006\n3518,0119062,46625\n3519,0077572,17339\n3520,0059287,26879\n3521,0097940,11305\n3522,0067698,48211\n3524,0082031,13665\n3525,0086927,12309\n3526,0098067,1552\n3527,0093773,106\n3528,0102713,10333\n3529,0082934,11027\n3531,0099014,123757\n3534,0191754,10468\n3535,0144084,1359\n3536,0171433,4967\n3537,0149367,31776\n3538,0166175,10557\n3539,0236216,27745\n3540,0160644,19214\n3543,0083833,13776\n3544,0102898,26291\n3545,0068327,10784\n3546,0056687,10242\n3547,0093776,27857\n3548,0051383,16347\n3549,0048140,4825\n3550,0085701,11654\n3551,0074860,10518\n3552,0080487,11977\n3553,0176783,18041\n3554,0199725,14736\n3555,0141926,3536\n3556,0159097,1443\n3557,0104549,10424\n3559,0044837,28971\n3560,0077132,49096\n3563,0132910,9456\n3564,0158622,889\n3565,0198021,10564\n3566,0189584,15723\n3567,0180837,19600\n3568,0162348,125537\n3569,0154421,452\n3571,0220100,36234\n3572,0106521,39283\n3573,0112634,65460\n3574,0115834,55667\n3575,0156460,31978\n3576,0093185,12476\n3577,0096324,5241\n3578,0172495,98\n3579,0167203,21311\n3580,0153464,47724\n3581,0188674,11129\n3584,0085276,1058\n3587,0080923,16395\n3588,0068805,50627\n3590,0071772,38925\n3591,0085970,13105\n3593,0185183,5491\n3594,0210616,10560\n3596,0156323,19419\n3598,0171359,10688\n3599,0037514,17889\n3600,0054692,18228\n3602,0053848,18642\n3604,0056048,39391\n3605,0051818,18644\n3606,0041716,31516\n3608,0089791,5683\n3609,0181786,113279\n3611,0036326,14906\n3612,0075232,16176\n3613,0096259,52770\n3614,0104438,12518\n3615,0130623,10567\n3616,0217630,10642\n3617,0215129,9285\n3618,0196216,10569\n3619,0080881,21879\n3620,0119746,98502\n3621,0082933,21484\n3622,0066495,24918\n3623,0120755,955\n3624,0184894,8584\n3626,0154443,11332\n3627,0055830,16093\n3628,0034742,29372\n3629,0015864,962\n3632,0039631,30588\n3633,0064757,668\n3634,0058576,23518\n3635,0076752,691\n3637,0089960,44018\n3638,0079574,698\n3639,0071807,682\n3640,0050598,28973\n3643,0036824,22994\n3646,0208003,9600\n3649,0080365,2768\n3653,0060371,21\n3654,0054953,10911\n3655,0070130,10102\n3656,0039589,30308\n3657,0043899,38688\n3658,0062168,26912\n3659,0050873,26278\n3660,0098143,26953\n3661,0100438,26954\n3662,0102728,26956\n3663,0107899,26957\n3664,0110916,26958\n3665,0132451,26959\n3668,0063518,6003\n3669,0105466,23939\n3671,0071230,11072\n3672,0071206,23069\n3673,0092638,21299\n3674,0076044,38802\n3675,0047673,13368\n3676,0074486,985\n3677,0103767,14002\n3678,0048347,541\n3679,0082252,21137\n3680,0094980,36724\n3681,0059578,938\n3682,0070355,10648\n3683,0086979,11368\n3684,0097322,10875\n3685,0089841,2075\n3686,0099582,1551\n3687,0095525,22500\n3688,0084522,10246\n3689,0086129,19698\n3690,0089826,23919\n3691,0086143,18835\n3692,0090849,26554\n3693,0090190,15239\n3694,0098503,28165\n3695,0098502,28169\n3696,0091630,15762\n3697,0100403,169\n3698,0093894,865\n3699,0088172,9663\n3700,0087004,26889\n3701,0094631,10128\n3702,0079501,9659\n3703,0082694,8810\n3704,0089530,9355\n3705,0099141,1727\n3706,0092563,635\n3707,0091635,10068\n3708,0087262,11495\n3709,0105428,11428\n3710,0094612,10117\n3712,0102951,25562\n3713,0100046,51763\n3714,0094882,73079\n3715,0092710,38921\n3716,0093011,35463\n3717,0187078,9679\n3718,0179074,24587\n3719,0182295,51333\n3720,0145503,17771\n3721,0162711,31610\n3723,0099726,10264\n3724,0077362,31657\n3725,0082009,29204\n3726,0074156,17814\n3727,0093605,11879\n3728,0102592,21128\n3729,0067741,482\n3730,0071360,592\n3731,0082220,31593\n3732,0077588,12611\n3733,0070509,14328\n3734,0082945,32047\n3735,0070666,9040\n3736,0043338,25364\n3737,0056195,43002\n3738,0072226,5121\n3739,0023622,195\n3740,0090728,6978\n3741,0069762,3133\n3742,0015648,643\n3743,0204175,10571\n3744,0162650,479\n3745,0120913,7450\n3746,0188030,31023\n3747,0186253,25636\n3751,0120630,7443\n3752,0183505,2123\n3753,0187393,2024\n3754,0131704,17711\n3755,0177971,2133\n3757,0068230,25993\n3758,0097100,28774\n3759,0039404,46929\n3760,0076257,11598\n3761,0106469,9702\n3763,0089118,9873\n3764,0101846,16820\n3765,0099797,14864\n3766,0087727,15379\n3768,0094792,27352\n3769,0072288,8348\n3770,0087175,24099\n3771,0071569,17897\n3773,0099800,16094\n3774,0102065,16096\n3775,0038718,20343\n3777,0093608,11822\n3780,0042897,37744\n3783,0159382,12706\n3784,0219854,4244\n3785,0175142,4247\n3786,0179116,20770\n3787,0215369,1050\n3788,0060176,1052\n3789,0059575,20540\n3790,0212974,23655\n3791,0087277,1788\n3792,0038499,32275\n3793,0120903,36657\n3794,0200530,44490\n3795,0168794,47585\n3798,0161081,2655\n3799,0210234,12599\n3800,0205735,33828\n3801,0052561,93\n3802,0104299,9278\n3804,0079257,59181\n3805,0082622,22167\n3806,0064615,18118\n3807,0076716,11940\n3809,0103241,10276\n3810,0105813,19380\n3811,0080310,13783\n3812,0068555,11624\n3813,0077742,15867\n3814,0073312,11686\n3816,0089276,29263\n3819,0092048,11830\n3820,0205461,16110\n3821,0144528,12107\n3822,0144201,10401\n3823,0171865,32640\n3824,0174480,10641\n3825,0200550,6282\n3826,0164052,9383\n3827,0186566,5551\n3829,0156757,43079\n3831,0195234,2360\n3832,0057603,28043\n3833,0052646,33468\n3834,0080472,21866\n3835,0106627,33408\n3836,0065938,11589\n3837,0095863,15158\n3838,0110823,16139\n3839,0138703,16146\n3840,0095925,26515\n3841,0099005,11856\n3843,0086320,13567\n3844,0098384,10860\n3845,0049189,8420\n3846,0085470,18391\n3847,0071650,20850\n3848,0111187,39473\n3849,0038975,27452\n3851,0251739,38548\n3852,0234853,20438\n3854,0130444,2211\n3855,0204709,46991\n3857,0163983,10391\n3858,0173716,14195\n3859,0233687,15665\n3860,0138681,45905\n3861,0191397,10393\n3863,0209958,8843\n3864,0188640,10643\n3865,0236388,23618\n3868,0095705,37136\n3869,0102510,37137\n3870,0032881,23283\n3871,0046303,3110\n3872,0053318,14698\n3873,0059017,11694\n3875,0062885,39891\n3877,0088206,9651\n3879,0160009,11398\n3880,0236008,161687\n3882,0204946,1588\n3883,0162903,287821\n3885,0234137,25128\n3886,0161216,18153\n3889,0144964,12211\n3890,0259207,137236\n3891,0216772,9995\n3892,0187696,1698\n3893,0171580,10480\n3895,0204626,10685\n3896,0202677,1619\n3897,0181875,786\n3900,0197384,46119\n3901,0134630,18074\n3902,0210717,170767\n3903,0182508,77332\n3905,0181836,29015\n3906,0164212,10562\n3908,0192731,12212\n3909,0206420,14629\n3910,0168629,16\n3911,0218839,13785\n3913,0211219,15752\n3914,0222850,22597\n3915,0210075,19348\n3916,0210945,10637\n3917,0093177,9003\n3918,0095294,9064\n3919,0104409,11569\n3920,0107209,10434\n3921,0056860,26484\n3922,0057887,39113\n3923,0053219,38126\n3924,0058440,53617\n3925,0088184,469\n3926,0055608,2160\n3927,0060397,2161\n3928,0040068,3073\n3929,0032234,911\n3930,0046876,10973\n3932,0024184,10787\n3933,0052969,43109\n3934,0050610,43230\n3936,0036261,15855\n3937,0088024,9507\n3938,0084695,27475\n3939,0093996,27764\n3940,0100639,27767\n3941,0091990,40760\n3942,0100663,40446\n3943,0215545,24664\n3945,0259974,20455\n3946,0208988,10461\n3947,0067128,1485\n3948,0212338,1597\n3949,0180093,641\n3950,0170691,10687\n3951,0202641,63956\n3952,0208874,6521\n3953,0205271,10763\n3955,0213790,16888\n3956,0160484,10383\n3957,0066832,21142\n3959,0054387,2134\n3960,0113269,18801\n3961,0089200,18498\n3962,0093091,28605\n3963,0058708,42797\n3964,0041094,13465\n3965,0038988,27033\n3966,0037638,20367\n3967,0249462,71\n3968,0230030,1636\n3969,0223897,10647\n3970,0082307,19204\n3971,0081376,13762\n3972,0111512,12207\n3973,0229260,11531\n3975,0219952,10783\n3976,0192949,47302\n3977,0160127,4327\n3978,0146984,4958\n3979,0185431,9678\n3980,0203019,11978\n3981,0199753,8870\n3983,0203230,14295\n3984,0066995,681\n3985,0074452,11372\n3986,0216216,8452\n3987,0186894,10862\n3988,0170016,8871\n3989,0230591,34045\n3990,0213203,16340\n3991,0211181,10481\n3992,0213847,10867\n3993,0180073,10876\n3994,0217869,9741\n3996,0190332,146\n3997,0190374,11849\n3998,0228750,11983\n3999,0190865,11678\n4000,0086993,2669\n4001,0088936,20721\n4002,0093748,2609\n4003,0096094,12714\n4005,0093428,708\n4006,0092106,1857\n4007,0094291,10673\n4008,0096969,2604\n4009,0096219,10132\n4010,0088850,11064\n4011,0208092,107\n4012,0095927,40820\n4014,0241303,392\n4015,0242423,8859\n4016,0120917,11688\n4017,0183659,12509\n4018,0207201,3981\n4019,0181536,711\n4020,0219699,2046\n4021,0247196,5001\n4022,0162222,8358\n4023,0218967,5994\n4024,0200720,25520\n4025,0212346,1493\n4026,0223530,25660\n4027,0190590,134\n4029,0120202,21991\n4030,0219653,10577\n4031,0149624,21355\n4033,0146309,11973\n4034,0181865,1900\n4035,0218378,44853\n4036,0189998,10873\n4037,0093223,26719\n4039,0083564,15739\n4040,0101757,15413\n4041,0084434,2623\n4042,0053580,11209\n4043,0090670,13715\n4045,0072735,8043\n4046,0049233,43258\n4047,0107007,10655\n4048,0110115,75490\n4051,0056600,\n4052,0218817,9989\n4053,0238948,18828\n4054,0206275,9816\n4055,0194218,20637\n4056,0237572,5955\n4060,0104765,66599\n4061,0102388,17474\n4062,0095690,11191\n4063,0105165,2613\n4066,0095348,17006\n4067,0108451,26333\n4068,0186589,16723\n4069,0209475,2018\n4073,0178642,18856\n4076,0162024,83500\n4077,0216800,47943\n4079,0092546,5709\n4080,0092605,11215\n4081,0092608,26477\n4082,0092618,10937\n4084,0092644,96\n4085,0086960,90\n4086,0092654,11028\n4088,0092656,67307\n4089,0092690,19324\n4090,0092695,19933\n4091,0092718,12919\n4092,0092746,15785\n4095,0092804,12506\n4098,0092843,39507\n4101,0092904,30994\n4102,0092948,17159\n4103,0092965,10110\n4104,0092974,18935\n4105,0083907,764\n4106,0092997,20287\n4108,0093029,71881\n4109,0093036,15658\n4111,0093073,28368\n4114,0093104,48149\n4115,0093186,26156\n4116,0093200,34101\n4117,0093209,32054\n4121,0093260,2614\n4122,0093277,40962\n4123,0093278,12704\n4124,0093300,580\n4126,0093407,13703\n4128,0093437,1547\n4130,0093476,2608\n4131,0093477,32058\n4132,0093493,10019\n4133,0093507,11649\n4135,0093560,13509\n4136,0093562,63639\n4139,0093638,34379\n4140,0093648,22915\n4141,0192111,24940\n4142,0190524,37302\n4143,0242998,10984\n4144,0118694,843\n4146,0120753,318\n4148,0212985,9740\n4149,0239948,10878\n4151,0216787,10697\n4153,0231775,16300\n4155,0230838,1921\n4156,0177650,44412\n4158,0166276,23685\n4159,0233142,12138\n4161,0236493,6073\n4162,0250720,39180\n4166,0251031,19513\n4167,0179626,2749\n4168,0192071,10050\n4169,0212380,17203\n4171,0236447,95682\n4173,0220157,49929\n4174,0099073,2302\n4175,0116447,32686\n4177,0081163,6028\n4178,0031742,51802\n4179,0082912,42148\n4180,0091836,29492\n4181,0096223,25447\n4183,0100842,38545\n4184,0039190,19490\n4185,0065687,31151\n4186,0060424,1888\n4187,0057251,38805\n4188,0044685,16618\n4189,0059245,2428\n4190,0053793,22013\n4191,0060086,15598\n4194,0037800,56137\n4195,0066740,17965\n4197,0079781,33250\n4198,0080421,14460\n4200,0101764,9594\n4201,0077504,35976\n4203,0102005,2453\n4205,0100140,4587\n4207,0100232,12773\n4208,0127952,125099\n4210,0091474,11454\n4211,0100486,38718\n4212,0077413,4192\n4213,0097179,11607\n4214,0088000,14052\n4215,0093857,16889\n4216,0100049,39934\n4217,0118540,26580\n4218,0091860,21309\n4219,0089208,16263\n4220,0071771,4985\n4221,0102517,20704\n4222,0087015,23730\n4223,0215750,853\n4224,0242445,10877\n4225,0205873,5257\n4226,0209144,77\n4228,0125022,10833\n4229,0239949,20309\n4231,0244970,12658\n4232,0227538,10054\n4233,0246989,10646\n4234,0236784,2575\n4235,0245712,55\n4236,0206187,65075\n4237,0247380,44379\n4238,0164334,2043\n4239,0221027,4133\n4241,0266860,10991\n4246,0243155,634\n4247,0245686,10956\n4248,0236348,19366\n4251,0221073,9519\n4252,0255094,13898\n4254,0231402,9290\n4255,0240515,13166\n4262,0086250,111\n4263,0055895,32488\n4265,0132245,10477\n4266,0245120,12484\n4267,0203755,2144\n4268,0141907,24113\n4270,0209163,1734\n4271,0243889,38047\n4273,0240913,4973\n4274,0056937,8095\n4275,0085811,849\n4276,0089504,27223\n4277,0016039,2981\n4278,0025913,39266\n4279,0098524,31863\n4280,0084917,11307\n4281,0062776,46498\n4282,0064940,11163\n4284,0060429,18691\n4290,0101902,25221\n4291,0080319,19494\n4292,0079638,40842\n4293,0090098,19357\n4294,0045464,33743\n4296,0066011,9062\n4297,0093713,11174\n4298,0048021,934\n4299,0183790,9476\n4300,0212826,37691\n4302,0208911,10613\n4304,0256408,14268\n4305,0225071,5852\n4306,0126029,808\n4308,0203009,824\n4310,0213149,676\n4312,0210727,26813\n4316,0077716,50541\n4317,0102343,26255\n4318,0100395,22414\n4319,0046719,43329\n4321,0101587,1406\n4322,0095082,13554\n4324,0048248,66035\n4326,0095647,1632\n4327,0054047,966\n4329,0053221,301\n4332,0094082,12623\n4333,0094142,11896\n4334,0244316,25538\n4337,0060934,5923\n4338,0041996,15497\n4339,0059885,21876\n4340,0255798,11090\n4342,0212815,21056\n4343,0251075,9397\n4344,0244244,9705\n4345,0254099,26475\n4347,0234288,29937\n4349,0065528,10364\n4350,0116344,32458\n4351,0102685,1089\n4352,0098300,38043\n4353,0086508,9967\n4354,0105699,17494\n4355,0092272,17465\n4356,0045810,759\n4357,0045891,10297\n4359,0048605,10653\n4360,0047574,21468\n4361,0084805,9576\n4366,0230011,10865\n4367,0146316,1995\n4368,0240462,10808\n4369,0232500,9799\n4370,0212720,644\n4371,0255819,16161\n4372,0250224,10691\n4375,0228242,21488\n4378,0203119,11826\n4380,0203632,9301\n4381,0243493,11444\n4383,0228786,60670\n4384,0246765,55551\n4386,0239395,10992\n4387,0271027,2140\n4388,0257106,4248\n4389,0245238,17612\n4390,0249380,3134\n4391,0224578,34899\n4392,0099012,8217\n4394,0058953,26483\n4396,0082136,11286\n4397,0087032,11950\n4399,0058249,36245\n4401,0057007,15875\n4402,0059124,26573\n4403,0053925,23439\n4404,0016847,10728\n4405,0015064,5991\n4406,0056217,11697\n4407,0091886,6106\n4409,0105378,19200\n4410,0091983,11300\n4411,0059740,16211\n4414,0057693,32569\n4415,0082163,20075\n4417,0082966,28794\n4420,0046754,34689\n4422,0069467,10238\n4424,0065777,4789\n4426,0048261,18030\n4427,0063227,18988\n4428,0055184,11536\n4432,0051036,976\n4433,0049966,69605\n4437,0076786,11906\n4438,0068767,11713\n4440,0067824,12481\n4441,0077594,13333\n4442,0089461,13938\n4443,0082869,10540\n4444,0068935,9462\n4445,0163862,82623\n4446,0173840,2114\n4447,0250494,8835\n4448,0227445,11371\n4450,0242193,9517\n4451,0273300,25985\n4452,0227005,15745\n4453,0245280,24977\n4454,0188913,36107\n4458,0109049,13794\n4459,0130445,13795\n4462,0094593,38965\n4464,0094606,31052\n4465,0094608,10868\n4466,0094602,9395\n4467,0096764,14506\n4469,0094669,4281\n4470,0094675,2\n4471,0094678,26044\n4473,0094712,14911\n4474,0094715,15592\n4475,0094716,15267\n4477,0094744,30502\n4478,0094746,19382\n4479,0094747,24679\n4480,0094761,9599\n4482,0094799,17170\n4483,0094824,18509\n4486,0094884,14441\n4487,0094889,7520\n4488,0094894,10126\n4489,0094898,9602\n4490,0094910,23752\n4491,0097125,41952\n4492,0090887,3980\n4493,0094919,10127\n4495,0094921,27397\n4496,0094933,9748\n4498,0094963,10651\n4499,0095031,10141\n4500,0092929,27362\n4501,0095088,5680\n4502,0095107,26386\n4503,0095119,34053\n4506,0095174,10675\n4508,0095243,10130\n4509,0095253,2617\n4511,0095304,21362\n4515,0095360,26723\n4516,0095409,20443\n4518,0095488,11347\n4519,0095489,12144\n4520,0095519,13704\n4521,0095532,12505\n4522,0095599,41963\n4523,0095638,13482\n4524,0095654,34014\n4526,0095687,12120\n4527,0095736,47818\n4528,0095774,38617\n4529,0095801,3543\n4531,0095963,9604\n4532,0095990,24929\n4533,0089907,10925\n4534,0095993,13965\n4535,0084296,24266\n4537,0096018,18197\n4538,0096029,70842\n4539,0096030,38909\n4541,0096071,11503\n4543,0096098,9717\n4544,0096101,11966\n4545,0091949,2605\n4546,0096163,8740\n4550,0096203,26798\n4552,0096251,41428\n4553,0096256,8337\n4555,0096289,8463\n4557,0096316,28176\n4558,0096320,9493\n4559,0096380,26603\n4560,0096425,33172\n4561,0096426,29095\n4562,0096454,12582\n4563,0096486,10001\n4564,0096794,11352\n4565,0088708,12500\n4566,0092548,25678\n4567,0096804,25682\n4568,0096913,17882\n4569,0106393,32049\n4570,0096926,45225\n4571,0096928,1648\n4572,0096933,4105\n4573,0096943,22711\n4577,0097027,10142\n4578,0097044,3064\n4584,0097236,15142\n4585,0097235,14550\n4587,0097257,2210\n4589,0085475,21721\n4590,0097276,116014\n4591,0097289,11828\n4592,0097314,55699\n4593,0097328,10551\n4600,0097458,17190\n4602,0097481,9085\n4603,0097500,17819\n4605,0097531,14776\n4606,0097567,59585\n4608,0097579,29185\n4610,0097613,32059\n4612,0097635,4486\n4614,0097659,10222\n4615,0097714,12774\n4616,0097722,14621\n4617,0097731,19118\n4618,0097737,14372\n4619,0097758,15138\n4621,0097778,9494\n4622,0097790,17362\n4623,0097815,9942\n4624,0097858,8216\n4625,0097883,4296\n4626,0097889,24739\n4627,0097892,39197\n4628,0097965,9686\n4629,0097967,27418\n4630,0097987,39002\n4632,0098051,31606\n4634,0098073,37146\n4636,0098141,8867\n4638,0163025,331\n4639,0265029,11467\n4640,0222851,327\n4641,0162346,1548\n4642,0248845,13403\n4643,0133152,869\n4644,0237539,552\n4645,0123948,36095\n4649,0243655,2171\n4652,0098193,19142\n4654,0098206,10135\n4655,0098219,32767\n4658,0098253,19236\n4659,0098260,32261\n4660,0098261,60276\n4661,0098273,12150\n4662,0098282,11185\n4663,0098308,47045\n4664,0098319,18683\n4666,0098343,12478\n4667,0098347,49788\n4670,0094035,25155\n4673,0098439,9618\n4674,0098442,16560\n4675,0098471,31608\n4676,0098519,22102\n4677,0098536,6951\n4678,0098546,11959\n4679,0098554,2616\n4680,0098577,7091\n4681,0098621,249\n4682,0098622,11342\n4684,0098678,32330\n4686,0108539,8494\n4687,0056868,26535\n4688,0101465,41784\n4690,0087089,2148\n4691,0087130,42033\n4692,0087428,11308\n4696,0083366,19317\n4697,0083624,27813\n4698,0119842,57745\n4699,0218922,2057\n4700,0247638,9880\n4701,0266915,5175\n4703,0094868,41951\n4704,0056059,11385\n4705,0077288,4484\n4706,0080489,11684\n4709,0064782,20391\n4710,0075213,12584\n4711,0108323,70042\n4712,0064285,1627\n4713,0080360,11542\n4714,0080377,17169\n4716,0080408,33214\n4717,0080436,19267\n4718,0252866,2770\n4719,0181739,12610\n4720,0230600,1933\n4721,0244000,13496\n4722,0250202,21055\n4723,0250323,24936\n4724,0221559,80070\n4725,0261983,10972\n4727,0238112,1722\n4728,0250687,9896\n4731,0251141,125707\n4732,0258470,9683\n4733,0256524,2779\n4734,0261392,2294\n4735,0228333,10016\n4736,0234829,26602\n4737,0221799,37920\n4738,0208196,22230\n4740,0206926,13966\n4741,0203166,742\n4743,0255653,15104\n4744,0263488,8922\n4745,0184791,11065\n4748,0103596,16314\n4749,0109015,18885\n4750,0112255,40508\n4751,0080907,5922\n4752,0081114,27346\n4753,0092147,34223\n4754,0070917,16307\n4755,0118178,27681\n4756,0246544,11370\n4757,0202470,12508\n4761,0200427,34714\n4763,0263957,106230\n4765,0242587,18734\n4766,0250809,44321\n4767,0047795,26661\n4768,0013086,5998\n4769,0248912,58062\n4770,0221218,2176\n4771,0180734,20857\n4772,0229340,22617\n4774,0246464,2185\n4775,0118589,10696\n4776,0139654,2034\n4782,0239986,31016\n4783,0264578,32567\n4784,0082416,12537\n4787,0102316,11521\n4789,0071994,27327\n4792,0053559,29756\n4795,0058092,30295\n4796,0053877,25767\n4798,0051773,22874\n4799,0057193,11576\n4800,0029081,43860\n4801,0033836,43802\n4802,0053143,9660\n4803,0067588,15393\n4804,0055312,248\n4806,0059527,25905\n4809,0086312,12502\n4810,0076172,66092\n4811,0079766,10373\n4812,0091993,13766\n4814,0260866,12103\n4815,0252501,11313\n4816,0196229,9398\n4818,0245891,45864\n4821,0206314,10866\n4822,0273799,34549\n4823,0240890,9778\n4826,0080437,16121\n4830,0080474,1623\n4831,0080492,40932\n4832,0080500,32027\n4833,0080516,13550\n4834,0080520,13612\n4835,0080549,16769\n4836,0080556,42158\n4837,0080569,27958\n4840,0080610,1716\n4842,0080641,20681\n4844,0219965,3172\n4846,0108148,12780\n4848,0166924,1018\n4849,0206963,25641\n4851,0245501,102933\n4854,0061489,26299\n4855,0066999,984\n4857,0067093,14811\n4859,0095428,77670\n4861,0119682,15560\n4862,0102555,9585\n4863,0072979,14267\n4865,0120681,768\n4866,0272020,2100\n4867,0200027,11091\n4873,0243017,9081\n4874,0272152,167\n4875,0279286,34043\n4876,0245674,9378\n4878,0246578,141\n4880,0264796,11457\n4881,0243133,10778\n4885,0249478,11456\n4886,0198781,585\n4887,0267804,10796\n4888,0275719,23949\n4889,0252503,11088\n4890,0256380,9889\n4893,0080130,45964\n4895,0290332,13408\n4896,0241527,671\n4897,0245115,17731\n4898,0234354,20794\n4899,0265087,11469\n4901,0266987,1535\n4902,0256009,1433\n4903,0247425,1999\n4911,0076221,11834\n4912,0062994,16085\n4914,0053472,269\n4915,0083630,16441\n4920,0035140,32847\n4921,0024264,39938\n4923,0035957,43510\n4925,0077321,14584\n4927,0076299,72277\n4928,0075824,5781\n4929,0084809,23805\n4930,0060437,34388\n4932,0080661,11033\n4933,0080671,69716\n4936,0080716,3537\n4941,0080745,3604\n4945,0074483,10649\n4947,0076070,17689\n4948,0051755,34084\n4949,0089348,15983\n4951,0100054,10847\n4952,0089622,33525\n4954,0054135,299\n4956,0081568,42160\n4957,0086383,10650\n4958,0159273,8007\n4960,0160403,81442\n4961,0282856,50562\n4963,0240772,161\n4964,0233841,43774\n4965,0270259,31064\n4967,0283509,8342\n4968,0261066,55479\n4969,0037515,4886\n4970,0020697,228\n4971,0087747,23111\n4972,0066195,42597\n4973,0211915,194\n4974,0277371,11397\n4975,0259711,1903\n4976,0280778,11889\n4977,0283431,28171\n4978,0259393,9523\n4979,0265666,9428\n4980,0101452,1649\n4981,0090852,11938\n4984,0060714,42724\n4987,0086346,26978\n4988,0094318,19209\n4989,0278488,8386\n4990,0268397,12589\n4992,0035423,11232\n4993,0120737,120\n4994,0268995,11086\n4995,0268978,453\n4996,0228687,18939\n4998,0051525,11414\n4999,0027532,31507\n5000,0064652,42612\n5001,0036323,18783\n5002,0068612,12593\n5003,0071913,14683\n5004,0063415,10794\n5008,0051201,37257\n5009,0248667,8489\n5010,0265086,855\n5012,0086619,10269\n5013,0280707,5279\n5014,0277027,10950\n5015,0285742,1365\n5016,0120824,6440\n5017,0045555,14580\n5018,0104922,49410\n5021,0074937,6037\n5022,0057490,42987\n5023,0105789,61418\n5025,0273923,11857\n5026,0237534,6312\n5027,0099044,11595\n5028,0269746,24166\n5033,0100530,10170\n5034,0103129,18317\n5038,0083951,27273\n5039,0082288,848\n5040,0087078,9610\n5041,0085542,15035\n5042,0080752,16127\n5043,0080754,31603\n5046,0160399,4965\n5047,0240468,11891\n5048,0281373,11888\n5049,0083511,150\n5051,0243862,112\n5053,0109288,20678\n5054,0085271,15050\n5055,0106770,10423\n5056,0071691,11710\n5057,0057071,17691\n5059,0145046,57976\n5060,0066026,651\n5061,0087751,31955\n5062,0060955,20620\n5063,0055257,18647\n5064,0245844,11362\n5065,0265349,2637\n5066,0281358,10229\n5069,0270933,68149\n5071,0220627,35650\n5072,0293416,9606\n5073,0208990,11447\n5074,0250081,16550\n5075,0219405,13915\n5076,0106223,34723\n5079,0047688,43340\n5080,0240900,20009\n5081,0188453,2084\n5083,0295552,74692\n5085,0046828,51044\n5087,0078122,4267\n5088,0072353,4031\n5092,0265298,11870\n5093,0233469,9884\n5094,0246894,11535\n5095,0265713,27593\n5096,0109190,11212\n5097,0024914,29887\n5098,0027527,32484\n5099,0028988,28345\n5101,0086194,21921\n5102,0107985,21845\n5103,0108037,11528\n5105,0069995,931\n5106,0275022,17130\n5107,0251114,10592\n5108,0251160,8470\n5109,0280030,16690\n5110,0247745,39939\n5111,0107034,9272\n5114,0044391,32499\n5117,0073026,39282\n5119,0054269,37230\n5120,0069281,993\n5121,0075276,11698\n5122,0067803,41357\n5125,0081698,14475\n5127,0259288,10052\n5128,0238546,11979\n5134,0291341,9991\n5135,0265343,480\n5137,0143861,18984\n5139,0074174,23479\n5141,0075718,19050\n5142,0061781,38442\n5146,0216651,15999\n5147,0050986,614\n5151,0243736,2752\n5152,0277434,10590\n5153,0204700,40723\n5159,0104254,13225\n5161,0110146,46717\n5164,0108395,35614\n5165,0080057,7219\n5167,0039645,18649\n5168,0043983,18646\n5169,0038057,17058\n5170,0278295,13950\n5171,0268695,2135\n5172,0290212,15186\n5177,0035015,965\n5179,0080798,10889\n5180,0080813,16149\n5182,0080846,25628\n5186,0080888,22288\n5187,0080889,32030\n5193,0080948,15310\n5198,0081070,14807\n5199,0081071,14729\n5202,0081176,39543\n5203,0081178,39578\n5205,0081184,30924\n5208,0081237,18910\n5210,0081248,24919\n5214,0076489,24032\n5218,0268380,425\n5219,0120804,1576\n5220,0284490,5851\n5222,0264761,15647\n5223,0256259,25110\n5224,0282864,38880\n5225,0245574,1391\n5226,0085154,18172\n5227,0055774,24248\n5229,0125209,19797\n5230,0040679,17804\n5231,0035262,31805\n5232,0032993,13861\n5233,0038032,29021\n5234,0034116,31812\n5236,0097106,28213\n5237,0083169,10627\n5238,0081420,42750\n5241,0081480,28124\n5242,0081485,41034\n5243,0081499,11563\n5244,0081506,15119\n5246,0081529,12705\n5247,0076729,11006\n5248,0086325,15120\n5250,0081562,21629\n5254,0187738,36586\n5255,0279781,6020\n5256,0286162,39541\n5258,0262432,18292\n5264,0250305,15028\n5265,0266452,9275\n5266,0258000,4547\n5267,0265662,14635\n5269,0254686,1791\n5271,0273048,41756\n5275,0068309,22784\n5276,0087100,40814\n5277,0087222,53426\n5278,0089167,24585\n5279,0102103,17990\n5282,0257756,11560\n5283,0283111,11452\n5285,0246134,35944\n5288,0083590,26851\n5289,0039204,17487\n5291,0042876,548\n5292,0076723,11590\n5293,0264472,1537\n5294,0264616,12149\n5296,0253867,11812\n5297,0266391,35080\n5298,0219822,441\n5299,0259446,8346\n5300,0050086,14168\n5301,0072705,32617\n5302,0072737,31671\n5303,0099892,2565\n5304,0038890,307\n5305,0095989,15482\n5307,0103035,6393\n5308,0094137,12154\n5309,0098966,11630\n5312,0264935,11892\n5313,0277296,9334\n5315,0226935,35694\n5316,0157583,10491\n5319,0247586,18079\n5323,0211443,11470\n5324,0282687,16643\n5325,0275309,1282\n5329,0235737,11468\n5333,0047892,26030\n5334,0099204,10164\n5335,0088931,42048\n5337,0101701,28117\n5339,0104466,28384\n5341,0071746,27094\n5342,0091647,26725\n5343,0108311,17168\n5344,0088256,48482\n5346,0100934,5203\n5348,0278823,9689\n5349,0145487,557\n5352,0077234,1815\n5353,0068326,55106\n5354,0064117,28289\n5356,0073043,39154\n5357,0110157,24767\n5359,0102753,32221\n5360,0086397,28466\n5361,0103247,12227\n5363,0241760,10985\n5364,0250797,2251\n5365,0239234,2894\n5366,0103253,20712\n5367,0091578,11240\n5372,0045591,14117\n5373,0050634,38360\n5375,0038589,28907\n5377,0276751,245\n5378,0121765,1894\n5379,0247199,4012\n5380,0278500,9026\n5382,0077523,15417\n5383,0052905,11791\n5384,0051758,28577\n5385,0077838,13963\n5387,0278435,1957\n5388,0278504,320\n5389,0166813,9023\n5391,0268690,17734\n5395,0071532,44800\n5398,0056406,53229\n5400,0164184,4614\n5401,0279493,12277\n5404,0090570,15677\n5410,0067756,811\n5413,0079788,7216\n5414,0280486,3132\n5415,0279778,9583\n5416,0298798,18408\n5417,0285441,13245\n5418,0258463,2501\n5419,0267913,9637\n5420,0245562,12100\n5421,0238924,16857\n5422,0282768,52258\n5425,0244479,15813\n5427,0082146,18905\n5428,0087042,14774\n5433,0090021,17898\n5434,0040823,21635\n5438,0100135,10169\n5440,0041866,13909\n5443,0247444,35696\n5444,0275847,11544\n5445,0181689,180\n5446,0252444,9555\n5447,0286179,57022\n5448,0314166,17710\n5449,0280590,2022\n5450,0258273,50035\n5452,0107438,11982\n5458,0308506,21972\n5459,0120912,608\n5460,0289408,59387\n5462,0305396,17043\n5463,0253556,6278\n5464,0257044,4147\n5466,0269499,14651\n5470,0044744,20324\n5471,0089798,49370\n5473,0072976,42254\n5475,0065234,2721\n5477,0254455,1364\n5478,0271367,8869\n5479,0267626,8665\n5480,0243585,10996\n5481,0295178,818\n5483,0303353,29047\n5489,0079641,6404\n5490,0074205,19133\n5498,0058888,3780\n5500,0088286,8764\n5501,0295427,13908\n5502,0286106,2675\n5503,0265930,12308\n5504,0287717,9488\n5505,0279113,9962\n5506,0309377,9573\n5507,0295701,7451\n5508,0274309,2750\n5515,0120263,34070\n5516,0274117,6173\n5517,0232083,10305\n5518,0082054,42337\n5521,0093780,10081\n5522,0073631,11484\n5523,0180052,11692\n5524,0300532,9266\n5525,0246772,3640\n5527,0256276,30072\n5528,0265459,9357\n5530,0258153,9296\n5531,0281322,15070\n5534,0290662,26895\n5535,0268219,60608\n5538,0088885,11243\n5539,0090799,19975\n5540,0082186,10323\n5541,0102059,9595\n5544,0080025,24750\n5548,0090966,9941\n5553,0094025,10859\n5556,0295254,9544\n5558,0235553,57351\n5560,0022599,31514\n5561,0103125,13571\n5562,0275688,26056\n5564,0283026,20616\n5568,0087507,16806\n5569,0068833,15516\n5570,0117883,9299\n5572,0303714,10611\n5573,0265808,12770\n5574,0293662,4108\n5575,0269329,55903\n5577,0280760,9685\n5581,0099128,18913\n5582,0103924,14361\n5585,0101821,32685\n5588,0077681,12262\n5597,0103003,11504\n5599,0022458,977\n5600,0080117,233\n5601,0039111,19049\n5602,0048281,5506\n5603,0044829,32961\n5604,0044876,32568\n5605,0171685,29698\n5607,0292542,19460\n5608,0250258,575\n5609,0308208,10550\n5611,0240510,9093\n5612,0280380,9039\n5613,0283832,1958\n5615,0245171,68569\n5617,0274812,11013\n5618,0245429,129\n5619,0326306,54714\n5620,0256415,11529\n5621,0290095,10771\n5622,0330136,38951\n5625,0179098,31005\n5628,0281364,2110\n5629,0298388,15173\n5630,0289765,9533\n5632,0280491,4107\n5633,0246677,10575\n5636,0271259,9260\n5637,0101898,21828\n5638,0058379,1682\n5641,0095649,41971\n5642,0079668,33831\n5643,0095895,24348\n5644,0035211,19140\n5646,0098575,37606\n5649,0051554,11868\n5650,0086373,12921\n5651,0058230,19953\n5655,0082362,74899\n5662,0120536,15313\n5663,0276816,12590\n5666,0292644,1809\n5667,0283084,13768\n5668,0283139,10994\n5669,0310793,1430\n5670,0328962,19973\n5672,0313487,12600\n5673,0272338,8051\n5675,0291502,12779\n5677,0267248,15992\n5678,0227984,1613\n5679,0298130,565\n5680,0298744,14112\n5682,0252480,15192\n5684,0145937,21925\n5685,0296166,30309\n5686,0318034,16646\n5689,0101453,12647\n5690,0095327,12477\n5691,0107254,10285\n5693,0076666,11009\n5694,0086361,10805\n5696,0081696,17496\n5699,0080031,5917\n5700,0081693,31278\n5703,0081751,33076\n5705,0081777,15668\n5707,0081974,19429\n5710,0082045,11340\n5712,0082085,11644\n5715,0082118,24124\n5718,0082138,53922\n5723,0082200,26560\n5729,0082329,19114\n5732,0082351,10863\n5734,0085518,15900\n5735,0077533,12237\n5736,0121261,15901\n5737,0121262,15902\n5742,0082382,85058\n5745,0082405,25113\n5746,0082431,28893\n5747,0082432,11646\n5752,0082477,21764\n5754,0082497,42149\n5765,0082679,41394\n5768,0082763,16471\n5772,0082783,25468\n5773,0082801,19507\n5777,0082894,17450\n5778,0082748,47886\n5779,0082910,31646\n5780,0082926,14269\n5782,0082949,1672\n5784,0288477,9645\n5785,0322802,9012\n5787,0270707,13440\n5788,0286261,12454\n5791,0120679,1360\n5792,0299117,13441\n5795,0047880,48155\n5796,0061452,12208\n5799,0053804,1941\n5801,0060921,31918\n5803,0297181,8427\n5808,0210382,13526\n5809,0280665,9280\n5810,0298203,65\n5812,0297884,10712\n5815,0297162,10167\n5816,0295297,672\n5818,0313196,542\n5819,0308411,36584\n5820,0314725,30192\n5825,0036112,25037\n5826,0042895,11617\n5828,0118735,81530\n5829,0263734,34341\n5830,0055207,18993\n5832,0283644,29229\n5833,0280609,11880\n5834,0077549,63435\n5836,0051745,1377\n5839,0099669,12716\n5840,0099266,12717\n5841,0102782,13888\n5843,0103112,10750\n5846,0082969,96966\n5847,0082970,25566\n5850,0083000,43089\n5853,0081455,9538\n5854,0083064,14664\n5857,0083099,84735\n5859,0083111,12528\n5864,0083170,26325\n5866,0083189,31921\n5867,0083190,11524\n5868,0083193,109264\n5869,0083232,32077\n5872,0246460,36669\n5873,0283530,17187\n5874,0293815,10426\n5875,0295238,32625\n5876,0258068,8198\n5878,0287467,64\n5879,0271263,13376\n5880,0283160,15074\n5881,0307479,2103\n5882,0133240,9016\n5883,0283632,16028\n5888,0118767,20992\n5891,0077713,25239\n5893,0110308,25284\n5899,0058777,14433\n5900,0289848,9932\n5901,0262396,13369\n5902,0268126,2757\n5903,0238380,7299\n5909,0290329,4241\n5910,0083260,37335\n5913,0083276,35343\n5914,0083281,30142\n5915,0083284,17360\n5917,0083365,76397\n5918,0083542,40952\n5923,0083598,41760\n5926,0083641,45840\n5927,0083642,16363\n5932,0083702,42124\n5933,0083717,25297\n5936,0083745,67772\n5938,0083806,17590\n5940,0083869,28940\n5941,0303933,13497\n5942,0302640,11852\n5943,0252076,7303\n5944,0253754,201\n5945,0257360,2755\n5947,0298856,21868\n5949,0220580,10856\n5952,0167261,121\n5954,0307901,1429\n5955,0168786,13435\n5956,0217505,3131\n5957,0313737,2642\n5958,0282120,14317\n5959,0272207,11022\n5960,0099091,24249\n5961,0099160,9491\n5962,0106453,2149\n5963,0054743,20139\n5965,0075968,19067\n5966,0049414,53712\n5968,0100143,14931\n5969,0110613,11317\n5970,0102492,4032\n5971,0096283,8392\n5980,0071222,16938\n5981,0055894,21143\n5984,0073115,4561\n5985,0249371,4435\n5986,0068575,16993\n5989,0264464,640\n5991,0299658,1574\n5992,0274558,590\n5993,0290210,13560\n5994,0309912,29339\n5995,0253474,423\n6000,0080503,28679\n6001,0085794,262\n6003,0290538,4912\n6005,0330069,23626\n6006,0305711,12090\n6008,0291172,35172\n6012,0295289,9582\n6013,0257568,10628\n6014,0271668,11078\n6016,0317248,598\n6021,0075675,11222\n6022,0103671,13199\n6025,0106500,15278\n6027,0101748,14667\n6031,0052918,34148\n6032,0079477,20813\n6033,0102500,53027\n6035,0029453,26252\n6037,0084737,19415\n6039,0088414,5968\n6040,0282209,10727\n6042,0311320,9082\n6047,0039305,20663\n6051,0070155,7514\n6056,0265116,44164\n6057,0326769,12253\n6058,0309593,9358\n6059,0292506,1647\n6060,0280720,9027\n6062,0308514,21189\n6063,0303361,10894\n6064,0049291,28528\n6073,0055597,43028\n6077,0083908,4193\n6078,0083943,10724\n6084,0084088,37917\n6091,0084228,8219\n6092,0084234,27088\n6093,0084237,10150\n6095,0084266,16407\n6096,0084293,41913\n6100,0084329,8288\n6101,0084335,15600\n6103,0084351,124963\n6104,0084352,11949\n6105,0084354,42134\n6107,0084422,42130\n6109,0084445,41291\n6114,0084488,37997\n6115,0084489,27609\n6116,0084504,25872\n6121,0084565,42135\n6122,0084597,21923\n6123,0084628,1563\n6124,0084633,17132\n6125,0084648,59533\n6126,0084654,2262\n6127,0084675,52772\n6132,0084719,30874\n6133,0084725,30363\n6140,0084777,29702\n6143,0084814,9699\n6148,0084899,47955\n6154,0301181,26454\n6155,0251127,9919\n6156,0300471,6038\n6157,0287978,9480\n6159,0299458,13132\n6162,0302674,1956\n6163,0291579,12112\n6166,0106701,12139\n6170,0078872,17264\n6178,0059573,33364\n6180,0100442,31598\n6182,0057581,22233\n6183,0053172,4952\n6184,0074851,991\n6185,0279331,4911\n6186,0279111,16072\n6187,0289992,11615\n6188,0302886,11635\n6195,0324080,105024\n6197,0278731,9613\n6198,0103670,7015\n6201,0091374,21867\n6203,0102303,6524\n6204,0107563,11244\n6207,0266971,21801\n6211,0301978,14633\n6212,0305669,10678\n6213,0314353,9567\n6214,0290673,979\n6215,0298408,13819\n6216,0161860,1591\n6218,0286499,455\n6219,0269347,10632\n6223,0283003,12079\n6225,0055047,36362\n6227,0050659,18535\n6228,0035417,23159\n6229,0067893,27236\n6230,0069765,42459\n6231,0047873,43261\n6232,0060182,15347\n6233,0106466,44968\n6234,0075995,37258\n6235,0099776,8996\n6237,0047030,17729\n6238,0099699,12157\n6239,0052948,11571\n6240,0102593,71142\n6242,0178868,2671\n6243,0218553,9669\n6244,0096028,45129\n6245,0065054,42618\n6247,0066579,66027\n6249,0285462,9557\n6250,0285531,6171\n6252,0264150,11523\n6254,0028597,14675\n6256,0074287,57447\n6257,0061834,42695\n6260,0046247,29912\n6261,0105824,28881\n6263,0264395,10782\n6264,0298814,9341\n6265,0325537,9776\n6266,0286788,10735\n6268,0316188,25461\n6269,0334416,51927\n6271,0070460,1675\n6273,0042593,17057\n6276,0040946,40718\n6279,0281820,6016\n6281,0183649,1817\n6283,0275277,11299\n6284,0337996,17995\n6286,0311519,7294\n6287,0305224,9506\n6290,0251736,2662\n6291,0300140,12093\n6294,0245803,11817\n6295,0323572,24621\n6296,0310281,13370\n6297,0311289,8326\n6298,0328099,13411\n6299,0301727,11516\n6300,0236027,10180\n6301,0067800,994\n6302,0050177,66918\n6303,0066769,10514\n6305,0060390,1714\n6306,0327920,14308\n6308,0091396,9930\n6314,0108442,12661\n6315,0092214,29355\n6316,0078504,24961\n6318,0102411,31633\n6322,0310910,10743\n6323,0309698,2832\n6327,0342275,38868\n6329,0252684,15098\n6331,0334405,16636\n6332,0306841,18736\n6333,0290334,36658\n6335,0118926,20689\n6337,0285861,15394\n6338,0317303,10708\n6339,0301414,22016\n6341,0308878,22958\n6342,0250067,15850\n6344,0237993,10989\n6345,0088915,1816\n6348,0086999,17464\n6349,0086998,15259\n6350,0092067,10515\n6355,0050631,43232\n6356,0050468,22201\n6357,0049314,11424\n6358,0045963,34857\n6365,0234215,604\n6367,0309530,10720\n6368,0281724,51230\n6369,0206762,23423\n6370,0283900,1555\n6373,0315327,310\n6375,0304081,30055\n6377,0266543,12\n6378,0317740,9654\n6379,0295700,9902\n6380,0342172,2260\n6383,0322259,584\n6384,0263671,39125\n6385,0298228,1088\n6386,0060748,5921\n6387,0101020,47423\n6390,0050972,43239\n6395,0069895,29425\n6400,0307197,51391\n6404,0044000,43361\n6405,0043067,6646\n6408,0071143,147729\n6410,0074281,15462\n6412,0031225,43828\n6413,0079100,11145\n6414,0057093,32328\n6415,0093267,47715\n6416,0059358,29586\n6419,0100200,111815\n6422,0059711,21027\n6423,0105481,37264\n6424,0102603,11890\n6425,0120142,36807\n6426,0048055,18721\n6427,0066279,37662\n6428,0065134,11916\n6429,0043137,14551\n6431,0047860,51426\n6432,0056956,42986\n6433,0019760,26317\n6436,0108330,8092\n6440,0101410,290\n6442,0103791,2470\n6446,0054757,30462\n6447,0060355,1403\n6448,0059183,10243\n6449,0053841,42541\n6450,0050490,37103\n6452,0051878,40085\n6454,0100211,2263\n6458,0060177,19728\n6460,0057427,3009\n6461,0054428,6643\n6464,0119215,14817\n6465,0076240,41426\n6466,0102456,41791\n6467,0039739,49842\n6468,0105483,41670\n6470,0065547,38765\n6473,0091164,36372\n6474,0117959,30529\n6476,0102900,2071\n6477,0036377,43516\n6480,0062362,32489\n6482,0329028,10152\n6484,0329717,11375\n6493,0318283,17813\n6498,0067458,35068\n6502,0289043,170\n6503,0305357,9471\n6506,0286635,9581\n6509,0071141,216\n6513,0031602,18569\n6514,0056415,113739\n6515,0029808,52758\n6516,0048947,38171\n6518,0099587,18886\n6521,0079510,42176\n6522,0058324,39231\n6525,0093660,40634\n6527,0045125,33454\n6528,0066402,19753\n6530,0074811,11482\n6531,0107146,70912\n6533,0069495,6949\n6534,0286716,1927\n6535,0333780,10327\n6536,0165982,14411\n6537,0181852,296\n6538,0324133,302\n6539,0325980,22\n6541,0311429,8698\n6547,0322659,32235\n6548,0172156,8961\n6550,0274166,9486\n6552,0301199,3472\n6559,0110364,20726\n6561,0053084,12649\n6562,0057523,44916\n6564,0325703,1996\n6565,0329575,4464\n6566,0338459,12279\n6568,0342167,33339\n6571,0319769,54580\n6579,0055256,430\n6582,0089901,10553\n6584,0061177,21449\n6585,0070915,4984\n6586,0328828,8273\n6587,0299930,8046\n6591,0318411,8094\n6592,0314630,26195\n6593,0322330,10330\n6595,0257076,9257\n6596,0306734,9499\n6598,0308508,15292\n6599,0054599,12491\n6600,0107492,41660\n6602,0094793,27814\n6603,0039335,41206\n6609,0058715,24192\n6611,0045274,833\n6612,0103888,26755\n6613,0069946,42470\n6615,0329101,6466\n6617,0316356,2055\n6618,0286112,11770\n6620,0305206,2771\n6624,0313911,10923\n6628,0087425,21989\n6629,0045888,18573\n6630,0051776,37451\n6636,0090103,8992\n6638,0086525,19053\n6639,0062467,11206\n6641,0216625,30970\n6643,0046438,18148\n6644,0091830,54898\n6645,0066434,636\n6646,0062430,3055\n6650,0041546,11898\n6658,0078721,9051\n6659,0100814,9362\n6662,0057413,936\n6663,0075066,12268\n6664,0088944,10999\n6665,0079073,33521\n6666,0068361,4593\n6669,0044741,3782\n6671,0099040,2891\n6676,0104504,26246\n6678,0099731,20815\n6679,0308808,19433\n6683,0116308,513\n6684,0067445,6619\n6686,0288045,10610\n6690,0284491,38874\n6695,0301470,11351\n6703,0304711,9616\n6706,0260414,31094\n6707,0303816,11547\n6708,0325805,7270\n6709,0285823,1428\n6710,0246592,17906\n6711,0335266,153\n6713,0291350,33320\n6718,0089222,27590\n6721,0103285,10617\n6722,0105839,10618\n6723,0108592,10619\n6724,0070510,11293\n6725,0078239,36759\n6728,0056632,53650\n6730,0077369,9584\n6731,0088993,8408\n6732,0064418,14030\n6735,0079826,16323\n6739,0042209,23325\n6743,0034928,23033\n6744,0089730,19064\n6748,0078908,28942\n6751,0331468,12767\n6753,0327137,13156\n6754,0320691,277\n6755,0281686,9707\n6757,0284034,24488\n6760,0310154,36791\n6762,0334754,17614\n6763,0266489,7288\n6764,0327850,10159\n6765,0328589,10934\n6768,0309820,5653\n6769,0330602,321\n6770,0314412,20\n6771,0362511,18113\n6772,0318202,5168\n6773,0286244,9662\n6774,0086541,837\n6776,0282674,19666\n6777,0055031,821\n6779,0078199,37672\n6780,0103882,1358\n6782,0097728,11475\n6783,0031885,776\n6785,0047472,16563\n6786,0089424,11703\n6787,0074119,891\n6788,0109129,83714\n6790,0267287,10881\n6791,0092603,11832\n6793,0103786,11806\n6794,0106375,10438\n6796,0101507,650\n6797,0101516,10337\n6798,0074256,8446\n6800,0090859,9874\n6803,0087909,29161\n6806,0251433,49291\n6807,0085959,4543\n6808,0065207,11046\n6810,0102945,7442\n6811,0110759,14425\n6812,0100514,6723\n6813,0059221,13343\n6814,0087062,16969\n6816,0094138,13339\n6818,0091251,25237\n6820,0210070,9871\n6822,0106350,71940\n6826,0063591,20238\n6827,0110169,33783\n6828,0088318,163549\n6829,0104376,47898\n6830,0045205,19171\n6832,0102768,11364\n6835,0082000,39916\n6840,0067217,32082\n6850,0104695,12772\n6851,0104321,47866\n6852,0061809,18900\n6856,0035575,3087\n6857,0107692,14282\n6858,0056291,11502\n6862,0313443,2116\n6863,0332379,1584\n6864,0380275,28236\n6867,0340377,2056\n6868,0335563,4997\n6869,0340468,8439\n6870,0327056,322\n6872,0317676,11059\n6873,0138524,11775\n6874,0266697,24\n6875,0342300,54973\n6877,0339071,21059\n6879,0313542,11329\n6880,0324216,9373\n6881,0311648,1550\n6883,0325055,28200\n6884,0312549,10629\n6885,0199626,10944\n6887,0316465,13920\n6888,0306047,4256\n6889,0328880,10009\n6890,0363589,1807\n6892,0314676,30141\n6893,0064505,10536\n6896,0090015,42044\n6898,0313670,1376\n6902,0165832,20312\n6906,0090151,64945\n6909,0325655,10389\n6918,0048956,897\n6920,0065531,11657\n6927,0308383,10922\n6930,0368745,51707\n6932,0323944,13537\n6934,0242653,605\n6935,0363510,33222\n6936,0319343,10719\n6940,0337961,1836\n6942,0314331,508\n6944,0101862,11846\n6945,0373175,50314\n6947,0311113,8619\n6950,0338188,12146\n6951,0312528,10588\n6952,0348836,4970\n6953,0315733,470\n6954,0338135,11042\n6957,0307987,10147\n6958,0338094,10756\n6959,0300556,9562\n6961,0104237,11012\n6963,0293088,30068\n6964,0088987,40913\n6966,0099365,9556\n6970,0050307,24203\n6971,0101829,9065\n6974,0099615,10168\n6975,0119167,10234\n6977,0102526,10952\n6978,0102943,14022\n6979,0086567,860\n6981,0048452,48035\n6982,0043686,5000\n6983,0036969,22744\n6985,0019254,780\n6986,0016641,31510\n6987,0010323,234\n6989,0085615,8289\n6990,0079240,11583\n6991,0087365,11002\n6992,0109951,6472\n6993,0091167,5143\n6995,0065832,5227\n6996,0102034,8010\n6997,0104427,10410\n6999,0104452,10407\n7000,0102070,9292\n7001,0077745,11850\n7002,0100151,48745\n7003,0102181,2297\n7004,0099938,951\n7005,0102216,10804\n7007,0102266,9319\n7008,0070849,1643\n7009,0104756,2007\n7010,0101316,10995\n7011,0091495,8047\n7012,0100201,2612\n7013,0048424,3112\n7016,0093692,1825\n7017,0105104,10538\n7018,0100404,11092\n7020,0102721,14904\n7022,0266308,3176\n7023,0107156,9261\n7024,0073650,5336\n7025,0102443,23908\n7026,0094072,14671\n7027,0090022,11509\n7028,0100449,10729\n7029,0076590,29437\n7034,0150662,11634\n7036,0090142,11824\n7038,0210358,20067\n7040,0090180,9846\n7042,0090563,11986\n7043,0056663,1626\n7044,0100935,483\n7045,0100944,10166\n7046,0094332,6069\n7048,0119807,11676\n7050,0027630,28292\n7051,0059903,3681\n7055,0028333,20325\n7056,0022286,17687\n7058,0039566,41465\n7059,0037120,17641\n7060,0070239,12545\n7061,0031210,27972\n7062,0055798,898\n7063,0068182,2000\n7064,0038348,648\n7065,0004972,618\n7067,0059229,19120\n7068,0054632,4024\n7069,0067372,11316\n7070,0040724,3089\n7071,0072417,29845\n7072,0031971,995\n7073,0058586,1594\n7074,0015163,32318\n7075,0049096,11839\n7076,0062765,916\n7078,0030287,1976\n7079,0031455,31685\n7080,0024034,3062\n7081,0024166,34456\n7082,0056575,12708\n7083,0090110,42045\n7084,0069097,11610\n7085,0058571,4939\n7086,0030637,25016\n7087,0087892,15927\n7088,0053146,40423\n7089,0071129,7857\n7090,0299977,79\n7091,0023027,13912\n7093,0071524,987\n7095,0076327,37749\n7096,0307385,30140\n7099,0087544,81\n7101,0101745,11821\n7102,0092925,10023\n7104,0078723,11519\n7107,0077578,15659\n7108,0108656,18857\n7110,0140384,27425\n7111,0066319,38953\n7115,0073582,20126\n7116,0046911,827\n7117,0107387,11811\n7121,0041090,25431\n7122,0060908,17685\n7123,0102511,2742\n7125,0156096,51145\n7126,0074749,32040\n7130,0059084,24134\n7131,0053320,18904\n7132,0026778,37719\n7135,0054389,1818\n7136,0062695,255\n7137,0318374,10744\n7139,0298845,10511\n7142,0322589,10028\n7143,0325710,616\n7147,0319061,587\n7149,0337741,6964\n7150,0338466,1792\n7151,0335119,3635\n7152,0340376,41488\n7153,0167260,122\n7154,0304415,11820\n7155,0337909,8696\n7156,0317910,12698\n7158,0315983,11093\n7160,0340855,504\n7161,0349205,11007\n7162,0159365,2289\n7163,0338337,9620\n7164,0316396,10601\n7165,0335013,52036\n7171,0364930,37088\n7172,0346094,31026\n7173,0343135,5966\n7177,0368913,14757\n7178,0071577,11034\n7179,0104181,25095\n7180,0053133,26983\n7182,0060636,52867\n7186,0101625,27465\n7189,0109376,31395\n7190,0065911,131313\n7192,0107750,15797\n7193,0098987,9548\n7195,0043503,26712\n7196,0042727,1882\n7198,0093737,17258\n7199,0323633,34681\n7204,0061758,33642\n7206,0050706,427\n7207,0054469,43049\n7208,0033553,3022\n7209,0046487,778\n7210,0038762,3088\n7211,0043915,23152\n7212,0041498,23567\n7215,0037382,22584\n7216,0033717,27725\n7217,0039302,16227\n7219,0033149,16933\n7222,0028346,37833\n7223,0042369,18995\n7228,0104009,14239\n7234,0047528,405\n7235,0296042,9696\n7236,0072730,4917\n7238,0052080,5055\n7243,0006864,3059\n7245,0054393,28586\n7247,0062803,11708\n7248,0290879,27329\n7250,0066193,20444\n7254,0289879,1954\n7255,0335559,13476\n7256,0379557,11194\n7257,0315824,12634\n7258,0314498,13505\n7260,0345551,15708\n7263,0349825,14292\n7265,0309987,1278\n7266,0307109,18841\n7272,0069332,21968\n7282,0245943,76176\n7283,0088213,18446\n7285,0328538,11023\n7293,0343660,1824\n7294,0361925,16784\n7299,0329388,337\n7300,0067927,11951\n7302,0015400,28963\n7303,0052738,2576\n7305,0090738,19345\n7307,0089153,12775\n7308,0089421,9838\n7309,0016654,50075\n7311,0031385,42852\n7312,0060420,40454\n7315,0312329,8842\n7316,0361467,11132\n7317,0356150,9352\n7318,0335345,615\n7319,0331953,11217\n7320,0338096,10677\n7323,0301357,338\n7324,0317648,2023\n7325,0335438,9384\n7327,0060827,797\n7334,0074554,1723\n7335,0046187,25955\n7340,0089393,24548\n7343,0210389,37044\n7346,0265208,10591\n7347,0363988,1586\n7348,0360009,11169\n7349,0317842,49689\n7352,0329767,156\n7354,0107473,10433\n7355,0118172,47168\n7357,0050839,43236\n7358,0318049,142168\n7360,0363547,924\n7361,0338013,38\n7362,0364045,11081\n7366,0300051,9541\n7367,0335245,5516\n7369,0331632,11024\n7371,0276919,553\n7372,0277941,10544\n7373,0167190,1487\n7374,0299172,13700\n7375,0337697,11137\n7376,0351977,11358\n7379,0318974,10733\n7380,0327679,14442\n7381,0327247,2122\n7382,0326977,25300\n7386,0049833,6844\n7387,0077402,923\n7394,0059797,10338\n7395,0042327,33839\n7396,0070644,133919\n7407,0041098,20278\n7411,0093582,4365\n7415,0076301,42228\n7419,0088680,10843\n7437,0345074,15673\n7438,0378194,393\n7439,0330793,7220\n7444,0337563,10096\n7445,0328107,9509\n7448,0326856,10710\n7449,0335121,11058\n7450,0323033,11141\n7451,0377092,10625\n7453,0363282,11025\n7454,0338526,7131\n7456,0296915,30125\n7458,0332452,652\n7459,0293007,8440\n7460,0379217,883\n7478,0094089,42015\n7481,0089092,11864\n7482,0070034,9461\n7484,0065780,132\n7487,0099762,17993\n7492,0077914,26517\n7493,0051077,28285\n7502,0185906,191903\n7505,0108906,22137\n7541,0214388,10035\n7560,0058083,502\n7564,0058279,30959\n7566,0088650,20561\n7569,0062512,667\n7570,0086034,700\n7571,0045564,21594\n7572,0243664,26976\n7573,0086006,36670\n7574,0113725,18872\n7577,0073822,44864\n7579,0032943,43818\n7583,0034890,43525\n7584,0035567,20640\n7585,0048673,50363\n7586,0076734,633\n7587,0062229,5511\n7613,0103251,41003\n7614,0048445,13936\n7615,0089015,294\n7616,0086984,11507\n7619,0056241,1162\n7620,0102467,34328\n7624,0105327,14684\n7625,0138467,58467\n7627,0119434,163869\n7636,0105217,13937\n7649,0120711,10940\n7650,0063285,31965\n7669,0112130,164721\n7697,0050861,24012\n7698,0078966,988\n7700,0046268,204\n7701,0100050,9356\n7702,0037536,32430\n7705,0045012,33575\n7706,0020640,13913\n7708,0061391,18209\n7713,0034587,25508\n7714,0061439,18978\n7720,0073012,12310\n7728,0038854,25736\n7738,0155713,44807\n7743,0089114,9872\n7748,0059592,2786\n7753,0207805,26133\n7757,0057197,11533\n7759,0086022,1394\n7762,0080297,140207\n7764,0079082,13553\n7766,0050613,3777\n7767,0346336,11659\n7771,0057831,10604\n7773,0288439,16876\n7774,0064708,37437\n7782,0108171,9545\n7786,0187859,28030\n7787,0048729,16514\n7789,0328802,1926\n7790,0080461,31112\n7791,0099850,11060\n7792,0071970,17365\n7802,0080120,11474\n7809,0162625,49320\n7810,0146455,10916\n7811,0146247,10921\n7812,0121804,10941\n7815,0092117,24798\n7817,0070948,4923\n7818,0054279,36741\n7820,0053976,11656\n7822,0046085,25009\n7826,0039808,40092\n7827,0284978,10133\n7831,0031047,14589\n7832,0037365,14594\n7833,0034172,14590\n7834,0027260,14588\n7835,0039853,14595\n7836,0066580,9459\n7840,0031398,24965\n7841,0287839,192936\n7842,0142032,876\n7843,0258760,1583\n7844,0106936,17653\n7845,0114720,11069\n7846,0259685,10829\n7872,0097424,86959\n7878,0094048,9698\n7881,0023694,26860\n7882,0060841,29049\n7883,0036027,27130\n7888,0061791,22682\n7889,0070518,11577\n7892,0073756,40810\n7894,0067140,336\n7895,0071249,11942\n7897,0065446,23330\n7899,0072913,49636\n7914,0017668,222\n7915,0170544,10686\n7916,0052847,43096\n7919,0040979,25858\n7920,0075936,14262\n7921,0072869,38701\n7922,0068341,33357\n7924,0041699,30368\n7925,0051808,1059\n7926,0057565,12493\n7932,0235327,14273\n7934,0086637,11030\n7935,0074147,29454\n7936,0063611,26372\n7938,0057358,29455\n7939,0055499,11602\n7941,0048641,11700\n7942,0046345,47735\n7943,0038669,14638\n7944,0058404,14703\n7946,0062185,3547\n7947,0088322,41089\n7948,0080140,42179\n7951,0100260,20481\n7958,0065481,31581\n7959,0062395,22694\n7976,0209077,7090\n7979,0064689,42632\n7980,0075784,5902\n7981,0338564,10775\n7982,0365376,4552\n7983,0087003,12762\n7984,0091083,14510\n7987,0092906,24341\n7990,0079813,26326\n7991,0072856,13282\n7995,0061189,42725\n8003,0038343,24111\n8008,0046807,18283\n8009,0051911,33731\n8010,0105159,13823\n8011,0343168,14108\n8012,0199683,4291\n8014,0374546,113\n8015,0064806,28476\n8016,0068638,5916\n8019,0308379,12205\n8033,0060522,3001\n8039,0065051,11574\n8042,0070379,203\n8044,0023042,29740\n8056,0060490,26268\n8057,0056541,33632\n8070,0304126,316\n8093,0192657,10355\n8094,0047849,14554\n8117,0180748,250\n8121,0366532,41277\n8123,0093913,42013\n8125,0018455,631\n8126,0057495,25504\n8128,0092593,1786\n8129,0181810,51182\n8130,0189553,45042\n8131,0243508,210937\n8132,0104346,16219\n8133,0328844,15824\n8136,0049363,48385\n8137,0054462,27545\n8138,0053611,22718\n8142,0221111,11315\n8143,0048308,35987\n8147,0062794,29146\n8154,0053779,439\n8157,0193253,823\n8158,0102820,20289\n8167,0026174,16905\n8169,0092494,11548\n8183,0085478,38291\n8187,0043880,41204\n8188,0047445,20532\n8189,0054494,2546\n8190,0057840,42791\n8191,0064030,22522\n8194,0048973,40478\n8195,0053619,5165\n8196,0065466,5722\n8197,0052893,5544\n8199,0046478,14696\n8207,0069947,4909\n8208,0038873,56135\n8225,0100258,19185\n8228,0022111,28257\n8235,0014429,22596\n8236,0049949,36786\n8239,0055601,4497\n8240,0108366,33560\n8253,0079833,15371\n8254,0106307,11044\n8256,0024481,31526\n8257,0041163,31623\n8261,0075612,41662\n8263,0041944,33738\n8264,0073076,17346\n8266,0087957,13763\n8267,0063218,67217\n8268,0107843,10498\n8273,0104545,4507\n8275,0017765,34847\n8290,0073396,32303\n8327,0330229,870\n8331,0033874,26319\n8332,0067805,45938\n8336,0035019,39871\n8337,0046816,10178\n8338,0039192,16391\n8340,0079116,10734\n8341,0040662,10949\n8360,0298148,809\n8361,0319262,435\n8362,0350028,4599\n8363,0367085,12657\n8364,0367790,28219\n8366,0332375,13193\n8367,0324197,24190\n8368,0304141,673\n8369,0297284,16617\n8370,0363226,246\n8371,0296572,2789\n8372,0356634,8920\n8373,0327162,9890\n8376,0374900,8193\n8385,0055100,40894\n8387,0110857,11546\n8388,0064893,59427\n8392,0089160,71125\n8403,0049301,42658\n8404,0031448,27118\n8410,0047542,18398\n8420,0039725,20849\n8422,0034946,53779\n8423,0018051,16661\n8447,0047577,831\n8451,0047885,26516\n8453,0139388,44388\n8459,0041452,28571\n8460,0038116,27686\n8462,0046963,43336\n8463,0040495,62000\n8464,0390521,9372\n8465,0033774,41495\n8477,0056119,662\n8482,0037988,16559\n8484,0053114,31217\n8485,0196069,8341\n8487,0054188,19414\n8491,0042041,15794\n8492,0044008,13188\n8493,0100133,12651\n8494,0059037,886\n8499,0078111,26973\n8502,0044030,17820\n8504,0115738,31146\n8507,0022913,136\n8511,0008133,47653\n8522,0032828,29353\n8524,0047086,17761\n8525,0061135,20277\n8526,0327437,10204\n8527,0319531,3515\n8528,0364725,9472\n8529,0362227,594\n8530,0377752,8981\n8531,0381707,12153\n8533,0332280,11036\n8534,0338512,1997\n8535,0352277,15237\n8537,0297753,11572\n8542,0028772,11939\n8544,0069031,24236\n8571,0064100,26520\n8572,0026641,43897\n8574,0272045,21386\n8575,0243135,24908\n8576,0339230,9256\n8577,0342213,25783\n8580,0099851,23378\n8581,0168122,3293\n8582,0104810,36947\n8583,0037604,54028\n8584,0037865,17645\n8589,0098437,29383\n8591,0087910,10606\n8596,0078163,6081\n8600,0029870,13696\n8604,0152930,2330\n8607,0388473,13398\n8609,0014341,701\n8610,0086873,10631\n8611,0039370,43466\n8612,0036098,2202\n8614,0093693,10780\n8616,0045586,19590\n8617,0053622,23724\n8618,0047136,26596\n8620,0056732,29264\n8622,0361596,1777\n8623,0093886,11584\n8625,0342956,202475\n8629,0167059,23522\n8633,0087597,11884\n8636,0316654,558\n8638,0381681,80\n8640,0349683,9477\n8641,0357413,8699\n8642,0368975,9893\n8643,0356470,11247\n8644,0343818,2048\n8645,0390221,436\n8650,0056196,43004\n8654,0047365,65994\n8656,0095468,10754\n8657,0051087,30054\n8661,0056085,11897\n8665,0372183,2502\n8666,0327554,314\n8667,0359423,18923\n8670,0023563,12206\n8672,0050171,75046\n8675,0050356,15876\n8684,0049902,15244\n8689,0100602,20876\n8690,0069280,24559\n8695,0039169,27437\n8699,0219636,259389\n8700,0035799,22871\n8709,0097530,27307\n8711,0040613,32294\n8712,0029284,41463\n8713,0093744,19051\n8718,0040806,62694\n8720,0103007,53287\n8722,0086494,32644\n8724,0057091,1040\n8725,0064381,42604\n8727,0072848,5122\n8730,0243609,1783\n8743,0090729,22976\n8745,0054483,45608\n8751,0042530,18671\n8752,0041859,17218\n8753,0346091,41316\n8754,0064840,5179\n8761,0057579,15081\n8763,0063389,64877\n8765,0035432,16703\n8766,0038360,20298\n8767,0040160,19974\n8768,0041268,22112\n8772,0059749,13580\n8777,0098209,41940\n8779,0310778,14652\n8781,0368008,14462\n8783,0368447,6947\n8784,0333766,401\n8785,0043313,50247\n8790,0286921,23750\n8795,0275083,23305\n8796,0060438,17768\n8797,0064921,27375\n8798,0369339,1538\n8799,0361841,14846\n8800,0345061,2577\n8807,0366551,11282\n8808,0368933,11130\n8810,0370263,395\n8811,0403703,11052\n8813,0361309,23601\n8814,0364751,10762\n8819,0061595,45335\n8820,0061015,18690\n8821,0059255,7506\n8823,0086370,36912\n8827,0083652,20120\n8828,0057997,22543\n8830,0366174,11237\n8831,0324127,8080\n8832,0374330,14797\n8833,0241025,11632\n8835,0338325,15644\n8836,0324554,11208\n8838,0071115,16153\n8839,0113762,13559\n8840,0063803,42694\n8848,0046521,12548\n8850,0057063,19893\n8851,0073722,42264\n8853,0081528,104659\n8854,0093624,24924\n8857,0058294,60437\n8859,0270846,31117\n8860,0337921,9759\n8861,0318627,1577\n8864,0339412,16232\n8865,0346156,5137\n8866,0360201,11823\n8870,0356618,10145\n8871,0357054,26486\n8872,0365125,13702\n8873,0318462,1653\n8874,0365748,747\n8879,0071877,4176\n8880,0089560,11177\n8882,0062755,26690\n8884,0089543,10905\n8892,0103773,27816\n8893,0099108,27815\n8899,0079271,42172\n8903,0057569,31655\n8906,0078935,8689\n8907,0307453,10555\n8908,0349710,11128\n8910,0356721,1599\n8911,0361696,14024\n8914,0390384,14337\n8915,0368658,26108\n8916,0358135,4380\n8917,0372588,3989\n8918,0349416,16358\n8920,0046874,2438\n8921,0048563,65550\n8923,0080009,11121\n8927,0074279,21241\n8928,0061655,3053\n8929,0066834,28356\n8930,0354575,12456\n8931,0342143,55047\n8933,0090985,18499\n8935,0101301,13644\n8937,0390022,13416\n8938,0390538,1435\n8943,0340012,18701\n8946,0252028,15566\n8947,0391198,1970\n8948,0375173,8849\n8949,0375063,9675\n8950,0361862,4553\n8951,0383694,11109\n8954,0396705,126148\n8955,0360130,16131\n8957,0387564,176\n8958,0350258,1677\n8961,0317705,9806\n8963,0273689,12777\n8964,0274407,47959\n8965,0338348,5255\n8966,0362269,11184\n8968,0367479,10589\n8969,0317198,9801\n8970,0308644,866\n8972,0368891,2059\n8973,0275491,140\n8974,0345950,11836\n8977,0346491,1966\n8979,0390299,174787\n8981,0376541,2288\n8982,0327919,15397\n8983,0385004,9550\n8984,0349903,163\n8985,0359013,36648\n8986,0053644,15788\n8987,0403910,33377\n8988,0053716,18973\n8989,0051516,41253\n8998,0072272,33740\n8999,0075323,74719\n9000,0111408,77448\n9001,0054453,43752\n9004,0088979,16248\n9005,0106912,15613\n9010,0364517,8424\n9012,0045109,50085\n9018,0391024,18889\n25737,0011237,2972\n25744,0013257,57283\n25750,0015324,992\n25752,0015841,42359\n25753,0015881,1405\n25755,0016220,964\n25763,0018737,905\n25764,0018742,31411\n25769,0019421,25768\n25771,0020530,626\n25773,0021079,27899\n25774,0021577,5729\n25777,0022158,13911\n25788,0023427,877\n25792,0023634,28268\n25795,0023948,39130\n25801,0024548,43595\n25805,0024844,43904\n25807,0024894,24106\n25825,0027652,14615\n25826,0027884,31773\n25827,0027996,24807\n25828,0028096,17030\n25839,0029322,37650\n25841,0029604,43864\n25842,0029682,23101\n25850,0030241,16274\n25852,0031359,55207\n25856,0032145,3084\n25865,0032701,17801\n25868,0033373,29884\n25874,0033945,28789\n25882,0034828,36612\n25886,0035238,22387\n25891,0035979,18727\n25898,0036506,41391\n25900,0036733,28436\n25901,0036910,22638\n25904,0037075,21451\n25906,0037094,43307\n25911,0037469,17136\n25916,0038160,18771\n25920,0038369,16090\n25927,0038991,20246\n25929,0039661,19169\n25930,0039677,43461\n25937,0040308,29380\n25940,0040525,3766\n25941,0040536,946\n25945,0040872,44190\n25947,0040919,33115\n25952,0041587,45578\n25962,0042646,43388\n25965,0043012,43390\n25971,0044486,43358\n25972,0044502,24003\n25993,0047203,13457\n25995,0047444,31372\n25996,0047522,3111\n25999,0047677,28696\n26003,0048434,803\n26005,0048579,31374\n26007,0048752,36439\n26009,0049012,33319\n26010,0049055,28100\n26012,0049710,31378\n26013,0049782,19742\n26025,0051003,18776\n26052,0053168,690\n26079,0055892,109667\n26082,0056058,14537\n26084,0056262,13671\n26085,0056264,11085\n26086,0056300,53218\n26093,0056700,28367\n26094,0056736,21135\n26111,0057877,15421\n26116,0058213,10299\n26117,0058262,24229\n26122,0058430,3763\n26125,0058606,28504\n26131,0058946,17295\n26133,0059026,13187\n26147,0059798,42731\n26150,0060107,895\n26151,0060138,20108\n26152,0060153,2661\n26157,0060666,22293\n26160,0061369,11047\n26163,0061589,135\n26164,0061643,33257\n26171,0062136,10227\n26172,0062138,26039\n26176,0062374,41212\n26178,0062407,5767\n26180,0062425,42713\n26188,0063050,22176\n26198,0063829,27983\n26199,0064002,5638\n26208,0064612,48831\n26228,0065955,31304\n26229,0065963,64828\n26231,0066214,26606\n26241,0066993,31767\n26242,0067023,839\n26251,0067439,74689\n26258,0067866,13041\n26265,0068503,18250\n26268,0068655,12089\n26271,0068828,23148\n26294,0070215,9474\n26302,0070643,31587\n26303,0070698,22307\n26313,0071269,32044\n26317,0071464,24402\n26318,0071487,5558\n26320,0071508,3043\n26322,0071571,16246\n26323,0071583,27977\n26324,0071598,42448\n26325,0071604,42449\n26326,0071615,8327\n26338,0072826,5618\n26342,0072973,1835\n26346,0073114,1829\n26349,0073453,32042\n26350,0073580,9652\n26366,0074605,33324\n26371,0074906,42252\n26375,0075223,11558\n26386,0076141,12535\n26391,0076451,12637\n26393,0076740,38985\n26394,0076843,61280\n26400,0077598,24998\n26403,0077687,1362\n26404,0077728,156235\n26409,0078062,98851\n26413,0078252,11537\n26414,0078481,45695\n26422,0079261,10654\n26425,0079336,19827\n26430,0079495,30636\n26435,0079948,54663\n26462,0085210,13633\n26464,0085255,6341\n26467,0085404,7012\n26471,0085474,15251\n26472,0085482,17435\n26480,0086135,29173\n26485,0086216,232\n26487,0086355,30707\n26492,0086491,15301\n26494,0086589,28054\n26501,0087054,42086\n26505,0087072,30278\n26509,0087197,19596\n26513,0087451,10179\n26524,0088275,33138\n26528,0088727,17663\n26547,0089374,9056\n26554,0089869,10176\n26555,0090056,9080\n26562,0090319,16082\n26564,0090557,14670\n26574,0091113,42021\n26578,0091670,24657\n26581,0091943,41480\n26585,0092263,11471\n26587,0092337,\n26599,0093412,4043\n26603,0093777,8852\n26606,0093978,30421\n26614,0094791,8677\n26622,0095050,49314\n26631,0095715,18917\n26649,0096639,13057\n26655,0097099,114524\n26662,0097814,16859\n26663,0097904,38695\n26680,0099329,9768\n26684,0099611,27274\n26686,0099654,10485\n26689,0099747,22189\n26693,0099864,2670\n26694,0099902,41821\n26695,0099951,21344\n26700,0100280,11131\n26701,0100339,14571\n26702,0100469,21168\n26704,0100685,1662\n26712,0101254,20562\n26726,0101786,25330\n26729,0102015,4539\n26731,0102048,22828\n26732,0102164,12776\n26736,0102293,17467\n26737,0102307,36351\n26749,0102722,5048\n26750,0102744,9588\n26775,0104567,45145\n26776,0104652,11621\n26782,0104802,40082\n26784,0105001,36288\n26788,0105197,38143\n26791,0105391,31962\n26797,0105764,41778\n26809,0106335,5051\n26810,0106341,14135\n26812,0106356,27678\n26819,0106950,12088\n26835,0107861,67595\n26838,0108170,12664\n26840,0108188,7500\n26842,0108281,11143\n26843,0108334,5187\n26850,0109020,32764\n26854,0109552,18998\n26865,0110200,17809\n26870,0110442,11067\n26886,0111835,18674\n26903,0113824,37797\n26915,0114733,16233\n26947,0117407,2061\n26974,0119237,18415\n26999,0120131,9732\n27002,0120570,30983\n27005,0120714,19846\n27020,0123865,14533\n27022,0124901,9812\n27032,0127357,8697\n27075,0146402,11508\n27109,0158714,2487\n27156,0169858,18491\n27178,0177858,3716\n27186,0181627,21348\n27193,0183869,2332\n27251,0207275,110147\n27253,0208185,15653\n27255,0209463,43423\n27266,0212712,844\n27317,0235198,11075\n27322,0236576,49671\n27329,0239894,17208\n27334,0240912,62529\n27338,0242527,467\n27351,0244870,11366\n27369,0250440,44756\n27373,0250934,20536\n27376,0251447,3577\n27397,0260991,2440\n27410,0266425,12900\n27416,0269389,10978\n27423,0271383,40096\n27441,0275230,919\n27478,0284837,9298\n27482,0285492,437\n27523,0293715,11178\n27544,0299213,30839\n27555,0302585,13984\n27592,0310775,4689\n27604,0312843,12720\n27611,0314979,206216\n27646,0324013,32526\n27648,0325123,15271\n27660,0328832,55931\n27664,0330099,12703\n27674,0331811,9282\n27685,0334965,12540\n27689,0337103,60672\n27700,0338309,11197\n27704,0338763,3177\n27706,0339291,11774\n27713,0342150,16765\n27721,0344510,2841\n27722,0345549,11606\n27724,0346293,2518\n27727,0347048,363\n27728,0347246,12140\n27731,0347618,15370\n27741,0351817,12496\n27751,0355987,36763\n27768,0363532,21200\n27772,0364385,11838\n27773,0364569,670\n27778,0365265,12583\n27783,0366137,49681\n27784,0366292,9694\n27788,0366627,9667\n27790,0366777,13373\n27792,0366996,37209\n27793,0367093,10304\n27798,0367913,9666\n27800,0368667,11049\n27801,0368909,9316\n27802,0369060,11647\n27803,0369702,1913\n27808,0371246,2539\n27812,0372279,14770\n27815,0372824,5528\n27816,0373283,10105\n27821,0373926,179\n27822,0374102,83\n27826,0374277,55177\n27831,0375912,4836\n27834,0376968,11190\n27837,0377062,11866\n27838,0377091,12281\n27839,0377109,10320\n27846,0379225,11420\n27850,0379593,3396\n27851,0380366,1404\n27857,0382330,464\n27867,0385705,10296\n27869,0386064,11658\n27871,0386792,20544\n27873,0387412,11401\n27875,0388367,31781\n27876,0388395,9483\n27878,0388789,1392\n27879,0388888,1843\n27882,0389326,291\n27899,0399877,8357\n27904,0405296,3509\n27912,0418038,13372\n27922,0500140,23319\n30707,0405159,70\n30712,0044954,31713\n30723,0100873,55309\n30745,0361668,12487\n30749,0395169,205\n30783,0058567,28055\n30793,0367594,118\n30803,0423866,1280\n30810,0362270,421\n30812,0338751,2567\n30816,0293508,9833\n30818,0363473,6478\n30820,0361127,9692\n30822,0385267,1901\n30825,0290002,693\n30846,0364961,842\n30848,0369672,9953\n30850,0379889,11162\n30867,0416220,26275\n30883,0396592,15045\n30892,0390123,1853\n30894,0375210,11804\n30898,0365885,11354\n31000,0092035,66600\n31026,0098090,69234\n31035,0086429,21259\n31101,0326208,18927\n31104,0073107,42257\n31109,0045557,74122\n31114,0373024,25350\n31116,0034167,16442\n31150,0076929,16220\n31156,0043255,33475\n31162,0352520,10609\n31184,0401233,11633\n31193,0076363,13716\n31221,0357277,9947\n31225,0393162,7214\n31270,0073705,27429\n31284,0075265,19610\n31290,0101412,27549\n31364,0353969,11423\n31374,0047094,16410\n31408,0420206,342\n31410,0363163,613\n31413,0276617,273\n31420,0398712,8978\n31422,0368578,11637\n31427,0382077,11096\n31431,0357507,8968\n31433,0372532,6961\n31435,0417791,31165\n31437,0408664,2517\n31445,0362590,11413\n31502,0079844,11343\n31522,0079095,661\n31524,0068278,10310\n31547,0104706,53200\n31549,0067085,55624\n31658,0347149,4935\n31660,0348121,8953\n31682,0402406,41569\n31685,0386588,8488\n31689,0418753,12228\n31694,0361411,57825\n31696,0360486,561\n31700,0317132,17880\n31724,0284674,27202\n31737,0058997,1942\n31747,0099450,21433\n31770,0042788,19119\n31804,0403358,3040\n31878,0373074,9470\n31903,0288330,19765\n31921,0075194,29578\n31923,0072281,2926\n31930,0060675,4710\n31952,0373981,5204\n31956,0354356,4974\n31963,0065651,258\n31973,0039417,8016\n32017,0395699,10022\n32019,0377471,4551\n32022,0424129,30856\n32025,0352994,26\n32029,0340163,2026\n32031,0358082,9928\n32078,0107027,6593\n32139,0058886,36815\n32153,0107745,33539\n32160,0025919,31835\n32170,0382621,20511\n32174,0063035,22377\n32203,0068315,18047\n32211,0072285,15018\n32234,0076245,42222\n32280,0021818,42837\n32289,0396652,13374\n32291,0378947,9688\n32296,0385307,10040\n32298,0372237,11638\n32302,0430289,77120\n32349,0029608,43865\n32352,0112389,185441\n32369,0042832,32078\n32371,0040202,26038\n32381,0053645,43029\n32387,0060277,19884\n32395,0057295,52302\n32444,0085297,42106\n32456,0110008,15283\n32460,0119472,158\n32464,0101588,1772\n32469,0048801,5996\n32515,0096409,28448\n32525,0046022,27030\n32554,0113799,42994\n32562,0382734,21131\n32582,0424565,17592\n32587,0401792,187\n32591,0374583,11399\n32596,0318649,7364\n32598,0332047,11431\n32632,0070022,26332\n32666,0376717,44181\n32686,0066849,26774\n32728,0074806,19971\n32735,0071502,47406\n32743,0235712,9674\n32797,0075165,37512\n32825,0088083,19673\n32840,0084868,32085\n32844,0033238,43824\n32853,0066904,42611\n32882,0033388,26182\n32892,0056111,31442\n32898,0000417,775\n32914,0319970,7342\n32943,0100024,36843\n33004,0371724,7453\n33021,0085496,8220\n33085,0384806,10065\n33124,0384369,9393\n33138,0362004,13073\n33145,0391304,8976\n33154,0413845,13020\n33158,0329774,11679\n33162,0320661,1495\n33164,0397065,10066\n33166,0375679,1640\n33171,0370986,11171\n33296,0218864,13163\n33312,0019777,20625\n33358,0332285,24078\n33380,0280381,63066\n33437,0342258,10027\n33493,0121766,1895\n33495,0384642,9981\n33499,0369735,4379\n33558,0337721,14694\n33587,0037415,16373\n33592,0307213,25649\n33615,0351283,953\n33621,0381429,16605\n33639,0438205,14358\n33646,0398165,9291\n33660,0352248,921\n33669,0403508,9779\n33672,0355702,9787\n33679,0356910,787\n33681,0424774,14199\n33683,0338095,10226\n33688,0437407,20651\n33750,0387914,20941\n33760,0038303,43471\n33794,0372784,272\n33817,0382189,9709\n33826,0384488,25248\n33830,0400497,11451\n33834,0418819,11683\n33836,0374536,9722\n33838,0436724,2287\n33880,0415978,1382\n33896,0420251,33908\n33903,0408777,276\n33912,0078444,38731\n33917,0044896,93775\n34002,0030696,15938\n34018,0031060,22553\n34048,0407304,74\n34072,0428803,1667\n34129,0376108,7233\n34143,0382628,9009\n34150,0120667,9738\n34153,0436613,14278\n34162,0396269,9522\n34164,0361693,14922\n34198,0409184,1826\n34271,0410097,10476\n34319,0399201,1635\n34321,0408524,13341\n34323,0395584,1696\n34326,0403217,1665\n34332,0405325,11459\n34334,0382992,10048\n34336,0417001,11648\n34338,0436078,15258\n34359,0060453,42719\n34364,0105577,41776\n34405,0379786,16320\n34435,0073707,12259\n34437,0412019,308\n34517,0061398,42689\n34520,0377818,6519\n34523,0406650,13919\n34528,0418773,1444\n34530,0367652,11453\n34532,0397101,9913\n34534,0430105,8292\n34536,0326905,13922\n34542,0427312,501\n34552,0443518,28201\n34583,0069121,27292\n34608,0052619,57103\n35836,0405422,6957\n35957,0421239,11460\n36152,0089052,42034\n36276,0387898,445\n36289,0133385,9564\n36397,0361089,14175\n36401,0355295,4442\n36509,0402901,9042\n36517,0387131,1985\n36519,0388482,9335\n36525,0425123,9007\n36527,0377107,9777\n36529,0399295,1830\n36533,0384286,10092\n36535,0404030,340\n36553,0029047,78734\n36708,0385690,65215\n36931,0386005,11636\n37211,0032536,22575\n37240,0436971,14286\n37277,0066732,27645\n37380,0419706,8814\n37382,0421054,9923\n37384,0348333,7553\n37386,0402022,8202\n37475,0350261,1947\n37477,0399327,9074\n37720,0404032,8643\n37727,0408790,9315\n37729,0121164,3933\n37731,0385002,8923\n37733,0399146,59\n37736,0380599,257\n37739,0388980,15487\n37741,0379725,398\n37785,0066767,30941\n37830,0385700,647\n37853,0378109,11968\n37855,0406158,27176\n37857,0366780,14517\n38038,0312004,533\n38061,0373469,5236\n38304,0367555,19082\n38384,0036891,36498\n38499,0318997,24019\n38798,0388125,11931\n38886,0367089,10707\n38992,0417217,9910\n38994,0369053,38583\n39052,0472566,15493\n39183,0388795,142\n39231,0368709,9621\n39234,0395972,9701\n39292,0433383,3291\n39307,0418647,12920\n39381,0421238,16608\n39398,0389828,24408\n39408,0443567,38828\n39414,0338427,2610\n39416,0408961,21246\n39419,0373450,9729\n39421,0302297,15276\n39427,0371257,8066\n39435,0386140,1656\n39444,0384680,6963\n39446,0432348,215\n39659,0063678,5335\n39715,0436058,8274\n39768,0322420,20128\n39779,0025862,18994\n39869,0342735,1951\n39941,0078771,259\n40148,0365686,10851\n40226,0267116,16231\n40278,0418763,25\n40339,0371606,9982\n40412,0419677,12877\n40414,0424205,11661\n40491,0098532,7974\n40574,0430308,10060\n40581,0433400,10033\n40583,0365737,231\n40597,0328132,68098\n40614,0398017,8999\n40629,0414387,4348\n40723,0416315,9885\n40732,0435625,9392\n40815,0330373,674\n40817,0271461,24625\n40819,0358273,69\n40826,0294870,1833\n40833,0059619,46591\n40851,0406375,6795\n40870,0401085,11421\n40946,0422528,16156\n40959,0400525,9005\n41226,0069303,42489\n41285,0416320,116\n41336,0051983,35124\n41527,0445620,67\n41566,0363771,411\n41569,0360717,254\n41571,0397535,1904\n41573,0356680,9043\n41585,0039536,21454\n41714,0077452,42234\n41716,0365485,9515\n41769,0392465,23478\n41863,0419294,8053\n41912,0323998,11466\n41997,0408306,612\n42002,0395251,9899\n42004,0407265,546\n42007,0398375,2800\n42009,0452598,9641\n42011,0369441,7552\n42013,0267891,9927\n42015,0402894,9681\n42163,0079807,22975\n42191,0091455,13925\n42197,0444653,9687\n42217,0041154,20530\n42351,0090163,17835\n42418,0402399,11400\n42632,0451094,4550\n42677,0428441,44345\n42681,0033627,21735\n42718,0414852,10045\n42721,0383222,168705\n42723,0450278,1690\n42725,0456554,9900\n42728,0375154,9044\n42730,0385726,9918\n42732,0408985,17379\n42734,0443536,10982\n42738,0401855,834\n42740,0433116,25890\n42783,0058642,26782\n42900,0060268,4772\n42935,0437447,14226\n42946,0085127,21519\n42958,0412922,16553\n43177,0079688,23957\n43267,0462570,78237\n43333,0240200,7509\n43351,0164292,24269\n43376,0426578,2117\n43391,0390245,29040\n43396,0412080,9912\n43419,0416496,1969\n43556,0417433,13275\n43558,0421729,11565\n43560,0396752,11283\n43635,0056891,25167\n43679,0414982,9286\n43708,0425598,292\n43744,0421994,1544\n43832,0478988,20981\n43836,0383216,12096\n43838,0092115,33061\n43869,0381971,9975\n43871,0408345,9754\n43899,0420260,29269\n43904,0455857,10053\n43908,0449061,7515\n43910,0473692,15675\n43917,0397313,9036\n43919,0466342,10073\n43921,0404390,7304\n43928,0370032,9920\n43930,0397078,10025\n43932,0454919,9682\n43936,0450232,2207\n44004,0427229,6877\n44022,0438097,950\n44073,0041931,4173\n44191,0434409,752\n44193,0454945,9655\n44195,0427944,9388\n44197,0419749,9950\n44199,0454848,388\n44204,0468565,868\n44225,0429591,14191\n44245,0209095,18011\n44301,0458242,1379\n44317,0113580,62719\n44397,0454841,9792\n44421,0112120,55676\n44511,0436864,35555\n44555,0405094,582\n44587,0013427,669\n44597,0057697,37939\n44613,0446046,12763\n44633,0436231,13222\n44665,0425210,186\n44671,0443693,8410\n44694,0441909,219\n44709,0437800,13751\n44717,0367975,52345\n44731,0441796,10069\n44759,0430912,3093\n44761,0393109,9270\n44788,0493459,16070\n44828,0439815,9035\n44840,0437863,9957\n44849,0386741,9389\n44864,0436331,8998\n44911,0077889,34193\n44972,0362120,4257\n44974,0424136,2652\n45000,0061473,1629\n45028,0420087,9526\n45062,0443632,5820\n45081,0384537,588\n45172,0126765,1557\n45179,0034798,17131\n45183,0427954,8982\n45186,0317919,956\n45208,0449089,9530\n45210,0475276,9829\n45221,0430634,10115\n45382,0398027,7870\n45431,0327084,7518\n45440,0364955,9786\n45442,0409182,503\n45447,0382625,591\n45499,0376994,36668\n45501,0452594,9767\n45506,0417385,18164\n45517,0317219,920\n45521,0413466,18484\n45662,0466909,806\n45666,0457510,9353\n45668,0410297,2044\n45672,0389860,9339\n45679,0036341,20945\n45720,0458352,350\n45722,0383574,58\n45726,0463034,1819\n45728,0424345,2295\n45730,0452637,9697\n45732,0465624,4474\n45837,0065976,20556\n45880,0422720,1887\n45928,0489037,13508\n45942,0070359,48693\n45950,0497116,1781\n45969,0101545,16270\n45987,0092758,42003\n46062,0475293,10947\n46322,0446059,7549\n46335,0463985,9615\n46337,0455499,9513\n46347,0478209,20604\n46530,0348150,1452\n46544,0101798,43654\n46559,0468094,7872\n46561,0478197,57406\n46574,0422861,14474\n46578,0449059,773\n46664,0040338,21631\n46723,0449467,1164\n46772,0369994,13141\n46850,0492506,35199\n46855,0064040,15383\n46865,0430304,9072\n46919,0399862,14120\n46948,0385880,9297\n46965,0417148,326\n46967,0457513,512\n46970,0415306,9718\n46972,0477347,1593\n46974,0469641,1852\n46976,0420223,1262\n47044,0430357,82\n47092,0043879,31152\n47099,0454921,1402\n47122,0455967,9293\n47124,0429589,9906\n47148,0421229,47880\n47152,0074360,51857\n47196,0049653,43542\n47200,0479884,1948\n47202,0430576,148\n47254,0402910,5289\n47261,0448075,9782\n47274,0067778,42501\n47287,0052700,35921\n47330,0071424,19017\n47382,0462590,9762\n47384,0383060,14113\n47404,0452039,21712\n47423,0468489,7859\n47465,0410764,11559\n47491,0418455,1023\n47493,0035703,59964\n47518,0384793,9788\n47606,0027421,57840\n47610,0443543,1491\n47629,0436697,1165\n47640,0486551,9988\n47714,0038363,19072\n47721,0048980,15265\n47728,0038577,29589\n47810,0450345,9708\n47815,0473024,14351\n47894,0460989,1116\n47937,0464196,5072\n47950,0427969,1249\n47952,0475944,9954\n47978,0423169,13075\n47997,0387808,7512\n47999,0486358,1776\n48032,0419198,10846\n48043,0414993,1381\n48061,0069289,15242\n48082,0354899,300\n48142,0387877,9676\n48159,0430779,15213\n48165,0098327,32761\n48198,0086377,66487\n48231,0410730,15742\n48262,0799954,1666\n48268,0376591,41758\n48301,0024473,43122\n48304,0472043,1579\n48319,0454824,9664\n48322,0493430,12094\n48385,0443453,496\n48394,0457430,1417\n48414,0400717,7484\n48501,0384116,27275\n48516,0407887,1422\n48518,0420294,10781\n48520,0424993,9794\n48522,0457495,9978\n48560,0439289,7510\n48591,0433386,1975\n48593,0483726,9895\n48596,0419946,8975\n48660,0430051,86\n48682,0499537,13209\n48696,0404203,1440\n48698,0814075,13364\n48711,0805526,18925\n48738,0455590,1523\n48741,0478049,14201\n48744,0367027,1378\n48774,0206634,9693\n48780,0482571,1124\n48783,0418689,3683\n48791,0434215,14012\n48817,0492492,43673\n48856,0473488,8194\n48872,0475169,6077\n48877,0489270,214\n48972,0407236,21156\n48982,0424095,11619\n48997,0396171,1427\n49013,0452681,13767\n49132,0811136,2152\n49220,0470765,14799\n49225,0457496,29044\n49265,0420901,8588\n49272,0381061,36557\n49274,0366548,9836\n49278,0453467,7551\n49280,0308055,10741\n49284,0499603,2357\n49286,0457939,1581\n49299,0347449,57977\n49314,0433387,7873\n49394,0059719,36265\n49396,0365830,2179\n49526,0480271,10032\n49528,0454970,9796\n49530,0450259,1372\n49647,0413895,9986\n49649,0449010,2486\n49651,0479143,1246\n49688,0046889,13210\n49772,0446755,14202\n49817,0084509,30060\n49822,0343737,1247\n49824,0443489,1125\n49902,0065622,33583\n49910,0463998,1646\n49917,0783612,58923\n49932,0460829,1730\n49957,0464049,8618\n49961,0465551,1259\n50005,0473444,1494\n50011,0808185,13318\n50064,0452624,182\n50068,0498380,1251\n50147,0454082,9656\n50160,0482546,13967\n50162,0344854,9992\n50189,0808146,8275\n50245,0069687,2204\n50259,0468526,26518\n50442,0426883,7457\n50445,0455960,8398\n50514,0457655,3549\n50583,0468795,27337\n50601,0398808,1265\n50641,0076162,25623\n50651,0822389,13140\n50658,0473434,13365\n50685,0473308,10758\n50703,0846789,26594\n50740,0058578,51863\n50742,0066356,50754\n50792,0395495,13668\n50794,0475394,7516\n50798,0799949,9760\n50802,0490084,1257\n50804,0367959,1248\n50806,0477051,9757\n50842,0469754,5206\n50851,0380268,14761\n50872,0382932,2062\n50912,0401711,2266\n50923,0469263,5172\n50954,0482527,37725\n51044,0061937,34038\n51077,0259324,1250\n51080,0401997,4169\n51084,0758766,11172\n51086,0481369,3594\n51088,0499554,10090\n51091,0462200,7874\n51094,0375785,14845\n51127,0449121,22485\n51174,0432402,12271\n51207,0094057,22172\n51255,0425112,4638\n51277,0078243,11841\n51304,0424938,9695\n51357,0112681,12554\n51372,0173714,26598\n51380,0067647,5691\n51412,0435705,1738\n51418,0443456,1253\n51471,0454776,15163\n51540,0443706,1949\n51575,0486946,11199\n51662,0416449,1271\n51698,0768212,2267\n51705,0482088,6691\n51709,0468492,1255\n51773,0056825,47249\n51834,0416508,2977\n51884,0433416,16727\n51925,0477071,9963\n51927,0455760,14001\n51931,0490204,2355\n51935,0822854,7485\n51937,0800069,9793\n51939,0453556,1273\n52241,0427470,8270\n52245,0445934,9955\n52281,0462322,253768\n52287,0396555,1267\n52319,0076584,22311\n52328,0448134,1272\n52378,0042792,28433\n52435,0060345,13377\n52456,0457433,7183\n52458,0486822,8271\n52460,0446013,1534\n52462,0455326,13158\n52528,0066491,35838\n52545,0492481,20405\n52579,0450188,1407\n52604,0488120,6145\n52606,0488085,9843\n52617,0835787,54659\n52644,0452702,10294\n52666,0103793,1987\n52668,0419843,13067\n52694,0453451,1268\n52712,0435670,9785\n52717,0443473,14636\n52722,0413300,559\n52730,0329737,13352\n52767,0075610,20553\n52831,0095583,14240\n52885,0851578,4977\n52913,0027067,31866\n52950,0409904,2269\n52952,0480025,11798\n52967,0491747,1919\n52973,0478311,4964\n52975,0427327,2976\n53000,0463854,1562\n53024,0762111,36676\n53038,0023382,38077\n53121,0413267,810\n53123,0907657,5723\n53125,0449088,285\n53129,0780571,3432\n53133,0441007,15568\n53138,0455596,14208\n53189,0494222,8748\n53207,0411061,3489\n53318,0460740,12225\n53322,0496806,298\n53326,0465203,10832\n53435,0498353,1691\n53447,0842929,1990\n53460,0423294,9408\n53464,0486576,1979\n53466,0479500,14043\n53468,0457572,10288\n53519,1028528,1991\n53550,0462504,9952\n53737,0062038,42700\n53883,0430484,49870\n53887,0070464,42464\n53894,0386032,2359\n53953,0450385,3021\n53956,0795368,2196\n53972,0337978,1571\n53974,0762114,2959\n53993,0413099,2698\n53996,0418279,1858\n53999,0374563,14125\n54001,0373889,675\n54004,0762107,3563\n54190,0445922,4688\n54220,0065037,54494\n54251,0398963,32444\n54256,0787475,10074\n54259,0486655,2270\n54270,0461703,14219\n54272,0462538,35\n54276,0481141,3638\n54281,0423977,8669\n54286,0440963,2503\n54290,0804452,14123\n54328,0778784,4516\n54331,0796375,8141\n54372,0362225,10795\n54419,0402906,33916\n54426,0809407,24159\n54503,0829482,8363\n54513,0796368,6535\n54648,0293564,5174\n54732,0424823,9750\n54734,0815244,10760\n54736,0431197,4349\n54745,0477078,13068\n54768,0462244,14144\n54771,0427392,4858\n54775,0499556,10431\n54780,0489237,12435\n54785,0373883,2082\n54787,0804461,11835\n54881,0923752,13958\n54910,0437857,10961\n54995,1077258,1992\n54997,0381849,5176\n54999,0465602,4141\n55031,0346952,14348\n55052,0783233,4347\n55063,1093842,13241\n55069,1032846,2009\n55071,0912593,12901\n55078,0061648,3469\n55094,0478134,6973\n55100,0466839,15019\n55110,0465436,4629\n55116,0455782,5353\n55118,0765443,2252\n55156,0492499,30365\n55167,0831888,13754\n55207,0409799,244797\n55232,0432021,7737\n55245,0452625,10030\n55247,0758758,5915\n55250,0492956,13680\n55253,0808357,4588\n55259,0484562,2274\n55261,0408839,9038\n55267,0480242,7211\n55269,0838221,4538\n55272,0498399,2001\n55274,0414055,4517\n55276,0465538,4566\n55280,0805564,6615\n55282,0389722,4513\n55290,0452623,4771\n55294,0758798,14251\n55363,0443680,4512\n55417,0762110,1922\n55442,0808417,2011\n55444,0421082,5708\n55451,0866437,5951\n55498,0494834,14753\n55555,0880502,2014\n55566,0906108,17202\n55577,0890870,663\n55652,0079871,25476\n55684,0821470,20605\n55687,0912592,14279\n55721,0861739,7347\n55732,0415965,5126\n55757,0079278,42173\n55765,0765429,4982\n55768,0389790,5559\n55805,0292963,7972\n55814,0401383,2013\n55820,0477348,6977\n55830,0799934,4953\n55851,0790706,26336\n55872,0426931,5123\n55895,0047985,18612\n55908,0756683,13363\n55946,0891527,4515\n55995,0442933,2310\n55999,0457419,2284\n56003,0405336,4723\n56015,0044789,21296\n56030,0988102,24060\n56069,0878695,13561\n56079,0780608,13168\n56095,0995829,11148\n56145,0884328,5876\n56152,0461770,4523\n56156,0465494,1620\n56169,0211933,13483\n56171,0385752,2268\n56174,0480249,6479\n56176,0952640,6477\n56251,0471711,7249\n56274,0757361,13998\n56286,0368794,3902\n56333,0775529,8272\n56336,0804555,13186\n56339,0464141,6537\n56367,0467406,7326\n56563,0847817,13348\n56587,0825232,7350\n56607,0419887,7979\n56633,0489664,13250\n56715,0477139,13198\n56757,0408236,13885\n56775,0465234,6637\n56782,0469494,7345\n56788,0472062,6538\n56801,0758730,440\n56805,0841046,6575\n56869,0489458,40860\n56885,0427309,14047\n56908,0490579,14118\n56915,0760329,54318\n56921,0991178,69315\n56941,0431308,6023\n56949,0988595,6557\n57038,0241663,60141\n57223,0372873,10253\n57243,1032856,5259\n57274,1038988,8329\n57326,0460780,2312\n57353,0780516,13195\n57368,1060277,7191\n57401,0896798,13252\n57418,0063483,42635\n57430,0076910,86241\n57453,0848542,18290\n57504,0808506,14069\n57526,0880578,8090\n57528,0462499,7555\n57532,1073498,7278\n57640,0411477,11253\n57669,0780536,8321\n57792,0825236,7973\n57845,0800099,18893\n57910,0780622,13121\n57951,0770752,8676\n57972,0460766,15030\n57980,0945356,12167\n58025,0489099,8247\n58029,0807054,7992\n58047,0832266,8390\n58103,0443274,7461\n58105,0416236,8204\n58107,1023481,8328\n58146,1001562,15365\n58154,0467200,12184\n58156,0839980,13260\n58191,0854678,13362\n58293,0443649,7840\n58295,0200465,8848\n58297,0483607,13460\n58299,0451079,12222\n58301,0808279,8461\n58303,0813547,7862\n58306,0416044,12246\n58315,0811138,12177\n58347,0472160,7985\n58351,0870090,7343\n58365,0905979,28816\n58376,1166827,13016\n58425,1094594,14793\n58432,0486674,8944\n58520,0089537,383\n58554,0988108,28205\n58559,0468569,155\n58627,1023111,8456\n58649,0018192,42536\n58655,0817538,8457\n58706,0796307,32579\n58803,0478087,8065\n58839,0379865,4942\n58879,0893382,7944\n58889,0995061,18218\n58904,0083728,14272\n58964,0856288,13312\n58972,0410377,10488\n58975,0963794,11152\n58998,0800039,9870\n59014,0426592,11918\n59016,0421073,1266\n59018,0857191,12473\n59022,0481536,13335\n59037,0811080,7459\n59103,0865556,1729\n59118,1045670,10503\n59126,0815241,13007\n59141,0845046,13258\n59143,1111833,14236\n59180,0032007,40044\n59258,0871426,8780\n59273,0412637,13650\n59306,0926129,8617\n59315,0371746,1726\n59333,0866439,10761\n59339,0475984,16135\n59369,0936501,8681\n59387,0460791,14784\n59392,0942903,13001\n59418,0802948,13008\n59421,1033643,9029\n59429,0974959,8277\n59447,0106911,41648\n59501,0499448,2454\n59519,0827517,12197\n59549,0942384,17483\n59590,1047007,21182\n59594,0884224,13191\n59615,0367882,217\n59669,0479916,82437\n59684,0841119,44260\n59721,0427998,15378\n59725,1000774,4564\n59727,0482606,10665\n59731,1151309,13636\n59784,0441773,9502\n59805,0064256,74349\n59810,1000771,14050\n59814,0812243,14019\n59832,0043132,17221\n59834,0063970,37308\n59846,0020030,79761\n59900,0960144,10661\n59935,0068595,3687\n59945,0011439,42657\n59985,0460745,12912\n59995,1078188,14748\n60037,0949731,8645\n60040,0800080,1724\n60069,0910970,10681\n60072,0493464,8909\n60074,0448157,8960\n60086,0433350,15728\n60126,0425061,11665\n60128,0913445,13019\n60135,0479547,26354\n60137,0997088,22905\n60161,1054485,12889\n60291,0479468,13003\n60293,1082886,13990\n60295,1114277,15272\n60333,1093824,12172\n60343,0029751,43869\n60382,1157705,16800\n60384,0405496,56224\n60397,0795421,11631\n60471,0479528,13022\n60487,0060550,13353\n60514,0373051,88751\n60516,0765476,11260\n60609,0758742,16007\n60649,0482603,11802\n60674,0929629,12914\n60684,0409459,13183\n60753,1117385,13012\n60756,0838283,12133\n60760,0443701,8836\n60763,0486259,13259\n60766,1155592,14048\n60832,0964539,12192\n60857,0801526,16725\n60937,0859163,1735\n60943,0978759,10183\n60950,0497465,5038\n60990,0055052,28273\n61013,0177507,1661\n61024,0910936,10189\n61026,0425637,12289\n61071,1018785,10188\n61075,0974554,11671\n61123,0810900,13649\n61132,0942385,7446\n61160,1185834,12180\n61167,1029120,13107\n61206,0809425,29568\n61210,0490181,13256\n61236,1185616,8885\n61240,1139797,13310\n61248,0452608,10483\n61250,0852713,12620\n61289,0906665,13637\n61323,0887883,4944\n61348,1213644,13805\n61350,0364970,9381\n61352,0988047,13291\n61357,1149405,22319\n61361,0430770,13972\n61394,0392878,14771\n61401,0831887,8285\n61465,0814022,13184\n61634,0038097,43177\n61646,0452971,3865\n61705,0947802,13279\n61729,0995039,12797\n62049,0048918,1984\n62081,1059786,13027\n62113,0455538,13092\n62115,0425458,25126\n62155,0981227,12182\n62203,1029234,9539\n62250,0929425,8882\n62331,0439533,15981\n62336,0279077,225130\n62344,1084950,14976\n62374,0758774,12113\n62376,0970411,13600\n62378,0841027,10078\n62383,0006333,30266\n62394,0467197,13051\n62434,1007028,10358\n62437,1175491,10523\n62511,0383028,4960\n62644,1063669,7735\n62718,0963743,12689\n62733,1082868,13812\n62764,0072709,27361\n62792,0482572,13150\n62801,0068817,41474\n62849,1032755,13809\n62912,0962726,11887\n62956,1054486,13253\n62999,0479952,10527\n63062,0824747,3580\n63072,0898367,20766\n63082,1010048,12405\n63113,0830515,10764\n63131,0430922,15373\n63179,0976060,8938\n63239,0128996,42884\n63276,1016290,14943\n63393,1055366,13655\n63436,1132626,11917\n63479,1135985,13523\n63481,1111948,14655\n63515,0851577,22358\n63540,1014775,14405\n63629,0054866,84050\n63808,1068646,8841\n63826,1031280,13220\n63836,0118840,34867\n63853,0455824,6972\n63859,0397892,13053\n63876,1013753,10139\n63992,1099212,8966\n64030,1129442,13387\n64032,0369436,12193\n64034,0914798,14574\n64114,1129423,14438\n64116,0465502,14248\n64153,0837791,20919\n64197,0986233,10360\n64229,1042877,14299\n64249,0897387,13394\n64278,0828154,34283\n64285,1118511,14447\n64321,0441762,1964\n64338,0107065,17912\n64497,0970416,10200\n64499,0892255,8881\n64501,0374569,8880\n64508,0844760,11127\n64575,0918927,14359\n64614,1205489,13223\n64620,0870111,11499\n64622,0976051,8055\n64660,0476681,5816\n64695,1121794,13980\n64701,1068649,8276\n64716,0814314,11321\n64839,1125849,12163\n64900,0100625,9050\n64957,0421715,4922\n64969,1068680,10201\n64983,0985699,2253\n64990,1003116,40873\n64993,0983213,38142\n64997,0449040,34812\n65037,0953318,6936\n65088,0960731,10202\n65126,1024715,13973\n65130,0959337,4148\n65133,0212579,194113\n65135,0094754,51247\n65188,1152758,15584\n65193,1024255,13971\n65216,1034303,13813\n65230,0822832,14306\n65259,1232826,8927\n65261,0876563,12429\n65310,0462485,17287\n65418,1152850,8942\n65465,1046947,16409\n65514,1220719,14756\n65552,0238552,10596\n65567,0449487,13944\n65577,0420238,10199\n65585,0901476,10521\n65601,1179891,14435\n65638,0209919,221861\n65642,0480669,14139\n65665,0243951,125705\n65682,0834001,12437\n65685,0494238,2309\n65802,1114740,14560\n65982,0462465,10529\n66019,0070136,46595\n66066,1053859,1977\n66090,1020530,13510\n66097,0327597,14836\n66130,1183252,15003\n66171,0465580,13455\n66198,0963178,4959\n66200,1103275,10362\n66203,1001508,10184\n66246,0070860,36764\n66297,1054487,15060\n66310,0814685,13492\n66317,0240425,70089\n66335,1265998,14711\n66371,1069238,16804\n66427,0489235,1961\n66509,1201167,20829\n66544,0208629,18884\n66596,1237838,38087\n66659,1142800,15670\n66665,1176740,19255\n66686,0039941,29117\n66744,1023490,8832\n66785,0901487,15067\n66798,0838232,15159\n66808,0400426,7916\n66915,0102802,20421\n66934,1227926,14301\n67087,1155056,16538\n67193,1135487,16558\n67197,0448011,13811\n67252,0785035,16353\n67255,1132620,15472\n67267,0862846,13090\n67295,1287845,15854\n67361,1124039,16325\n67408,0892782,15512\n67429,1172203,20529\n67504,0067324,62437\n67508,0765432,6968\n67665,1157605,18094\n67695,1197628,16991\n67734,1091722,16614\n67788,1093908,20048\n67799,1234541,16258\n67867,1098327,14164\n67923,1013752,13804\n67957,0094075,1387\n67997,1226774,19833\n68073,1131729,18947\n68099,0180443,128857\n68135,0974661,16996\n68137,0471834,168538\n68157,0361748,16869\n68159,0473705,16995\n68194,1226271,21641\n68205,1121931,15092\n68237,1182345,17431\n68269,0962736,18320\n68319,0458525,2080\n68324,1103982,17680\n68347,1127715,21191\n68358,0796366,13475\n68444,0460810,16279\n68486,1326972,15384\n68536,0278736,30416\n68554,0808151,13448\n68614,0079875,47906\n68659,0489049,13532\n68791,0438488,534\n68793,1078912,18360\n68835,0476991,19375\n68838,0977648,23997\n68848,0844286,21755\n68872,0038823,8429\n68884,0920473,10541\n68901,0990404,15555\n68932,0821642,17332\n68945,0169880,21832\n68952,1127180,16871\n68954,1049413,14160\n68959,0485323,14003\n68965,1153706,21724\n68967,0836700,8282\n69069,1083456,17927\n69118,0910905,13975\n69122,1119646,18785\n69134,0870984,17609\n69241,0080196,45560\n69253,1095174,14536\n69275,1278340,14451\n69278,0457400,18162\n69280,1059905,34482\n69306,1111422,18487\n69406,1041829,18240\n69436,1045778,17610\n69458,1032821,8940\n69481,0887912,12162\n69495,0910847,16240\n69516,1135092,8284\n69524,0772251,62128\n69526,1055369,8373\n69529,1014762,62320\n69559,0041368,35404\n69604,1178663,19265\n69606,0821640,12556\n69640,1152836,11322\n69644,1080016,8355\n69654,1131748,176241\n69685,0285627,24232\n69712,1078588,10024\n69720,0475298,15423\n69746,1295071,16440\n69757,1022603,19913\n69761,0111845,47104\n69784,0889583,18480\n69805,1146438,14728\n69821,0110490,38940\n69844,0417741,767\n69849,0075572,67479\n69908,0060479,84278\n69945,0046969,20174\n69951,1054606,8054\n69974,0896927,30713\n70121,0024805,53830\n70159,1148204,21208\n70183,1142988,20943\n70188,0054476,82311\n70201,0095302,47870\n70282,0775552,20856\n70286,1136608,17654\n70293,1135503,24803\n70305,1075417,13836\n70336,1046173,14869\n70344,1127877,30250\n70418,0172348,54982\n70465,0783532,22600\n70488,0249248,99657\n70533,0923811,15137\n70545,0848281,11115\n70565,1092633,19905\n70567,1185836,22051\n70597,1176251,14940\n70599,0452694,24420\n70663,1032815,19840\n70678,0996948,33199\n70697,0436339,19585\n70728,1172570,18533\n70751,0228528,164741\n70762,0481273,12839\n70846,1186369,8899\n70862,1229360,22492\n70898,1142433,25704\n70927,0973844,36108\n70946,0105643,26914\n70984,1127896,26320\n70994,1311067,24150\n71033,1305806,25376\n71057,0472033,12244\n71102,0024663,140887\n71106,0910554,22494\n71108,1149362,37903\n71131,1000764,63581\n71135,1188729,19898\n71156,1234548,10313\n71180,0076517,42225\n71205,1131734,19994\n71211,1130080,11323\n71248,1225822,12569\n71252,1144884,19912\n71254,1034032,18501\n71264,0844471,22794\n71282,1286537,18570\n71304,0762073,22536\n71318,0858486,16873\n71379,1179904,23827\n71390,0996966,16194\n71404,0053882,18974\n71429,1262981,20178\n71433,0058006,67612\n71438,1087578,25050\n71460,1084972,22717\n71462,1313104,23128\n71464,1019452,12573\n71466,1174730,28053\n71468,1071804,24869\n71490,1220213,21398\n71494,0419724,23127\n71518,1172233,22798\n71520,1058017,23082\n71525,0034424,61524\n71530,0986263,19959\n71533,1097013,18065\n71535,1156398,19908\n71573,0365929,22787\n71579,1174732,24684\n71640,1333634,26763\n71650,0081746,99189\n71668,1078940,19899\n71700,0896534,23966\n71732,0902290,21910\n71745,0386117,16523\n71755,0062352,67062\n71804,0087983,38702\n71810,0126388,3513\n71823,0808399,12572\n71838,1197624,22803\n71876,1129445,8915\n71899,0978762,24238\n72011,1193138,22947\n72043,1482967,53985\n72104,0096880,44338\n72109,1425928,36577\n72129,1233227,22804\n72131,1477715,13576\n72165,0450405,24418\n72169,1213585,22800\n72171,1190536,24804\n72176,1228953,29150\n72209,0375568,16577\n72224,1161418,22820\n72226,0432283,10315\n72294,1067106,17979\n72308,1286130,105077\n72356,1425244,24480\n72367,0758751,19851\n72378,1190080,14161\n72380,0362478,22825\n72386,0913425,8088\n72393,1220198,22824\n72395,0929632,25793\n72405,1095217,11699\n72407,1259571,18239\n72479,0790712,28089\n72489,1186367,22832\n72603,1526300,25472\n72605,0765010,7445\n72612,0081040,47466\n72626,0009932,53516\n72630,0804529,20764\n72641,0878804,22881\n72647,0131149,88276\n72683,0022080,8353\n72694,1247692,22640\n72696,0976238,22949\n72701,0762125,16866\n72720,1315981,34653\n72731,0380510,7980\n72733,1057500,22954\n72737,0780521,10198\n72741,0780511,26171\n72762,0913354,4597\n72781,1104746,\n72880,0054880,47122\n72919,1314228,24438\n72947,1305714,26032\n72998,0499549,19995\n73015,1230414,22897\n73017,0988045,10528\n73023,1263670,25196\n73042,1231580,23398\n73101,1242545,18898\n73106,1407050,26123\n73168,0806203,25769\n73211,1226681,23963\n73266,0403702,22327\n73268,0433362,19901\n73276,1300563,24458\n73290,1028532,28178\n73319,1216492,25195\n73321,1037705,20504\n73323,1343097,33613\n73344,1235166,21575\n73386,0976246,25927\n73392,1503769,28227\n73469,0949815,26765\n73488,0806027,1450\n73531,0093393,41970\n73572,1233219,44027\n73587,1244668,31175\n73664,0944834,10800\n73741,1182921,25602\n73759,0495212,\n73808,1190539,13855\n73854,0058536,13382\n73860,1266029,33511\n73881,1187043,20453\n73929,1038686,22894\n74089,0054176,51120\n74115,1472122,31156\n74152,0804558,16453\n74154,1185416,13477\n74156,1226273,12201\n74228,1187064,26466\n74275,1045772,8952\n74282,0092571,40724\n74324,1278469,33602\n74327,0926759,12169\n74370,1172994,25983\n74416,1232776,24469\n74438,0110054,18670\n74450,0817230,32856\n74452,0780653,7978\n74458,1130884,11324\n74486,0790799,19311\n74508,0844330,13949\n74510,1216487,24253\n74530,0814255,32657\n74532,1385867,23742\n74545,1139328,11439\n74580,1273678,23172\n74624,1186830,26428\n74630,0052427,56931\n74649,0886531,79519\n74668,1247640,15357\n74677,1352852,18489\n74685,0455407,29427\n74688,0989757,22971\n74698,0808510,23023\n74727,0068519,20871\n74740,1016301,5595\n74754,0368226,17473\n74787,1188996,26022\n74789,1014759,12155\n74795,0947810,22972\n74851,1179034,26389\n74868,1235124,23488\n74916,1234654,27583\n74944,1210042,26390\n74946,0815236,34016\n74948,1289406,25941\n75341,1403981,23169\n75349,0283043,12718\n75440,1386011,16239\n75803,1305583,34563\n75805,1038919,27573\n75813,1151359,12834\n75816,1247704,31723\n75823,0090866,26558\n75983,0844457,16436\n75985,1053424,31867\n75990,0071155,42451\n76030,0795351,28355\n76054,0765128,36970\n76060,1135525,34423\n76077,1231587,23048\n76091,1216496,30018\n76093,0892769,10191\n76111,1360860,37181\n76173,1149361,27936\n76175,0800320,18823\n76210,1303828,34769\n76251,1250777,23483\n76272,1238291,16759\n76293,1279935,35056\n76303,0065491,39931\n76738,1583323,52903\n76763,1017451,27586\n77191,1321509,34803\n77201,0862467,37861\n77206,1196141,33217\n77291,0092580,25832\n77307,1379182,38810\n77359,1259573,61920\n77364,0480255,34813\n77414,1294226,35690\n77421,1336617,39053\n77427,1467304,37169\n77435,0036430,43517\n77455,1587707,39452\n77561,1228705,10138\n77658,0081846,205300\n77798,1179056,23437\n77800,1341167,37495\n77808,0075774,42217\n77810,1111890,19173\n77837,1132623,36950\n77846,0118528,12219\n77866,0955308,20662\n77907,1546653,52249\n78034,1196204,36801\n78039,1120985,46705\n78041,1103153,37821\n78088,1462758,26388\n78101,0484211,134901\n78105,0473075,9543\n78111,0047840,43317\n78116,0878835,40247\n78122,0863136,14518\n78160,0397612,198306\n78174,1261945,37786\n78209,1226229,32823\n78218,0914863,38199\n78264,1212436,34806\n78266,1017460,37707\n78316,0892318,37056\n78321,1498870,38570\n78349,1258197,29917\n78467,1075747,20533\n78469,0429493,34544\n78499,0435761,10193\n78517,1568150,41397\n78544,0993779,198308\n78574,1399683,39013\n78637,0892791,10192\n78653,1204773,33809\n78703,1179794,39545\n78729,0813980,13989\n78772,1325004,24021\n78829,1157685,40215\n78836,1191111,34647\n78893,0938283,10196\n78903,0070959,91487\n78967,0076210,26932\n79006,0416716,76180\n79008,1308667,16023\n79029,0790769,25630\n79057,1424381,34851\n79091,1323594,20352\n79132,1375666,27205\n79134,1375670,38365\n79136,1101048,64861\n79139,0963966,27022\n79163,0800228,80198\n79185,1013743,37834\n79203,0446750,4556\n79224,1155076,38575\n79242,0842926,39781\n79251,1273235,73861\n79259,1248971,40850\n79274,1569923,40662\n79293,0944835,27576\n79299,0874957,\n79318,1396557,42918\n79357,0485947,31011\n79428,0427152,38778\n79469,0105019,5899\n79553,1386932,37472\n79588,1438254,37950\n79590,1205535,24122\n79592,1386588,27581\n79677,1522863,53190\n79686,0870210,42039\n79695,1320253,27578\n79702,0446029,22538\n79720,1313092,44629\n79796,1020558,23759\n79824,1020938,44737\n79868,1220214,38150\n79879,0464154,43593\n79946,1285309,41479\n80026,0411951,42194\n80083,0142235,28609\n80126,1440728,27579\n80166,0889573,41210\n80185,1558250,40663\n80217,0107086,46697\n80219,0985694,23631\n80241,1322312,38073\n80346,0038104,119764\n80350,1666186,40264\n80363,1220634,35791\n80463,1285016,37799\n80489,0840361,23168\n80549,1282140,37735\n80551,0879870,38167\n80553,1049402,38568\n80572,1356864,43939\n80584,1067733,15179\n80586,0817177,43949\n80590,1027718,33909\n80599,0172202,59572\n80615,1219342,41216\n80693,0804497,43923\n80717,0090579,2754\n80727,1251757,38842\n80736,1010271,38410\n80748,0023753,25694\n80831,1228987,41402\n80839,1028576,39486\n80844,0816556,27374\n80846,1314655,44040\n80858,1414382,38303\n80860,1055292,38408\n80862,1584016,42296\n80864,1182350,38031\n80906,1645089,44639\n80917,1470827,43933\n80969,1334260,42188\n81018,0775489,41201\n81054,0064588,12482\n81083,1523483,46837\n81132,1612774,45649\n81138,0445054,39681\n81156,1116184,16290\n81158,1559549,39312\n81191,1566648,39440\n81229,1245526,39514\n81417,1536044,41436\n81512,1212419,44603\n81516,1181791,41215\n81535,1477076,41439\n81537,1231583,41733\n81562,1542344,44115\n81564,1001526,38055\n81591,0947798,44214\n81641,0977855,38363\n81660,0085124,61755\n81782,0477080,44048\n81784,1126618,38357\n81786,1020773,48303\n81788,1458175,43539\n81819,1164999,45958\n81831,1467273,36940\n81834,0926084,12444\n81845,1504320,45269\n81847,0398286,38757\n81898,1518821,87387\n81910,1326733,41999\n81932,0964517,45317\n81949,1403988,41556\n82035,1176726,26769\n82037,1568334,43924\n82041,1316536,46420\n82093,1213648,48838\n82095,1564585,42684\n82150,1251725,35395\n82152,1152398,38117\n82167,0758752,43347\n82169,0980970,10140\n82173,1570989,47607\n82202,1243957,37710\n82242,1401143,48395\n82313,0049552,34667\n82378,1175709,46503\n82459,1403865,44264\n82461,1104001,20526\n82463,1431181,44009\n82499,1341188,42888\n82527,1423894,46829\n82534,1172991,44129\n82608,0421090,30548\n82667,1588170,49797\n82852,0970866,39451\n82854,1320261,38745\n82931,1572491,56812\n82934,1319726,34576\n83086,1126591,42297\n83096,0012255,51359\n83132,1568921,51739\n83134,1465522,46838\n83177,1302067,41515\n83270,1371155,46138\n83293,1268204,46689\n83318,0012224,51360\n83322,0011984,50704\n83332,0756727,53079\n83349,0990407,40805\n83359,0012570,51362\n83361,0012543,25770\n83374,1032751,46528\n83411,0013025,38742\n83480,0479997,23047\n83506,1815899,198391\n83603,0422258,90272\n83613,0409847,49849\n83803,1620446,40619\n83827,1391092,52013\n83829,0058555,46787\n83910,1578275,44564\n83976,1740047,63578\n84098,0045029,76229\n84116,1287878,47909\n84152,1219289,51876\n84154,1117394,58261\n84160,1705977,52461\n84187,0860906,22843\n84236,1487275,34767\n84304,1667150,62976\n84312,0329200,12536\n84374,1411238,41630\n84392,1189340,50348\n84395,1161864,48171\n84414,1699114,56590\n84506,1693830,51276\n84601,1401152,48138\n84615,1477837,52067\n84637,0377981,45772\n84696,1320239,50204\n84772,1092026,39513\n84844,0238883,20993\n84847,1366312,183894\n84944,1192628,44896\n84950,0810922,50725\n84952,1590089,54186\n84954,1385826,38050\n85016,1277936,56811\n85020,0472399,27582\n85022,0480687,48988\n85025,1034389,49494\n85056,1464540,46529\n85131,1217613,44943\n85179,1474276,28874\n85213,1510938,56831\n85261,1305591,50321\n85316,0072410,72185\n85342,1555149,47931\n85367,1564367,50546\n85394,1664894,59490\n85397,1486185,49730\n85399,1464174,38322\n85401,1512235,45132\n85412,1740707,46146\n85414,0945513,45612\n85438,1229822,38684\n85510,0978764,23629\n85572,0951335,37534\n85612,0765444,37405\n85736,1334585,13413\n85774,1424432,58496\n85780,1701991,110639\n85788,1591095,49018\n85796,1640459,49010\n85881,1606392,55725\n86000,1560139,39356\n86014,1650043,60307\n86028,1220888,53172\n86059,1411704,50359\n86142,1436045,58857\n86190,0993842,50456\n86290,1179947,46105\n86293,1334512,49012\n86298,1436562,46195\n86320,1527186,62215\n86332,0800369,10195\n86345,1421373,45523\n86347,1190722,30969\n86377,0927619,24447\n86487,1492030,202241\n86504,0405455,167966\n86548,1067583,55787\n86593,1223236,57586\n86626,1438535,54083\n86644,1596343,51497\n86721,1013607,42521\n86781,1255953,46738\n86817,0491152,49022\n86833,1478338,55721\n86835,0822847,38321\n86852,1321860,50780\n86864,0055198,39410\n86880,1298650,1865\n86882,1605783,59436\n86884,1827512,63831\n86892,1527788,51608\n86898,0478304,8967\n86911,1411697,45243\n86982,0063172,3107\n87192,1478964,59678\n87205,1735485,46221\n87218,0043625,25738\n87222,1302011,49444\n87232,1270798,49538\n87234,1440292,49020\n87298,1531663,45658\n87304,1532503,55347\n87306,1650062,37686\n87383,0026252,29877\n87430,1133985,44912\n87444,1340773,56272\n87483,1396218,58224\n87485,1284575,52449\n87520,1399103,38356\n87522,1583420,59861\n87529,1240982,38319\n87598,0037651,107973\n87660,1742683,65034\n87785,1135084,22907\n87869,1499658,51540\n87876,1216475,49013\n87884,0069225,58257\n87930,1787777,63144\n87975,1697851,61537\n88024,0100791,94725\n88106,0071797,84922\n88118,1334553,66195\n88125,1201607,12445\n88129,0780504,64690\n88140,0458339,1771\n88163,1570728,50646\n88179,1563738,51828\n88235,1540133,67913\n88267,1449283,51162\n88272,1714208,65599\n88345,0323250,13931\n88356,0472181,41513\n88380,1013860,43935\n88405,1632708,50544\n88672,1637706,59968\n88682,0808245,65673\n88744,1318514,61791\n88785,1488555,49520\n88810,1454029,50014\n88812,1622547,62206\n88879,1525835,56832\n88932,1622979,55779\n88950,0968264,60309\n88954,1268799,55465\n89000,1542852,47261\n89030,1438176,58151\n89039,1549572,55420\n89045,0091865,60375\n89047,1403177,44835\n89072,1464580,52015\n89085,1226753,48289\n89087,1657507,62835\n89090,1621444,55244\n89102,1152822,43942\n89118,1189073,63311\n89194,1604171,51588\n89203,1235790,57211\n89260,1814836,63579\n89300,1522334,60784\n89305,1716772,69798\n89321,1235170,54662\n89337,1319744,72711\n89343,0873886,48572\n89356,1705786,67884\n89388,1742650,70868\n89408,0050135,106833\n89427,1633356,65055\n89470,1598778,39538\n89492,1210166,60308\n89678,0844794,18093\n89745,0848228,24428\n89753,1340800,49517\n89759,1832382,60243\n89761,1571222,48231\n89774,1291584,59440\n89804,1124035,10316\n89837,1788391,74725\n89840,1448755,49021\n89864,1306980,40807\n89870,1043903,39517\n89881,0044091,41800\n89904,1655442,74643\n90057,1675192,64720\n90061,1174042,70588\n90249,0433035,39254\n90266,1753549,67273\n90343,1068242,68817\n90345,0905372,60935\n90357,1204340,76543\n90374,1441326,50837\n90376,1242460,71859\n90403,1509767,52451\n90405,1637688,49530\n90428,0466893,44754\n90430,1692486,72113\n90439,1615147,50839\n90469,1778304,72571\n90522,1634122,58233\n90524,1600195,59965\n90531,1723811,76025\n90576,0770703,63492\n90600,1614989,70670\n90603,1672723,69735\n90647,0448694,58423\n90717,0471042,59108\n90719,1616195,88794\n90738,1646980,73499\n90746,0983193,17578\n90863,1113829,75964\n90866,0970179,44826\n90870,1674784,70578\n90888,1253864,37958\n90890,0810913,71880\n90947,1736633,75233\n91077,1033575,65057\n91094,1204342,64328\n91104,1324999,50619\n91126,1568911,57212\n91128,0376136,23514\n91134,1655420,75900\n91199,1714210,79120\n91273,1181795,30618\n91286,0016029,29879\n91323,1366344,57431\n91325,0477302,64685\n91355,0371552,9642\n91414,1430607,51052\n91470,1634136,91550\n91483,1308729,70074\n91485,1764651,76163\n91488,0084701,13396\n91500,1392170,70160\n91505,1216520,59457\n91529,1345836,49026\n91535,1194173,49040\n91542,1515091,58574\n91548,1687247,66150\n91582,0061024,39287\n91610,1113827,17775\n91622,1625346,57157\n91628,1598822,62838\n91630,1229238,56292\n91653,1389137,74465\n91658,1568346,65754\n91660,1093357,71469\n91673,1602098,73873\n91688,1251743,51995\n91690,1720616,80038\n91842,1524137,77866\n91869,1787660,75301\n91873,1710396,63574\n91886,1564349,62837\n91890,1007029,71688\n91935,1541149,72842\n91947,1336006,79896\n91974,1496025,52520\n91976,1601913,75174\n91978,1568338,49527\n92004,0380311,145594\n92008,1506999,70435\n92048,0896872,65760\n92058,1530509,74997\n92163,1056422,25774\n92198,1214962,74998\n92206,1255916,71670\n92210,1572781,36865\n92234,0485985,72431\n92259,1675434,77338\n92264,1598828,54054\n92309,1594562,58428\n92420,1706593,76726\n92424,0106757,148033\n92439,1645080,64678\n92494,0439553,13976\n92496,1023122,13586\n92498,1583937,26118\n92507,1599348,59961\n92509,1606389,72570\n92535,2112999,80379\n92613,0960770,14205\n92665,1996264,84200\n92681,1397514,72545\n92694,1439572,51999\n92751,1700258,53174\n92756,0073096,84259\n92938,1071875,71676\n92954,1073510,21634\n92966,0409011,27902\n93040,0098769,26397\n93061,1720182,83860\n93242,1838544,79548\n93265,1630036,72213\n93270,1636826,57214\n93272,1482459,73723\n93287,1053810,73937\n93320,0383678,38674\n93324,1860355,82620\n93326,1596350,59962\n93363,0401729,49529\n93422,1756750,79108\n93432,1567233,64288\n93443,1456635,74387\n93498,1848902,91010\n93510,1232829,64688\n93512,1588334,82532\n93563,1592525,81796\n93693,1702425,80304\n93700,1185371,56591\n93721,1772925,80767\n93766,1646987,57165\n93805,1034314,10679\n93831,1605630,71552\n93838,1899353,94329\n93840,1259521,22970\n93855,1912398,74306\n93980,0383010,76489\n93982,1486192,70436\n94011,1307873,54271\n94015,1667353,62764\n94018,1440129,44833\n94024,1883251,206953\n94070,1412386,74534\n94266,1195478,72207\n94323,1621045,67660\n94325,1327194,77877\n94466,2085059,\n94478,1077368,62213\n94480,1104123,13486\n94494,1641385,89326\n94672,1663193,51823\n94677,1645170,76493\n94777,1409024,41154\n94780,1735898,58595\n94799,1748207,86812\n94833,1430626,72197\n94864,1446714,70981\n94896,1704573,92591\n94919,1196340,12645\n94931,1592281,86555\n94939,1278449,48392\n94953,1655460,50647\n94959,1748122,83666\n94969,1821480,82825\n95067,0763831,72358\n95088,1862079,84332\n95105,1277953,80321\n95113,0045719,65421\n95115,0047114,43337\n95135,1742336,84355\n95147,0142249,39145\n95165,0142240,39100\n95167,1217209,62177\n95182,0142233,39101\n95199,1586265,76494\n95201,1859650,81836\n95207,1611224,72331\n95307,1336608,80585\n95309,1307068,88005\n95311,1245104,13042\n95313,0455565,13932\n95375,0395479,13062\n95377,0479113,13933\n95441,1637725,72105\n95443,1769363,100046\n95449,1915581,77930\n95473,0142237,39103\n95475,1125254,24752\n95499,0142242,34433\n95508,1598873,95516\n95510,0948470,1930\n95543,1667889,57800\n95558,2125435,84175\n95567,1716777,98548\n95583,1615065,82525\n95654,0131409,13929\n95720,1298649,80035\n95740,0283856,276165\n95744,1602472,84165\n95752,0111399,183386\n95761,1726669,73567\n95780,0142234,39106\n95782,0142236,39107\n95858,0248808,13930\n95873,1839492,103332\n95875,1386703,64635\n95949,1630637,56909\n95963,0142243,39108\n95965,0142245,39323\n96004,0142247,39324\n96007,0142232,18095\n96020,1235841,76696\n96075,0442632,53803\n96079,1074638,37724\n96110,1790886,77953\n96114,1990181,85414\n96150,2125666,84327\n96281,1623288,77174\n96314,1405365,84184\n96373,1441940,109584\n96417,1547234,49526\n96432,1212450,82633\n96448,1714203,71668\n96467,2077851,84340\n96488,2125608,84334\n96490,0431021,77883\n96530,1619277,83403\n96563,2028530,83660\n96565,1920849,84174\n96588,1981677,114150\n96590,1366365,77948\n96606,0770802,89708\n96610,1276104,59967\n96616,1232200,87428\n96634,1757742,97795\n96655,1990314,84329\n96667,1845773,84169\n96691,1855325,71679\n96726,1710417,100529\n96728,1560747,68722\n96737,1343727,49049\n96792,0048260,4822\n96811,1855199,77016\n96815,2105044,84348\n96821,1659337,84892\n96829,2106476,103663\n96832,2076220,103328\n96849,1876451,88036\n96861,1397280,82675\n96863,1496422,82390\n96901,0385073,223195\n96911,1276419,88273\n97057,1613750,70667\n97168,1183919,90125\n97188,1922777,82507\n97225,0837562,76492\n97230,2014338,110354\n97254,0059709,109600\n97304,1024648,68734\n97306,1931533,86838\n97328,1872818,84306\n97393,2125653,84284\n97395,2130321,84351\n97470,1886493,75736\n97593,1120945,32904\n97639,2124803,84286\n97673,2147134,116167\n97742,1712170,94348\n97744,2048877,84172\n97752,1371111,83542\n97757,0424755,72867\n97817,0089852,164753\n97826,1638353,128158\n97836,1648179,87826\n97858,1655416,126797\n97860,1764234,64689\n97866,1966604,84287\n97870,1866249,113947\n97895,2092011,128248\n97913,1772341,82690\n97921,1045658,82693\n97923,1907668,87502\n97936,1781769,96724\n97938,0454876,87827\n97957,1984153,84194\n97994,1783798,102640\n98000,2172071,138122\n98056,1602620,86837\n98083,1753968,65851\n98122,1942884,80215\n98124,2313197,123025\n98126,1951166,121793\n98154,0443272,72976\n98160,1493157,135708\n98175,1545106,73935\n98230,1715873,58547\n98243,1446192,81188\n98279,2006040,101519\n98296,1667310,97614\n98369,2262308,119431\n98441,0030657,38716\n98458,0024854,31621\n98473,0059050,4311\n98491,2388725,140420\n98585,0975645,112336\n98587,2177511,96821\n98604,1798188,83389\n98607,1483797,71883\n98611,0030302,43157\n98615,0101522,55615\n98795,0221300,142051\n98803,0030371,38769\n98809,0903624,49051\n98829,0108624,10852\n98836,1477855,87504\n98908,1241017,40722\n98913,2014392,80717\n98933,1934269,117629\n98961,1790885,97630\n98963,2190367,97989\n99005,1925431,139567\n99007,1588173,82654\n99030,1901040,83186\n99085,0026835,43895\n99089,0028118,43268\n99106,1694020,82687\n99112,0790724,75780\n99114,1853728,68718\n99117,1758830,89492\n99145,1649419,80278\n99149,1707386,82695\n99220,1441951,121826\n99270,0025829,46159\n99273,0028315,27597\n99276,0031995,38727\n99296,1999995,97051\n99320,2119474,118683\n99415,1047540,88042\n99437,1783732,75761\n99468,2380247,124067\n99470,1748227,134597\n99574,2091473,133694\n99609,1242642,71208\n99615,1634300,76421\n99669,0159241,31022\n99675,2085002,127901\n99728,1321870,82682\n99741,1381404,87496\n99764,2396224,147538\n99795,1327628,85533\n99811,1931388,97610\n99813,2166834,142061\n99839,1956594,93087\n99846,2366308,135921\n99912,2023587,132232\n99917,2084989,145197\n99992,1770734,84336\n100017,2011953,84290\n100032,2040281,90603\n100034,1806911,83443\n100083,1333125,87818\n100106,2152198,128190\n100159,2023690,117974\n100163,1428538,60304\n100226,1853643,118677\n100272,1854513,127864\n100304,2081437,162145\n100306,0165623,18912\n100326,1389096,121824\n100365,2088714,133823\n100383,2053463,109421\n100390,2024432,109431\n100450,1704292,156078\n100487,1559547,109491\n100498,1606378,47964\n100517,2258685,130750\n100527,1702439,112949\n100553,2092588,134481\n100556,2375605,123678\n100581,2085910,84330\n100714,2209418,132344\n100745,2608732,50275\n100843,1954701,130739\n101025,1351685,81005\n101070,2258858,129112\n101076,1583421,72559\n101088,1682180,86825\n101106,2306745,157117\n101112,1623205,68728\n101142,0481499,49519\n101283,0790628,124459\n101285,2101441,122081\n101360,1911644,158011\n101362,2302755,117263\n101415,1763303,84199\n101525,1817273,97367\n101529,1935902,127867\n101531,1745862,173153\n101577,1517260,72710\n101612,1814621,144340\n101741,1924429,68727\n101850,0388644,89049\n101864,1483013,75612\n101884,1507563,59963\n101895,0453562,109410\n101904,1613092,86577\n101947,2007385,78056\n101962,2140203,110420\n102033,1980209,134374\n102123,1245492,109414\n102125,1300854,68721\n102165,2055765,174321\n102194,1935179,103731\n102217,0152183,25117\n102252,0084671,19156\n102278,1551630,165739\n102378,0762138,72525\n102396,1605777,82501\n102407,1343092,64682\n102445,1408101,54138\n102469,1684925,60270\n102481,2234155,116741\n102588,2366450,128216\n102666,0070233,20803\n102684,1602613,77987\n102686,1951261,109439\n102716,1905041,82992\n102720,0848537,116711\n102753,2404461,152780\n102792,2024519,137182\n102800,2347569,121986\n102819,1291580,119675\n102880,1815862,82700\n102903,1670345,75656\n102905,1426329,77805\n102993,1727388,147773\n102995,1772270,101998\n103042,0770828,49521\n103048,2179116,156700\n103107,2396566,159014\n103137,2132285,96936\n103141,1453405,62211\n103210,1776196,80518\n103221,1935065,120292\n103228,1663662,68726\n103235,1924396,152742\n103249,0816711,72190\n103253,1535108,68724\n103279,1932767,127373\n103299,1959332,126277\n103335,1690953,93456\n103339,2334879,117251\n103341,1213663,107985\n103372,2404463,136795\n103384,1210819,57201\n103444,2397619,81167\n103449,1829012,109099\n103502,1877797,136386\n103539,1714206,157386\n103543,2265534,157375\n103596,2724064,205321\n103624,2334649,157354\n103655,0790736,49524\n103659,2820466,183011\n103671,1918886,129507\n103688,1457767,138843\n103731,1085362,23431\n103755,1860353,77950\n103772,1430132,76170\n103801,2265398,172533\n103810,1821694,146216\n103813,0092549,59558\n103819,2234025,198062\n103865,2053423,192126\n103883,1272878,136400\n103980,2334873,160588\n103984,2358891,179144\n104069,2510998,185574\n104074,1854564,76285\n104076,2017020,77931\n104078,0469021,177699\n104119,0061253,241340\n104129,2016940,76544\n104211,1723121,138832\n104218,2191701,109418\n104241,1650554,59859\n104243,1411250,87421\n104245,1691917,151960\n104272,2545118,158999\n104283,2013293,149870\n104303,2357129,115782\n104312,1538403,123553\n104321,2364949,154282\n104337,1327773,132363\n104339,2294677,157360\n104374,2194499,122906\n104419,1494772,30061\n104441,2005374,199373\n104457,1853739,83899\n104590,1153040,33196\n104595,2042520,198342\n104597,1511476,180318\n104662,0074533,42244\n104726,2237822,138217\n104757,1822381,185444\n104760,2167202,146227\n104841,1454468,49047\n104863,1486834,212716\n104879,1392214,146233\n104881,1206543,164457\n104906,1985019,156711\n104913,1979320,96721\n104925,2404311,112205\n104944,2370248,169813\n105037,1758795,129139\n105121,1844203,121676\n105197,1821549,129670\n105211,2390361,209263\n105213,2229499,138697\n105246,2027140,157820\n105254,2332579,157409\n105351,2364841,146238\n105355,2278871,152584\n105429,2215151,159008\n105468,1985966,109451\n105504,1535109,109424\n105585,2002718,106747\n105593,1450321,85889\n105715,1407061,38093\n105731,1939659,133805\n105755,2193215,109091\n105763,0077247,34023\n105769,1821641,152795\n105844,2024544,76203\n105954,2017038,152747\n106002,1731141,80274\n106004,0056219,37342\n106011,2616880,200481\n106022,2446040,213121\n106062,3063516,208134\n106072,1981115,76338\n106100,0790636,152532\n106111,3004634,226632\n106144,2304426,194101\n106204,2299842,123377\n106236,2204371,184149\n106330,1204975,137093\n106332,2492916,159151\n106397,0437489,121555\n106417,1796406,87380\n106438,2431286,205220\n106441,0816442,203833\n106452,2718492,209274\n106471,1485763,41498\n106473,2375379,176983\n106487,1951264,101299\n106489,1170358,57158\n106491,1335975,64686\n106540,2387559,146239\n106542,1196948,41602\n106642,2779318,253941\n106696,2294629,109445\n106762,1703049,51859\n106766,2042568,86829\n106782,0993846,106646\n106839,2304771,192136\n106870,2231554,134366\n106873,0860907,75629\n106883,1462901,174311\n106916,1800241,168672\n106918,0359950,116745\n106920,1798709,152601\n107042,3385404,238478\n107057,1285482,176297\n107069,1091191,193756\n107081,0057714,18624\n107083,2235902,197033\n107141,2140373,140823\n107314,1321511,87516\n107348,1229340,109443\n107382,2319863,174325\n107406,1706620,110415\n107412,0060584,20878\n107447,2166616,158990\n107516,2836166,194188\n107555,0845439,43766\n107559,1384927,91551\n107636,2513616,199782\n107649,1954315,186929\n107702,1661382,64807\n107769,2473682,227348\n107771,1714915,152603\n107910,2113683,124623\n107945,1847548,122796\n107953,2263944,126963\n107978,2331143,177945\n107999,0142244,39102\n108076,2459100,173480\n108090,0142250,39148\n108156,1408253,168530\n108188,1205537,137094\n108190,1840309,157350\n108192,1094249,6418\n108447,1734067,71622\n108506,2328549,174671\n108514,2178470,185008\n108548,0898266,\n108551,1302559,69746\n108583,0072500,\n108601,1714833,137968\n108689,1418377,100241\n108709,0995832,54102\n108715,1609479,157099\n108727,1937390,110414\n108729,2316411,181886\n108795,1186373,15359\n108873,0210843,44516\n108928,2177771,152760\n108932,1490017,137106\n108945,1234721,97020\n108949,2172985,209247\n108979,0213338,314040\n108981,2382009,249397\n109042,1545660,74461\n109074,2204340,120143\n109161,2406252,197082\n109183,1878942,99367\n109187,2333804,157834\n109191,1837709,137321\n109205,0081242,206822\n109249,0105744,12124\n109295,2511428,210047\n109317,1978532,249923\n109359,1815717,212721\n109372,1826590,222899\n109374,2278388,120467\n109483,1800246,225565\n109487,0816692,157336\n109576,2193265,205724\n109578,2024469,225574\n109673,1253863,53182\n109687,1385956,202141\n109740,2910274,248774\n109742,2389182,175291\n109846,0864835,82703\n109848,1441395,97370\n109850,2369135,136797\n109853,2355495,242042\n109864,2771372,177494\n109895,2170299,209403\n110058,1327820,25541\n110102,1843866,100402\n110110,2567712,209276\n110127,1959490,86834\n110194,2737310,173455\n110297,2281587,145220\n110348,2524674,208277\n110352,0377309,9753\n110453,2223990,200505\n110461,2364975,191294\n110501,2265171,180299\n110553,1872181,102382\n110586,2234003,157832\n110591,2388715,157547\n110611,1179031,244509\n110645,2404738,179538\n110655,2357291,172385\n110730,2209764,157353\n110748,1296899,59726\n110752,0061988,42697\n110771,2203939,193610\n110781,0279967,12242\n110826,1430612,254473\n110858,0087263,54752\n110871,2178256,168742\n110873,2113681,145247\n110882,2692904,210479\n111113,2004420,195589\n111228,2525342,258476\n111235,1935156,191720\n111249,2404181,205601\n111251,1951181,152599\n111360,2872732,240832\n111362,1877832,127585\n111364,0831387,124905\n111384,2359024,188166\n111443,2883512,212778\n111486,2294473,120852\n111505,0064606,40721\n111529,1684226,113833\n111617,1086772,232672\n111622,1980929,198277\n111624,3082826,253270\n111659,1587310,102651\n111663,2784512,254474\n111680,1483324,194722\n111743,2557490,188161\n111759,1631867,137113\n111781,2381249,177677\n111795,1647668,198185\n111913,2560102,248212\n111921,2582846,222935\n111931,2111392,174682\n112006,2112281,82881\n112062,2018086,110428\n112070,2172584,157851\n112112,2246887,228028\n112138,2294449,187017\n112171,0455944,156022\n112175,1646971,82702\n112183,2562232,194662\n112277,2386278,146243\n112290,1065073,85350\n112303,2239832,184098\n112334,3268458,250658\n112370,2109248,91314\n112399,2714900,169607\n112421,1605717,171372\n112450,2398249,180296\n112460,2980706,218836\n112497,2103254,226486\n112515,2321549,242224\n112550,2844798,267999\n112552,2582802,244786\n112556,2267998,210577\n112577,0081758,92323\n112582,2382298,250766\n112623,2103281,119450\n112653,3445270,250700\n112655,1763264,123109\n112689,3078242,211052\n112735,3244512,265349\n112749,2465146,253235\n112767,2182256,253310\n112788,1956620,225886\n112804,2884206,244267\n112818,2975578,238636\n112850,2380331,214075\n112852,2015381,118340\n112897,2333784,138103\n112911,1267297,184315\n112921,2956808,279414\n112940,1972571,157849\n113064,2967006,242088\n113186,2402603,209269\n113207,2473602,239566\n113220,3091304,212849\n113225,2870756,229297\n113252,3504048,253306\n113275,2980648,228194\n113345,1617661,76757\n113348,1291150,98566\n113378,0435651,227156\n113416,1396523,286709\n113453,1924435,193893\n113532,3097204,242022\n113565,2383068,211067\n113573,0458481,189\n113640,2517658,265010\n113705,2737050,221902\n113741,2866360,220289\n113780,2870612,256274\n113829,2756032,242090\n113862,2980592,241848\n113938,3889036,285597\n114028,3169706,234200\n114044,3177316,254191\n114060,1600196,154400\n114074,1571249,244772\n114082,0064064,3171\n114122,0087150,135418\n114180,1790864,198663\n114254,3478510,261855\n114265,2034031,244264\n114342,3630276,265189\n114459,2238050,157825\n114464,0074621,17200\n114552,0787474,170687\n114601,1371150,239678\n114635,3521134,267480\n114662,2179136,190859\n114670,3099498,246403\n114707,1528071,149509\n114762,2140619,286554\n114766,0074768,56386\n114795,0829150,49017\n114818,2494280,227300\n114925,2326612,244761\n114935,2397535,206487\n115122,3416742,246741\n115139,0041238,43398\n115147,1972779,239571\n115149,2911666,245891\n115151,2556874,208869\n115170,1872194,205587\n115174,2639344,244268\n115210,2713180,228150\n115216,2720680,266285\n115231,2170593,239563\n115502,2509850,289727\n115534,1204977,242512\n115569,2872718,242582\n115617,2245084,177572\n115624,1407972,49706\n115664,2262227,228326\n115680,2669336,273271\n115713,0470752,264660\n115877,2175842,116440\n115881,0443424,98622\n115927,0910865,14830\n116012,0055633,86616\n116136,3012698,289314\n116161,1100089,87492\n116207,2249221,185567\n116397,1772264,207933\n116413,2870808,260001\n116419,2968804,256092\n116503,2282016,272692\n116660,2617828,167581\n116797,2084970,205596\n116799,1791528,171274\n116823,1951265,131631\n116849,2751310,295315\n116855,1702014,237791\n116887,1528100,147441\n116897,3011894,265195\n116939,0100912,9742\n116977,2096672,100042\n116985,2064968,206821\n117107,3128900,261037\n117121,1034306,15741\n117123,2235108,114750\n117176,2980516,266856\n117192,2986512,282848\n117434,2793490,254194\n117444,1865505,110416\n117456,3125324,241771\n117511,3762944,303623\n117529,0369610,135397\n117533,4044364,293310\n117590,2170439,227159\n117851,1911658,270946\n117871,3007512,256917\n117895,4046784,294254\n118082,1567437,244458\n118105,3596200,303742\n118248,1274586,297596\n118260,2781832,207774\n118326,2543702,270005\n118334,0102585,17792\n118354,1216491,245916\n118468,0803038,158483\n118696,2310332,122917\n118700,1020072,273895\n118702,1809398,227306\n118814,2139555,277547\n118880,2326554,252171\n118890,0148668,34505\n118898,2937898,241239\n118900,2305051,228970\n118924,2784678,284296\n118985,1126590,87093\n118997,2180411,224141\n119068,3179568,243684\n119141,2788710,228967\n119145,2802144,207703\n119155,2692250,181533\n119655,1121096,68737\n120392,2965412,276908\n120466,1823672,198184\n120635,2446042,260346\n120637,2717822,201088\n120783,2452200,294652\n120799,1340138,87101\n120805,1560169,26621\n120821,0080118,149362\n121113,0212235,4226\n121126,0075809,24655\n121171,3264102,256876\n121231,3235888,270303\n121491,0412888,3539\n121618,0016938,262176\n122490,2761578,256740\n122882,1392190,76341\n122886,2488496,140607\n122888,2638144,271969\n122890,0803096,68735\n122892,2395427,99861\n122900,0478970,102899\n122902,1502712,166424\n122904,1431045,293660\n122920,3498820,271110\n122924,3385516,246655\n122932,2113659,268171\n123663,0023322,53575\n123695,0053308,47925\n123947,3442006,284276\n124859,2039393,284536\n125916,2322441,216015\n126006,0156031,81294\n126106,0167030,53285\n126420,2923316,250066\n126430,0374463,189197\n126548,1666801,272693\n127052,0059550,20875\n127096,2436386,227719\n127098,4368814,321594\n127108,2381111,167073\n127114,3416744,249688\n127124,3236120,310121\n127136,2273657,245706\n127144,1674785,319070\n127152,4257858,318224\n127158,3986532,318225\n127164,4284010,318044\n127178,2891174,283235\n127194,3534602,308638\n127198,3850214,308639\n127202,2582496,308369\n127204,3844362,308024\n127206,4104022,308027\n127212,0420293,308032\n127319,1850397,72784\n127728,0847833,54325\n128235,0036391,43513\n128360,3460252,273248\n128512,3622592,286565\n128520,0884732,252838\n128592,3181822,241251\n128606,3544082,311291\n128616,3306858,311301\n128620,4226388,320007\n128846,0195691,21585\n129009,2623502,170750\n129191,0066922,42590\n129250,2933474,325358\n129313,2392672,179150\n129354,2381941,256591\n129364,1707380,246127\n129428,2555736,268238\n129514,0963207,13643\n129653,1710393,220620\n129657,2401097,290764\n129659,2097298,228203\n129737,2358925,239573\n129937,2199571,241554\n130073,1661199,150689\n130083,2917388,228968\n130087,3203616,238215\n130351,1185418,70027\n130448,1029360,243688\n130450,3332064,266647\n130452,1791682,252512\n130490,2908446,262500\n130520,2224026,228161\n130522,0147926,20377\n130576,2649554,245703\n130580,3720788,275060\n130628,3318220,244063\n130634,2820852,168259\n130642,2944198,228973\n130682,2207484,256030\n130960,0468463,39041\n130970,0484855,13015\n130980,2634236,137221\n131013,2561572,257091\n131168,2764784,254578\n131451,3280916,299551\n131714,2493486,308504\n131724,4299972,321640\n131796,2404425,304357\n131830,3399024,269148\n132046,1964418,158852\n132074,3399112,250665\n132146,2543336,229182\n132157,3450650,256961\n132333,3149640,278990\n132458,3660770,295592\n132462,3622332,313074\n132480,1655441,293863\n132488,2404299,319389\n132496,1772288,256924\n132547,2523832,325113\n132549,4270516,309304\n132618,2044801,192712\n132796,2126355,254128\n132800,2788716,284537\n132888,3098812,300302\n132952,0200087,31524\n132961,2935476,250734\n133195,2679042,249070\n133281,3623726,275601\n133295,3845960,314407\n133365,3155242,306482\n133377,3327624,301728\n133419,2848292,254470\n133545,2980472,258099\n133645,2402927,258480\n133771,3464902,254320\n133782,1881002,287424\n133798,2967224,268920\n133824,1883367,94365\n134025,1739304,334130\n134130,3659388,286217\n134158,2948790,333381\n134170,3472226,251516\n134246,3247714,334074\n134368,3079380,238713\n134393,3152624,271718\n134528,1243974,222936\n134569,1767372,245906\n134783,1674771,188222\n134853,2096673,150540\n134859,2415458,307931\n134881,0903657,271714\n135133,1951266,131634\n135137,2120120,257344\n135264,0186726,34766\n135266,0271271,29742\n135268,0379060,34765\n135436,2709768,328111\n135508,4573800,343921\n135518,2140379,238615\n135532,1618442,274854\n135536,1386697,297761\n135567,1628841,47933\n135569,2660888,188927\n135861,2637276,214756\n135887,2293640,211672\n136016,1979388,105864\n136018,1355683,261023\n136020,2379713,206647\n136305,3899796,331446\n136445,0246641,34509\n136447,0246645,34513\n136449,1260502,14092\n136562,2080374,321697\n136592,0113112,196257\n136598,1524930,296099\n136602,2428170,250574\n136654,2967008,254024\n136666,2758904,239568\n136800,2145829,240483\n136816,3525346,309887\n136864,2975590,209112\n137337,2870648,331781\n137403,0259017,102016\n137595,2268016,264999\n137857,3040964,278927\n138036,1638355,203801\n138204,3895884,287689\n138208,3488710,285783\n138258,3121332,308077\n138546,2796678,301748\n138610,2309260,299245\n138696,1634334,54155\n138698,3611354,284362\n139116,3605164,259679\n139130,0465316,62931\n139385,1663202,281957\n139415,3715320,282984\n139620,0263438,81549\n139642,1798684,307081\n139644,3397884,273481\n139757,3518012,319067\n139855,2401878,291270\n139915,1725986,253344\n140110,2361509,257211\n140152,3215846,318033\n140174,3170832,264644\n140237,3687398,277546\n140247,4178092,328425\n140265,0246643,25161\n140267,4263482,310131\n140523,3567288,298312\n140711,3316948,261392\n140715,1398426,277216\n140725,3813310,310133\n140739,0419722,41423\n140741,0218298,41636\n140743,0173906,19654\n140745,0312297,19828\n140747,1646876,40205\n140749,0455299,23427\n140751,0466669,32633\n140753,2404645,146778\n140755,0494253,77583\n140757,1137994,19369\n140759,1332100,36041\n140761,0300996,29063\n140763,1374841,185768\n140816,3824458,308084\n140880,0838192,60850\n140928,2446980,274479\n141124,0396587,37091\n141422,3077214,245168\n141668,3832914,323272\n141688,3569230,276907\n141718,3705412,323373\n141749,0810819,306819\n141866,4062536,313922\n141886,0116729,5900\n141890,1365050,283587\n141956,4255110,345468\n142068,2866824,294086\n142192,0048064,65014\n142240,1830792,81704\n142258,4145178,319076\n142422,3530002,296100\n142448,2719848,253412\n142488,1895587,314365\n142507,1596345,245698\n142536,2503944,295964\n142997,2510894,159824\n143255,1957938,301228\n143257,3774466,330112\n143377,2049586,285689\n143385,3682448,296098\n143410,4034452,316042\n143472,1694021,244316\n143657,2400463,306947\n143859,0475290,270487\n144172,3286052,334536\n144620,1051904,257445\n144714,3862750,304372\n144976,2494362,294963\n145150,2910904,298382\n145307,0102996,45147\n145775,1730714,342786\n145839,3322364,321741\n145935,2452042,227973\n146309,4272866,315465\n146443,1408972,44282\n146501,2474310,254005\n146604,3282858,306952\n146656,3076658,312221\n146682,2980626,324325\n146688,1291570,339527\n147006,4195278,332534\n147010,2905772,193544\n147037,0367097,92326\n147426,3646462,265351\n147845,3275216,323679\n148168,3698408,295748\n148238,4537842,364067\n148372,3430416,333555\n148482,3859076,300693\n148626,1596363,318846\n148652,2479478,347969\n148881,4171032,303867\n148888,1608290,329833\n148956,1292566,259694\n149352,1528854,274167\n149354,1850457,266294\n149406,2267968,140300\n149532,5248968,372981\n149572,1286126,24426\n149590,3703908,344041\n149606,3735246,362045\n149612,2112277,256687\n149830,1374989,58431\n150401,3511596,325173\n150548,3845232,370646\n150856,5189670,374454\n151307,5278868,373355\n151639,3882082,321258\n152017,2674426,296096\n152025,5161502,372315\n152057,0790770,316000\n152077,1179933,333371\n152079,3300542,267860\n152081,2948356,269149\n152091,3381008,267193\n152173,0088263,92060\n152844,0165473,104548\n153584,1239446,42346\n155064,1974419,301365\n155392,3766394,320588\n155611,4076284,326649\n155820,4139124,342521\n156025,5480340,387893\n156387,3544112,369557\n156607,2381991,290595\n156609,4438848,325133\n156726,5022702,376570\n157200,2241351,303858\n157296,2277860,127380\n157407,3212232,332411\n157667,4824302,353069\n158238,3799694,290250\n158314,1054478,108176\n158528,4052882,332567\n158783,4016934,290098\n158956,2667380,384798\n159093,3110958,291805\n159462,0155350,26677\n159690,3949660,308531\n159755,3960412,341012\n159858,3065204,259693\n159972,2674430,328429\n160080,1289401,43074\n160271,1489889,302699\n160438,4196776,324668\n160440,2263814,278348\n160563,0918940,258489\n160565,4094724,316727\n160567,2823054,316023\n160590,2751904,177869\n160656,1639084,353571\n160718,5613056,399106\n160954,3531824,328387\n161084,4465220,368620\n161155,5794766,401387\n161336,5278462,373348\n161582,2582782,338766\n161594,5595168,390734\n161830,3732950,314420\n161918,4831420,390989\n161944,0255313,159550\n162376,4574334,410612\n162542,5165344,392572\n162672,3859980,402672\n163056,4262980,315011\n163949,2531318,391698\n164977,0027660,137608\n164979,3447228,410803\n"
  },
  {
    "path": "基于矩阵分解的协同过滤的电影推荐系统/ml-latest-small/movies.csv",
    "content": "movieId,title,genres\n1,Toy Story (1995),Adventure|Animation|Children|Comedy|Fantasy\n2,Jumanji (1995),Adventure|Children|Fantasy\n3,Grumpier Old Men (1995),Comedy|Romance\n4,Waiting to Exhale (1995),Comedy|Drama|Romance\n5,Father of the Bride Part II (1995),Comedy\n6,Heat (1995),Action|Crime|Thriller\n7,Sabrina (1995),Comedy|Romance\n8,Tom and Huck (1995),Adventure|Children\n9,Sudden Death (1995),Action\n10,GoldenEye (1995),Action|Adventure|Thriller\n11,\"American President, The (1995)\",Comedy|Drama|Romance\n12,Dracula: Dead and Loving It (1995),Comedy|Horror\n13,Balto (1995),Adventure|Animation|Children\n14,Nixon (1995),Drama\n15,Cutthroat Island (1995),Action|Adventure|Romance\n16,Casino (1995),Crime|Drama\n17,Sense and Sensibility (1995),Drama|Romance\n18,Four Rooms (1995),Comedy\n19,Ace Ventura: When Nature Calls (1995),Comedy\n20,Money Train (1995),Action|Comedy|Crime|Drama|Thriller\n21,Get Shorty (1995),Comedy|Crime|Thriller\n22,Copycat (1995),Crime|Drama|Horror|Mystery|Thriller\n23,Assassins (1995),Action|Crime|Thriller\n24,Powder (1995),Drama|Sci-Fi\n25,Leaving Las Vegas (1995),Drama|Romance\n26,Othello (1995),Drama\n27,Now and Then (1995),Children|Drama\n28,Persuasion (1995),Drama|Romance\n29,\"City of Lost Children, The (Cité des enfants perdus, La) (1995)\",Adventure|Drama|Fantasy|Mystery|Sci-Fi\n30,Shanghai Triad (Yao a yao yao dao waipo qiao) (1995),Crime|Drama\n31,Dangerous Minds (1995),Drama\n32,Twelve Monkeys (a.k.a. 12 Monkeys) (1995),Mystery|Sci-Fi|Thriller\n34,Babe (1995),Children|Drama\n35,Carrington (1995),Drama|Romance\n36,Dead Man Walking (1995),Crime|Drama\n37,Across the Sea of Time (1995),Documentary|IMAX\n38,It Takes Two (1995),Children|Comedy\n39,Clueless (1995),Comedy|Romance\n40,\"Cry, the Beloved Country (1995)\",Drama\n41,Richard III (1995),Drama|War\n42,Dead Presidents (1995),Action|Crime|Drama\n43,Restoration (1995),Drama\n44,Mortal Kombat (1995),Action|Adventure|Fantasy\n45,To Die For (1995),Comedy|Drama|Thriller\n46,How to Make an American Quilt (1995),Drama|Romance\n47,Seven (a.k.a. Se7en) (1995),Mystery|Thriller\n48,Pocahontas (1995),Animation|Children|Drama|Musical|Romance\n49,When Night Is Falling (1995),Drama|Romance\n50,\"Usual Suspects, The (1995)\",Crime|Mystery|Thriller\n52,Mighty Aphrodite (1995),Comedy|Drama|Romance\n53,Lamerica (1994),Adventure|Drama\n54,\"Big Green, The (1995)\",Children|Comedy\n55,Georgia (1995),Drama\n57,Home for the Holidays (1995),Drama\n58,\"Postman, The (Postino, Il) (1994)\",Comedy|Drama|Romance\n59,\"Confessional, The (Confessionnal, Le) (1995)\",Drama|Mystery\n60,\"Indian in the Cupboard, The (1995)\",Adventure|Children|Fantasy\n61,Eye for an Eye (1996),Drama|Thriller\n62,Mr. Holland's Opus (1995),Drama\n63,Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996),Comedy|Crime\n64,Two if by Sea (1996),Comedy|Romance\n65,Bio-Dome (1996),Comedy\n66,Lawnmower Man 2: Beyond Cyberspace (1996),Action|Sci-Fi|Thriller\n68,French Twist (Gazon maudit) (1995),Comedy|Romance\n69,Friday (1995),Comedy\n70,From Dusk Till Dawn (1996),Action|Comedy|Horror|Thriller\n71,Fair Game (1995),Action\n72,Kicking and Screaming (1995),Comedy|Drama\n73,\"Misérables, Les (1995)\",Drama|War\n74,Bed of Roses (1996),Drama|Romance\n76,Screamers (1995),Action|Sci-Fi|Thriller\n77,Nico Icon (1995),Documentary\n78,\"Crossing Guard, The (1995)\",Action|Crime|Drama|Thriller\n79,\"Juror, The (1996)\",Drama|Thriller\n80,\"White Balloon, The (Badkonake sefid) (1995)\",Children|Drama\n81,Things to Do in Denver When You're Dead (1995),Crime|Drama|Romance\n82,Antonia's Line (Antonia) (1995),Comedy|Drama\n83,Once Upon a Time... When We Were Colored (1995),Drama|Romance\n84,Last Summer in the Hamptons (1995),Comedy|Drama\n85,Angels and Insects (1995),Drama|Romance\n86,White Squall (1996),Action|Adventure|Drama\n87,Dunston Checks In (1996),Children|Comedy\n88,Black Sheep (1996),Comedy\n89,Nick of Time (1995),Action|Thriller\n92,Mary Reilly (1996),Drama|Horror|Thriller\n93,Vampire in Brooklyn (1995),Comedy|Horror|Romance\n94,Beautiful Girls (1996),Comedy|Drama|Romance\n95,Broken Arrow (1996),Action|Adventure|Thriller\n96,In the Bleak Midwinter (1995),Comedy|Drama\n97,\"Hate (Haine, La) (1995)\",Crime|Drama\n98,Shopping (1994),Action|Thriller\n99,Heidi Fleiss: Hollywood Madam (1995),Documentary\n100,City Hall (1996),Drama|Thriller\n101,Bottle Rocket (1996),Adventure|Comedy|Crime|Romance\n102,Mr. Wrong (1996),Comedy\n103,Unforgettable (1996),Mystery|Sci-Fi|Thriller\n104,Happy Gilmore (1996),Comedy\n105,\"Bridges of Madison County, The (1995)\",Drama|Romance\n107,Muppet Treasure Island (1996),Adventure|Children|Comedy|Musical\n108,Catwalk (1996),Documentary\n110,Braveheart (1995),Action|Drama|War\n111,Taxi Driver (1976),Crime|Drama|Thriller\n112,Rumble in the Bronx (Hont faan kui) (1995),Action|Adventure|Comedy|Crime\n113,Before and After (1996),Drama|Mystery\n114,Margaret's Museum (1995),Drama\n116,Anne Frank Remembered (1995),Documentary\n117,\"Young Poisoner's Handbook, The (1995)\",Crime|Drama\n118,If Lucy Fell (1996),Comedy|Romance\n119,\"Steal Big, Steal Little (1995)\",Comedy\n121,\"Boys of St. Vincent, The (1992)\",Drama\n122,Boomerang (1992),Comedy|Romance\n123,Chungking Express (Chung Hing sam lam) (1994),Drama|Mystery|Romance\n124,\"Star Maker, The (Uomo delle stelle, L') (1995)\",Drama\n125,Flirting With Disaster (1996),Comedy\n126,\"NeverEnding Story III, The (1994)\",Adventure|Children|Fantasy\n129,Pie in the Sky (1996),Comedy|Romance\n130,Angela (1995),Drama\n131,Frankie Starlight (1995),Drama|Romance\n132,Jade (1995),Thriller\n135,Down Periscope (1996),Comedy\n137,Man of the Year (1995),Documentary\n140,Up Close and Personal (1996),Drama|Romance\n141,\"Birdcage, The (1996)\",Comedy\n144,\"Brothers McMullen, The (1995)\",Comedy\n145,Bad Boys (1995),Action|Comedy|Crime|Drama|Thriller\n146,\"Amazing Panda Adventure, The (1995)\",Adventure|Children\n147,\"Basketball Diaries, The (1995)\",Drama\n148,\"Awfully Big Adventure, An (1995)\",Drama\n149,Amateur (1994),Crime|Drama|Thriller\n150,Apollo 13 (1995),Adventure|Drama|IMAX\n151,Rob Roy (1995),Action|Drama|Romance|War\n152,\"Addiction, The (1995)\",Drama|Horror\n153,Batman Forever (1995),Action|Adventure|Comedy|Crime\n154,Beauty of the Day (Belle de jour) (1967),Drama\n155,Beyond Rangoon (1995),Adventure|Drama|War\n156,Blue in the Face (1995),Comedy|Drama\n157,Canadian Bacon (1995),Comedy|War\n158,Casper (1995),Adventure|Children\n159,Clockers (1995),Crime|Drama|Mystery\n160,Congo (1995),Action|Adventure|Mystery|Sci-Fi\n161,Crimson Tide (1995),Drama|Thriller|War\n162,Crumb (1994),Documentary\n163,Desperado (1995),Action|Romance|Western\n164,Devil in a Blue Dress (1995),Crime|Film-Noir|Mystery|Thriller\n165,Die Hard: With a Vengeance (1995),Action|Crime|Thriller\n166,\"Doom Generation, The (1995)\",Comedy|Crime|Drama\n167,Feast of July (1995),Drama\n168,First Knight (1995),Action|Drama|Romance\n169,Free Willy 2: The Adventure Home (1995),Adventure|Children|Drama\n170,Hackers (1995),Action|Adventure|Crime|Thriller\n171,Jeffrey (1995),Comedy|Drama\n172,Johnny Mnemonic (1995),Action|Sci-Fi|Thriller\n173,Judge Dredd (1995),Action|Crime|Sci-Fi\n174,Jury Duty (1995),Comedy\n175,Kids (1995),Drama\n176,Living in Oblivion (1995),Comedy\n177,Lord of Illusions (1995),Horror\n178,Love & Human Remains (1993),Comedy|Drama\n179,Mad Love (1995),Drama|Romance\n180,Mallrats (1995),Comedy|Romance\n181,Mighty Morphin Power Rangers: The Movie (1995),Action|Children\n183,Mute Witness (1994),Comedy|Horror|Thriller\n184,Nadja (1994),Drama\n185,\"Net, The (1995)\",Action|Crime|Thriller\n186,Nine Months (1995),Comedy|Romance\n187,Party Girl (1995),Comedy\n188,\"Prophecy, The (1995)\",Fantasy|Horror|Mystery\n189,Reckless (1995),Comedy|Fantasy\n190,Safe (1995),Thriller\n191,\"Scarlet Letter, The (1995)\",Drama|Romance\n193,Showgirls (1995),Drama\n194,Smoke (1995),Comedy|Drama\n195,Something to Talk About (1995),Comedy|Drama|Romance\n196,Species (1995),Horror|Sci-Fi\n198,Strange Days (1995),Action|Crime|Drama|Mystery|Sci-Fi|Thriller\n199,\"Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964)\",Drama|Musical|Romance\n200,\"Tie That Binds, The (1995)\",Thriller\n201,Three Wishes (1995),Drama|Fantasy\n202,Total Eclipse (1995),Drama|Romance\n203,\"To Wong Foo, Thanks for Everything! Julie Newmar (1995)\",Comedy\n204,Under Siege 2: Dark Territory (1995),Action\n205,Unstrung Heroes (1995),Comedy|Drama\n206,Unzipped (1995),Documentary\n207,\"Walk in the Clouds, A (1995)\",Drama|Romance\n208,Waterworld (1995),Action|Adventure|Sci-Fi\n209,White Man's Burden (1995),Drama\n211,\"Browning Version, The (1994)\",Drama\n213,Burnt by the Sun (Utomlyonnye solntsem) (1994),Drama\n214,Before the Rain (Pred dozhdot) (1994),Drama|War\n215,Before Sunrise (1995),Drama|Romance\n216,Billy Madison (1995),Comedy\n217,\"Babysitter, The (1995)\",Drama|Thriller\n218,Boys on the Side (1995),Comedy|Drama\n219,\"Cure, The (1995)\",Drama\n220,Castle Freak (1995),Horror\n222,Circle of Friends (1995),Drama|Romance\n223,Clerks (1994),Comedy\n224,Don Juan DeMarco (1995),Comedy|Drama|Romance\n225,Disclosure (1994),Drama|Thriller\n227,Drop Zone (1994),Action|Thriller\n228,Destiny Turns on the Radio (1995),Comedy\n229,Death and the Maiden (1994),Drama|Thriller\n230,Dolores Claiborne (1995),Drama|Thriller\n231,Dumb & Dumber (Dumb and Dumber) (1994),Adventure|Comedy\n232,Eat Drink Man Woman (Yin shi nan nu) (1994),Comedy|Drama|Romance\n233,Exotica (1994),Drama\n234,Exit to Eden (1994),Comedy\n235,Ed Wood (1994),Comedy|Drama\n236,French Kiss (1995),Action|Comedy|Romance\n237,Forget Paris (1995),Comedy|Romance\n238,Far From Home: The Adventures of Yellow Dog (1995),Adventure|Children\n239,\"Goofy Movie, A (1995)\",Animation|Children|Comedy|Romance\n240,Hideaway (1995),Thriller\n241,Fluke (1995),Children|Drama\n242,Farinelli: il castrato (1994),Drama|Musical\n243,Gordy (1995),Children|Comedy|Fantasy\n244,Gumby: The Movie (1995),Animation|Children\n245,The Glass Shield (1994),Crime|Drama\n246,Hoop Dreams (1994),Documentary\n247,Heavenly Creatures (1994),Crime|Drama\n248,Houseguest (1994),Comedy\n249,Immortal Beloved (1994),Drama|Romance\n250,Heavyweights (Heavy Weights) (1995),Children|Comedy\n251,\"Hunted, The (1995)\",Action\n252,I.Q. (1994),Comedy|Romance\n253,Interview with the Vampire: The Vampire Chronicles (1994),Drama|Horror\n254,Jefferson in Paris (1995),Drama\n255,\"Jerky Boys, The (1995)\",Comedy\n256,Junior (1994),Comedy|Sci-Fi\n257,Just Cause (1995),Mystery|Thriller\n258,\"Kid in King Arthur's Court, A (1995)\",Adventure|Children|Comedy|Fantasy|Romance\n259,Kiss of Death (1995),Crime|Drama|Thriller\n260,Star Wars: Episode IV - A New Hope (1977),Action|Adventure|Sci-Fi\n261,Little Women (1994),Drama\n262,\"Little Princess, A (1995)\",Children|Drama\n263,Ladybird Ladybird (1994),Drama\n264,\"Enfer, L' (1994)\",Drama\n265,Like Water for Chocolate (Como agua para chocolate) (1992),Drama|Fantasy|Romance\n266,Legends of the Fall (1994),Drama|Romance|War|Western\n267,Major Payne (1995),Comedy\n268,Little Odessa (1994),Crime|Drama\n269,My Crazy Life (Mi vida loca) (1993),Drama\n270,Love Affair (1994),Drama|Romance\n271,Losing Isaiah (1995),Drama\n272,\"Madness of King George, The (1994)\",Comedy|Drama\n273,Mary Shelley's Frankenstein (Frankenstein) (1994),Drama|Horror|Sci-Fi\n274,Man of the House (1995),Comedy\n275,Mixed Nuts (1994),Comedy\n276,Milk Money (1994),Comedy|Romance\n277,Miracle on 34th Street (1994),Drama\n278,Miami Rhapsody (1995),Comedy\n279,My Family (1995),Drama\n280,Murder in the First (1995),Drama|Thriller\n281,Nobody's Fool (1994),Comedy|Drama|Romance\n282,Nell (1994),Drama\n283,New Jersey Drive (1995),Crime|Drama\n285,Beyond Bedlam (1993),Drama|Horror\n287,Nina Takes a Lover (1994),Comedy|Romance\n288,Natural Born Killers (1994),Action|Crime|Thriller\n289,Only You (1994),Comedy|Romance\n290,Once Were Warriors (1994),Crime|Drama\n291,Poison Ivy II (1996),Drama|Thriller\n292,Outbreak (1995),Action|Drama|Sci-Fi|Thriller\n293,Léon: The Professional (a.k.a. The Professional) (Léon) (1994),Action|Crime|Drama|Thriller\n294,\"Perez Family, The (1995)\",Comedy|Romance\n295,\"Pyromaniac's Love Story, A (1995)\",Comedy|Romance\n296,Pulp Fiction (1994),Comedy|Crime|Drama|Thriller\n299,Priest (1994),Drama\n300,Quiz Show (1994),Drama\n301,Picture Bride (Bijo photo) (1994),Drama|Romance\n302,\"Queen Margot (Reine Margot, La) (1994)\",Drama|Romance\n303,\"Quick and the Dead, The (1995)\",Action|Thriller|Western\n304,Roommates (1995),Comedy|Drama\n305,Ready to Wear (Pret-A-Porter) (1994),Comedy\n306,Three Colors: Red (Trois couleurs: Rouge) (1994),Drama\n307,Three Colors: Blue (Trois couleurs: Bleu) (1993),Drama\n308,Three Colors: White (Trzy kolory: Bialy) (1994),Comedy|Drama\n309,\"Red Firecracker, Green Firecracker (Pao Da Shuang Deng) (1994)\",Drama\n312,Stuart Saves His Family (1995),Comedy\n313,\"Swan Princess, The (1994)\",Animation|Children\n314,\"Secret of Roan Inish, The (1994)\",Children|Drama|Fantasy|Mystery\n315,\"Specialist, The (1994)\",Action|Drama|Thriller\n316,Stargate (1994),Action|Adventure|Sci-Fi\n317,\"Santa Clause, The (1994)\",Comedy|Drama|Fantasy\n318,\"Shawshank Redemption, The (1994)\",Crime|Drama\n319,Shallow Grave (1994),Comedy|Drama|Thriller\n320,Suture (1993),Film-Noir|Thriller\n321,Strawberry and Chocolate (Fresa y chocolate) (1993),Drama\n322,Swimming with Sharks (1995),Comedy|Drama\n324,\"Sum of Us, The (1994)\",Comedy|Drama\n325,National Lampoon's Senior Trip (1995),Comedy\n326,To Live (Huozhe) (1994),Drama\n327,Tank Girl (1995),Action|Comedy|Sci-Fi\n328,Tales from the Crypt Presents: Demon Knight (1995),Horror|Thriller\n329,Star Trek: Generations (1994),Adventure|Drama|Sci-Fi\n330,Tales from the Hood (1995),Action|Crime|Horror\n331,Tom & Viv (1994),Drama\n332,Village of the Damned (1995),Horror|Sci-Fi\n333,Tommy Boy (1995),Comedy\n334,Vanya on 42nd Street (1994),Drama\n335,Underneath (1995),Mystery|Thriller\n336,\"Walking Dead, The (1995)\",Drama|War\n337,What's Eating Gilbert Grape (1993),Drama\n338,Virtuosity (1995),Action|Sci-Fi|Thriller\n339,While You Were Sleeping (1995),Comedy|Romance\n340,\"War, The (1994)\",Adventure|Drama|War\n341,Double Happiness (1994),Drama\n342,Muriel's Wedding (1994),Comedy\n343,\"Baby-Sitters Club, The (1995)\",Children\n344,Ace Ventura: Pet Detective (1994),Comedy\n345,\"Adventures of Priscilla, Queen of the Desert, The (1994)\",Comedy|Drama\n346,Backbeat (1993),Drama|Musical\n347,Bitter Moon (1992),Drama|Film-Noir|Romance\n348,Bullets Over Broadway (1994),Comedy\n349,Clear and Present Danger (1994),Action|Crime|Drama|Thriller\n350,\"Client, The (1994)\",Drama|Mystery|Thriller\n351,\"Corrina, Corrina (1994)\",Comedy|Drama|Romance\n352,Crooklyn (1994),Comedy|Drama\n353,\"Crow, The (1994)\",Action|Crime|Fantasy|Thriller\n354,Cobb (1994),Drama\n355,\"Flintstones, The (1994)\",Children|Comedy|Fantasy\n356,Forrest Gump (1994),Comedy|Drama|Romance|War\n357,Four Weddings and a Funeral (1994),Comedy|Romance\n358,Higher Learning (1995),Drama\n360,I Love Trouble (1994),Action|Comedy\n361,It Could Happen to You (1994),Comedy|Drama|Romance\n362,\"Jungle Book, The (1994)\",Adventure|Children|Romance\n363,\"Wonderful, Horrible Life of Leni Riefenstahl, The (Macht der Bilder: Leni Riefenstahl, Die) (1993)\",Documentary\n364,\"Lion King, The (1994)\",Adventure|Animation|Children|Drama|Musical|IMAX\n365,Little Buddha (1993),Drama\n366,\"Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A) (1994)\",Drama|Horror|Mystery|Thriller\n367,\"Mask, The (1994)\",Action|Comedy|Crime|Fantasy\n368,Maverick (1994),Adventure|Comedy|Western\n369,Mrs. Parker and the Vicious Circle (1994),Drama\n370,Naked Gun 33 1/3: The Final Insult (1994),Action|Comedy\n371,\"Paper, The (1994)\",Comedy|Drama\n372,Reality Bites (1994),Comedy|Drama|Romance\n373,Red Rock West (1992),Thriller\n374,Richie Rich (1994),Children|Comedy\n375,Safe Passage (1994),Drama\n376,\"River Wild, The (1994)\",Action|Thriller\n377,Speed (1994),Action|Romance|Thriller\n378,Speechless (1994),Comedy|Romance\n379,Timecop (1994),Action|Sci-Fi|Thriller\n380,True Lies (1994),Action|Adventure|Comedy|Romance|Thriller\n381,When a Man Loves a Woman (1994),Drama|Romance\n382,Wolf (1994),Drama|Horror|Romance|Thriller\n383,Wyatt Earp (1994),Western\n384,Bad Company (1995),Action|Crime|Drama\n387,\"Low Down Dirty Shame, A (1994)\",Action|Comedy\n388,Boys Life (1995),Drama\n389,\"Colonel Chabert, Le (1994)\",Drama|Romance|War\n390,Faster Pussycat! Kill! Kill! (1965),Action|Crime|Drama\n391,Jason's Lyric (1994),Crime|Drama\n392,\"Secret Adventures of Tom Thumb, The (1993)\",Adventure|Animation\n393,Street Fighter (1994),Action|Adventure|Fantasy\n401,Mirage (1995),Action|Thriller\n405,Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension) (1994),Action|Fantasy\n407,In the Mouth of Madness (1995),Horror|Thriller\n408,8 Seconds (1994),Drama\n409,Above the Rim (1994),Crime|Drama\n410,Addams Family Values (1993),Children|Comedy|Fantasy\n412,\"Age of Innocence, The (1993)\",Drama\n413,Airheads (1994),Comedy\n414,\"Air Up There, The (1994)\",Comedy\n415,Another Stakeout (1993),Comedy|Thriller\n416,Bad Girls (1994),Western\n417,Barcelona (1994),Comedy|Romance\n418,Being Human (1993),Drama\n419,\"Beverly Hillbillies, The (1993)\",Comedy\n420,Beverly Hills Cop III (1994),Action|Comedy|Crime|Thriller\n421,Black Beauty (1994),Adventure|Children|Drama\n422,Blink (1994),Thriller\n423,Blown Away (1994),Action|Thriller\n424,Blue Chips (1994),Drama\n425,Blue Sky (1994),Drama|Romance\n426,Body Snatchers (1993),Horror|Sci-Fi|Thriller\n427,Boxing Helena (1993),Drama|Mystery|Romance|Thriller\n428,\"Bronx Tale, A (1993)\",Drama\n429,Cabin Boy (1994),Comedy\n431,Carlito's Way (1993),Crime|Drama\n432,City Slickers II: The Legend of Curly's Gold (1994),Adventure|Comedy|Western\n433,Clean Slate (1994),Comedy\n434,Cliffhanger (1993),Action|Adventure|Thriller\n435,Coneheads (1993),Comedy|Sci-Fi\n436,Color of Night (1994),Drama|Thriller\n437,Cops and Robbersons (1994),Comedy\n438,\"Cowboy Way, The (1994)\",Action|Comedy|Drama\n439,Dangerous Game (1993),Drama\n440,Dave (1993),Comedy|Romance\n441,Dazed and Confused (1993),Comedy\n442,Demolition Man (1993),Action|Adventure|Sci-Fi\n443,\"Endless Summer 2, The (1994)\",Adventure|Documentary\n444,Even Cowgirls Get the Blues (1993),Comedy|Romance\n445,Fatal Instinct (1993),Comedy\n446,Farewell My Concubine (Ba wang bie ji) (1993),Drama|Romance\n447,\"Favor, The (1994)\",Comedy|Romance\n448,Fearless (1993),Drama\n449,Fear of a Black Hat (1994),Comedy\n450,With Honors (1994),Comedy|Drama\n451,Flesh and Bone (1993),Drama|Mystery|Romance\n452,Widows' Peak (1994),Drama\n453,For Love or Money (1993),Comedy|Romance\n454,\"Firm, The (1993)\",Drama|Thriller\n455,Free Willy (1993),Adventure|Children|Drama\n456,Fresh (1994),Crime|Drama|Thriller\n457,\"Fugitive, The (1993)\",Thriller\n458,Geronimo: An American Legend (1993),Drama|Western\n459,\"Getaway, The (1994)\",Action|Adventure|Crime|Drama|Romance|Thriller\n460,Getting Even with Dad (1994),Comedy\n461,Go Fish (1994),Drama|Romance\n463,Guilty as Sin (1993),Crime|Drama|Thriller\n464,Hard Target (1993),Action|Adventure|Crime|Thriller\n465,Heaven & Earth (1993),Action|Drama|War\n466,Hot Shots! Part Deux (1993),Action|Comedy|War\n467,Live Nude Girls (1995),Comedy\n468,\"Englishman Who Went Up a Hill But Came Down a Mountain, The (1995)\",Comedy|Romance\n469,\"House of the Spirits, The (1993)\",Drama|Romance\n470,House Party 3 (1994),Comedy\n471,\"Hudsucker Proxy, The (1994)\",Comedy\n472,I'll Do Anything (1994),Comedy|Drama\n473,In the Army Now (1994),Comedy|War\n474,In the Line of Fire (1993),Action|Thriller\n475,In the Name of the Father (1993),Drama\n476,\"Inkwell, The (1994)\",Comedy|Drama\n477,What's Love Got to Do with It? (1993),Drama|Musical\n479,Judgment Night (1993),Action|Crime|Thriller\n480,Jurassic Park (1993),Action|Adventure|Sci-Fi|Thriller\n481,Kalifornia (1993),Drama|Thriller\n482,Killing Zoe (1994),Crime|Drama|Thriller\n483,King of the Hill (1993),Drama\n484,Lassie (1994),Adventure|Children\n485,Last Action Hero (1993),Action|Adventure|Comedy|Fantasy\n486,Life with Mikey (1993),Comedy\n487,Lightning Jack (1994),Comedy|Western\n488,M. Butterfly (1993),Drama|Romance\n489,Made in America (1993),Comedy\n490,Malice (1993),Thriller\n491,\"Man Without a Face, The (1993)\",Drama\n492,Manhattan Murder Mystery (1993),Comedy|Mystery\n493,Menace II Society (1993),Action|Crime|Drama\n494,Executive Decision (1996),Action|Adventure|Thriller\n495,In the Realm of the Senses (Ai no corrida) (1976),Drama\n496,What Happened Was... (1994),Comedy|Drama|Romance|Thriller\n497,Much Ado About Nothing (1993),Comedy|Romance\n498,Mr. Jones (1993),Drama|Romance\n499,Mr. Wonderful (1993),Comedy|Romance\n500,Mrs. Doubtfire (1993),Comedy|Drama\n501,Naked (1993),Drama\n502,\"Next Karate Kid, The (1994)\",Action|Children|Romance\n504,No Escape (1994),Action|Drama|Sci-Fi\n505,North (1994),Comedy\n506,Orlando (1992),Drama|Fantasy|Romance\n507,\"Perfect World, A (1993)\",Crime|Drama|Thriller\n508,Philadelphia (1993),Drama\n509,\"Piano, The (1993)\",Drama|Romance\n510,Poetic Justice (1993),Drama\n511,\"Program, The (1993)\",Action|Drama\n512,\"Puppet Masters, The (1994)\",Horror|Sci-Fi\n513,Radioland Murders (1994),Comedy|Mystery|Romance\n514,\"Ref, The (1994)\",Comedy\n515,\"Remains of the Day, The (1993)\",Drama|Romance\n516,Renaissance Man (1994),Comedy|Drama\n517,Rising Sun (1993),Action|Drama|Mystery\n518,\"Road to Wellville, The (1994)\",Comedy\n519,RoboCop 3 (1993),Action|Crime|Drama|Sci-Fi|Thriller\n520,Robin Hood: Men in Tights (1993),Comedy\n521,Romeo Is Bleeding (1993),Crime|Thriller\n522,Romper Stomper (1992),Action|Drama\n523,Ruby in Paradise (1993),Drama\n524,Rudy (1993),Drama\n526,\"Savage Nights (Nuits fauves, Les) (1992)\",Drama\n527,Schindler's List (1993),Drama|War\n528,\"Scout, The (1994)\",Comedy|Drama\n529,Searching for Bobby Fischer (1993),Drama\n531,\"Secret Garden, The (1993)\",Children|Drama\n532,Serial Mom (1994),Comedy|Crime|Horror\n533,\"Shadow, The (1994)\",Action|Adventure|Fantasy|Mystery\n534,Shadowlands (1993),Drama|Romance\n535,Short Cuts (1993),Drama\n536,\"Simple Twist of Fate, A (1994)\",Drama\n537,Sirens (1994),Drama\n538,Six Degrees of Separation (1993),Drama\n539,Sleepless in Seattle (1993),Comedy|Drama|Romance\n540,Sliver (1993),Thriller\n541,Blade Runner (1982),Action|Sci-Fi|Thriller\n542,Son in Law (1993),Comedy|Drama|Romance\n543,So I Married an Axe Murderer (1993),Comedy|Romance|Thriller\n544,Striking Distance (1993),Action|Crime\n546,Super Mario Bros. (1993),Action|Adventure|Children|Comedy|Fantasy|Sci-Fi\n547,Surviving the Game (1994),Action|Adventure|Thriller\n548,Terminal Velocity (1994),Action|Mystery|Thriller\n549,Thirty-Two Short Films About Glenn Gould (1993),Drama|Musical\n550,Threesome (1994),Comedy|Romance\n551,\"Nightmare Before Christmas, The (1993)\",Animation|Children|Fantasy|Musical\n552,\"Three Musketeers, The (1993)\",Action|Adventure|Comedy|Romance\n553,Tombstone (1993),Action|Drama|Western\n554,Trial by Jury (1994),Crime|Drama|Thriller\n555,True Romance (1993),Crime|Thriller\n556,\"War Room, The (1993)\",Documentary\n558,\"Pagemaster, The (1994)\",Action|Adventure|Animation|Children|Fantasy\n559,\"Paris, France (1993)\",Comedy\n561,Killer (Bulletproof Heart) (1994),Drama|Thriller\n562,Welcome to the Dollhouse (1995),Comedy|Drama\n563,Germinal (1993),Drama|Romance\n564,Chasers (1994),Comedy\n565,Cronos (1993),Drama|Horror\n567,Kika (1993),Comedy|Drama\n568,Bhaji on the Beach (1993),Comedy|Drama\n569,Little Big League (1994),Comedy|Drama\n571,\"Wedding Gift, The (1994)\",Drama|Romance\n573,\"Ciao, Professore! (Io speriamo che me la cavo) (1992)\",Drama\n574,Spanking the Monkey (1994),Comedy|Drama\n575,\"Little Rascals, The (1994)\",Children|Comedy\n577,Andre (1994),Adventure|Children|Drama\n580,Princess Caraboo (1994),Drama\n581,\"Celluloid Closet, The (1995)\",Documentary\n582,Métisse (Café au Lait) (1993),Comedy|Drama\n585,\"Brady Bunch Movie, The (1995)\",Comedy\n586,Home Alone (1990),Children|Comedy\n587,Ghost (1990),Comedy|Drama|Fantasy|Romance|Thriller\n588,Aladdin (1992),Adventure|Animation|Children|Comedy|Musical\n589,Terminator 2: Judgment Day (1991),Action|Sci-Fi\n590,Dances with Wolves (1990),Adventure|Drama|Western\n592,Batman (1989),Action|Crime|Thriller\n593,\"Silence of the Lambs, The (1991)\",Crime|Horror|Thriller\n594,Snow White and the Seven Dwarfs (1937),Animation|Children|Drama|Fantasy|Musical\n595,Beauty and the Beast (1991),Animation|Children|Fantasy|Musical|Romance|IMAX\n596,Pinocchio (1940),Animation|Children|Fantasy|Musical\n597,Pretty Woman (1990),Comedy|Romance\n599,\"Wild Bunch, The (1969)\",Adventure|Western\n600,Love and a .45 (1994),Action|Comedy|Crime\n603,\"Bye Bye, Love (1995)\",Comedy\n605,One Fine Day (1996),Drama|Romance\n606,Candyman: Farewell to the Flesh (1995),Fantasy|Horror\n608,Fargo (1996),Comedy|Crime|Drama|Thriller\n609,Homeward Bound II: Lost in San Francisco (1996),Adventure|Children\n610,Heavy Metal (1981),Action|Adventure|Animation|Horror|Sci-Fi\n611,Hellraiser: Bloodline (1996),Action|Horror|Sci-Fi\n612,\"Pallbearer, The (1996)\",Comedy\n613,Jane Eyre (1996),Drama|Romance\n614,Loaded (1994),Drama|Thriller\n615,Bread and Chocolate (Pane e cioccolata) (1973),Comedy|Drama\n616,\"Aristocats, The (1970)\",Animation|Children\n617,\"Flower of My Secret, The (La flor de mi secreto) (1995)\",Comedy|Drama\n619,Ed (1996),Comedy\n620,Scream of Stone (Cerro Torre: Schrei aus Stein) (1991),Drama\n621,My Favorite Season (1993),Drama\n626,\"Thin Line Between Love and Hate, A (1996)\",Comedy\n627,\"Last Supper, The (1995)\",Drama|Thriller\n628,Primal Fear (1996),Crime|Drama|Mystery|Thriller\n630,Carried Away (1996),Drama|Romance\n631,All Dogs Go to Heaven 2 (1996),Adventure|Animation|Children|Fantasy|Musical|Romance\n632,Land and Freedom (Tierra y libertad) (1995),Drama|War\n633,Denise Calls Up (1995),Comedy\n635,\"Family Thing, A (1996)\",Comedy|Drama\n637,Sgt. Bilko (1996),Comedy\n638,Jack and Sarah (1995),Romance\n639,Girl 6 (1996),Comedy|Drama\n640,Diabolique (1996),Drama|Thriller\n647,Courage Under Fire (1996),Action|Crime|Drama|War\n648,Mission: Impossible (1996),Action|Adventure|Mystery|Thriller\n650,Moll Flanders (1996),Drama\n651,\"Superweib, Das (1996)\",Comedy\n653,Dragonheart (1996),Action|Adventure|Fantasy\n656,Eddie (1996),Comedy\n659,Purple Noon (Plein soleil) (1960),Crime|Drama|Thriller\n661,James and the Giant Peach (1996),Adventure|Animation|Children|Fantasy|Musical\n662,Fear (1996),Thriller\n663,Kids in the Hall: Brain Candy (1996),Comedy\n664,Faithful (1996),Comedy\n665,Underground (1995),Comedy|Drama|War\n667,Bloodsport 2 (a.k.a. Bloodsport II: The Next Kumite) (1996),Action\n668,Song of the Little Road (Pather Panchali) (1955),Drama\n670,\"World of Apu, The (Apur Sansar) (1959)\",Drama\n671,Mystery Science Theater 3000: The Movie (1996),Comedy|Sci-Fi\n673,Space Jam (1996),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi\n674,Barbarella (1968),Adventure|Comedy|Sci-Fi\n678,Some Folks Call It a Sling Blade (1993),Drama|Thriller\n679,\"Run of the Country, The (1995)\",Drama\n680,\"Alphaville (Alphaville, une étrange aventure de Lemmy Caution) (1965)\",Drama|Mystery|Romance|Sci-Fi|Thriller\n681,Coup de torchon (Clean Slate) (1981),Crime\n685,It's My Party (1996),Drama\n687,Country Life (1994),Drama|Romance\n688,Operation Dumbo Drop (1995),Action|Adventure|Comedy|War\n690,\"Promise, The (Versprechen, Das) (1995)\",Drama|Romance\n691,Mrs. Winterbourne (1996),Comedy|Romance\n692,Solo (1996),Action|Sci-Fi|Thriller\n694,\"Substitute, The (1996)\",Action|Crime|Drama\n695,True Crime (1996),Mystery|Thriller\n696,Butterfly Kiss (1995),Drama|Thriller\n697,Feeling Minnesota (1996),Drama|Romance\n698,Delta of Venus (1995),Drama\n700,Angus (1995),Comedy\n702,Faces (1968),Drama\n703,Boys (1996),Drama\n704,\"Quest, The (1996)\",Action|Adventure\n705,Cosi (1996),Comedy\n707,Mulholland Falls (1996),Crime|Drama|Thriller\n708,\"Truth About Cats & Dogs, The (1996)\",Comedy|Romance\n709,Oliver & Company (1988),Adventure|Animation|Children|Comedy|Musical\n710,Celtic Pride (1996),Comedy\n711,Flipper (1996),Adventure|Children\n714,Dead Man (1995),Drama|Mystery|Western\n715,\"Horseman on the Roof, The (Hussard sur le toit, Le) (1995)\",Drama|Romance\n718,\"Visitors, The (Visiteurs, Les) (1993)\",Comedy|Fantasy|Sci-Fi\n719,Multiplicity (1996),Comedy\n720,Wallace & Gromit: The Best of Aardman Animation (1996),Adventure|Animation|Comedy\n721,Halfmoon (Paul Bowles - Halbmond) (1995),Drama\n722,\"Haunted World of Edward D. Wood Jr., The (1996)\",Documentary\n724,\"Craft, The (1996)\",Drama|Fantasy|Horror|Thriller\n725,\"Great White Hype, The (1996)\",Comedy\n726,Last Dance (1996),Drama\n728,Cold Comfort Farm (1995),Comedy\n731,Heaven's Prisoners (1996),Crime|Thriller\n733,\"Rock, The (1996)\",Action|Adventure|Thriller\n735,Cemetery Man (Dellamorte Dellamore) (1994),Horror\n736,Twister (1996),Action|Adventure|Romance|Thriller\n737,Barb Wire (1996),Action|Sci-Fi\n741,Ghost in the Shell (Kôkaku kidôtai) (1995),Animation|Sci-Fi\n742,Thinner (1996),Horror|Thriller\n743,Spy Hard (1996),Comedy\n745,Wallace & Gromit: A Close Shave (1995),Animation|Children|Comedy\n746,Force of Evil (1948),Film-Noir\n747,\"Stupids, The (1996)\",Comedy\n748,\"Arrival, The (1996)\",Action|Sci-Fi|Thriller\n750,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964),Comedy|War\n753,\"Month by the Lake, A (1995)\",Comedy|Drama|Romance\n754,Gold Diggers: The Secret of Bear Mountain (1995),Adventure|Children\n755,Kim (1950),Children|Drama\n756,Carmen Miranda: Bananas Is My Business (1994),Documentary\n757,Ashes of Time (Dung che sai duk) (1994),Drama\n759,Maya Lin: A Strong Clear Vision (1994),Documentary\n760,Stalingrad (1993),Drama|War\n761,\"Phantom, The (1996)\",Action|Adventure\n762,Striptease (1996),Comedy|Crime\n764,Heavy (1995),Drama|Romance\n765,Jack (1996),Comedy|Drama\n766,I Shot Andy Warhol (1996),Drama\n767,\"Grass Harp, The (1995)\",Comedy|Drama\n769,Marlene Dietrich: Shadow and Light (1996),Documentary\n775,Spirits of the Dead (1968),Horror|Mystery\n778,Trainspotting (1996),Comedy|Crime|Drama\n779,'Til There Was You (1997),Drama|Romance\n780,Independence Day (a.k.a. ID4) (1996),Action|Adventure|Sci-Fi|Thriller\n781,Stealing Beauty (1996),Drama\n782,\"Fan, The (1996)\",Drama|Thriller\n783,\"Hunchback of Notre Dame, The (1996)\",Animation|Children|Drama|Musical|Romance\n784,\"Cable Guy, The (1996)\",Comedy|Thriller\n785,Kingpin (1996),Comedy\n786,Eraser (1996),Action|Drama|Thriller\n787,\"Gate of Heavenly Peace, The (1995)\",Documentary\n788,\"Nutty Professor, The (1996)\",Comedy|Fantasy|Romance|Sci-Fi\n793,My Life and Times With Antonin Artaud (En compagnie d'Antonin Artaud) (1993),Drama\n798,Daylight (1996),Action|Adventure|Drama|Thriller\n799,\"Frighteners, The (1996)\",Comedy|Horror|Thriller\n800,Lone Star (1996),Drama|Mystery|Western\n801,Harriet the Spy (1996),Children|Comedy\n802,Phenomenon (1996),Drama|Romance\n803,Walking and Talking (1996),Comedy|Drama|Romance\n804,She's the One (1996),Comedy|Romance\n805,\"Time to Kill, A (1996)\",Drama|Thriller\n806,American Buffalo (1996),Crime|Drama\n808,Alaska (1996),Adventure|Children\n809,Fled (1996),Action|Adventure\n810,Kazaam (1996),Children|Comedy|Fantasy\n813,Larger Than Life (1996),Comedy\n816,Two Deaths (1995),Drama\n818,\"Very Brady Sequel, A (1996)\",Comedy\n820,\"Death in the Garden (Mort en ce jardin, La) (1956)\",Drama\n824,Kaspar Hauser (1993),Drama|Mystery\n828,\"Adventures of Pinocchio, The (1996)\",Adventure|Children\n829,Joe's Apartment (1996),Comedy|Fantasy|Musical\n830,\"First Wives Club, The (1996)\",Comedy\n831,Stonewall (1995),Drama\n832,Ransom (1996),Crime|Thriller\n833,High School High (1996),Comedy\n834,Phat Beach (1996),Comedy\n835,Foxfire (1996),Drama\n836,Chain Reaction (1996),Action|Adventure|Thriller\n837,Matilda (1996),Children|Comedy|Fantasy\n838,Emma (1996),Comedy|Drama|Romance\n839,\"Crow: City of Angels, The (1996)\",Action|Thriller\n840,House Arrest (1996),Children|Comedy\n841,\"Eyes Without a Face (Yeux sans visage, Les) (1959)\",Horror\n842,Tales from the Crypt Presents: Bordello of Blood (1996),Comedy|Horror\n844,\"Story of Xinghua, The (Xinghua san yue tian) (1994)\",Drama\n845,\"Day the Sun Turned Cold, The (Tianguo niezi) (1994)\",Drama\n846,Flirt (1995),Drama\n848,\"Spitfire Grill, The (1996)\",Drama\n849,Escape from L.A. (1996),Action|Adventure|Sci-Fi|Thriller\n850,Cyclo (Xich lo) (1995),Crime|Drama\n851,Basquiat (1996),Drama\n852,Tin Cup (1996),Comedy|Drama|Romance\n854,\"Ballad of Narayama, The (Narayama Bushiko) (1958)\",Drama\n858,\"Godfather, The (1972)\",Crime|Drama\n861,Supercop (Police Story 3: Supercop) (Jing cha gu shi III: Chao ji jing cha) (1992),Action|Comedy|Crime|Thriller\n864,\"Wife, The (1995)\",Comedy|Drama\n865,Small Faces (1996),Drama\n866,Bound (1996),Crime|Drama|Romance|Thriller\n867,Carpool (1996),Comedy|Crime\n869,Kansas City (1996),Crime|Drama|Musical|Thriller\n870,Gone Fishin' (1997),Comedy\n872,Vive L'Amour (Ai qing wan sui) (1994),Drama\n875,Nothing to Lose (1994),Action|Crime|Drama\n876,Supercop 2 (Project S) (Chao ji ji hua) (1993),Action|Comedy|Crime|Thriller\n879,\"Relic, The (1997)\",Horror|Thriller\n880,\"Island of Dr. Moreau, The (1996)\",Sci-Fi|Thriller\n881,First Kid (1996),Children|Comedy\n882,\"Trigger Effect, The (1996)\",Drama|Thriller\n885,Bogus (1996),Children|Drama|Fantasy\n886,Bulletproof (1996),Action|Comedy|Crime\n888,Land Before Time III: The Time of the Great Giving (1995),Adventure|Animation|Children|Musical\n889,1-900 (06) (1994),Drama|Romance\n891,Halloween: The Curse of Michael Myers (Halloween 6: The Curse of Michael Myers) (1995),Horror|Thriller\n892,Twelfth Night (1996),Comedy|Drama|Romance\n893,Mother Night (1996),Drama\n896,Wild Reeds (Les roseaux sauvages) (1994),Drama\n897,For Whom the Bell Tolls (1943),Adventure|Drama|Romance|War\n898,\"Philadelphia Story, The (1940)\",Comedy|Drama|Romance\n899,Singin' in the Rain (1952),Comedy|Musical|Romance\n900,\"American in Paris, An (1951)\",Musical|Romance\n901,Funny Face (1957),Comedy|Musical\n902,Breakfast at Tiffany's (1961),Drama|Romance\n903,Vertigo (1958),Drama|Mystery|Romance|Thriller\n904,Rear Window (1954),Mystery|Thriller\n905,It Happened One Night (1934),Comedy|Romance\n906,Gaslight (1944),Drama|Thriller\n907,\"Gay Divorcee, The (1934)\",Comedy|Musical|Romance\n908,North by Northwest (1959),Action|Adventure|Mystery|Romance|Thriller\n909,\"Apartment, The (1960)\",Comedy|Drama|Romance\n910,Some Like It Hot (1959),Comedy|Crime\n911,Charade (1963),Comedy|Crime|Mystery|Romance|Thriller\n912,Casablanca (1942),Drama|Romance\n913,\"Maltese Falcon, The (1941)\",Film-Noir|Mystery\n914,My Fair Lady (1964),Comedy|Drama|Musical|Romance\n915,Sabrina (1954),Comedy|Romance\n916,Roman Holiday (1953),Comedy|Drama|Romance\n917,\"Little Princess, The (1939)\",Children|Drama\n918,Meet Me in St. Louis (1944),Musical\n919,\"Wizard of Oz, The (1939)\",Adventure|Children|Fantasy|Musical\n920,Gone with the Wind (1939),Drama|Romance|War\n921,My Favorite Year (1982),Comedy\n922,Sunset Blvd. (a.k.a. Sunset Boulevard) (1950),Drama|Film-Noir|Romance\n923,Citizen Kane (1941),Drama|Mystery\n924,2001: A Space Odyssey (1968),Adventure|Drama|Sci-Fi\n926,All About Eve (1950),Drama\n927,\"Women, The (1939)\",Comedy\n928,Rebecca (1940),Drama|Mystery|Romance|Thriller\n929,Foreign Correspondent (1940),Drama|Film-Noir|Mystery|Thriller\n930,Notorious (1946),Film-Noir|Romance|Thriller\n931,Spellbound (1945),Mystery|Romance|Thriller\n932,\"Affair to Remember, An (1957)\",Drama|Romance\n933,To Catch a Thief (1955),Crime|Mystery|Romance|Thriller\n934,Father of the Bride (1950),Comedy\n935,\"Band Wagon, The (1953)\",Comedy|Musical\n936,Ninotchka (1939),Comedy|Romance\n937,Love in the Afternoon (1957),Comedy|Romance\n938,Gigi (1958),Musical\n939,\"Reluctant Debutante, The (1958)\",Comedy|Drama\n940,\"Adventures of Robin Hood, The (1938)\",Action|Adventure|Romance\n941,\"Mark of Zorro, The (1940)\",Adventure\n942,Laura (1944),Crime|Film-Noir|Mystery\n943,\"Ghost and Mrs. Muir, The (1947)\",Drama|Fantasy|Romance\n944,Lost Horizon (1937),Drama\n945,Top Hat (1935),Comedy|Musical|Romance\n946,To Be or Not to Be (1942),Comedy|Drama|War\n947,My Man Godfrey (1936),Comedy|Romance\n948,Giant (1956),Drama|Romance|Western\n949,East of Eden (1955),Drama\n950,\"Thin Man, The (1934)\",Comedy|Crime\n951,His Girl Friday (1940),Comedy|Romance\n952,Around the World in 80 Days (1956),Adventure|Comedy\n953,It's a Wonderful Life (1946),Children|Drama|Fantasy|Romance\n954,Mr. Smith Goes to Washington (1939),Drama\n955,Bringing Up Baby (1938),Comedy|Romance\n956,Penny Serenade (1941),Drama|Romance\n957,\"Scarlet Letter, The (1926)\",Drama\n960,Angel on My Shoulder (1946),Crime|Drama\n961,Little Lord Fauntleroy (1936),Drama\n962,They Made Me a Criminal (1939),Crime|Drama\n963,\"Inspector General, The (1949)\",Musical\n964,Angel and the Badman (1947),Romance|Western\n965,\"39 Steps, The (1935)\",Drama|Mystery|Thriller\n966,A Walk in the Sun (1945),Drama|War\n968,Night of the Living Dead (1968),Horror|Sci-Fi|Thriller\n969,\"African Queen, The (1951)\",Adventure|Comedy|Romance|War\n970,Beat the Devil (1953),Adventure|Comedy|Crime|Drama|Romance\n971,Cat on a Hot Tin Roof (1958),Drama\n972,\"Last Time I Saw Paris, The (1954)\",Drama\n973,Meet John Doe (1941),Comedy|Drama\n976,\"Farewell to Arms, A (1932)\",Romance|War\n980,\"Yes, Madam (a.k.a. Police Assassins) (a.k.a. In the Line of Duty 2) (Huang gu shi jie) (1985)\",Action\n981,Dangerous Ground (1997),Drama\n982,Picnic (1955),Drama\n984,\"Pompatus of Love, The (1996)\",Comedy|Drama\n986,Fly Away Home (1996),Adventure|Children\n987,Bliss (1997),Drama|Romance\n988,Grace of My Heart (1996),Comedy|Drama\n990,Maximum Risk (1996),Action|Adventure|Thriller\n991,Michael Collins (1996),Drama\n992,\"Rich Man's Wife, The (1996)\",Thriller\n994,Big Night (1996),Comedy|Drama\n996,Last Man Standing (1996),Action|Crime|Drama|Thriller\n997,Caught (1996),Drama|Thriller\n998,Set It Off (1996),Action|Crime\n999,2 Days in the Valley (1996),Crime|Film-Noir\n1003,Extreme Measures (1996),Drama|Thriller\n1004,\"Glimmer Man, The (1996)\",Action|Thriller\n1005,D3: The Mighty Ducks (1996),Children|Comedy\n1006,\"Chamber, The (1996)\",Drama\n1007,\"Apple Dumpling Gang, The (1975)\",Children|Comedy|Western\n1008,\"Davy Crockett, King of the Wild Frontier (1955)\",Adventure|Western\n1009,Escape to Witch Mountain (1975),Adventure|Children|Fantasy\n1010,\"Love Bug, The (1969)\",Children|Comedy\n1011,Herbie Rides Again (1974),Children|Comedy|Fantasy|Romance\n1012,Old Yeller (1957),Children|Drama\n1013,\"Parent Trap, The (1961)\",Children|Comedy|Romance\n1014,Pollyanna (1960),Children|Comedy|Drama\n1015,Homeward Bound: The Incredible Journey (1993),Adventure|Children|Drama\n1016,\"Shaggy Dog, The (1959)\",Children|Comedy\n1017,Swiss Family Robinson (1960),Adventure|Children\n1018,That Darn Cat! (1965),Children|Comedy|Mystery\n1019,\"20,000 Leagues Under the Sea (1954)\",Adventure|Drama|Sci-Fi\n1020,Cool Runnings (1993),Comedy\n1021,Angels in the Outfield (1994),Children|Comedy\n1022,Cinderella (1950),Animation|Children|Fantasy|Musical|Romance\n1023,Winnie the Pooh and the Blustery Day (1968),Animation|Children|Musical\n1024,\"Three Caballeros, The (1945)\",Animation|Children|Musical\n1025,\"Sword in the Stone, The (1963)\",Animation|Children|Fantasy|Musical\n1026,So Dear to My Heart (1949),Children|Drama\n1027,Robin Hood: Prince of Thieves (1991),Adventure|Drama\n1028,Mary Poppins (1964),Children|Comedy|Fantasy|Musical\n1029,Dumbo (1941),Animation|Children|Drama|Musical\n1030,Pete's Dragon (1977),Adventure|Animation|Children|Musical\n1031,Bedknobs and Broomsticks (1971),Adventure|Children|Musical\n1032,Alice in Wonderland (1951),Adventure|Animation|Children|Fantasy|Musical\n1033,\"Fox and the Hound, The (1981)\",Animation|Children|Drama\n1034,Freeway (1996),Comedy|Crime|Drama|Thriller\n1035,\"Sound of Music, The (1965)\",Musical|Romance\n1036,Die Hard (1988),Action|Crime|Thriller\n1037,\"Lawnmower Man, The (1992)\",Action|Horror|Sci-Fi|Thriller\n1040,\"Secret Agent, The (1996)\",Drama\n1041,Secrets & Lies (1996),Drama\n1042,That Thing You Do! (1996),Comedy|Drama\n1043,To Gillian on Her 37th Birthday (1996),Drama|Romance\n1044,Surviving Picasso (1996),Drama\n1046,Beautiful Thing (1996),Drama|Romance\n1047,\"Long Kiss Goodnight, The (1996)\",Action|Drama|Thriller\n1049,\"Ghost and the Darkness, The (1996)\",Action|Adventure\n1050,Looking for Richard (1996),Documentary|Drama\n1051,Trees Lounge (1996),Drama\n1053,Normal Life (1996),Crime|Drama|Romance\n1054,Get on the Bus (1996),Drama\n1055,Shadow Conspiracy (1997),Thriller\n1056,Jude (1996),Drama\n1057,Everyone Says I Love You (1996),Comedy|Musical|Romance\n1059,William Shakespeare's Romeo + Juliet (1996),Drama|Romance\n1060,Swingers (1996),Comedy|Drama\n1061,Sleepers (1996),Thriller\n1063,Johns (1996),Drama\n1064,Aladdin and the King of Thieves (1996),Animation|Children|Comedy|Fantasy|Musical|Romance\n1066,Shall We Dance (1937),Comedy|Musical|Romance\n1067,\"Damsel in Distress, A (1937)\",Comedy|Musical|Romance\n1068,Crossfire (1947),Crime|Film-Noir\n1069,\"Murder, My Sweet (1944)\",Crime|Film-Noir|Thriller\n1073,Willy Wonka & the Chocolate Factory (1971),Children|Comedy|Fantasy|Musical\n1076,\"Innocents, The (1961)\",Drama|Horror|Thriller\n1077,Sleeper (1973),Comedy|Sci-Fi\n1078,Bananas (1971),Comedy|War\n1079,\"Fish Called Wanda, A (1988)\",Comedy|Crime\n1080,Monty Python's Life of Brian (1979),Comedy\n1081,Victor/Victoria (1982),Comedy|Musical|Romance\n1082,\"Candidate, The (1972)\",Drama\n1083,\"Great Race, The (1965)\",Comedy|Musical\n1084,Bonnie and Clyde (1967),Crime|Drama\n1085,\"Old Man and the Sea, The (1958)\",Adventure|Drama\n1086,Dial M for Murder (1954),Crime|Mystery|Thriller\n1087,Madame Butterfly (1995),Musical\n1088,Dirty Dancing (1987),Drama|Musical|Romance\n1089,Reservoir Dogs (1992),Crime|Mystery|Thriller\n1090,Platoon (1986),Drama|War\n1091,Weekend at Bernie's (1989),Comedy\n1092,Basic Instinct (1992),Crime|Mystery|Thriller\n1093,\"Doors, The (1991)\",Drama\n1094,\"Crying Game, The (1992)\",Drama|Romance|Thriller\n1095,Glengarry Glen Ross (1992),Drama\n1096,Sophie's Choice (1982),Drama\n1097,E.T. the Extra-Terrestrial (1982),Children|Drama|Sci-Fi\n1099,\"Christmas Carol, A (1938)\",Children|Drama|Fantasy\n1100,Days of Thunder (1990),Action|Drama|Romance\n1101,Top Gun (1986),Action|Romance\n1103,Rebel Without a Cause (1955),Drama\n1104,\"Streetcar Named Desire, A (1951)\",Drama\n1105,Children of the Corn IV: The Gathering (1996),Horror\n1111,Microcosmos (Microcosmos: Le peuple de l'herbe) (1996),Documentary\n1112,Palookaville (1996),Action|Comedy|Drama\n1113,\"Associate, The (1996)\",Comedy\n1114,\"Funeral, The (1996)\",Crime|Drama\n1120,\"People vs. Larry Flynt, The (1996)\",Comedy|Drama\n1123,\"Perfect Candidate, A (1996)\",Documentary\n1124,On Golden Pond (1981),Drama\n1125,\"Return of the Pink Panther, The (1975)\",Comedy|Crime\n1126,Drop Dead Fred (1991),Comedy|Fantasy\n1127,\"Abyss, The (1989)\",Action|Adventure|Sci-Fi|Thriller\n1128,\"Fog, The (1980)\",Horror\n1129,Escape from New York (1981),Action|Adventure|Sci-Fi|Thriller\n1130,\"Howling, The (1980)\",Horror|Mystery\n1131,Jean de Florette (1986),Drama|Mystery\n1132,Manon of the Spring (Manon des sources) (1986),Drama\n1133,Talking About Sex (1994),Comedy|Drama\n1135,Private Benjamin (1980),Comedy\n1136,Monty Python and the Holy Grail (1975),Adventure|Comedy|Fantasy\n1137,Hustler White (1996),Romance\n1145,Snowriders (1996),Documentary\n1147,When We Were Kings (1996),Documentary\n1148,Wallace & Gromit: The Wrong Trousers (1993),Animation|Children|Comedy|Crime\n1150,\"Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)\",Drama\n1151,Lesson Faust (1994),Animation|Comedy|Drama|Fantasy\n1152,He Walked by Night (1948),Crime|Film-Noir|Thriller\n1153,Raw Deal (1948),Film-Noir\n1154,T-Men (1947),Film-Noir\n1161,\"Tin Drum, The (Blechtrommel, Die) (1979)\",Drama|War\n1162,\"Ruling Class, The (1972)\",Comedy|Drama\n1163,Mina Tannenbaum (1994),Drama\n1164,2 ou 3 choses que je sais d'elle (2 or 3 Things I Know About Her) (1967),Drama\n1165,\"Bloody Child, The (1996)\",Drama|Thriller\n1167,Dear God (1996),Comedy\n1168,Bad Moon (1996),Action|Adventure|Horror\n1169,American Dream (1990),Documentary\n1171,Bob Roberts (1992),Comedy\n1172,Cinema Paradiso (Nuovo cinema Paradiso) (1989),Drama\n1173,\"Cook the Thief His Wife & Her Lover, The (1989)\",Comedy|Drama\n1174,Dead Tired (Grosse Fatigue) (1994),Comedy\n1175,Delicatessen (1991),Comedy|Drama|Romance\n1176,\"Double Life of Veronique, The (Double Vie de Véronique, La) (1991)\",Drama|Fantasy|Romance\n1177,Enchanted April (1992),Drama|Romance\n1178,Paths of Glory (1957),Drama|War\n1179,\"Grifters, The (1990)\",Crime|Drama|Film-Noir\n1180,Hear My Song (1991),Comedy\n1181,\"Shooter, The (1997)\",Western\n1183,\"English Patient, The (1996)\",Drama|Romance|War\n1184,Mediterraneo (1991),Comedy|Drama\n1185,My Left Foot (1989),Drama\n1186,\"Sex, Lies, and Videotape (1989)\",Drama\n1187,Passion Fish (1992),Drama\n1188,Strictly Ballroom (1992),Comedy|Romance\n1189,\"Thin Blue Line, The (1988)\",Documentary\n1190,Tie Me Up! Tie Me Down! (¡Átame!) (1990),Crime|Drama|Romance\n1191,Madonna: Truth or Dare (1991),Documentary|Musical\n1192,Paris Is Burning (1990),Documentary\n1193,One Flew Over the Cuckoo's Nest (1975),Drama\n1194,Cheech and Chong's Up in Smoke (1978),Comedy\n1196,Star Wars: Episode V - The Empire Strikes Back (1980),Action|Adventure|Sci-Fi\n1197,\"Princess Bride, The (1987)\",Action|Adventure|Comedy|Fantasy|Romance\n1198,Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981),Action|Adventure\n1199,Brazil (1985),Fantasy|Sci-Fi\n1200,Aliens (1986),Action|Adventure|Horror|Sci-Fi\n1201,\"Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il) (1966)\",Action|Adventure|Western\n1202,Withnail & I (1987),Comedy\n1203,12 Angry Men (1957),Drama\n1204,Lawrence of Arabia (1962),Adventure|Drama|War\n1206,\"Clockwork Orange, A (1971)\",Crime|Drama|Sci-Fi|Thriller\n1207,To Kill a Mockingbird (1962),Drama\n1208,Apocalypse Now (1979),Action|Drama|War\n1209,Once Upon a Time in the West (C'era una volta il West) (1968),Action|Drama|Western\n1210,Star Wars: Episode VI - Return of the Jedi (1983),Action|Adventure|Sci-Fi\n1211,\"Wings of Desire (Himmel über Berlin, Der) (1987)\",Drama|Fantasy|Romance\n1212,\"Third Man, The (1949)\",Film-Noir|Mystery|Thriller\n1213,Goodfellas (1990),Crime|Drama\n1214,Alien (1979),Horror|Sci-Fi\n1215,Army of Darkness (1993),Action|Adventure|Comedy|Fantasy|Horror\n1216,\"Big Blue, The (Grand bleu, Le) (1988)\",Adventure|Drama|Romance\n1217,Ran (1985),Drama|War\n1218,\"Killer, The (Die xue shuang xiong) (1989)\",Action|Crime|Drama|Thriller\n1219,Psycho (1960),Crime|Horror\n1220,\"Blues Brothers, The (1980)\",Action|Comedy|Musical\n1221,\"Godfather: Part II, The (1974)\",Crime|Drama\n1222,Full Metal Jacket (1987),Drama|War\n1223,\"Grand Day Out with Wallace and Gromit, A (1989)\",Adventure|Animation|Children|Comedy|Sci-Fi\n1224,Henry V (1989),Action|Drama|Romance|War\n1225,Amadeus (1984),Drama\n1226,\"Quiet Man, The (1952)\",Drama|Romance\n1227,Once Upon a Time in America (1984),Crime|Drama\n1228,Raging Bull (1980),Drama\n1230,Annie Hall (1977),Comedy|Romance\n1231,\"Right Stuff, The (1983)\",Drama\n1232,Stalker (1979),Drama|Mystery|Sci-Fi\n1233,\"Boot, Das (Boat, The) (1981)\",Action|Drama|War\n1234,\"Sting, The (1973)\",Comedy|Crime\n1235,Harold and Maude (1971),Comedy|Drama|Romance\n1236,Trust (1990),Comedy|Drama|Romance\n1237,\"Seventh Seal, The (Sjunde inseglet, Det) (1957)\",Drama\n1238,Local Hero (1983),Comedy\n1240,\"Terminator, The (1984)\",Action|Sci-Fi|Thriller\n1241,Dead Alive (Braindead) (1992),Comedy|Fantasy|Horror\n1242,Glory (1989),Drama|War\n1243,Rosencrantz and Guildenstern Are Dead (1990),Comedy|Drama\n1244,Manhattan (1979),Comedy|Drama|Romance\n1245,Miller's Crossing (1990),Crime|Drama|Film-Noir|Thriller\n1246,Dead Poets Society (1989),Drama\n1247,\"Graduate, The (1967)\",Comedy|Drama|Romance\n1248,Touch of Evil (1958),Crime|Film-Noir|Thriller\n1249,\"Femme Nikita, La (Nikita) (1990)\",Action|Crime|Romance|Thriller\n1250,\"Bridge on the River Kwai, The (1957)\",Adventure|Drama|War\n1251,8 1/2 (8½) (1963),Drama|Fantasy\n1252,Chinatown (1974),Crime|Film-Noir|Mystery|Thriller\n1253,\"Day the Earth Stood Still, The (1951)\",Drama|Sci-Fi|Thriller\n1254,\"Treasure of the Sierra Madre, The (1948)\",Action|Adventure|Drama|Western\n1255,Bad Taste (1987),Comedy|Horror|Sci-Fi\n1256,Duck Soup (1933),Comedy|Musical|War\n1257,Better Off Dead... (1985),Comedy|Romance\n1258,\"Shining, The (1980)\",Horror\n1259,Stand by Me (1986),Adventure|Drama\n1260,M (1931),Crime|Film-Noir|Thriller\n1261,Evil Dead II (Dead by Dawn) (1987),Action|Comedy|Fantasy|Horror\n1262,\"Great Escape, The (1963)\",Action|Adventure|Drama|War\n1263,\"Deer Hunter, The (1978)\",Drama|War\n1264,Diva (1981),Action|Drama|Mystery|Romance|Thriller\n1265,Groundhog Day (1993),Comedy|Fantasy|Romance\n1266,Unforgiven (1992),Drama|Western\n1267,\"Manchurian Candidate, The (1962)\",Crime|Thriller|War\n1268,Pump Up the Volume (1990),Comedy|Drama\n1269,Arsenic and Old Lace (1944),Comedy|Mystery|Thriller\n1270,Back to the Future (1985),Adventure|Comedy|Sci-Fi\n1271,Fried Green Tomatoes (1991),Comedy|Crime|Drama\n1272,Patton (1970),Drama|War\n1273,Down by Law (1986),Comedy|Drama|Film-Noir\n1274,Akira (1988),Action|Adventure|Animation|Sci-Fi\n1275,Highlander (1986),Action|Adventure|Fantasy\n1276,Cool Hand Luke (1967),Drama\n1277,Cyrano de Bergerac (1990),Comedy|Drama|Romance\n1278,Young Frankenstein (1974),Comedy|Fantasy\n1279,Night on Earth (1991),Comedy|Drama\n1280,Raise the Red Lantern (Da hong deng long gao gao gua) (1991),Drama\n1281,\"Great Dictator, The (1940)\",Comedy|Drama|War\n1282,Fantasia (1940),Animation|Children|Fantasy|Musical\n1283,High Noon (1952),Drama|Western\n1284,\"Big Sleep, The (1946)\",Crime|Film-Noir|Mystery\n1285,Heathers (1989),Comedy\n1286,Somewhere in Time (1980),Drama|Romance\n1287,Ben-Hur (1959),Action|Adventure|Drama\n1288,This Is Spinal Tap (1984),Comedy\n1289,Koyaanisqatsi (a.k.a. Koyaanisqatsi: Life Out of Balance) (1983),Documentary\n1290,Some Kind of Wonderful (1987),Drama|Romance\n1291,Indiana Jones and the Last Crusade (1989),Action|Adventure\n1292,Being There (1979),Comedy|Drama\n1293,Gandhi (1982),Drama\n1295,\"Unbearable Lightness of Being, The (1988)\",Drama\n1296,\"Room with a View, A (1986)\",Drama|Romance\n1297,Real Genius (1985),Comedy\n1298,Pink Floyd: The Wall (1982),Drama|Musical\n1299,\"Killing Fields, The (1984)\",Drama|War\n1300,My Life as a Dog (Mitt liv som hund) (1985),Comedy|Drama\n1301,Forbidden Planet (1956),Drama|Sci-Fi\n1302,Field of Dreams (1989),Children|Drama|Fantasy\n1303,\"Man Who Would Be King, The (1975)\",Adventure|Drama\n1304,Butch Cassidy and the Sundance Kid (1969),Action|Western\n1305,\"Paris, Texas (1984)\",Drama|Romance\n1306,Until the End of the World (Bis ans Ende der Welt) (1991),Adventure|Drama|Sci-Fi\n1307,When Harry Met Sally... (1989),Comedy|Romance\n1310,Hype! (1996),Documentary\n1311,Santa with Muscles (1996),Comedy\n1312,Female Perversions (1996),Drama\n1317,I'm Not Rappaport (1996),Comedy\n1320,Alien³ (a.k.a. Alien 3) (1992),Action|Horror|Sci-Fi|Thriller\n1321,\"American Werewolf in London, An (1981)\",Comedy|Horror|Thriller\n1322,Amityville 1992: It's About Time (1992),Horror\n1323,Amityville 3-D (1983),Horror\n1324,Amityville: Dollhouse (1996),Horror\n1325,Amityville: A New Generation (1993),Horror\n1326,Amityville II: The Possession (1982),Horror\n1327,\"Amityville Horror, The (1979)\",Drama|Horror|Mystery|Thriller\n1328,\"Amityville Curse, The (1990)\",Horror\n1329,Blood for Dracula (Andy Warhol's Dracula) (1974),Horror\n1330,April Fool's Day (1986),Horror\n1331,Audrey Rose (1977),Horror\n1332,\"Believers, The (1987)\",Horror|Thriller\n1333,\"Birds, The (1963)\",Horror|Thriller\n1334,\"Blob, The (1958)\",Horror|Sci-Fi\n1335,Blood Beach (1981),Horror|Mystery\n1336,Body Parts (1991),Horror|Thriller\n1337,\"Body Snatcher, The (1945)\",Drama|Horror|Thriller\n1339,Dracula (Bram Stoker's Dracula) (1992),Fantasy|Horror|Romance|Thriller\n1340,\"Bride of Frankenstein, The (Bride of Frankenstein) (1935)\",Drama|Horror|Sci-Fi\n1341,Burnt Offerings (1976),Horror\n1342,Candyman (1992),Horror|Thriller\n1343,Cape Fear (1991),Thriller\n1344,Cape Fear (1962),Crime|Drama|Thriller\n1345,Carrie (1976),Drama|Fantasy|Horror|Thriller\n1346,Cat People (1982),Drama|Fantasy|Horror\n1347,\"Nightmare on Elm Street, A (1984)\",Horror|Thriller\n1348,\"Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)\",Horror\n1349,Vampire in Venice (Nosferatu a Venezia) (Nosferatu in Venice) (1986),Horror\n1350,\"Omen, The (1976)\",Horror|Mystery|Thriller\n1351,Blood and Wine (Blood & Wine) (1996),Crime|Drama|Thriller\n1352,Albino Alligator (1996),Crime|Thriller\n1353,\"Mirror Has Two Faces, The (1996)\",Comedy|Drama|Romance\n1354,Breaking the Waves (1996),Drama|Mystery\n1355,Nightwatch (1997),Horror|Thriller\n1356,Star Trek: First Contact (1996),Action|Adventure|Sci-Fi|Thriller\n1357,Shine (1996),Drama|Romance\n1358,Sling Blade (1996),Drama\n1359,Jingle All the Way (1996),Children|Comedy\n1361,Paradise Lost: The Child Murders at Robin Hood Hills (1996),Documentary\n1363,\"Preacher's Wife, The (1996)\",Drama\n1365,Ridicule (1996),Drama\n1366,\"Crucible, The (1996)\",Drama\n1367,101 Dalmatians (1996),Adventure|Children|Comedy\n1369,I Can't Sleep (J'ai pas sommeil) (1994),Drama|Thriller\n1370,Die Hard 2 (1990),Action|Adventure|Thriller\n1371,Star Trek: The Motion Picture (1979),Adventure|Sci-Fi\n1372,Star Trek VI: The Undiscovered Country (1991),Action|Mystery|Sci-Fi\n1373,Star Trek V: The Final Frontier (1989),Action|Sci-Fi\n1374,Star Trek II: The Wrath of Khan (1982),Action|Adventure|Sci-Fi|Thriller\n1375,Star Trek III: The Search for Spock (1984),Action|Adventure|Sci-Fi\n1376,Star Trek IV: The Voyage Home (1986),Adventure|Comedy|Sci-Fi\n1377,Batman Returns (1992),Action|Crime\n1378,Young Guns (1988),Action|Comedy|Western\n1379,Young Guns II (1990),Action|Western\n1380,Grease (1978),Comedy|Musical|Romance\n1381,Grease 2 (1982),Comedy|Musical|Romance\n1382,Marked for Death (1990),Action|Drama\n1384,\"Substance of Fire, The (1996)\",Drama\n1385,Under Siege (1992),Action|Drama|Thriller\n1387,Jaws (1975),Action|Horror\n1388,Jaws 2 (1978),Horror|Thriller\n1389,Jaws 3-D (1983),Action|Horror\n1390,My Fellow Americans (1996),Comedy\n1391,Mars Attacks! (1996),Action|Comedy|Sci-Fi\n1392,Citizen Ruth (1996),Comedy|Drama\n1393,Jerry Maguire (1996),Drama|Romance\n1394,Raising Arizona (1987),Comedy\n1395,Tin Men (1987),Comedy|Drama\n1396,Sneakers (1992),Action|Comedy|Crime|Drama|Sci-Fi\n1397,Bastard Out of Carolina (1996),Drama\n1398,In Love and War (1996),Romance|War\n1399,Marvin's Room (1996),Drama\n1401,Ghosts of Mississippi (1996),Drama\n1404,Night Falls on Manhattan (1996),Crime|Drama\n1405,Beavis and Butt-Head Do America (1996),Adventure|Animation|Comedy|Crime\n1406,La Cérémonie (1995),Crime|Drama|Mystery|Thriller\n1407,Scream (1996),Comedy|Horror|Mystery|Thriller\n1408,\"Last of the Mohicans, The (1992)\",Action|Romance|War|Western\n1409,Michael (1996),Comedy|Drama|Fantasy|Romance\n1410,\"Evening Star, The (1996)\",Comedy|Drama\n1411,Hamlet (1996),Crime|Drama|Romance\n1413,\"Whole Wide World, The (1996)\",Drama\n1414,Mother (1996),Comedy\n1415,\"Thieves (Voleurs, Les) (1996)\",Crime|Drama|Romance\n1416,Evita (1996),Drama|Musical\n1417,\"Portrait of a Lady, The (1996)\",Drama\n1419,Walkabout (1971),Adventure|Drama\n1420,Message to Love: The Isle of Wight Festival (1996),Documentary\n1422,Murder at 1600 (1997),Crime|Drama|Mystery|Thriller\n1423,Hearts and Minds (1996),Drama\n1425,Fierce Creatures (1997),Comedy\n1427,Turbulence (1997),Action|Thriller\n1428,Angel Baby (1995),Drama\n1429,First Strike (Police Story 4: First Strike) (Ging chaat goo si 4: Ji gaan daan yam mo) (1996),Action|Adventure|Comedy|Thriller\n1430,Underworld (1996),Comedy|Thriller\n1431,Beverly Hills Ninja (1997),Action|Comedy\n1432,Metro (1997),Action|Comedy|Crime|Drama|Thriller\n1433,The Machine (1994),Horror|Sci-Fi|Thriller\n1437,\"Cement Garden, The (1993)\",Drama\n1438,Dante's Peak (1997),Action|Thriller\n1440,Amos & Andrew (1993),Comedy\n1441,Benny & Joon (1993),Comedy|Romance\n1442,Prefontaine (1997),Drama\n1444,Guantanamera (1994),Comedy\n1445,McHale's Navy (1997),Comedy|War\n1446,Kolya (Kolja) (1996),Comedy|Drama\n1447,Gridlock'd (1997),Crime\n1449,Waiting for Guffman (1996),Comedy\n1450,Prisoner of the Mountains (Kavkazsky plennik) (1996),War\n1453,\"Beautician and the Beast, The (1997)\",Comedy|Romance\n1454,SubUrbia (1997),Comedy|Drama\n1455,Hotel de Love (1996),Comedy|Romance\n1456,\"Pest, The (1997)\",Comedy\n1457,Fools Rush In (1997),Comedy|Drama|Romance\n1458,Touch (1997),Drama|Fantasy|Romance\n1459,Absolute Power (1997),Mystery|Thriller\n1460,That Darn Cat (1997),Children|Comedy|Mystery\n1461,Vegas Vacation (National Lampoon's Las Vegas Vacation) (1997),Comedy\n1463,That Old Feeling (1997),Comedy|Romance\n1464,Lost Highway (1997),Crime|Drama|Fantasy|Film-Noir|Mystery|Romance\n1465,Rosewood (1997),Action|Drama\n1466,Donnie Brasco (1997),Crime|Drama\n1468,Booty Call (1997),Comedy|Romance\n1472,City of Industry (1997),Crime|Thriller\n1473,Best Men (1997),Action|Comedy|Crime|Drama\n1474,Jungle2Jungle (a.k.a. Jungle 2 Jungle) (1997),Children|Comedy\n1475,Kama Sutra: A Tale of Love (1996),Romance\n1476,Private Parts (1997),Comedy|Drama\n1479,\"Saint, The (1997)\",Action|Romance|Sci-Fi|Thriller\n1480,Smilla's Sense of Snow (1997),Drama|Thriller\n1482,\"Van, The (1996)\",Comedy|Drama\n1483,Crash (1996),Drama|Thriller\n1484,\"Daytrippers, The (1996)\",Comedy|Drama|Mystery|Romance\n1485,Liar Liar (1997),Comedy\n1487,Selena (1997),Drama|Musical\n1488,\"Devil's Own, The (1997)\",Action|Drama|Thriller\n1489,Cats Don't Dance (1997),Animation|Children|Musical\n1490,B*A*P*S (1997),Comedy\n1493,Love and Other Catastrophes (1996),Romance\n1495,Turbo: A Power Rangers Movie (1997),Action|Adventure|Children\n1497,Double Team (1997),Action\n1498,Inventing the Abbotts (1997),Drama|Romance\n1499,Anaconda (1997),Action|Adventure|Thriller\n1500,Grosse Pointe Blank (1997),Comedy|Crime|Romance\n1501,Keys to Tulsa (1997),Crime\n1502,Kissed (1996),Drama|Romance\n1503,8 Heads in a Duffel Bag (1997),Comedy\n1504,Hollow Reed (1996),Drama\n1507,Paradise Road (1997),Drama|War\n1508,Traveller (1997),Drama\n1513,Romy and Michele's High School Reunion (1997),Comedy\n1515,Volcano (1997),Action|Drama|Thriller\n1516,Children of the Revolution (1996),Comedy\n1517,Austin Powers: International Man of Mystery (1997),Action|Adventure|Comedy\n1518,Breakdown (1997),Action|Thriller\n1523,\"Truth or Consequences, N.M. (1997)\",Action|Crime|Romance\n1525,Warriors of Virtue (1997),Action|Adventure|Children|Fantasy\n1526,Fathers' Day (1997),Comedy\n1527,\"Fifth Element, The (1997)\",Action|Adventure|Comedy|Sci-Fi\n1529,Nowhere (1997),Comedy|Drama\n1531,Losing Chase (1996),Drama\n1532,Sprung (1997),Comedy\n1535,Love! Valour! Compassion! (1997),Drama|Romance\n1537,Shall We Dance? (Shall We Dansu?) (1996),Comedy|Drama|Romance\n1539,Twin Town (1997),Comedy|Crime\n1541,Addicted to Love (1997),Comedy|Romance\n1542,Brassed Off (1996),Comedy|Drama|Romance\n1543,\"Designated Mourner, The (1997)\",Drama\n1544,\"Lost World: Jurassic Park, The (1997)\",Action|Adventure|Sci-Fi|Thriller\n1545,Ponette (1996),Drama\n1546,Schizopolis (1996),Comedy\n1549,Rough Magic (1995),Drama|Romance\n1550,Trial and Error (1997),Comedy|Romance\n1552,Con Air (1997),Action|Adventure|Thriller\n1554,\"Pillow Book, The (1996)\",Drama|Romance\n1555,\"To Have, or Not (En avoir (ou pas)) (1995)\",Drama\n1556,Speed 2: Cruise Control (1997),Action|Romance|Thriller\n1562,Batman & Robin (1997),Action|Adventure|Fantasy|Thriller\n1563,Dream With the Fishes (1997),Drama\n1564,For Roseanna (Roseanna's Grave) (1997),Comedy|Drama|Romance\n1566,Hercules (1997),Adventure|Animation|Children|Comedy|Musical\n1569,My Best Friend's Wedding (1997),Comedy|Romance\n1570,Tetsuo II: Body Hammer (1992),Horror|Sci-Fi\n1571,When the Cat's Away (Chacun cherche son chat) (1996),Comedy|Romance\n1572,\"Contempt (Mépris, Le) (1963)\",Drama\n1573,Face/Off (1997),Action|Crime|Drama|Thriller\n1575,Gabbeh (1996),Drama\n1580,Men in Black (a.k.a. MIB) (1997),Action|Comedy|Sci-Fi\n1581,Out to Sea (1997),Comedy\n1582,Wild America (1997),Adventure|Children\n1583,\"Simple Wish, A (1997)\",Children|Fantasy\n1584,Contact (1997),Drama|Sci-Fi\n1586,G.I. Jane (1997),Action|Drama\n1587,Conan the Barbarian (1982),Action|Adventure|Fantasy\n1588,George of the Jungle (1997),Children|Comedy\n1589,Cop Land (1997),Action|Crime|Drama|Thriller\n1590,Event Horizon (1997),Horror|Sci-Fi|Thriller\n1591,Spawn (1997),Action|Adventure|Sci-Fi|Thriller\n1592,Air Bud (1997),Children|Comedy\n1593,Picture Perfect (1997),Comedy|Romance\n1594,In the Company of Men (1997),Comedy|Drama\n1595,Free Willy 3: The Rescue (1997),Adventure|Children|Drama\n1596,Career Girls (1997),Drama\n1597,Conspiracy Theory (1997),Drama|Mystery|Romance|Thriller\n1598,Desperate Measures (1998),Crime|Drama|Thriller\n1599,Steel (1997),Action\n1600,She's So Lovely (1997),Drama|Romance\n1601,Hoodlum (1997),Crime|Drama|Film-Noir\n1602,Leave It to Beaver (1997),Comedy\n1603,Mimic (1997),Horror|Sci-Fi|Thriller\n1604,Money Talks (1997),Action|Comedy\n1605,Excess Baggage (1997),Adventure|Romance\n1606,Kull the Conqueror (1997),Action|Adventure\n1608,Air Force One (1997),Action|Thriller\n1609,187 (One Eight Seven) (1997),Drama|Thriller\n1610,\"Hunt for Red October, The (1990)\",Action|Adventure|Thriller\n1611,My Own Private Idaho (1991),Drama|Romance\n1612,\"Kiss Me, Guido (1997)\",Comedy\n1613,Star Maps (1997),Drama\n1614,In & Out (1997),Comedy\n1615,\"Edge, The (1997)\",Adventure|Drama\n1616,\"Peacemaker, The (1997)\",Action|Thriller|War\n1617,L.A. Confidential (1997),Crime|Film-Noir|Mystery|Thriller\n1619,Seven Years in Tibet (1997),Adventure|Drama|War\n1620,Kiss the Girls (1997),Crime|Drama|Mystery|Thriller\n1621,Soul Food (1997),Drama\n1623,Wishmaster (1997),Horror\n1624,\"Thousand Acres, A (1997)\",Drama\n1625,\"Game, The (1997)\",Drama|Mystery|Thriller\n1626,Fire Down Below (1997),Action|Drama|Thriller\n1627,U Turn (1997),Crime|Drama|Mystery\n1629,\"MatchMaker, The (1997)\",Comedy|Romance\n1631,\"Assignment, The (1997)\",Action|Thriller\n1632,\"Smile Like Yours, A (1997)\",Comedy|Romance\n1633,Ulee's Gold (1997),Drama\n1635,\"Ice Storm, The (1997)\",Drama\n1636,Stag (1997),Action|Thriller\n1639,Chasing Amy (1997),Comedy|Drama|Romance\n1640,How to Be a Player (1997),Comedy\n1641,\"Full Monty, The (1997)\",Comedy|Drama\n1642,Indian Summer (a.k.a. Alive & Kicking) (1996),Comedy|Drama\n1643,\"Mrs. Brown (a.k.a. Her Majesty, Mrs. Brown) (1997)\",Drama|Romance\n1644,I Know What You Did Last Summer (1997),Horror|Mystery|Thriller\n1645,The Devil's Advocate (1997),Drama|Mystery|Thriller\n1646,RocketMan (a.k.a. Rocket Man) (1997),Children|Comedy|Romance|Sci-Fi\n1647,Playing God (1997),Crime|Drama|Thriller\n1648,\"House of Yes, The (1997)\",Comedy|Drama\n1649,\"Fast, Cheap & Out of Control (1997)\",Documentary\n1652,Year of the Horse (1997),Documentary\n1653,Gattaca (1997),Drama|Sci-Fi|Thriller\n1654,FairyTale: A True Story (1997),Children|Drama|Fantasy\n1655,Phantoms (1998),Drama|Horror|Thriller\n1657,Wonderland (1997),Comedy|Documentary\n1658,\"Life Less Ordinary, A (1997)\",Romance|Thriller\n1660,Eve's Bayou (1997),Drama\n1661,Switchback (1997),Crime|Mystery|Thriller\n1663,Stripes (1981),Comedy|War\n1665,Bean (1997),Comedy\n1667,Mad City (1997),Action|Drama\n1668,One Night Stand (1997),Drama\n1669,\"Tango Lesson, The (1997)\",Romance\n1670,Welcome to Sarajevo (1997),Drama|War\n1671,Deceiver (1997),Crime|Drama|Thriller\n1672,\"Rainmaker, The (1997)\",Drama\n1673,Boogie Nights (1997),Drama\n1674,Witness (1985),Drama|Romance|Thriller\n1676,Starship Troopers (1997),Action|Sci-Fi\n1678,\"Joy Luck Club, The (1993)\",Drama|Romance\n1680,Sliding Doors (1998),Drama|Romance\n1681,Mortal Kombat: Annihilation (1997),Action|Adventure|Fantasy\n1682,\"Truman Show, The (1998)\",Comedy|Drama|Sci-Fi\n1683,\"Wings of the Dove, The (1997)\",Drama|Romance\n1684,Mrs. Dalloway (1997),Drama|Romance\n1686,Red Corner (1997),Crime|Thriller\n1687,\"Jackal, The (1997)\",Action|Thriller\n1688,Anastasia (1997),Adventure|Animation|Children|Drama|Musical\n1689,\"Man Who Knew Too Little, The (1997)\",Comedy|Crime|Thriller\n1690,Alien: Resurrection (1997),Action|Horror|Sci-Fi\n1692,Alien Escape (1995),Horror|Sci-Fi\n1693,Amistad (1997),Drama|Mystery\n1694,\"Apostle, The (1997)\",Drama\n1696,Bent (1997),Drama|War\n1699,\"Butcher Boy, The (1997)\",Comedy|Drama\n1701,Deconstructing Harry (1997),Comedy|Drama\n1702,Flubber (1997),Children|Comedy|Fantasy\n1703,For Richer or Poorer (1997),Comedy\n1704,Good Will Hunting (1997),Drama|Romance\n1707,Home Alone 3 (1997),Children|Comedy\n1711,Midnight in the Garden of Good and Evil (1997),Crime|Drama|Mystery\n1713,Mouse Hunt (1997),Children|Comedy\n1715,Office Killer (1997),Thriller\n1717,Scream 2 (1997),Comedy|Horror|Mystery|Thriller\n1719,\"Sweet Hereafter, The (1997)\",Drama\n1721,Titanic (1997),Drama|Romance\n1722,Tomorrow Never Dies (1997),Action|Adventure|Thriller\n1726,\"Postman, The (1997)\",Action|Adventure|Drama|Sci-Fi\n1727,\"Horse Whisperer, The (1998)\",Drama|Romance\n1728,\"Winter Guest, The (1997)\",Drama\n1729,Jackie Brown (1997),Crime|Drama|Thriller\n1730,Kundun (1997),Drama\n1731,Mr. Magoo (1997),Comedy\n1732,\"Big Lebowski, The (1998)\",Comedy|Crime\n1733,Afterglow (1997),Drama|Romance\n1734,My Life in Pink (Ma vie en rose) (1997),Comedy|Drama\n1735,Great Expectations (1998),Drama|Romance\n1739,3 Ninjas: High Noon On Mega Mountain (1998),Action|Children|Comedy\n1744,Firestorm (1998),Action|Adventure|Thriller\n1746,Senseless (1998),Comedy\n1747,Wag the Dog (1997),Comedy\n1748,Dark City (1998),Adventure|Film-Noir|Sci-Fi|Thriller\n1750,Star Kid (1997),Adventure|Children|Fantasy|Sci-Fi\n1752,Hard Rain (1998),Action|Crime|Thriller\n1753,Half Baked (1998),Comedy\n1754,Fallen (1998),Crime|Drama|Fantasy|Thriller\n1755,Shooting Fish (1997),Comedy|Romance\n1756,\"Prophecy II, The (1998)\",Horror\n1757,Fallen Angels (Duo luo tian shi) (1995),Drama|Romance\n1759,\"Four Days in September (O Que É Isso, Companheiro?) (1997)\",Drama\n1760,Spice World (1997),Comedy\n1762,Deep Rising (1998),Action|Horror|Sci-Fi\n1767,Music From Another Room (1998),Drama|Romance\n1769,\"Replacement Killers, The (1998)\",Action|Crime|Thriller\n1771,Night Flier (1997),Horror\n1772,Blues Brothers 2000 (1998),Action|Comedy|Musical\n1777,\"Wedding Singer, The (1998)\",Comedy|Romance\n1779,Sphere (1998),Sci-Fi|Thriller\n1783,Palmetto (1998),Crime|Drama|Mystery|Romance|Thriller\n1784,As Good as It Gets (1997),Comedy|Drama|Romance\n1785,King of New York (1990),Crime|Thriller\n1788,Men with Guns (1997),Action|Drama\n1791,Twilight (1998),Crime|Drama|Thriller\n1792,U.S. Marshals (1998),Action|Crime|Thriller\n1794,Love and Death on Long Island (1997),Comedy|Drama\n1795,\"Callejón de los milagros, El (1995)\",Drama\n1796,In God's Hands (1998),Action|Drama\n1797,Everest (1998),Documentary|IMAX\n1798,Hush (1998),Thriller\n1799,Suicide Kings (1997),Comedy|Crime|Drama|Mystery|Thriller\n1801,\"Man in the Iron Mask, The (1998)\",Action|Adventure|Drama\n1804,\"Newton Boys, The (1998)\",Crime|Drama\n1805,Wild Things (1998),Crime|Drama|Mystery|Thriller\n1806,Paulie (1998),Adventure|Children|Comedy\n1807,\"Cool, Dry Place, A (1998)\",Drama\n1809,Fireworks (Hana-bi) (1997),Crime|Drama\n1810,Primary Colors (1998),Comedy|Drama\n1812,Wide Awake (1998),Children|Comedy|Drama\n1816,Two Girls and a Guy (1997),Comedy|Drama\n1819,Storefront Hitchcock (1997),Documentary|Musical\n1821,\"Object of My Affection, The (1998)\",Comedy|Romance\n1822,Meet the Deedles (1998),Children|Comedy\n1824,Homegrown (1998),Comedy|Thriller\n1826,Barney's Great Adventure (1998),Adventure|Children\n1827,\"Big One, The (1997)\",Comedy|Documentary\n1831,Lost in Space (1998),Action|Adventure|Sci-Fi\n1833,Mercury Rising (1998),Action|Drama|Thriller\n1834,\"Spanish Prisoner, The (1997)\",Crime|Drama|Mystery|Thriller\n1835,City of Angels (1998),Drama|Fantasy|Romance\n1836,\"Last Days of Disco, The (1998)\",Comedy|Drama\n1837,\"Odd Couple II, The (1998)\",Comedy\n1839,My Giant (1998),Comedy\n1840,He Got Game (1998),Drama\n1841,\"Gingerbread Man, The (1998)\",Drama|Thriller\n1844,Live Flesh (Carne trémula) (1997),Drama|Romance\n1845,Zero Effect (1998),Comedy|Mystery|Thriller\n1846,Nil By Mouth (1997),Drama\n1848,\"Borrowers, The (1997)\",Adventure|Children|Comedy|Fantasy\n1852,Love Walked In (1998),Drama|Thriller\n1854,Kissing a Fool (1998),Comedy|Romance\n1855,Krippendorf's Tribe (1998),Comedy\n1856,Kurt & Courtney (1998),Documentary\n1858,Mr. Nice Guy (Yat goh ho yan) (1997),Action|Comedy\n1859,Taste of Cherry (Ta'm e guilass) (1997),Drama\n1860,Character (Karakter) (1997),Drama\n1861,Junk Mail (Budbringeren) (1997),Comedy|Thriller\n1862,Species II (1998),Horror|Sci-Fi\n1863,Major League: Back to the Minors (1998),Comedy\n1864,Sour Grapes (1998),Comedy\n1865,Wild Man Blues (1997),Documentary\n1866,\"Big Hit, The (1998)\",Action|Comedy|Crime\n1870,\"Dancer, Texas Pop. 81 (1998)\",Comedy|Drama\n1873,\"Misérables, Les (1998)\",Crime|Drama|Romance|War\n1874,Still Breathing (1997),Comedy|Romance\n1875,Clockwatchers (1997),Comedy\n1876,Deep Impact (1998),Drama|Sci-Fi|Thriller\n1878,Woo (1998),Comedy|Romance\n1880,Lawn Dogs (1997),Drama\n1881,Quest for Camelot (1998),Adventure|Animation|Children|Fantasy|Musical\n1882,Godzilla (1998),Action|Sci-Fi|Thriller\n1883,Bulworth (1998),Comedy|Drama|Romance\n1884,Fear and Loathing in Las Vegas (1998),Adventure|Comedy|Drama\n1885,\"Opposite of Sex, The (1998)\",Comedy|Drama|Romance\n1886,I Got the Hook Up (1998),Comedy\n1887,Almost Heroes (1998),Adventure|Comedy|Western\n1888,Hope Floats (1998),Comedy|Drama|Romance\n1889,Insomnia (1997),Drama|Mystery|Thriller\n1891,\"Ugly, The (1997)\",Horror|Thriller\n1892,\"Perfect Murder, A (1998)\",Thriller\n1894,Six Days Seven Nights (1998),Adventure|Comedy|Romance\n1895,Can't Hardly Wait (1998),Comedy|Drama|Romance\n1896,Cousin Bette (1998),Comedy\n1897,High Art (1998),Drama|Romance\n1900,\"Children of Heaven, The (Bacheha-Ye Aseman) (1997)\",Comedy|Drama\n1901,Dear Jesse (1997),Documentary\n1902,Dream for an Insomniac (1996),Drama|Romance\n1903,Hav Plenty (1997),Comedy\n1904,Henry Fool (1997),Comedy|Drama\n1907,Mulan (1998),Adventure|Animation|Children|Comedy|Drama|Musical|Romance\n1909,\"X-Files: Fight the Future, The (1998)\",Action|Crime|Mystery|Sci-Fi|Thriller\n1910,I Went Down (1997),Comedy|Crime|Drama\n1911,Dr. Dolittle (1998),Comedy\n1912,Out of Sight (1998),Comedy|Crime|Drama|Romance|Thriller\n1913,Picnic at Hanging Rock (1975),Drama|Mystery\n1914,Smoke Signals (1998),Comedy|Drama\n1916,Buffalo '66 (a.k.a. Buffalo 66) (1998),Drama|Romance\n1917,Armageddon (1998),Action|Romance|Sci-Fi|Thriller\n1918,Lethal Weapon 4 (1998),Action|Comedy|Crime|Thriller\n1919,Madeline (1998),Children|Comedy\n1920,Small Soldiers (1998),Animation|Children|Fantasy|War\n1921,Pi (1998),Drama|Sci-Fi|Thriller\n1922,Whatever (1998),Drama\n1923,There's Something About Mary (1998),Comedy|Romance\n1924,Plan 9 from Outer Space (1959),Horror|Sci-Fi\n1925,Wings (1927),Action|Drama|Romance|War\n1926,\"Broadway Melody, The (1929)\",Musical\n1927,All Quiet on the Western Front (1930),Action|Drama|War\n1928,Cimarron (1931),Drama|Western\n1929,Grand Hotel (1932),Drama|Romance\n1931,Mutiny on the Bounty (1935),Adventure|Drama\n1932,\"Great Ziegfeld, The (1936)\",Drama|Musical\n1933,\"Life of Emile Zola, The (1937)\",Drama\n1934,You Can't Take It with You (1938),Comedy|Romance\n1935,How Green Was My Valley (1941),Drama|Musical|Romance\n1936,Mrs. Miniver (1942),Drama|War\n1937,Going My Way (1944),Comedy|Drama|Musical\n1938,\"Lost Weekend, The (1945)\",Drama\n1939,\"Best Years of Our Lives, The (1946)\",Drama|War\n1940,Gentleman's Agreement (1947),Drama\n1941,Hamlet (1948),Drama\n1942,All the King's Men (1949),Drama\n1943,\"Greatest Show on Earth, The (1952)\",Drama\n1944,From Here to Eternity (1953),Drama|Romance|War\n1945,On the Waterfront (1954),Crime|Drama\n1946,Marty (1955),Drama|Romance\n1947,West Side Story (1961),Drama|Musical|Romance\n1948,Tom Jones (1963),Adventure|Comedy|Romance\n1949,\"Man for All Seasons, A (1966)\",Drama\n1950,In the Heat of the Night (1967),Drama|Mystery\n1951,Oliver! (1968),Drama|Musical\n1952,Midnight Cowboy (1969),Drama\n1953,\"French Connection, The (1971)\",Action|Crime|Thriller\n1954,Rocky (1976),Drama\n1955,Kramer vs. Kramer (1979),Drama\n1956,Ordinary People (1980),Drama\n1957,Chariots of Fire (1981),Drama\n1958,Terms of Endearment (1983),Comedy|Drama\n1959,Out of Africa (1985),Drama|Romance\n1960,\"Last Emperor, The (1987)\",Drama\n1961,Rain Man (1988),Drama\n1962,Driving Miss Daisy (1989),Drama\n1963,Take the Money and Run (1969),Comedy|Crime\n1964,Klute (1971),Drama|Mystery\n1965,Repo Man (1984),Comedy|Sci-Fi\n1966,Metropolitan (1990),Comedy\n1967,Labyrinth (1986),Adventure|Fantasy|Musical\n1968,\"Breakfast Club, The (1985)\",Comedy|Drama\n1969,\"Nightmare on Elm Street 2: Freddy's Revenge, A (1985)\",Horror\n1970,\"Nightmare on Elm Street 3: Dream Warriors, A (1987)\",Horror|Thriller\n1971,\"Nightmare on Elm Street 4: The Dream Master, A (1988)\",Horror|Thriller\n1972,\"Nightmare on Elm Street 5: The Dream Child, A (1989)\",Horror\n1973,\"Freddy's Dead: The Final Nightmare (Nightmare on Elm Street Part 6: Freddy's Dead, A) (1991)\",Horror\n1974,Friday the 13th (1980),Horror|Mystery|Thriller\n1975,Friday the 13th Part 2 (1981),Horror\n1976,Friday the 13th Part 3: 3D (1982),Horror\n1977,Friday the 13th Part IV: The Final Chapter (1984),Horror\n1978,Friday the 13th Part V: A New Beginning (1985),Horror\n1979,Friday the 13th Part VI: Jason Lives (1986),Horror\n1980,Friday the 13th Part VII: The New Blood (1988),Horror\n1981,Friday the 13th Part VIII: Jason Takes Manhattan (1989),Horror\n1982,Halloween (1978),Horror\n1983,Halloween II (1981),Horror\n1984,Halloween III: Season of the Witch (1982),Horror\n1985,Halloween 4: The Return of Michael Myers (1988),Horror\n1986,Halloween 5: The Revenge of Michael Myers (1989),Horror\n1987,Prom Night (1980),Horror\n1988,Prom Night II (1987),Horror|Thriller\n1989,Prom Night III: The Last Kiss (1989),Horror\n1990,Prom Night IV: Deliver Us From Evil (1992),Horror\n1991,Child's Play (1988),Horror|Thriller\n1992,Child's Play 2 (1990),Horror|Thriller\n1993,Child's Play 3 (1991),Comedy|Horror|Thriller\n1994,Poltergeist (1982),Horror|Thriller\n1995,Poltergeist II: The Other Side (1986),Horror|Thriller\n1996,Poltergeist III (1988),Horror|Thriller\n1997,\"Exorcist, The (1973)\",Horror|Mystery\n1998,Exorcist II: The Heretic (1977),Horror\n1999,\"Exorcist III, The (1990)\",Horror\n2000,Lethal Weapon (1987),Action|Comedy|Crime|Drama\n2001,Lethal Weapon 2 (1989),Action|Comedy|Crime|Drama\n2002,Lethal Weapon 3 (1992),Action|Comedy|Crime|Drama\n2003,Gremlins (1984),Comedy|Horror\n2004,Gremlins 2: The New Batch (1990),Comedy|Horror\n2005,\"Goonies, The (1985)\",Action|Adventure|Children|Comedy|Fantasy\n2006,\"Mask of Zorro, The (1998)\",Action|Comedy|Romance\n2007,Polish Wedding (1998),Comedy\n2008,\"This World, Then the Fireworks (1997)\",Crime|Drama|Film-Noir\n2009,Soylent Green (1973),Drama|Mystery|Sci-Fi|Thriller\n2010,Metropolis (1927),Drama|Sci-Fi\n2011,Back to the Future Part II (1989),Adventure|Comedy|Sci-Fi\n2012,Back to the Future Part III (1990),Adventure|Comedy|Sci-Fi|Western\n2013,\"Poseidon Adventure, The (1972)\",Action|Adventure|Drama\n2014,Freaky Friday (1977),Children|Comedy|Fantasy\n2015,\"Absent-Minded Professor, The (1961)\",Children|Comedy|Fantasy\n2016,\"Apple Dumpling Gang Rides Again, The (1979)\",Children|Comedy|Western\n2017,Babes in Toyland (1961),Children|Fantasy|Musical\n2018,Bambi (1942),Animation|Children|Drama\n2019,Seven Samurai (Shichinin no samurai) (1954),Action|Adventure|Drama\n2020,Dangerous Liaisons (1988),Drama|Romance\n2021,Dune (1984),Adventure|Sci-Fi\n2022,\"Last Temptation of Christ, The (1988)\",Drama\n2023,\"Godfather: Part III, The (1990)\",Crime|Drama|Mystery|Thriller\n2024,\"Rapture, The (1991)\",Drama|Mystery\n2025,Lolita (1997),Drama|Romance\n2026,Disturbing Behavior (1998),Horror|Thriller\n2027,Jane Austen's Mafia! (1998),Comedy|Crime\n2028,Saving Private Ryan (1998),Action|Drama|War\n2029,Billy's Hollywood Screen Kiss (1997),Comedy|Romance\n2031,\"Million Dollar Duck, The (a.k.a. $1,000,000 Duck) (1971)\",Children|Comedy\n2032,\"Barefoot Executive, The (1971)\",Children|Comedy\n2033,\"Black Cauldron, The (1985)\",Adventure|Animation|Children|Fantasy\n2034,\"Black Hole, The (1979)\",Children|Sci-Fi\n2035,Blackbeard's Ghost (1968),Children|Comedy\n2036,Blank Check (1994),Children|Comedy\n2037,Candleshoe (1977),Adventure|Children|Comedy\n2038,\"Cat from Outer Space, The (1978)\",Children|Comedy|Sci-Fi\n2039,Cheetah (1989),Adventure|Children\n2040,\"Computer Wore Tennis Shoes, The (1969)\",Children|Comedy\n2041,Condorman (1981),Action|Adventure|Children|Comedy\n2042,D2: The Mighty Ducks (1994),Children|Comedy\n2043,Darby O'Gill and the Little People (1959),Adventure|Children|Fantasy\n2044,\"Devil and Max Devlin, The (1981)\",Comedy|Fantasy\n2045,\"Far Off Place, A (1993)\",Adventure|Children|Drama|Romance\n2046,Flight of the Navigator (1986),Adventure|Children|Sci-Fi\n2047,\"Gnome-Mobile, The (1967)\",Adventure|Children|Fantasy|Musical\n2048,\"Great Mouse Detective, The (1986)\",Action|Animation|Children|Crime\n2049,\"Happiest Millionaire, The (1967)\",Comedy|Musical\n2050,Herbie Goes Bananas (1980),Adventure|Children|Comedy\n2051,Herbie Goes to Monte Carlo (1977),Adventure|Children|Comedy\n2052,Hocus Pocus (1993),Children|Comedy|Fantasy|Horror\n2053,\"Honey, I Blew Up the Kid (1992)\",Children|Comedy|Sci-Fi\n2054,\"Honey, I Shrunk the Kids (1989)\",Adventure|Children|Comedy|Fantasy|Sci-Fi\n2055,Hot Lead and Cold Feet (1978),Action|Comedy|Western\n2056,In Search of the Castaways (1962),Adventure|Children\n2057,\"Incredible Journey, The (1963)\",Adventure|Children\n2058,\"Negotiator, The (1998)\",Action|Crime|Drama|Mystery|Thriller\n2059,\"Parent Trap, The (1998)\",Children|Comedy|Romance\n2060,BASEketball (1998),Comedy\n2062,\"Governess, The (1998)\",Drama|Romance\n2063,\"Seventh Heaven (Septième ciel, Le) (1997)\",Drama|Romance\n2064,Roger & Me (1989),Documentary\n2065,\"Purple Rose of Cairo, The (1985)\",Comedy|Drama|Fantasy|Romance\n2066,Out of the Past (1947),Film-Noir\n2067,Doctor Zhivago (1965),Drama|Romance|War\n2068,Fanny and Alexander (Fanny och Alexander) (1982),Drama|Fantasy|Mystery\n2069,\"Trip to Bountiful, The (1985)\",Drama\n2070,Tender Mercies (1983),Drama|Romance|Western\n2071,And the Band Played On (1993),Drama\n2072,\"'burbs, The (1989)\",Comedy\n2073,Fandango (1985),Comedy\n2074,\"Night Porter, The (Portiere di notte, Il) (1974)\",Crime|Drama|Romance\n2075,Mephisto (1981),Drama|War\n2076,Blue Velvet (1986),Drama|Mystery|Thriller\n2077,\"Journey of Natty Gann, The (1985)\",Adventure|Children\n2078,\"Jungle Book, The (1967)\",Animation|Children|Comedy|Musical\n2079,Kidnapped (1960),Adventure|Children|Drama\n2080,Lady and the Tramp (1955),Animation|Children|Comedy|Romance\n2081,\"Little Mermaid, The (1989)\",Animation|Children|Comedy|Musical|Romance\n2082,\"Mighty Ducks, The (1992)\",Children|Comedy\n2083,\"Muppet Christmas Carol, The (1992)\",Children|Comedy|Musical\n2084,Newsies (1992),Children|Musical\n2085,101 Dalmatians (One Hundred and One Dalmatians) (1961),Adventure|Animation|Children\n2086,One Magic Christmas (1985),Drama|Fantasy\n2087,Peter Pan (1953),Animation|Children|Fantasy|Musical\n2088,Popeye (1980),Adventure|Comedy|Musical\n2089,\"Rescuers Down Under, The (1990)\",Adventure|Animation|Children\n2090,\"Rescuers, The (1977)\",Adventure|Animation|Children|Crime|Drama\n2091,Return from Witch Mountain (1978),Children|Sci-Fi\n2092,\"Return of Jafar, The (1994)\",Adventure|Animation|Children|Fantasy|Musical|Romance\n2093,Return to Oz (1985),Adventure|Children|Fantasy\n2094,\"Rocketeer, The (1991)\",Action|Adventure|Sci-Fi\n2095,\"Shaggy D.A., The (1976)\",Children|Comedy\n2096,Sleeping Beauty (1959),Animation|Children|Musical\n2097,Something Wicked This Way Comes (1983),Children|Drama|Fantasy|Mystery|Thriller\n2098,Son of Flubber (1963),Children|Comedy\n2099,Song of the South (1946),Adventure|Animation|Children|Musical\n2100,Splash (1984),Comedy|Fantasy|Romance\n2101,Squanto: A Warrior's Tale (1994),Adventure|Drama\n2102,Steamboat Willie (1928),Animation|Children|Comedy|Musical\n2103,Tall Tale (1995),Adventure|Children|Fantasy|Western\n2104,Tex (1982),Drama\n2105,Tron (1982),Action|Adventure|Sci-Fi\n2106,Swing Kids (1993),Drama|War\n2107,Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode) (1998),Horror|Thriller\n2108,L.A. Story (1991),Comedy|Romance\n2109,\"Jerk, The (1979)\",Comedy\n2110,Dead Men Don't Wear Plaid (1982),Comedy|Crime|Thriller\n2111,\"Man with Two Brains, The (1983)\",Comedy\n2112,Grand Canyon (1991),Crime|Drama\n2113,Graveyard Shift (Stephen King's Graveyard Shift) (1990),Horror|Thriller\n2114,\"Outsiders, The (1983)\",Drama\n2115,Indiana Jones and the Temple of Doom (1984),Action|Adventure|Fantasy\n2116,\"Lord of the Rings, The (1978)\",Adventure|Animation|Children|Fantasy\n2117,1984 (Nineteen Eighty-Four) (1984),Drama|Sci-Fi\n2118,\"Dead Zone, The (1983)\",Thriller\n2119,Maximum Overdrive (1986),Horror\n2120,Needful Things (1993),Drama|Horror\n2121,Cujo (1983),Horror|Thriller\n2122,Children of the Corn (1984),Horror|Thriller\n2123,All Dogs Go to Heaven (1989),Animation|Children|Comedy|Drama|Fantasy\n2124,\"Addams Family, The (1991)\",Children|Comedy|Fantasy\n2125,Ever After: A Cinderella Story (1998),Comedy|Drama|Romance\n2126,Snake Eyes (1998),Action|Crime|Mystery|Thriller\n2128,Safe Men (1998),Comedy\n2130,Atlantic City (1980),Crime|Drama|Romance\n2131,Autumn Sonata (Höstsonaten) (1978),Drama\n2132,Who's Afraid of Virginia Woolf? (1966),Drama\n2133,Adventures in Babysitting (1987),Adventure|Comedy\n2134,Weird Science (1985),Comedy|Fantasy|Sci-Fi\n2135,Doctor Dolittle (1967),Adventure|Children|Musical\n2136,\"Nutty Professor, The (1963)\",Comedy|Sci-Fi\n2137,Charlotte's Web (1973),Animation|Children\n2138,Watership Down (1978),Adventure|Animation|Children|Drama|Fantasy\n2139,\"Secret of NIMH, The (1982)\",Adventure|Animation|Children|Drama\n2140,\"Dark Crystal, The (1982)\",Adventure|Fantasy\n2141,\"American Tail, An (1986)\",Adventure|Animation|Children|Comedy\n2142,\"American Tail: Fievel Goes West, An (1991)\",Adventure|Animation|Children|Musical|Western\n2143,Legend (1985),Adventure|Fantasy|Romance\n2144,Sixteen Candles (1984),Comedy|Romance\n2145,Pretty in Pink (1986),Comedy|Drama|Romance\n2146,St. Elmo's Fire (1985),Drama|Romance\n2147,\"Clan of the Cave Bear, The (1986)\",Adventure|Drama|Fantasy\n2148,House (1986),Comedy|Fantasy|Horror\n2149,House II: The Second Story (1987),Comedy|Fantasy|Horror\n2150,\"Gods Must Be Crazy, The (1980)\",Adventure|Comedy\n2151,\"Gods Must Be Crazy II, The (1989)\",Comedy\n2152,Air Bud: Golden Receiver (1998),Children|Comedy\n2153,\"Avengers, The (1998)\",Action|Adventure\n2154,How Stella Got Her Groove Back (1998),Drama|Romance\n2155,\"Slums of Beverly Hills, The (1998)\",Comedy|Drama\n2159,Henry: Portrait of a Serial Killer (1986),Crime|Horror|Thriller\n2160,Rosemary's Baby (1968),Drama|Horror|Thriller\n2161,\"NeverEnding Story, The (1984)\",Adventure|Children|Fantasy\n2162,\"NeverEnding Story II: The Next Chapter, The (1990)\",Adventure|Children|Fantasy\n2163,Attack of the Killer Tomatoes! (1978),Comedy|Horror\n2164,Surf Nazis Must Die (1987),Action|Comedy|Drama|Horror\n2165,Your Friends and Neighbors (1998),Comedy|Drama\n2166,Return to Paradise (1998),Crime|Drama|Romance|Thriller\n2167,Blade (1998),Action|Horror|Thriller\n2168,Dance with Me (1998),Drama|Romance\n2169,Dead Man on Campus (1998),Comedy\n2170,Wrongfully Accused (1998),Action|Comedy\n2171,Next Stop Wonderland (1998),Comedy|Drama|Romance\n2173,\"Navigator: A Mediaeval Odyssey, The (1988)\",Adventure|Fantasy|Sci-Fi\n2174,Beetlejuice (1988),Comedy|Fantasy\n2176,Rope (1948),Crime|Drama|Thriller\n2177,Family Plot (1976),Comedy|Thriller\n2178,Frenzy (1972),Thriller\n2180,Torn Curtain (1966),Thriller\n2181,Marnie (1964),Drama|Mystery|Romance|Thriller\n2182,\"Wrong Man, The (1956)\",Drama|Film-Noir|Thriller\n2183,\"Man Who Knew Too Much, The (1956)\",Adventure|Drama|Mystery|Thriller\n2184,\"Trouble with Harry, The (1955)\",Comedy|Mystery\n2186,Strangers on a Train (1951),Crime|Drama|Film-Noir|Thriller\n2187,Stage Fright (1950),Mystery|Romance|Thriller\n2188,54 (1998),Drama\n2189,I Married A Strange Person! (1997),Animation|Comedy|Fantasy|Sci-Fi\n2190,Why Do Fools Fall In Love? (1998),Drama\n2191,\"Merry War, A (1997)\",Comedy\n2193,Willow (1988),Action|Adventure|Fantasy\n2194,\"Untouchables, The (1987)\",Action|Crime|Drama\n2195,Dirty Work (1998),Comedy\n2197,Firelight (1997),Drama\n2200,Under Capricorn (1949),Drama\n2201,\"Paradine Case, The (1947)\",Drama\n2202,Lifeboat (1944),Drama|War\n2203,Shadow of a Doubt (1943),Crime|Drama|Thriller\n2204,Saboteur (1942),Mystery|Thriller\n2205,Mr. & Mrs. Smith (1941),Comedy|Romance\n2206,Suspicion (1941),Film-Noir|Mystery|Thriller\n2207,Jamaica Inn (1939),Drama\n2208,\"Lady Vanishes, The (1938)\",Drama|Mystery|Thriller\n2210,Sabotage (1936),Thriller\n2212,\"Man Who Knew Too Much, The (1934)\",Drama|Thriller\n2214,Number Seventeen (a.k.a. Number 17) (1932),Thriller\n2215,Rich and Strange (1931),Comedy|Romance\n2219,Murder! (1930),Mystery|Thriller\n2221,Blackmail (1929),Drama|Thriller\n2227,\"Lodger: A Story of the London Fog, The (1927)\",Crime|Drama|Thriller\n2231,Rounders (1998),Drama\n2232,Cube (1997),Horror|Mystery|Sci-Fi|Thriller\n2236,Simon Birch (1998),Drama\n2237,Without Limits (1998),Drama\n2238,Seven Beauties (Pasqualino Settebellezze) (1976),Comedy|Drama\n2239,Swept Away (Travolti da un insolito destino nell'azzurro mare d'Agosto) (1975),Comedy|Drama\n2240,My Bodyguard (1980),Drama\n2241,Class (1983),Comedy\n2243,Broadcast News (1987),Comedy|Drama|Romance\n2244,\"Allnighter, The (1987)\",Comedy|Romance\n2245,Working Girl (1988),Comedy|Drama|Romance\n2246,Stars and Bars (1988),Action|Comedy|Romance\n2247,Married to the Mob (1988),Comedy\n2248,Say Anything... (1989),Comedy|Drama|Romance\n2249,My Blue Heaven (1990),Comedy\n2250,Men Don't Leave (1990),Drama\n2252,Hero (1992),Comedy|Drama\n2253,Toys (1992),Comedy|Fantasy\n2254,Choices (1981),Drama\n2255,Young Doctors in Love (1982),Comedy\n2256,Parasite (1982),Horror|Sci-Fi\n2257,No Small Affair (1984),Comedy|Romance\n2259,Blame It on Rio (1984),Comedy|Romance\n2260,Wisdom (1986),Crime|Drama\n2261,One Crazy Summer (1986),Comedy\n2262,About Last Night... (1986),Comedy|Drama|Romance\n2263,\"Seventh Sign, The (1988)\",Drama|Fantasy|Thriller\n2264,We're No Angels (1989),Comedy|Crime\n2265,Nothing But Trouble (1991),Adventure|Comedy\n2266,\"Butcher's Wife, The (1991)\",Comedy|Romance\n2267,Mortal Thoughts (1991),Mystery|Thriller\n2268,\"Few Good Men, A (1992)\",Crime|Drama|Thriller\n2269,Indecent Proposal (1993),Drama|Romance\n2271,Permanent Midnight (1998),Drama\n2272,One True Thing (1998),Drama\n2273,Rush Hour (1998),Action|Comedy|Crime|Thriller\n2275,Six-String Samurai (1998),Action|Adventure|Sci-Fi\n2276,\"Soldier's Daughter Never Cries, A (1998)\",Drama\n2278,Ronin (1998),Action|Crime|Thriller\n2279,Urban Legend (1998),Horror|Thriller\n2280,Clay Pigeons (1998),Crime\n2282,Pecker (1998),Comedy|Drama\n2283,\"Sheltering Sky, The (1990)\",Drama\n2284,Bandit Queen (1994),Drama\n2285,If.... (1968),Drama\n2286,\"Fiendish Plot of Dr. Fu Manchu, The (1980)\",Comedy\n2287,Them! (1954),Horror|Sci-Fi|Thriller\n2288,\"Thing, The (1982)\",Action|Horror|Sci-Fi|Thriller\n2289,\"Player, The (1992)\",Comedy|Crime|Drama\n2290,Stardust Memories (1980),Comedy|Drama\n2291,Edward Scissorhands (1990),Drama|Fantasy|Romance\n2292,Overnight Delivery (1998),Comedy|Romance\n2294,Antz (1998),Adventure|Animation|Children|Comedy|Fantasy\n2295,\"Impostors, The (1998)\",Comedy\n2296,\"Night at the Roxbury, A (1998)\",Comedy\n2297,What Dreams May Come (1998),Adventure|Drama|Fantasy|Romance\n2300,\"Producers, The (1968)\",Comedy\n2301,History of the World: Part I (1981),Comedy|Musical\n2302,My Cousin Vinny (1992),Comedy\n2303,Nashville (1975),Drama|Musical\n2304,Love Is the Devil (1998),Drama\n2305,Slam (1998),Drama\n2306,Holy Man (1998),Comedy\n2307,One Tough Cop (1998),Action|Crime\n2310,\"Mighty, The (1998)\",Drama\n2311,2010: The Year We Make Contact (1984),Sci-Fi\n2312,Children of a Lesser God (1986),Drama\n2313,\"Elephant Man, The (1980)\",Drama\n2314,Beloved (1998),Drama\n2315,Bride of Chucky (Child's Play 4) (1998),Comedy|Horror|Thriller\n2316,Practical Magic (1998),Drama|Fantasy|Mystery|Romance\n2318,Happiness (1998),Comedy|Drama\n2320,Apt Pupil (1998),Drama|Thriller\n2321,Pleasantville (1998),Comedy|Drama|Fantasy\n2322,Soldier (1998),Action|Sci-Fi|War\n2323,\"Cruise, The (1998)\",Documentary\n2324,Life Is Beautiful (La Vita è bella) (1997),Comedy|Drama|Romance|War\n2325,Orgazmo (1997),Comedy\n2327,Tales from the Darkside: The Movie (1990),Fantasy|Horror|Thriller\n2328,Vampires (1998),Horror|Western\n2329,American History X (1998),Crime|Drama\n2330,Hands on a Hard Body (1996),Comedy|Documentary\n2331,Living Out Loud (1998),Comedy|Drama|Romance\n2333,Gods and Monsters (1998),Drama\n2334,\"Siege, The (1998)\",Action|Thriller\n2335,\"Waterboy, The (1998)\",Comedy\n2336,Elizabeth (1998),Drama\n2337,Velvet Goldmine (1998),Drama\n2338,I Still Know What You Did Last Summer (1998),Horror|Mystery|Thriller\n2339,I'll Be Home For Christmas (1998),Comedy|Romance\n2340,Meet Joe Black (1998),Romance\n2342,Hard Core Logo (1996),Comedy|Drama\n2344,Runaway Train (1985),Action|Adventure|Drama|Thriller\n2345,Desert Bloom (1986),Drama\n2346,\"Stepford Wives, The (1975)\",Mystery|Sci-Fi|Thriller\n2347,\"Pope of Greenwich Village, The (1984)\",Drama\n2348,Sid and Nancy (1986),Drama\n2349,Mona Lisa (1986),Comedy|Thriller\n2350,Heart Condition (1990),Comedy\n2351,\"Nights of Cabiria (Notti di Cabiria, Le) (1957)\",Drama\n2352,\"Big Chill, The (1983)\",Comedy|Drama\n2353,Enemy of the State (1998),Action|Thriller\n2354,\"Rugrats Movie, The (1998)\",Animation|Children|Comedy\n2355,\"Bug's Life, A (1998)\",Adventure|Animation|Children|Comedy\n2356,Celebrity (1998),Comedy\n2357,Central Station (Central do Brasil) (1998),Drama\n2359,Waking Ned Devine (a.k.a. Waking Ned) (1998),Comedy\n2360,\"Celebration, The (Festen) (1998)\",Drama\n2361,Pink Flamingos (1972),Comedy\n2362,Glen or Glenda (1953),Drama\n2363,Godzilla (Gojira) (1954),Drama|Horror|Sci-Fi\n2364,\"Godzilla 1985: The Legend Is Reborn (Gojira) (Godzilla) (Return of Godzilla, The) (1984)\",Action|Horror|Sci-Fi|Thriller\n2365,King Kong vs. Godzilla (Kingukongu tai Gojira) (1962),Action|Sci-Fi\n2366,King Kong (1933),Action|Adventure|Fantasy|Horror\n2367,King Kong (1976),Adventure|Fantasy|Romance|Sci-Fi|Thriller\n2368,King Kong Lives (1986),Adventure|Sci-Fi\n2369,Desperately Seeking Susan (1985),Comedy|Drama|Romance\n2370,\"Emerald Forest, The (1985)\",Action|Adventure|Drama\n2371,Fletch (1985),Comedy|Crime|Mystery\n2372,Fletch Lives (1989),Comedy\n2373,Red Sonja (1985),Action|Adventure|Fantasy\n2374,Gung Ho (1986),Comedy|Drama\n2375,\"Money Pit, The (1986)\",Comedy\n2376,\"View to a Kill, A (1985)\",Action|Adventure|Thriller\n2377,Lifeforce (1985),Horror|Sci-Fi\n2378,Police Academy (1984),Comedy|Crime\n2379,Police Academy 2: Their First Assignment (1985),Comedy|Crime\n2380,Police Academy 3: Back in Training (1986),Comedy|Crime\n2381,Police Academy 4: Citizens on Patrol (1987),Comedy|Crime\n2382,Police Academy 5: Assignment: Miami Beach (1988),Comedy|Crime\n2383,Police Academy 6: City Under Siege (1989),Comedy|Crime\n2384,Babe: Pig in the City (1998),Adventure|Children|Drama\n2385,Home Fries (1998),Comedy|Romance\n2386,Jerry Springer: Ringmaster (1998),Comedy|Drama\n2387,Very Bad Things (1998),Comedy|Crime\n2388,Steam: The Turkish Bath (Hamam) (1997),Drama|Romance\n2389,Psycho (1998),Crime|Horror|Thriller\n2390,Little Voice (1998),Comedy\n2391,\"Simple Plan, A (1998)\",Crime|Drama|Thriller\n2392,Jack Frost (1998),Children|Comedy|Drama\n2393,Star Trek: Insurrection (1998),Action|Drama|Romance|Sci-Fi\n2394,\"Prince of Egypt, The (1998)\",Animation|Musical\n2395,Rushmore (1998),Comedy|Drama\n2396,Shakespeare in Love (1998),Comedy|Drama|Romance\n2397,Mass Appeal (1984),Drama\n2398,Miracle on 34th Street (1947),Comedy|Drama\n2399,Santa Claus: The Movie (1985),Adventure|Children|Fantasy\n2400,Prancer (1989),Children|Drama|Fantasy\n2401,Pale Rider (1985),Western\n2402,Rambo: First Blood Part II (1985),Action|Adventure|Thriller\n2403,First Blood (Rambo: First Blood) (1982),Action|Adventure|Drama|Thriller\n2404,Rambo III (1988),Action|Adventure|Thriller|War\n2405,\"Jewel of the Nile, The (1985)\",Action|Adventure|Comedy|Romance\n2406,Romancing the Stone (1984),Action|Adventure|Comedy|Romance\n2407,Cocoon (1985),Comedy|Sci-Fi\n2408,Cocoon: The Return (1988),Comedy|Sci-Fi\n2409,Rocky II (1979),Action|Drama\n2410,Rocky III (1982),Action|Drama\n2411,Rocky IV (1985),Action|Drama\n2412,Rocky V (1990),Action|Drama\n2413,Clue (1985),Comedy|Crime|Mystery|Thriller\n2414,Young Sherlock Holmes (1985),Action|Adventure|Children|Fantasy|Mystery|Thriller\n2415,Violets Are Blue... (1986),Drama|Romance\n2416,Back to School (1986),Comedy\n2417,Heartburn (1986),Comedy|Drama\n2418,Nothing in Common (1986),Comedy\n2419,Extremities (1986),Drama|Thriller\n2420,\"Karate Kid, The (1984)\",Drama\n2421,\"Karate Kid, Part II, The (1986)\",Action|Adventure|Drama\n2422,\"Karate Kid, Part III, The (1989)\",Action|Adventure|Children|Drama\n2423,Christmas Vacation (National Lampoon's Christmas Vacation) (1989),Comedy\n2424,You've Got Mail (1998),Comedy|Romance\n2425,\"General, The (1998)\",Crime\n2427,\"Thin Red Line, The (1998)\",Action|Drama|War\n2428,\"Faculty, The (1998)\",Horror|Sci-Fi\n2429,Mighty Joe Young (1998),Action|Adventure|Drama|Fantasy|Thriller\n2430,Mighty Joe Young (1949),Adventure|Children|Drama\n2431,Patch Adams (1998),Comedy|Drama\n2432,Stepmom (1998),Drama\n2433,\"Civil Action, A (1998)\",Drama\n2434,Down in the Delta (1998),Drama\n2435,Hurlyburly (1998),Drama\n2436,Tea with Mussolini (1999),Comedy|Drama|War\n2437,Wilde (1997),Drama\n2438,Outside Ozona (1998),Comedy|Drama|Thriller\n2439,Affliction (1997),Drama\n2440,Another Day in Paradise (1998),Drama\n2441,\"Hi-Lo Country, The (1998)\",Drama|Romance|Western\n2442,Hilary and Jackie (1998),Drama\n2443,Playing by Heart (1998),Drama|Romance\n2445,At First Sight (1999),Drama\n2446,In Dreams (1999),Horror|Thriller\n2447,Varsity Blues (1999),Comedy|Drama\n2448,Virus (1999),Horror|Sci-Fi\n2449,\"Garbage Pail Kids Movie, The (1987)\",Adventure|Children|Comedy\n2450,Howard the Duck (1986),Adventure|Comedy|Sci-Fi\n2451,\"Gate, The (1987)\",Horror\n2453,\"Boy Who Could Fly, The (1986)\",Drama|Fantasy\n2454,\"Fly, The (1958)\",Horror|Mystery|Sci-Fi\n2455,\"Fly, The (1986)\",Drama|Horror|Sci-Fi|Thriller\n2456,\"Fly II, The (1989)\",Horror|Sci-Fi\n2457,Running Scared (1986),Action|Comedy\n2458,Armed and Dangerous (1986),Comedy|Crime\n2459,\"Texas Chainsaw Massacre, The (1974)\",Horror\n2460,\"Texas Chainsaw Massacre 2, The (1986)\",Horror\n2461,Leatherface: Texas Chainsaw Massacre III (1990),Comedy|Horror|Thriller\n2462,Texas Chainsaw Massacre: The Next Generation (a.k.a. The Return of the Texas Chainsaw Massacre) (1994),Horror\n2463,Ruthless People (1986),Comedy\n2464,Trick or Treat (1986),Horror\n2465,Deadly Friend (1986),Horror\n2467,\"Name of the Rose, The (Name der Rose, Der) (1986)\",Crime|Drama|Mystery|Thriller\n2468,Jumpin' Jack Flash (1986),Action|Comedy|Romance|Thriller\n2469,Peggy Sue Got Married (1986),Comedy|Drama\n2470,Crocodile Dundee (1986),Adventure|Comedy\n2471,Crocodile Dundee II (1988),Action|Adventure|Comedy\n2472,Tough Guys (1986),Comedy\n2473,Soul Man (1986),Comedy\n2474,\"Color of Money, The (1986)\",Drama\n2475,52 Pick-Up (1986),Action|Mystery|Thriller\n2476,Heartbreak Ridge (1986),Action|War\n2478,¡Three Amigos! (1986),Comedy|Western\n2479,Gloria (1999),Drama|Thriller\n2481,My Name Is Joe (1998),Drama|Romance\n2482,Still Crazy (1998),Comedy|Romance\n2483,\"Day of the Beast, The (Día de la Bestia, El) (1995)\",Adventure|Comedy|Thriller\n2485,She's All That (1999),Comedy|Romance\n2486,\"24 Hour Woman, The (1998)\",Comedy|Drama\n2487,\"Blood, Guts, Bullets and Octane (1998)\",Action|Comedy\n2488,Peeping Tom (1960),Drama|Horror|Thriller\n2490,Payback (1999),Action|Thriller\n2491,Simply Irresistible (1999),Comedy|Romance\n2492,20 Dates (1998),Comedy|Romance\n2493,\"Harmonists, The (1997)\",Drama\n2494,\"Last Days, The (1998)\",Documentary\n2495,\"Fantastic Planet, The (Planète sauvage, La) (1973)\",Animation|Sci-Fi\n2496,Blast from the Past (1999),Comedy|Romance\n2497,Message in a Bottle (1999),Romance\n2498,My Favorite Martian (1999),Comedy|Sci-Fi\n2499,God Said 'Ha!' (1998),Comedy\n2500,Jawbreaker (1999),Comedy\n2501,October Sky (1999),Drama\n2502,Office Space (1999),Comedy|Crime\n2504,200 Cigarettes (1999),Comedy|Drama\n2505,8MM (1999),Drama|Mystery|Thriller\n2506,\"Other Sister, The (1999)\",Comedy|Drama|Romance\n2507,Breakfast of Champions (1999),Comedy|Sci-Fi\n2511,\"Long Goodbye, The (1973)\",Crime|Film-Noir\n2513,Pet Sematary (1989),Horror\n2514,Pet Sematary II (1992),Comedy|Horror\n2515,Children of the Corn II: The Final Sacrifice (1993),Horror\n2516,Children of the Corn III (1994),Horror\n2517,Christine (1983),Horror\n2518,Night Shift (1982),Comedy\n2519,House on Haunted Hill (1959),Drama|Horror|Thriller\n2520,Airport (1970),Drama\n2521,Airport 1975 (1974),Action|Drama|Thriller\n2522,Airport '77 (1977),Drama\n2523,Rollercoaster (1977),Drama|Thriller\n2524,\"Towering Inferno, The (1974)\",Action|Adventure|Drama|Thriller\n2525,Alligator (1980),Action|Horror|Sci-Fi\n2526,Meteor (1979),Sci-Fi\n2527,Westworld (1973),Action|Sci-Fi|Thriller|Western\n2528,Logan's Run (1976),Action|Adventure|Sci-Fi\n2529,Planet of the Apes (1968),Action|Drama|Sci-Fi\n2530,Beneath the Planet of the Apes (1970),Action|Sci-Fi\n2531,Battle for the Planet of the Apes (1973),Action|Sci-Fi\n2532,Conquest of the Planet of the Apes (1972),Action|Sci-Fi\n2533,Escape from the Planet of the Apes (1971),Action|Sci-Fi\n2534,Avalanche (1978),Action\n2535,Earthquake (1974),Action|Drama|Thriller\n2536,\"Concorde: Airport '79, The (1979)\",Drama\n2537,Beyond the Poseidon Adventure (1979),Adventure\n2539,Analyze This (1999),Comedy\n2540,\"Corruptor, The (1999)\",Action|Crime|Drama|Thriller\n2541,Cruel Intentions (1999),Drama\n2542,\"Lock, Stock & Two Smoking Barrels (1998)\",Comedy|Crime|Thriller\n2545,Relax... It's Just Sex (1998),Comedy\n2546,\"Deep End of the Ocean, The (1999)\",Drama\n2548,\"Rage: Carrie 2, The (1999)\",Horror\n2549,Wing Commander (1999),Action|Sci-Fi\n2550,\"Haunting, The (1963)\",Horror|Thriller\n2551,Dead Ringers (1988),Drama|Horror|Thriller\n2552,My Boyfriend's Back (1993),Comedy\n2553,Village of the Damned (1960),Horror|Sci-Fi|Thriller\n2554,Children of the Damned (1963),Horror|Sci-Fi|Thriller\n2555,Baby Geniuses (1999),Comedy\n2557,I Stand Alone (Seul contre tous) (1998),Drama|Thriller\n2558,Forces of Nature (1999),Comedy|Romance\n2559,\"King and I, The (1999)\",Animation|Children\n2560,Ravenous (1999),Horror|Thriller\n2561,True Crime (1999),Crime|Thriller\n2562,Bandits (1997),Drama\n2563,Dangerous Beauty (1998),Drama\n2565,\"King and I, The (1956)\",Drama|Musical|Romance\n2566,Doug's 1st Movie (1999),Animation|Children\n2567,EDtv (1999),Comedy\n2568,\"Mod Squad, The (1999)\",Action|Crime\n2569,Among Giants (1998),Comedy|Drama|Romance\n2570,\"Walk on the Moon, A (1999)\",Drama|Romance\n2571,\"Matrix, The (1999)\",Action|Sci-Fi|Thriller\n2572,10 Things I Hate About You (1999),Comedy|Romance\n2573,Tango (1998),Drama|Musical\n2574,\"Out-of-Towners, The (1999)\",Comedy\n2575,\"Dreamlife of Angels, The (Vie rêvée des anges, La) (1998)\",Drama\n2577,Metroland (1997),Comedy|Drama\n2579,Following (1998),Crime|Mystery|Thriller\n2580,Go (1999),Comedy|Crime\n2581,Never Been Kissed (1999),Comedy|Romance\n2582,Twin Dragons (Shuang long hui) (1992),Action|Comedy\n2583,Cookie's Fortune (1999),Comedy|Drama\n2585,\"Lovers of the Arctic Circle, The (Los Amantes del Círculo Polar) (1998)\",Drama|Romance\n2586,Goodbye Lover (1999),Comedy|Crime|Thriller\n2587,Life (1999),Comedy|Crime|Drama\n2589,Friends & Lovers (1999),Comedy|Drama|Romance\n2590,Hideous Kinky (1998),Drama\n2594,Open Your Eyes (Abre los ojos) (1997),Drama|Romance|Sci-Fi|Thriller\n2596,SLC Punk! (1998),Comedy|Drama\n2597,Lost & Found (1999),Comedy|Romance\n2598,Pushing Tin (1999),Comedy\n2599,Election (1999),Comedy\n2600,eXistenZ (1999),Action|Sci-Fi|Thriller\n2605,Entrapment (1999),Crime|Thriller\n2606,Idle Hands (1999),Comedy|Horror\n2607,Get Real (1998),Drama|Romance\n2609,\"King of Masks, The (Bian Lian) (1996)\",Drama\n2610,Three Seasons (1999),Drama\n2611,\"Winslow Boy, The (1999)\",Drama\n2612,Mildred Pierce (1945),Drama|Film-Noir\n2613,Night of the Comet (1984),Comedy|Horror|Sci-Fi\n2615,My Science Project (1985),Adventure|Sci-Fi\n2616,Dick Tracy (1990),Action|Crime\n2617,\"Mummy, The (1999)\",Action|Adventure|Comedy|Fantasy|Horror|Thriller\n2618,\"Castle, The (1997)\",Comedy\n2620,This Is My Father (1998),Drama|Romance\n2621,Xiu Xiu: The Sent-Down Girl (Tian yu) (1998),Drama\n2622,William Shakespeare's A Midsummer Night's Dream (1999),Comedy|Fantasy\n2624,After Life (Wandafuru raifu) (1998),Drama|Fantasy\n2625,Black Mask (Hak hap) (1996),Action|Adventure|Crime|Sci-Fi|Thriller\n2626,Edge of Seventeen (1998),Comedy|Drama|Romance\n2627,Endurance (1999),Documentary|Drama\n2628,Star Wars: Episode I - The Phantom Menace (1999),Action|Adventure|Sci-Fi\n2629,\"Love Letter, The (1999)\",Comedy|Romance\n2630,Besieged (a.k.a. L' Assedio) (1998),Drama\n2631,Frogs for Snakes (1998),Comedy|Film-Noir|Thriller\n2633,\"Mummy, The (1932)\",Horror|Romance\n2634,\"Mummy, The (1959)\",Horror\n2635,\"Mummy's Curse, The (1944)\",Horror\n2636,\"Mummy's Ghost, The (1944)\",Horror\n2637,\"Mummy's Hand, The (1940)\",Horror\n2638,\"Mummy's Tomb, The (1942)\",Horror\n2639,Mommie Dearest (1981),Drama\n2640,Superman (1978),Action|Adventure|Sci-Fi\n2641,Superman II (1980),Action|Sci-Fi\n2642,Superman III (1983),Action|Adventure|Sci-Fi\n2643,Superman IV: The Quest for Peace (1987),Action|Adventure|Sci-Fi\n2644,Dracula (1931),Horror\n2647,House of Frankenstein (1944),Horror\n2648,Frankenstein (1931),Drama|Horror|Sci-Fi\n2649,Son of Frankenstein (1939),Horror\n2650,\"Ghost of Frankenstein, The (1942)\",Horror\n2651,Frankenstein Meets the Wolf Man (1943),Horror\n2652,\"Curse of Frankenstein, The (1957)\",Horror\n2653,Son of Dracula (1943),Horror\n2654,\"Wolf Man, The (1941)\",Drama|Fantasy|Horror\n2655,Howling II: Your Sister Is a Werewolf (1985),Horror\n2656,Tarantula (1955),Horror|Sci-Fi\n2657,\"Rocky Horror Picture Show, The (1975)\",Comedy|Horror|Musical|Sci-Fi\n2659,It Came from Hollywood (1982),Comedy|Documentary\n2660,\"Thing from Another World, The (1951)\",Horror|Sci-Fi\n2661,It Came from Outer Space (1953),Sci-Fi\n2662,\"War of the Worlds, The (1953)\",Action|Drama|Sci-Fi\n2664,Invasion of the Body Snatchers (1956),Horror|Sci-Fi|Thriller\n2668,Swamp Thing (1982),Horror|Sci-Fi\n2669,Pork Chop Hill (1959),War\n2670,Run Silent Run Deep (1958),War\n2671,Notting Hill (1999),Comedy|Romance\n2672,\"Thirteenth Floor, The (1999)\",Drama|Sci-Fi|Thriller\n2673,Eternity and a Day (Mia aoniotita kai mia mera) (1998),Drama\n2674,\"Loss of Sexual Innocence, The (1999)\",Drama|Fantasy\n2676,Instinct (1999),Drama|Thriller\n2677,Buena Vista Social Club (1999),Documentary|Musical\n2678,Desert Blue (1998),Drama\n2681,Free Enterprise (1998),Comedy|Romance|Sci-Fi\n2682,Limbo (1999),Drama\n2683,Austin Powers: The Spy Who Shagged Me (1999),Action|Adventure|Comedy\n2686,\"Red Violin, The (Violon rouge, Le) (1998)\",Drama|Mystery\n2687,Tarzan (1999),Adventure|Animation|Children|Drama\n2688,\"General's Daughter, The (1999)\",Crime|Drama|Mystery|Thriller\n2689,Get Bruce (1999),Documentary\n2690,\"Ideal Husband, An (1999)\",Comedy|Romance\n2691,\"Legend of 1900, The (a.k.a. The Legend of the Pianist on the Ocean) (Leggenda del pianista sull'oceano) (1998)\",Drama\n2692,Run Lola Run (Lola rennt) (1998),Action|Crime\n2693,Trekkies (1997),Documentary\n2694,Big Daddy (1999),Comedy\n2696,\"Dinner Game, The (Dîner de cons, Le) (1998)\",Comedy\n2697,My Son the Fanatic (1997),Comedy|Drama|Romance\n2699,Arachnophobia (1990),Comedy|Horror\n2700,\"South Park: Bigger, Longer and Uncut (1999)\",Animation|Comedy|Musical\n2701,Wild Wild West (1999),Action|Comedy|Sci-Fi|Western\n2702,Summer of Sam (1999),Drama\n2704,\"Lovers on the Bridge, The (Amants du Pont-Neuf, Les) (1991)\",Drama|Romance\n2706,American Pie (1999),Comedy|Romance\n2707,Arlington Road (1999),Thriller\n2708,\"Autumn Tale, An (Conte d'automne) (1998)\",Romance\n2709,Muppets From Space (1999),Children|Comedy\n2710,\"Blair Witch Project, The (1999)\",Drama|Horror|Thriller\n2712,Eyes Wide Shut (1999),Drama|Mystery|Thriller\n2713,Lake Placid (1999),Horror|Thriller\n2714,\"Wood, The (1999)\",Drama\n2715,\"Velocity of Gary, The (1998)\",Comedy|Romance\n2716,Ghostbusters (a.k.a. Ghost Busters) (1984),Action|Comedy|Sci-Fi\n2717,Ghostbusters II (1989),Comedy|Fantasy|Sci-Fi\n2718,Drop Dead Gorgeous (1999),Comedy\n2719,\"Haunting, The (1999)\",Horror|Thriller\n2720,Inspector Gadget (1999),Action|Adventure|Children|Comedy\n2721,Trick (1999),Comedy|Romance\n2722,Deep Blue Sea (1999),Action|Horror|Sci-Fi|Thriller\n2723,Mystery Men (1999),Action|Comedy|Fantasy\n2724,Runaway Bride (1999),Comedy|Romance\n2725,Twin Falls Idaho (1999),Drama\n2726,\"Killing, The (1956)\",Crime|Film-Noir\n2727,Killer's Kiss (1955),Crime|Film-Noir\n2728,Spartacus (1960),Action|Drama|Romance|War\n2729,Lolita (1962),Drama|Romance\n2730,Barry Lyndon (1975),Drama|Romance|War\n2731,\"400 Blows, The (Les quatre cents coups) (1959)\",Crime|Drama\n2732,Jules and Jim (Jules et Jim) (1961),Drama|Romance\n2733,Vibes (1988),Adventure|Comedy|Romance\n2734,\"Mosquito Coast, The (1986)\",Adventure|Drama|Thriller\n2735,\"Golden Child, The (1986)\",Action|Adventure|Comedy|Fantasy|Mystery\n2736,Brighton Beach Memoirs (1986),Comedy\n2738,Crimes of the Heart (1986),Comedy|Drama\n2739,\"Color Purple, The (1985)\",Drama\n2741,No Mercy (1986),Action|Crime|Thriller\n2745,\"Mission, The (1986)\",Drama\n2746,Little Shop of Horrors (1986),Comedy|Horror|Musical\n2747,\"Little Shop of Horrors, The (1960)\",Comedy|Horror\n2748,Allan Quatermain and the Lost City of Gold (1987),Action|Adventure|Comedy\n2749,\"Morning After, The (1986)\",Drama|Mystery\n2750,Radio Days (1987),Comedy|Drama\n2751,From the Hip (1987),Comedy|Drama\n2752,Outrageous Fortune (1987),Comedy|Mystery\n2753,\"Bedroom Window, The (1987)\",Thriller\n2754,Deadtime Stories (1987),Horror\n2755,Light of Day (1987),Drama\n2757,Frances (1982),Drama\n2758,Plenty (1985),Drama\n2759,Dick (1999),Comedy\n2761,\"Iron Giant, The (1999)\",Adventure|Animation|Children|Drama|Sci-Fi\n2762,\"Sixth Sense, The (1999)\",Drama|Horror|Mystery\n2763,\"Thomas Crown Affair, The (1999)\",Action|Mystery\n2764,\"Thomas Crown Affair, The (1968)\",Crime|Drama|Romance|Thriller\n2766,\"Adventures of Sebastian Cole, The (1998)\",Comedy|Drama\n2767,Illuminata (1998),Comedy\n2769,\"Yards, The (2000)\",Crime|Drama\n2770,Bowfinger (1999),Comedy\n2771,Brokedown Palace (1999),Drama\n2772,Detroit Rock City (1999),Comedy\n2774,Better Than Chocolate (1999),Comedy|Romance\n2775,Head On (1998),Drama\n2776,\"Marcello Mastroianni: I Remember Yes, I Remember (Marcello Mastroianni: mi ricordo, sì, io mi ricordo) (1997)\",Documentary\n2779,Heaven Can Wait (1978),Comedy\n2780,\"Raven, The (1963)\",Comedy|Horror\n2781,\"Tingler, The (1959)\",Horror\n2782,Pit and the Pendulum (1961),Horror\n2783,\"Tomb of Ligeia, The (1965)\",Horror\n2784,\"Masque of the Red Death, The (1964)\",Horror\n2786,Haunted Honeymoon (1986),Comedy\n2787,Cat's Eye (1985),Horror\n2788,Monty Python's And Now for Something Completely Different (1971),Comedy\n2789,Damien: Omen II (1978),Horror\n2790,\"Final Conflict, The (a.k.a. Omen III: The Final Conflict) (1981)\",Horror|Thriller\n2791,Airplane! (1980),Comedy\n2792,Airplane II: The Sequel (1982),Comedy\n2793,\"American Werewolf in Paris, An (1997)\",Comedy|Horror|Romance|Thriller\n2794,European Vacation (aka National Lampoon's European Vacation) (1985),Adventure|Comedy|Romance\n2795,National Lampoon's Vacation (1983),Comedy\n2796,Funny Farm (1988),Comedy\n2797,Big (1988),Comedy|Drama|Fantasy|Romance\n2798,Problem Child (1990),Children|Comedy\n2799,Problem Child 2 (1991),Comedy\n2800,Little Nemo: Adventures in Slumberland (1992),Adventure|Animation|Children|Drama|Fantasy\n2801,Oscar and Lucinda (a.k.a. Oscar & Lucinda) (1997),Drama|Romance\n2802,Tequila Sunrise (1988),Action|Drama|Romance|Thriller\n2803,\"Pelican Brief, The (1993)\",Crime|Drama|Mystery|Romance|Thriller\n2804,\"Christmas Story, A (1983)\",Children|Comedy\n2805,Mickey Blue Eyes (1999),Comedy|Romance\n2806,Teaching Mrs. Tingle (1999),Comedy|Thriller\n2807,Universal Soldier: The Return (1999),Action|Sci-Fi\n2808,Universal Soldier (1992),Action|Sci-Fi\n2809,Love Stinks (1999),Comedy\n2810,Perfect Blue (1997),Animation|Horror|Mystery|Thriller\n2812,In Too Deep (1999),Action|Thriller\n2815,Iron Eagle (1986),Action|War\n2816,Iron Eagle II (1988),Action|War\n2817,Aces: Iron Eagle III (1992),Action\n2819,Three Days of the Condor (3 Days of the Condor) (1975),Drama|Mystery|Romance|Thriller\n2820,Hamlet (1964),Drama\n2822,Medicine Man (1992),Adventure|Romance\n2824,On the Ropes (1999),Documentary|Drama\n2826,\"13th Warrior, The (1999)\",Action|Adventure|Fantasy\n2827,\"Astronaut's Wife, The (1999)\",Horror|Sci-Fi|Thriller\n2828,Dudley Do-Right (1999),Children|Comedy\n2829,\"Muse, The (1999)\",Comedy\n2832,\"Lost Son, The (1999)\",Drama\n2835,Chill Factor (1999),Action|Adventure|Comedy|Thriller\n2836,Outside Providence (1999),Comedy\n2837,Bedrooms & Hallways (1998),Comedy|Romance\n2839,West Beirut (West Beyrouth) (1998),Drama\n2840,Stigmata (1999),Drama|Thriller\n2841,Stir of Echoes (1999),Horror|Mystery|Thriller\n2843,\"Black Cat, White Cat (Crna macka, beli macor) (1998)\",Comedy|Romance\n2844,\"Minus Man, The (1999)\",Drama|Mystery\n2845,Whiteboyz (1999),Comedy|Drama\n2846,\"Adventures of Milo and Otis, The (Koneko monogatari) (1986)\",Adventure|Children|Comedy|Drama\n2847,Only Angels Have Wings (1939),Adventure|Drama|Romance\n2848,\"Othello (Tragedy of Othello: The Moor of Venice, The) (1952)\",Drama\n2849,Queens Logic (1991),Comedy|Drama\n2850,Public Access (1993),Drama|Thriller\n2851,Saturn 3 (1980),Adventure|Sci-Fi|Thriller\n2852,\"Soldier's Story, A (1984)\",Drama\n2853,\"Alice, Sweet Alice (a.k.a. Communion) (a.k.a. Holy Terror) (1976)\",Horror|Mystery\n2855,Nightmares (1983),Horror\n2856,I Saw What You Did (1965),Thriller\n2857,Yellow Submarine (1968),Adventure|Animation|Comedy|Fantasy|Musical\n2858,American Beauty (1999),Drama|Romance\n2859,Stop Making Sense (1984),Documentary|Musical\n2860,Blue Streak (1999),Comedy\n2861,For Love of the Game (1999),Comedy|Drama\n2862,Caligula (1979),Drama\n2863,\"Hard Day's Night, A (1964)\",Adventure|Comedy|Musical\n2864,Splendor (1999),Comedy\n2866,\"Buddy Holly Story, The (1978)\",Drama\n2867,Fright Night (1985),Comedy|Horror|Thriller\n2868,Fright Night Part II (1988),Horror\n2869,\"Separation, The (Séparation, La) (1994)\",Drama\n2870,Barefoot in the Park (1967),Comedy\n2871,Deliverance (1972),Adventure|Drama|Thriller\n2872,Excalibur (1981),Adventure|Fantasy\n2874,\"Pajama Game, The (1957)\",Comedy|Musical|Romance\n2875,Sommersby (1993),Drama|Mystery|Romance\n2876,Thumbelina (1994),Animation|Children|Fantasy\n2877,Tommy (1975),Musical\n2878,Hell Night (1981),Horror\n2879,Armour of God II: Operation Condor (Operation Condor) (Fei ying gai wak) (1991),Action|Adventure|Comedy\n2880,Armour of God (Long xiong hu di) (1987),Action|Adventure|Comedy\n2881,Double Jeopardy (1999),Action|Crime|Drama|Thriller\n2882,Jakob the Liar (1999),Drama\n2883,Mumford (1999),Comedy|Drama\n2884,Dog Park (1998),Comedy|Romance\n2885,Guinevere (1999),Drama|Romance\n2886,\"Adventures of Elmo in Grouchland, The (1999)\",Children|Comedy\n2887,Simon Sez (1999),Action|Comedy\n2888,Drive Me Crazy (1999),Comedy|Romance\n2889,\"Mystery, Alaska (1999)\",Comedy|Drama\n2890,Three Kings (1999),Action|Adventure|Comedy|Drama|War\n2891,\"Happy, Texas (1999)\",Comedy\n2892,New Rose Hotel (1998),Action|Drama\n2893,Plunkett & MaCleane (1999),Action|Adventure|Drama\n2894,Romance (1999),Drama|Romance\n2897,And the Ship Sails On (E la nave va) (1983),Comedy|War\n2898,\"Dark Half, The (1993)\",Horror|Mystery\n2899,Gulliver's Travels (1939),Adventure|Animation|Children\n2900,Monkey Shines (1988),Horror|Sci-Fi\n2901,Phantasm (1979),Horror|Sci-Fi\n2902,Psycho II (1983),Horror|Mystery|Thriller\n2903,Psycho III (1986),Horror|Thriller\n2904,Rain (1932),Drama\n2905,Sanjuro (Tsubaki Sanjûrô) (1962),Action|Adventure|Drama\n2906,Random Hearts (1999),Drama|Romance\n2907,Superstar (1999),Comedy\n2908,Boys Don't Cry (1999),Drama\n2912,\"Limey, The (1999)\",Crime|Drama|Thriller\n2913,The Mating Habits of the Earthbound Human (1999),Comedy|Sci-Fi\n2915,Risky Business (1983),Comedy\n2916,Total Recall (1990),Action|Adventure|Sci-Fi|Thriller\n2917,Body Heat (1981),Crime|Thriller\n2918,Ferris Bueller's Day Off (1986),Comedy\n2919,\"Year of Living Dangerously, The (1982)\",Drama|Romance|War\n2920,Children of Paradise (Les enfants du paradis) (1945),Drama|Romance\n2921,High Plains Drifter (1973),Western\n2922,Hang 'Em High (1968),Crime|Drama|Western\n2923,Handle with Care (a.k.a. Citizen's Band) (1977),Comedy\n2924,Drunken Master (Jui kuen) (1978),Action|Comedy\n2925,\"Conformist, The (Conformista, Il) (1970)\",Drama\n2926,Hairspray (1988),Comedy|Drama\n2927,Brief Encounter (1946),Drama|Romance\n2928,\"Razor's Edge, The (1984)\",Drama\n2929,Reds (1981),Drama|Romance\n2930,Return with Honor (1998),Documentary\n2932,Days of Heaven (1978),Drama\n2935,\"Lady Eve, The (1941)\",Comedy|Romance\n2936,Sullivan's Travels (1941),Adventure|Comedy|Romance\n2937,\"Palm Beach Story, The (1942)\",Comedy\n2938,Man Facing Southeast (1986),Drama|Sci-Fi\n2939,Niagara (1953),Drama|Thriller\n2940,Gilda (1946),Drama|Film-Noir|Mystery|Romance\n2941,South Pacific (1958),Musical|Romance|War\n2942,Flashdance (1983),Drama|Romance\n2943,Indochine (1992),Drama|Romance\n2944,\"Dirty Dozen, The (1967)\",Action|Drama|War\n2945,Mike's Murder (1984),Mystery\n2946,Help! (1965),Comedy|Musical\n2947,Goldfinger (1964),Action|Adventure|Thriller\n2948,From Russia with Love (1963),Action|Adventure|Thriller\n2949,Dr. No (1962),Action|Adventure|Thriller\n2950,\"Blue Lagoon, The (1980)\",Adventure|Drama|Romance\n2951,\"Fistful of Dollars, A (Per un pugno di dollari) (1964)\",Action|Western\n2952,Sydney (Hard Eight) (1996),Crime|Drama|Thriller\n2953,Home Alone 2: Lost in New York (1992),Children|Comedy\n2956,Someone to Watch Over Me (1987),Action|Crime|Thriller\n2959,Fight Club (1999),Action|Crime|Drama|Thriller\n2961,\"Story of Us, The (1999)\",Comedy|Drama\n2962,Fever Pitch (1997),Comedy|Romance\n2964,Julien Donkey-Boy (1999),Drama\n2966,\"Straight Story, The (1999)\",Adventure|Drama\n2967,\"Bad Seed, The (1956)\",Drama|Thriller\n2968,Time Bandits (1981),Adventure|Comedy|Fantasy|Sci-Fi\n2969,\"Man and a Woman, A (Un homme et une femme) (1966)\",Drama|Romance\n2970,Fitzcarraldo (1982),Adventure|Drama\n2971,All That Jazz (1979),Drama|Fantasy|Musical\n2972,Red Sorghum (Hong gao liang) (1987),Drama|War\n2973,Crimes and Misdemeanors (1989),Comedy|Crime|Drama\n2974,Bats (1999),Horror|Thriller\n2975,\"Best Man, The (1999)\",Comedy|Drama\n2976,Bringing Out the Dead (1999),Drama\n2977,Crazy in Alabama (1999),Comedy|Drama\n2978,Three to Tango (1999),Comedy|Romance\n2979,Body Shots (1999),Drama\n2981,\"Brother, Can You Spare a Dime? (1975)\",Documentary\n2982,\"Guardian, The (1990)\",Horror|Thriller\n2983,\"Ipcress File, The (1965)\",Thriller\n2984,On Any Sunday (1971),Documentary\n2985,RoboCop (1987),Action|Crime|Drama|Sci-Fi|Thriller\n2986,RoboCop 2 (1990),Action|Crime|Sci-Fi|Thriller\n2987,Who Framed Roger Rabbit? (1988),Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery\n2988,Melvin and Howard (1980),Drama\n2989,For Your Eyes Only (1981),Action|Adventure|Thriller\n2990,Licence to Kill (1989),Action|Adventure|Thriller\n2991,Live and Let Die (1973),Action|Adventure|Thriller\n2992,Rawhead Rex (1986),Horror|Thriller\n2993,Thunderball (1965),Action|Adventure|Thriller\n2995,House on Haunted Hill (1999),Horror|Thriller\n2996,Music of the Heart (1999),Drama\n2997,Being John Malkovich (1999),Comedy|Drama|Fantasy\n2998,Dreaming of Joseph Lees (1999),Drama|Romance\n3000,Princess Mononoke (Mononoke-hime) (1997),Action|Adventure|Animation|Drama|Fantasy\n3001,\"Suburbans, The (1999)\",Drama\n3002,My Best Fiend (Mein liebster Feind) (1999),Documentary\n3003,Train of Life (Train de vie) (1998),Comedy|Drama|Romance|War\n3004,\"Bachelor, The (1999)\",Comedy|Romance\n3005,\"Bone Collector, The (1999)\",Thriller\n3006,\"Insider, The (1999)\",Drama|Thriller\n3007,American Movie (1999),Documentary\n3008,Last Night (1998),Drama|Sci-Fi\n3010,Rosetta (1999),Drama\n3011,\"They Shoot Horses, Don't They? (1969)\",Drama\n3013,Bride of Re-Animator (1990),Comedy|Horror\n3015,Coma (1978),Thriller\n3016,Creepshow (1982),Horror\n3017,Creepshow 2 (1987),Horror\n3018,Re-Animator (1985),Comedy|Horror|Sci-Fi\n3019,Drugstore Cowboy (1989),Crime|Drama\n3020,Falling Down (1993),Action|Drama\n3021,\"Funhouse, The (1981)\",Horror\n3022,\"General, The (1926)\",Comedy|War\n3024,Piranha (1978),Horror|Sci-Fi\n3025,Rough Night in Jericho (1967),Western\n3028,\"Taming of the Shrew, The (1967)\",Comedy\n3029,Nighthawks (1981),Action|Drama\n3030,Yojimbo (1961),Action|Adventure\n3031,Repossessed (1990),Comedy\n3032,\"Omega Man, The (1971)\",Action|Drama|Sci-Fi|Thriller\n3033,Spaceballs (1987),Comedy|Sci-Fi\n3034,Robin Hood (1973),Adventure|Animation|Children|Comedy|Musical\n3035,Mister Roberts (1955),Comedy|Drama|War\n3036,\"Quest for Fire (Guerre du feu, La) (1981)\",Adventure|Drama\n3037,Little Big Man (1970),Western\n3038,\"Face in the Crowd, A (1957)\",Drama\n3039,Trading Places (1983),Comedy\n3040,Meatballs (1979),Comedy\n3041,Meatballs Part II (1984),Comedy\n3042,Meatballs III (1987),Comedy\n3043,Meatballs 4 (1992),Comedy\n3044,Dead Again (1991),Mystery|Romance|Thriller\n3045,Peter's Friends (1992),Comedy|Drama\n3046,\"Incredibly True Adventure of Two Girls in Love, The (1995)\",Comedy|Romance\n3047,Experience Preferred... But Not Essential (1982),Drama\n3048,Under the Rainbow (1981),Comedy\n3051,Anywhere But Here (1999),Comedy|Drama\n3052,Dogma (1999),Adventure|Comedy|Fantasy\n3053,\"Messenger: The Story of Joan of Arc, The (1999)\",Drama|War\n3054,Pokémon: The First Movie (1998),Adventure|Animation|Children|Fantasy|Sci-Fi\n3055,Felicia's Journey (1999),Thriller\n3057,Where's Marlowe? (1998),Comedy\n3060,\"Commitments, The (1991)\",Comedy|Drama|Musical\n3061,Holiday Inn (1942),Comedy|Musical\n3062,\"Longest Day, The (1962)\",Action|Drama|War\n3063,Poison Ivy (1992),Drama|Thriller\n3064,Poison Ivy: New Seduction (1997),Drama|Thriller\n3066,Tora! Tora! Tora! (1970),Action|Drama|War\n3067,Women on the Verge of a Nervous Breakdown (Mujeres al borde de un ataque de nervios) (1988),Comedy|Drama\n3068,\"Verdict, The (1982)\",Drama|Mystery\n3069,\"Effect of Gamma Rays on Man-in-the-Moon Marigolds, The (1972)\",Drama\n3070,\"Adventures of Buckaroo Banzai Across the 8th Dimension, The (1984)\",Adventure|Comedy|Sci-Fi\n3071,Stand and Deliver (1988),Comedy|Drama\n3072,Moonstruck (1987),Comedy|Romance\n3074,Jeremiah Johnson (1972),Western\n3075,Repulsion (1965),Drama|Horror\n3076,Irma la Douce (1963),Comedy\n3077,42 Up (1998),Documentary\n3078,Liberty Heights (1999),Drama\n3079,Mansfield Park (1999),Comedy|Drama|Romance\n3081,Sleepy Hollow (1999),Fantasy|Horror|Mystery|Romance\n3082,\"World Is Not Enough, The (1999)\",Action|Adventure|Thriller\n3083,All About My Mother (Todo sobre mi madre) (1999),Drama\n3086,Babes in Toyland (1934),Children|Comedy|Fantasy|Musical\n3087,Scrooged (1988),Comedy|Fantasy|Romance\n3088,Harvey (1950),Comedy|Fantasy\n3089,Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette) (1948),Drama\n3090,Matewan (1987),Drama\n3091,Kagemusha (1980),Drama|War\n3093,McCabe & Mrs. Miller (1971),Drama|Western\n3094,Maurice (1987),Drama|Romance\n3095,\"Grapes of Wrath, The (1940)\",Drama\n3096,My Man Godfrey (1957),Comedy\n3097,\"Shop Around the Corner, The (1940)\",Comedy|Drama|Romance\n3098,\"Natural, The (1984)\",Drama\n3099,Shampoo (1975),Comedy|Drama|Romance\n3100,\"River Runs Through It, A (1992)\",Drama\n3101,Fatal Attraction (1987),Drama|Thriller\n3102,Jagged Edge (1985),Crime|Romance|Thriller\n3103,Stanley & Iris (1990),Drama|Romance\n3104,Midnight Run (1988),Action|Comedy|Crime|Thriller\n3105,Awakenings (1990),Drama|Mystery\n3106,Come See the Paradise (1990),Drama|Romance\n3107,Backdraft (1991),Action|Drama\n3108,\"Fisher King, The (1991)\",Comedy|Drama|Fantasy|Romance\n3109,\"River, The (1984)\",Drama\n3110,Country (1984),Drama\n3111,Places in the Heart (1984),Drama\n3112,'night Mother (1986),Drama\n3113,End of Days (1999),Action|Fantasy|Horror|Mystery|Thriller\n3114,Toy Story 2 (1999),Adventure|Animation|Children|Comedy|Fantasy\n3115,Flawless (1999),Drama\n3116,Miss Julie (1999),Drama\n3117,Ride with the Devil (1999),Drama|Romance|War\n3118,Tumbleweeds (1999),Drama\n3120,\"Distinguished Gentleman, The (1992)\",Comedy\n3121,\"Hitch-Hiker, The (1953)\",Drama|Film-Noir\n3122,Santa Fe Trail (1940),Drama|Romance|Western\n3125,\"End of the Affair, The (1999)\",Drama\n3127,Holy Smoke (1999),Comedy|Drama\n3128,\"Map of the World, A (1999)\",Drama\n3129,Sweet and Lowdown (1999),Comedy|Drama\n3130,Bonfire of the Vanities (1990),Comedy|Crime|Drama\n3133,Go West (1925),Comedy|Western\n3134,Grand Illusion (La grande illusion) (1937),Drama|War\n3135,\"Great Santini, The (1979)\",Drama\n3136,\"James Dean Story, The (1957)\",Documentary\n3138,Stealing Home (1988),Drama\n3140,Three Ages (1923),Comedy\n3141,\"Two Jakes, The (1990)\",Drama\n3142,U2: Rattle and Hum (1988),Documentary|Musical\n3143,Hell in the Pacific (1968),Drama|War\n3144,\"Glass Bottom Boat, The (1966)\",Comedy|Romance\n3145,Cradle Will Rock (1999),Drama\n3146,Deuce Bigalow: Male Gigolo (1999),Comedy\n3147,\"Green Mile, The (1999)\",Crime|Drama\n3148,\"Cider House Rules, The (1999)\",Drama\n3150,\"War Zone, The (1999)\",Drama|Thriller\n3152,\"Last Picture Show, The (1971)\",Drama\n3153,\"7th Voyage of Sinbad, The (1958)\",Action|Adventure|Fantasy\n3155,Anna and the King (1999),Drama|Romance\n3156,Bicentennial Man (1999),Drama|Romance|Sci-Fi\n3157,Stuart Little (1999),Children|Comedy|Fantasy\n3158,\"Emperor and the Assassin, The (Jing ke ci qin wang) (1999)\",Drama\n3159,Fantasia 2000 (1999),Animation|Children|Musical|IMAX\n3160,Magnolia (1999),Drama\n3161,Onegin (1999),Drama|Romance\n3163,Topsy-Turvy (1999),Comedy|Drama|Musical\n3165,Boiling Point (1993),Action|Drama\n3166,Brenda Starr (1989),Adventure\n3167,Carnal Knowledge (1971),Comedy|Drama\n3168,Easy Rider (1969),Adventure|Drama\n3169,The Falcon and the Snowman (1985),Crime|Drama|Thriller\n3171,Room at the Top (1959),Drama\n3173,Any Given Sunday (1999),Drama\n3174,Man on the Moon (1999),Comedy|Drama\n3175,Galaxy Quest (1999),Adventure|Comedy|Sci-Fi\n3176,\"Talented Mr. Ripley, The (1999)\",Drama|Mystery|Thriller\n3177,Next Friday (2000),Comedy\n3178,\"Hurricane, The (1999)\",Drama\n3179,Angela's Ashes (1999),Drama\n3180,Play it to the Bone (1999),Comedy|Drama\n3181,Titus (1999),Drama\n3182,\"Mr. Death: The Rise and Fall of Fred A. Leuchter, Jr. (1999)\",Documentary\n3183,\"Third Miracle, The (1999)\",Drama\n3185,Snow Falling on Cedars (1999),Drama\n3186,\"Girl, Interrupted (1999)\",Drama\n3188,\"Life and Times of Hank Greenberg, The (1998)\",Documentary\n3189,My Dog Skip (1999),Children|Drama\n3190,Supernova (2000),Adventure|Sci-Fi|Thriller\n3192,\"Terrorist, The (a.k.a. Malli) (Theeviravaathi) (1998)\",Drama\n3194,\"Way We Were, The (1973)\",Drama|Romance\n3196,Stalag 17 (1953),Drama|War\n3197,\"Presidio, The (1988)\",Action|Crime|Romance|Thriller\n3198,Papillon (1973),Crime|Drama\n3199,Pal Joey (1957),Comedy|Drama|Musical|Romance\n3200,\"Last Detail, The (1973)\",Comedy|Drama\n3201,Five Easy Pieces (1970),Drama\n3202,Even Dwarfs Started Small (Auch Zwerge haben klein angefangen) (1971),Drama|Horror\n3203,Dead Calm (1989),Thriller\n3204,\"Boys from Brazil, The (1978)\",Action|Mystery|Thriller\n3205,Black Sunday (La maschera del demonio) (1960),Horror\n3206,Against All Odds (1984),Romance\n3207,\"Snows of Kilimanjaro, The (1952)\",Adventure\n3208,Loaded Weapon 1 (National Lampoon's Loaded Weapon 1) (1993),Action|Comedy\n3210,Fast Times at Ridgemont High (1982),Comedy|Drama|Romance\n3211,\"Cry in the Dark, A (1988)\",Drama\n3213,Batman: Mask of the Phantasm (1993),Animation|Children\n3214,American Flyers (1985),Drama\n3216,\"Vampyros Lesbos (Vampiras, Las) (1971)\",Fantasy|Horror|Thriller\n3217,\"Star Is Born, A (1937)\",Drama\n3218,Poison (1991),Drama\n3219,Pacific Heights (1990),Mystery|Thriller\n3221,\"Draughtsman's Contract, The (1982)\",Drama\n3223,\"Zed & Two Noughts, A (1985)\",Drama\n3224,Woman in the Dunes (Suna no onna) (1964),Drama\n3225,Down to You (2000),Comedy|Romance\n3232,Seven Chances (1925),Comedy\n3235,Where the Buffalo Roam (1980),Comedy\n3238,Eye of the Beholder (1999),Thriller\n3239,Isn't She Great? (2000),Comedy\n3240,\"Big Tease, The (1999)\",Comedy\n3241,\"Cup, The (Phörpa) (1999)\",Comedy\n3243,Encino Man (1992),Comedy\n3244,\"Goodbye Girl, The (1977)\",Comedy|Romance\n3245,I Am Cuba (Soy Cuba/Ya Kuba) (1964),Drama\n3246,Malcolm X (1992),Drama\n3247,Sister Act (1992),Comedy|Crime\n3248,Sister Act 2: Back in the Habit (1993),Comedy\n3249,\"Hand That Rocks the Cradle, The (1992)\",Drama|Thriller\n3250,Alive (1993),Drama\n3251,Agnes of God (1985),Drama|Mystery\n3252,Scent of a Woman (1992),Drama\n3253,Wayne's World (1992),Comedy\n3254,Wayne's World 2 (1993),Comedy\n3255,\"League of Their Own, A (1992)\",Comedy|Drama\n3256,Patriot Games (1992),Action|Crime|Drama|Thriller\n3257,\"Bodyguard, The (1992)\",Drama|Romance|Thriller\n3258,Death Becomes Her (1992),Comedy|Fantasy\n3259,Far and Away (1992),Adventure|Drama|Romance\n3260,Howards End (1992),Drama\n3261,Singles (1992),Comedy|Drama|Romance\n3262,Twin Peaks: Fire Walk with Me (1992),Crime|Drama|Mystery|Thriller\n3263,White Men Can't Jump (1992),Comedy|Drama\n3264,Buffy the Vampire Slayer (1992),Action|Comedy|Horror\n3265,Hard-Boiled (Lat sau san taam) (1992),Action|Crime|Drama|Thriller\n3266,Man Bites Dog (C'est arrivé près de chez vous) (1992),Comedy|Crime|Drama|Thriller\n3267,\"Mariachi, El (1992)\",Action|Crime|Thriller|Western\n3268,Stop! Or My Mom Will Shoot (1992),Action|Comedy\n3269,Forever Young (1992),Drama|Romance|Sci-Fi\n3270,\"Cutting Edge, The (1992)\",Comedy|Drama|Romance\n3271,Of Mice and Men (1992),Drama\n3272,Bad Lieutenant (1992),Crime|Drama\n3273,Scream 3 (2000),Comedy|Horror|Mystery|Thriller\n3274,Single White Female (1992),Drama|Thriller\n3275,\"Boondock Saints, The (2000)\",Action|Crime|Drama|Thriller\n3276,Gun Shy (2000),Comedy\n3281,\"Brandon Teena Story, The (1998)\",Documentary\n3282,Different for Girls (1996),Comedy\n3284,They Might Be Giants (1971),Comedy|Mystery|Romance\n3285,\"Beach, The (2000)\",Adventure|Drama\n3286,Snow Day (2000),Comedy\n3287,\"Tigger Movie, The (2000)\",Animation|Children\n3289,Not One Less (Yi ge dou bu neng shao) (1999),Drama\n3292,\"Big Combo, The (1955)\",Film-Noir\n3294,Eaten Alive (1977),Horror\n3296,To Sir with Love (1967),Drama\n3298,Boiler Room (2000),Crime|Drama|Thriller\n3299,Hanging Up (2000),Comedy|Drama\n3300,Pitch Black (2000),Horror|Sci-Fi|Thriller\n3301,\"Whole Nine Yards, The (2000)\",Comedy|Crime\n3302,Beautiful People (1999),Comedy\n3303,Black Tar Heroin: The Dark End of the Street (2000),Documentary\n3304,Blue Collar (1978),Crime|Drama\n3306,\"Circus, The (1928)\",Comedy\n3307,City Lights (1931),Comedy|Drama|Romance\n3308,\"Flamingo Kid, The (1984)\",Comedy|Drama\n3309,\"Dog's Life, A (1918)\",Comedy\n3310,\"Kid, The (1921)\",Comedy|Drama\n3313,Class Reunion (1982),Comedy\n3314,\"Big Trees, The (1952)\",Action|Drama\n3316,Reindeer Games (2000),Action|Thriller\n3317,Wonder Boys (2000),Comedy|Drama\n3318,Deterrence (1999),Drama|Thriller\n3320,Mifune's Last Song (Mifunes sidste sang) (1999),Comedy|Drama|Romance\n3324,Drowning Mona (2000),Comedy\n3325,\"Next Best Thing, The (2000)\",Comedy|Drama\n3326,What Planet Are You From? (2000),Comedy|Sci-Fi\n3327,Beyond the Mat (1999),Documentary\n3328,Ghost Dog: The Way of the Samurai (1999),Crime|Drama\n3329,The Year My Voice Broke (1987),Drama|Romance\n3330,Splendor in the Grass (1961),Drama|Romance\n3331,My Tutor (1983),Drama\n3334,Key Largo (1948),Crime|Drama|Film-Noir|Thriller\n3338,For All Mankind (1989),Documentary\n3339,Cross of Iron (1977),War\n3340,Bride of the Monster (1955),Horror|Sci-Fi\n3341,Born Yesterday (1950),Comedy\n3342,Birdy (1984),Drama|War\n3343,And God Created Woman (1988),Comedy|Drama|Romance\n3344,Blood Feast (1963),Horror\n3347,Never Cry Wolf (1983),Adventure|Drama\n3349,\"Perils of Pauline, The (1947)\",Comedy\n3350,\"Raisin in the Sun, A (1961)\",Drama\n3351,Two Thousand Maniacs! (1964),Horror\n3354,Mission to Mars (2000),Sci-Fi\n3355,\"Ninth Gate, The (1999)\",Fantasy|Horror|Mystery|Thriller\n3357,East-West (Est-ouest) (1999),Drama|Romance\n3358,Defending Your Life (1991),Comedy|Drama|Fantasy|Romance\n3359,Breaking Away (1979),Comedy|Drama\n3360,Hoosiers (a.k.a. Best Shot) (1986),Drama|Romance\n3361,Bull Durham (1988),Comedy|Drama|Romance\n3362,Dog Day Afternoon (1975),Crime|Drama\n3363,American Graffiti (1973),Comedy|Drama\n3364,\"Asphalt Jungle, The (1950)\",Crime|Film-Noir\n3365,\"Searchers, The (1956)\",Drama|Western\n3368,\"Big Country, The (1958)\",Romance|Western\n3370,Betrayed (1988),Drama|Thriller\n3371,Bound for Glory (1976),Drama\n3377,Hangmen Also Die! (1943),Drama|War\n3379,On the Beach (1959),Drama\n3380,Railroaded! (1947),Film-Noir\n3384,\"Taking of Pelham One Two Three, The (1974)\",Action|Crime\n3385,Volunteers (1985),Comedy\n3386,JFK (1991),Drama|Mystery|Thriller\n3387,Who's Harry Crumb? (1989),Comedy|Mystery\n3388,Harry and the Hendersons (1987),Children|Comedy\n3390,Shanghai Surprise (1986),Adventure|Crime|Drama|Romance\n3391,Who's That Girl? (1987),Comedy\n3392,She-Devil (1989),Comedy\n3393,Date with an Angel (1987),Comedy|Fantasy|Romance\n3394,Blind Date (1987),Comedy|Romance\n3395,Nadine (1987),Comedy\n3396,\"Muppet Movie, The (1979)\",Adventure|Children|Comedy|Musical\n3397,\"Great Muppet Caper, The (1981)\",Children|Comedy\n3398,\"Muppets Take Manhattan, The (1984)\",Children|Comedy|Musical\n3399,Sesame Street Presents Follow That Bird (1985),Children|Comedy\n3400,We're Back! A Dinosaur's Story (1993),Adventure|Animation|Children|Fantasy\n3401,Baby... Secret of the Lost Legend (1985),Adventure|Sci-Fi\n3402,Turtle Diary (1985),Comedy|Drama|Romance\n3404,Titanic (1953),Action|Drama\n3405,\"Night to Remember, A (1958)\",Action|Drama\n3406,Captain Horatio Hornblower R.N. (1951),Action|Adventure|Drama|War\n3408,Erin Brockovich (2000),Drama\n3409,Final Destination (2000),Drama|Thriller\n3412,\"Bear, The (Ours, L') (1988)\",Adventure|Children|Drama\n3414,Love Is a Many-Splendored Thing (1955),Drama|Romance|War\n3415,\"Mirror, The (Zerkalo) (1975)\",Drama\n3417,\"Crimson Pirate, The (1952)\",Adventure|Comedy\n3418,Thelma & Louise (1991),Adventure|Crime|Drama\n3420,...And Justice for All (1979),Drama|Thriller\n3421,Animal House (1978),Comedy\n3422,She's Gotta Have It (1986),Comedy|Romance\n3423,School Daze (1988),Drama\n3424,Do the Right Thing (1989),Drama\n3425,Mo' Better Blues (1990),Drama|Musical\n3426,Jungle Fever (1991),Drama|Romance\n3427,Coogan's Bluff (1968),Crime\n3428,\"Champ, The (1979)\",Drama\n3429,Creature Comforts (1989),Animation|Comedy\n3430,Death Wish (1974),Action|Crime|Drama\n3431,Death Wish 2 (1982),Action|Drama\n3432,Death Wish 3 (1985),Action|Drama\n3434,Death Wish 5: The Face of Death (1994),Action|Drama\n3435,Double Indemnity (1944),Crime|Drama|Film-Noir\n3436,Dying Young (1991),Drama|Romance\n3437,Cool as Ice (1991),Drama\n3438,Teenage Mutant Ninja Turtles (1990),Action|Children|Comedy|Fantasy|Sci-Fi\n3439,Teenage Mutant Ninja Turtles II: The Secret of the Ooze (1991),Action|Children|Fantasy\n3440,Teenage Mutant Ninja Turtles III (1993),Action|Adventure|Children|Comedy|Fantasy\n3441,Red Dawn (1984),Action|Drama|War\n3442,Band of the Hand (1986),Action|Crime|Drama\n3444,Bloodsport (1988),Action\n3445,Eyes of Laura Mars (1978),Mystery|Thriller\n3446,Funny Bones (1995),Comedy|Drama\n3447,\"Good Earth, The (1937)\",Drama\n3448,\"Good Morning, Vietnam (1987)\",Comedy|Drama|War\n3449,\"Good Mother, The (1988)\",Drama\n3450,Grumpy Old Men (1993),Comedy\n3451,Guess Who's Coming to Dinner (1967),Drama\n3452,Romeo Must Die (2000),Action|Crime|Romance|Thriller\n3453,Here on Earth (2000),Drama|Romance\n3454,Whatever It Takes (2000),Comedy|Romance\n3456,\"Color of Paradise, The (Rang-e khoda) (1999)\",Drama\n3457,Waking the Dead (2000),Drama|Thriller\n3459,Gothic (1986),Drama|Horror\n3460,Hillbillys in a Haunted House (1967),Comedy\n3461,Lord of the Flies (1963),Adventure|Drama|Thriller\n3462,Modern Times (1936),Comedy|Drama|Romance\n3463,Last Resort (National Lampoon's Last Resort) (1994),Comedy\n3465,That's Life! (1986),Drama\n3466,Heart and Souls (1993),Comedy|Fantasy\n3467,Hud (1963),Drama|Western\n3468,\"Hustler, The (1961)\",Drama\n3469,Inherit the Wind (1960),Drama\n3470,Dersu Uzala (1975),Adventure|Drama\n3471,Close Encounters of the Third Kind (1977),Adventure|Drama|Sci-Fi\n3474,Retroactive (1997),Sci-Fi|Thriller\n3475,\"Place in the Sun, A (1951)\",Drama|Romance\n3476,Jacob's Ladder (1990),Horror|Mystery\n3477,Empire Records (1995),Comedy|Drama\n3478,\"Bamba, La (1987)\",Drama\n3479,Ladyhawke (1985),Adventure|Fantasy|Romance\n3480,Lucas (1986),Drama|Romance\n3481,High Fidelity (2000),Comedy|Drama|Romance\n3483,\"Road to El Dorado, The (2000)\",Animation|Children\n3484,\"Skulls, The (2000)\",Thriller\n3487,El Dorado (1966),Western\n3489,Hook (1991),Adventure|Comedy|Fantasy\n3490,Horror Express (1972),Horror\n3491,My Chauffeur (1986),Comedy\n3492,\"Son of the Sheik, The (1926)\",Adventure|Comedy|Romance\n3494,True Grit (1969),Adventure|Drama|Western\n3495,Roadside Prophets (1992),Comedy|Drama\n3496,Madame Sousatzka (1988),Drama\n3497,Max Dugan Returns (1983),Comedy\n3498,Midnight Express (1978),Drama\n3499,Misery (1990),Drama|Horror|Thriller\n3500,Mr. Saturday Night (1992),Comedy|Drama\n3501,Murphy's Romance (1985),Comedy|Romance\n3502,My Life (1993),Drama\n3503,Solaris (Solyaris) (1972),Drama|Mystery|Sci-Fi\n3504,Network (1976),Comedy|Drama\n3505,No Way Out (1987),Drama|Mystery|Thriller\n3506,North Dallas Forty (1979),Comedy|Drama\n3507,\"Odd Couple, The (1968)\",Comedy\n3508,\"Outlaw Josey Wales, The (1976)\",Action|Adventure|Drama|Thriller|Western\n3509,Black and White (1999),Drama\n3510,Frequency (2000),Drama|Thriller\n3511,Ready to Rumble (2000),Comedy\n3512,Return to Me (2000),Drama|Romance\n3513,Rules of Engagement (2000),Drama|Thriller\n3515,Me Myself I (2000),Comedy|Romance\n3516,\"Bell, Book and Candle (1958)\",Comedy|Fantasy|Romance\n3518,\"End of Violence, The (1997)\",Drama|Thriller\n3519,Force 10 from Navarone (1978),Action|Drama|War\n3520,How to Stuff a Wild Bikini (1965),Comedy\n3521,Mystery Train (1989),Comedy|Drama\n3522,Sacco and Vanzetti (Sacco e Vanzetti) (1971),Drama\n3524,Arthur (1981),Comedy|Romance\n3525,Bachelor Party (1984),Comedy\n3526,Parenthood (1989),Comedy|Drama\n3527,Predator (1987),Action|Sci-Fi|Thriller\n3528,\"Prince of Tides, The (1991)\",Drama|Romance\n3529,\"Postman Always Rings Twice, The (1981)\",Crime|Thriller\n3531,All the Vermeers in New York (1990),Comedy|Drama|Romance\n3534,28 Days (2000),Drama\n3535,American Psycho (2000),Crime|Horror|Mystery|Thriller\n3536,Keeping the Faith (2000),Comedy|Drama|Romance\n3537,Where the Money Is (2000),Comedy|Drama\n3538,East is East (1999),Comedy\n3539,\"Filth and the Fury, The (2000)\",Documentary\n3540,Passion of Mind (2000),Drama|Mystery|Romance\n3543,Diner (1982),Comedy|Drama\n3544,Shakes the Clown (1992),Comedy\n3545,Cabaret (1972),Drama|Musical\n3546,What Ever Happened to Baby Jane? (1962),Drama|Horror|Thriller\n3547,Prick Up Your Ears (1987),Comedy|Drama\n3548,Auntie Mame (1958),Comedy|Drama\n3549,Guys and Dolls (1955),Comedy|Musical|Romance\n3550,The Hunger (1983),Horror\n3551,Marathon Man (1976),Crime|Drama|Thriller\n3552,Caddyshack (1980),Comedy\n3553,Gossip (2000),Drama|Thriller\n3554,Love and Basketball (2000),Drama|Romance\n3555,U-571 (2000),Action|Thriller|War\n3556,\"Virgin Suicides, The (1999)\",Drama|Romance\n3557,Jennifer 8 (1992),Mystery|Thriller\n3559,Limelight (1952),Comedy|Drama|Romance\n3560,Empire of Passion (a.k.a. In the Realm of Passion) (a.k.a. Phantom Love) (Ai No Borei) (1978),Crime|Drama|Romance\n3563,\"Crow: Salvation, The (2000)\",Action|Horror\n3564,\"Flintstones in Viva Rock Vegas, The (2000)\",Children|Comedy\n3565,Where the Heart Is (2000),Comedy|Drama\n3566,\"Big Kahuna, The (2000)\",Comedy|Drama\n3567,Bossa Nova (2000),Comedy|Drama|Romance\n3568,Smiling Fish and Goat on Fire (1999),Comedy|Romance\n3569,\"Idiots, The (Idioterne) (1998)\",Comedy|Drama\n3571,Time Code (2000),Comedy|Drama\n3572,Carnosaur (1993),Horror|Sci-Fi\n3573,Carnosaur 2 (1995),Horror|Sci-Fi\n3574,Carnosaur 3: Primal Species (1996),Horror|Sci-Fi\n3575,Defying Gravity (1997),Drama\n3576,\"Hidden, The (1987)\",Action|Horror|Sci-Fi\n3577,Two Moon Junction (1988),Drama|Romance\n3578,Gladiator (2000),Action|Adventure|Drama\n3579,I Dreamed of Africa (2000),Drama\n3580,Up at the Villa (2000),Drama\n3581,Human Traffic (1999),Comedy\n3584,Breathless (1983),Action|Drama|Romance|Thriller\n3587,Inferno (1980),Horror\n3588,\"King of Marvin Gardens, The (1972)\",Crime|Drama\n3590,\"Lords of Flatbush, The (1974)\",Comedy|Drama\n3591,Mr. Mom (1983),Comedy|Drama\n3593,Battlefield Earth (2000),Action|Sci-Fi\n3594,Center Stage (2000),Drama|Musical\n3596,Screwed (2000),Comedy\n3598,Hamlet (2000),Crime|Drama|Romance|Thriller\n3599,Anchors Aweigh (1945),Comedy|Musical\n3600,Blue Hawaii (1961),Comedy|Musical\n3602,G.I. Blues (1960),Comedy|Musical|Romance\n3604,Gypsy (1962),Musical\n3605,King Creole (1958),Crime|Drama|Musical\n3606,On the Town (1949),Comedy|Musical|Romance\n3608,Pee-wee's Big Adventure (1985),Adventure|Comedy\n3609,Regret to Inform (1998),Documentary\n3611,Saludos Amigos (1943),Animation|Children|Comedy\n3612,The Slipper and the Rose: The Story of Cinderella (1976),Adventure|Children|Fantasy|Musical|Romance\n3613,Things Change (1988),Comedy\n3614,Honeymoon in Vegas (1992),Comedy|Romance\n3615,Dinosaur (2000),Adventure|Animation|Children\n3616,Loser (2000),Comedy|Romance\n3617,Road Trip (2000),Comedy\n3618,Small Time Crooks (2000),Comedy|Crime\n3619,\"Hollywood Knights, The (1980)\",Comedy\n3620,\"Myth of Fingerprints, The (1997)\",Comedy|Drama\n3621,Possession (1981),Drama|Horror\n3622,\"Twelve Chairs, The (1970)\",Comedy\n3623,Mission: Impossible II (2000),Action|Adventure|Thriller\n3624,Shanghai Noon (2000),Action|Adventure|Comedy|Western\n3626,8 ½ Women (a.k.a. 8 1/2 Women) (a.k.a. Eight and a Half Women) (1999),Comedy\n3627,Carnival of Souls (1962),Horror|Thriller\n3628,Flying Tigers (1942),Action|Drama|Romance|War\n3629,\"Gold Rush, The (1925)\",Adventure|Comedy|Romance\n3632,Monsieur Verdoux (1947),Comedy|Crime\n3633,On Her Majesty's Secret Service (1969),Action|Adventure|Romance|Thriller\n3634,Seven Days in May (1964),Thriller\n3635,\"Spy Who Loved Me, The (1977)\",Action|Adventure|Thriller\n3637,Vagabond (Sans toit ni loi) (1985),Drama\n3638,Moonraker (1979),Action|Adventure|Sci-Fi|Thriller\n3639,\"Man with the Golden Gun, The (1974)\",Action|Adventure|Thriller\n3640,\"King in New York, A (1957)\",Comedy|Drama\n3643,\"Fighting Seabees, The (1944)\",Action|Drama|War\n3646,Big Momma's House (2000),Comedy\n3649,American Gigolo (1980),Drama\n3653,\"Endless Summer, The (1966)\",Documentary\n3654,\"Guns of Navarone, The (1961)\",Action|Adventure|Drama|War\n3655,Blow-Out (La grande bouffe) (1973),Drama\n3656,Lured (1947),Crime|Film-Noir|Mystery|Thriller\n3657,Pandora and the Flying Dutchman (1951),Drama\n3658,Quatermass and the Pit (1967),Horror|Sci-Fi\n3659,Quatermass 2 (Enemy from Space) (1957),Sci-Fi|Thriller\n3660,Puppet Master (1989),Horror|Sci-Fi|Thriller\n3661,Puppet Master II (1991),Horror|Sci-Fi|Thriller\n3662,Puppet Master III: Toulon's Revenge (1991),Horror|Sci-Fi|Thriller\n3663,Puppet Master 4 (1993),Horror|Sci-Fi|Thriller\n3664,Puppet Master 5: The Final Chapter (1994),Horror|Sci-Fi|Thriller\n3665,Curse of the Puppet Master (Puppet Master 6: The Curse) (1998),Horror|Sci-Fi|Thriller\n3668,Romeo and Juliet (1968),Drama|Romance\n3669,Stay Tuned (1992),Comedy\n3671,Blazing Saddles (1974),Comedy|Western\n3672,Benji (1974),Adventure|Children\n3673,Benji the Hunted (1987),Adventure|Children\n3674,For the Love of Benji (1977),Adventure|Children|Comedy|Drama\n3675,White Christmas (1954),Comedy|Musical|Romance\n3676,Eraserhead (1977),Drama|Horror\n3677,Baraka (1992),Documentary\n3678,\"Man with the Golden Arm, The (1955)\",Drama\n3679,\"Decline of Western Civilization, The (1981)\",Documentary|Musical\n3680,\"Decline of Western Civilization Part II: The Metal Years, The (1988)\",Documentary\n3681,For a Few Dollars More (Per qualche dollaro in più) (1965),Action|Drama|Thriller|Western\n3682,Magnum Force (1973),Action|Crime|Drama|Thriller\n3683,Blood Simple (1984),Crime|Drama|Film-Noir\n3684,\"Fabulous Baker Boys, The (1989)\",Drama|Romance\n3685,Prizzi's Honor (1985),Comedy|Drama|Romance\n3686,Flatliners (1990),Horror|Sci-Fi|Thriller\n3687,Light Years (Gandahar) (1988),Adventure|Animation|Fantasy|Sci-Fi\n3688,Porky's (1982),Comedy\n3689,Porky's II: The Next Day (1983),Comedy\n3690,Porky's Revenge (1985),Comedy\n3691,Private School (1983),Comedy\n3692,Class of Nuke 'Em High (1986),Comedy|Horror\n3693,\"Toxic Avenger, The (1985)\",Comedy|Horror\n3694,\"Toxic Avenger, Part II, The (1989)\",Comedy|Horror\n3695,\"Toxic Avenger Part III: The Last Temptation of Toxie, The (1989)\",Comedy|Horror\n3696,Night of the Creeps (1986),Comedy|Horror|Sci-Fi|Thriller\n3697,Predator 2 (1990),Action|Sci-Fi|Thriller\n3698,\"Running Man, The (1987)\",Action|Sci-Fi\n3699,Starman (1984),Adventure|Drama|Romance|Sci-Fi\n3700,\"Brother from Another Planet, The (1984)\",Drama|Sci-Fi\n3701,Alien Nation (1988),Crime|Drama|Sci-Fi|Thriller\n3702,Mad Max (1979),Action|Adventure|Sci-Fi\n3703,\"Road Warrior, The (Mad Max 2) (1981)\",Action|Adventure|Sci-Fi|Thriller\n3704,Mad Max Beyond Thunderdome (1985),Action|Adventure|Sci-Fi\n3705,Bird on a Wire (1990),Action|Comedy|Romance\n3706,Angel Heart (1987),Film-Noir|Horror|Mystery|Thriller\n3707,9 1/2 Weeks (Nine 1/2 Weeks) (1986),Drama|Romance\n3708,Firestarter (1984),Horror|Thriller\n3709,Sleepwalkers (1992),Horror\n3710,Action Jackson (1988),Action|Comedy|Crime|Thriller\n3712,Soapdish (1991),Comedy\n3713,\"Long Walk Home, The (1990)\",Drama\n3714,Clara's Heart (1988),Drama\n3715,Burglar (1987),Comedy|Crime\n3716,Fatal Beauty (1987),Action|Comedy|Crime|Drama\n3717,Gone in 60 Seconds (2000),Action|Crime\n3718,American Pimp (1999),Documentary\n3719,Love's Labour's Lost (2000),Comedy|Romance\n3720,Sunshine (1999),Drama\n3721,Trixie (2000),Comedy|Crime|Mystery\n3723,Hamlet (1990),Drama\n3724,Coming Home (1978),Drama|War\n3725,American Pop (1981),Animation|Musical\n3726,Assault on Precinct 13 (1976),Action|Thriller\n3727,Near Dark (1987),Horror|Western\n3728,One False Move (1992),Crime|Drama|Film-Noir|Thriller\n3729,Shaft (1971),Action|Crime|Drama|Thriller\n3730,\"Conversation, The (1974)\",Drama|Mystery\n3731,Cutter's Way (1981),Drama|Thriller\n3732,\"Fury, The (1978)\",Horror\n3733,\"Paper Chase, The (1973)\",Drama\n3734,Prince of the City (1981),Drama\n3735,Serpico (1973),Crime|Drama\n3736,\"Ace in the Hole (Big Carnival, The) (1951)\",Drama\n3737,Lonely Are the Brave (1962),Drama|Western\n3738,\"Sugarland Express, The (1974)\",Drama\n3739,Trouble in Paradise (1932),Comedy|Romance\n3740,Big Trouble in Little China (1986),Action|Adventure|Comedy|Fantasy\n3741,Badlands (1973),Crime|Drama|Thriller\n3742,Battleship Potemkin (1925),Drama|War\n3743,Boys and Girls (2000),Comedy|Romance\n3744,Shaft (2000),Action|Crime|Thriller\n3745,Titan A.E. (2000),Action|Adventure|Animation|Children|Sci-Fi\n3746,Butterfly (La lengua de las mariposas) (1999),Drama\n3747,Jesus' Son (1999),Drama\n3751,Chicken Run (2000),Animation|Children|Comedy\n3752,\"Me, Myself & Irene (2000)\",Adventure|Comedy\n3753,\"Patriot, The (2000)\",Action|Drama|War\n3754,\"Adventures of Rocky and Bullwinkle, The (2000)\",Adventure|Animation|Children|Comedy|Fantasy\n3755,\"Perfect Storm, The (2000)\",Drama|Thriller\n3757,Asylum (1972),Horror\n3758,Communion (1989),Drama|Sci-Fi|Thriller\n3759,Fun and Fancy Free (1947),Animation|Children|Musical\n3760,\"Kentucky Fried Movie, The (1977)\",Comedy\n3761,\"Blood In, Blood Out (1993)\",Action|Crime|Drama|Thriller\n3763,F/X (1986),Action|Crime|Thriller\n3764,F/X2 (a.k.a. F/X 2 - The Deadly Art of Illusion) (1991),Action|Crime|Thriller\n3765,\"Hot Spot, The (1990)\",Crime|Drama|Romance\n3766,Missing in Action (1984),Action|War\n3768,Braddock: Missing in Action III (1988),Action|War\n3769,Thunderbolt and Lightfoot (1974),Action\n3770,Dreamscape (1984),Horror|Sci-Fi|Thriller\n3771,The Golden Voyage of Sinbad (1973),Action|Adventure|Fantasy\n3773,House Party (1990),Comedy\n3774,House Party 2 (1991),Comedy|Drama|Romance\n3775,Make Mine Music (1946),Animation|Children|Musical\n3777,Nekromantik (1987),Comedy|Horror\n3780,Rocketship X-M (1950),Sci-Fi\n3783,Croupier (1998),Crime|Drama\n3784,\"Kid, The (2000)\",Comedy|Fantasy\n3785,Scary Movie (2000),Comedy|Horror\n3786,But I'm a Cheerleader (1999),Comedy\n3787,Shower (Xizao) (1999),Comedy\n3788,Blow-Up (Blowup) (1966),Drama|Mystery\n3789,\"Pawnbroker, The (1964)\",Drama\n3790,Groove (2000),Drama\n3791,Footloose (1984),Drama\n3792,Duel in the Sun (1946),Drama|Romance|Western\n3793,X-Men (2000),Action|Adventure|Sci-Fi\n3794,Chuck & Buck (2000),Comedy|Drama\n3795,\"Five Senses, The (1999)\",Drama\n3798,What Lies Beneath (2000),Drama|Horror|Mystery\n3799,Pokémon the Movie 2000 (2000),Animation|Children\n3800,Criminal Lovers (1999),Crime|Drama|Romance|Thriller\n3801,Anatomy of a Murder (1959),Drama|Mystery\n3802,Freejack (1992),Action|Sci-Fi\n3804,H.O.T.S. (1979),Comedy\n3805,Knightriders (1981),Action|Adventure|Drama\n3806,Mackenna's Gold (1969),Western\n3807,Sinbad and the Eye of the Tiger (1977),Adventure|Fantasy\n3809,What About Bob? (1991),Comedy\n3810,White Sands (1992),Drama|Thriller\n3811,Breaker Morant (1980),Drama|War\n3812,Everything You Always Wanted to Know About Sex * But Were Afraid to Ask (1972),Comedy\n3813,Interiors (1978),Drama\n3814,Love and Death (1975),Comedy\n3816,\"Official Story, The (La historia oficial) (1985)\",Drama\n3819,Tampopo (1985),Comedy\n3820,Thomas and the Magic Railroad (2000),Children\n3821,Nutty Professor II: The Klumps (2000),Comedy\n3822,\"Girl on the Bridge, The (Fille sur le pont, La) (1999)\",Drama|Romance\n3823,Wonderland (1999),Drama\n3824,Autumn in New York (2000),Drama|Romance\n3825,Coyote Ugly (2000),Comedy|Drama|Romance\n3826,Hollow Man (2000),Horror|Sci-Fi|Thriller\n3827,Space Cowboys (2000),Action|Adventure|Comedy|Sci-Fi\n3829,Mad About Mambo (2000),Comedy|Romance\n3831,Saving Grace (2000),Comedy\n3832,\"Black Sabbath (Tre volti della paura, I) (1963)\",Horror\n3833,\"Brain That Wouldn't Die, The (1962)\",Horror|Sci-Fi\n3834,Bronco Billy (1980),Adventure|Drama|Romance\n3835,\"Crush, The (1993)\",Thriller\n3836,Kelly's Heroes (1970),Action|Comedy|War\n3837,Phantasm II (1988),Action|Fantasy|Horror|Sci-Fi|Thriller\n3838,Phantasm III: Lord of the Dead (1994),Horror\n3839,Phantasm IV: Oblivion (1998),Horror\n3840,Pumpkinhead (1988),Horror\n3841,Air America (1990),Action|Comedy\n3843,Sleepaway Camp (1983),Horror\n3844,Steel Magnolias (1989),Drama\n3845,And God Created Woman (Et Dieu... créa la femme) (1956),Drama\n3846,Easy Money (1983),Comedy\n3847,\"Ilsa, She Wolf of the SS (1974)\",Horror\n3848,Silent Fall (1994),Drama|Thriller\n3849,The Spiral Staircase (1945),Horror|Mystery|Thriller\n3851,I'm the One That I Want (2000),Comedy\n3852,\"Tao of Steve, The (2000)\",Comedy\n3854,Aimée & Jaguar (1999),Drama|Romance|War\n3855,\"Affair of Love, An (Liaison pornographique, Une) (1999)\",Drama|Romance\n3857,Bless the Child (2000),Thriller\n3858,Cecil B. DeMented (2000),Comedy\n3859,\"Eyes of Tammy Faye, The (2000)\",Documentary\n3860,\"Opportunists, The (2000)\",Comedy|Crime|Drama\n3861,\"Replacements, The (2000)\",Comedy\n3863,\"Cell, The (2000)\",Drama|Horror|Thriller\n3864,Godzilla 2000 (Gojira ni-sen mireniamu) (1999),Action|Adventure|Sci-Fi\n3865,\"Original Kings of Comedy, The (2000)\",Comedy|Documentary\n3868,\"Naked Gun: From the Files of Police Squad!, The (1988)\",Action|Comedy|Crime|Romance\n3869,\"Naked Gun 2 1/2: The Smell of Fear, The (1991)\",Comedy\n3870,Our Town (1940),Drama\n3871,Shane (1953),Drama|Western\n3872,\"Suddenly, Last Summer (1959)\",Drama\n3873,Cat Ballou (1965),Comedy|Western\n3875,\"Devil Rides Out, The (1968)\",Horror\n3877,Supergirl (1984),Action|Adventure|Fantasy\n3879,\"Art of War, The (2000)\",Action|Thriller\n3880,\"Ballad of Ramblin' Jack, The (2000)\",Documentary\n3882,Bring It On (2000),Comedy\n3883,Catfish in Black Bean Sauce (2000),Comedy|Drama\n3885,Love & Sex (2000),Comedy|Drama|Romance\n3886,Steal This Movie! (2000),Drama\n3889,Highlander: Endgame (Highlander IV) (2000),Action|Adventure|Fantasy\n3890,Back Stage (2000),Documentary\n3891,Turn It Up (2000),Crime|Drama\n3892,Anatomy (Anatomie) (2000),Horror\n3893,Nurse Betty (2000),Comedy|Crime|Drama|Romance|Thriller\n3895,\"Watcher, The (2000)\",Crime|Thriller\n3896,\"Way of the Gun, The (2000)\",Crime|Thriller\n3897,Almost Famous (2000),Drama\n3900,Crime and Punishment in Suburbia (2000),Comedy|Drama\n3901,Duets (2000),Comedy|Drama\n3902,Goya in Bordeaux (Goya en Burdeos) (1999),Drama\n3903,Urbania (2000),Drama\n3905,\"Specials, The (2000)\",Comedy\n3906,Under Suspicion (2000),Crime|Thriller\n3908,Urban Legends: Final Cut (2000),Horror\n3909,Woman on Top (2000),Comedy|Romance\n3910,Dancer in the Dark (2000),Drama|Musical\n3911,Best in Show (2000),Comedy\n3913,Barenaked in America (1999),Documentary\n3914,\"Broken Hearts Club, The (2000)\",Drama\n3915,Girlfight (2000),Drama\n3916,Remember the Titans (2000),Drama\n3917,Hellraiser (1987),Horror\n3918,Hellbound: Hellraiser II (1988),Horror\n3919,Hellraiser III: Hell on Earth (1992),Horror\n3920,\"Faraway, So Close (In weiter Ferne, so nah!) (1993)\",Drama|Fantasy|Mystery|Romance\n3921,Beach Party (1963),Comedy\n3922,Bikini Beach (1964),Comedy\n3923,Return of the Fly (1959),Horror|Sci-Fi\n3924,Pajama Party (1964),Comedy\n3925,Stranger Than Paradise (1984),Comedy|Drama\n3926,Voyage to the Bottom of the Sea (1961),Adventure|Sci-Fi\n3927,Fantastic Voyage (1966),Adventure|Sci-Fi\n3928,Abbott and Costello Meet Frankenstein (1948),Comedy|Horror\n3929,\"Bank Dick, The (1940)\",Comedy\n3930,\"Creature from the Black Lagoon, The (1954)\",Adventure|Horror|Sci-Fi\n3932,\"Invisible Man, The (1933)\",Horror|Sci-Fi\n3933,\"Killer Shrews, The (1959)\",Horror|Sci-Fi\n3934,Kronos (1957),Sci-Fi\n3936,Phantom of the Opera (1943),Horror|Musical|Thriller\n3937,Runaway (1984),Sci-Fi|Thriller\n3938,\"Slumber Party Massacre, The (1982)\",Horror\n3939,Slumber Party Massacre II (1987),Horror\n3940,Slumber Party Massacre III (1990),Horror\n3941,Sorority House Massacre (1986),Horror\n3942,Sorority House Massacre II (1990),Horror\n3943,Bamboozled (2000),Comedy\n3945,Digimon: The Movie (2000),Adventure|Animation|Children\n3946,Get Carter (2000),Action|Drama|Thriller\n3947,Get Carter (1971),Action|Crime|Drama|Thriller\n3948,Meet the Parents (2000),Comedy\n3949,Requiem for a Dream (2000),Drama\n3950,Tigerland (2000),Drama\n3951,Two Family House (2000),Drama\n3952,\"Contender, The (2000)\",Drama|Thriller\n3953,Dr. T and the Women (2000),Comedy|Romance\n3955,\"Ladies Man, The (2000)\",Comedy\n3956,Lost Souls (2000),Drama|Horror|Thriller\n3957,Billy Jack (1971),Action|Drama\n3959,\"Time Machine, The (1960)\",Action|Adventure|Sci-Fi\n3960,Haunted (1995),Drama|Thriller\n3961,Ghoulies (1985),Horror\n3962,Ghoulies II (1987),Comedy|Horror\n3963,\"Unsinkable Molly Brown, The (1964)\",Musical\n3964,\"Adventures of Ichabod and Mr. Toad, The (1949)\",Animation|Children\n3965,\"Strange Love of Martha Ivers, The (1946)\",Drama|Film-Noir\n3966,Detour (1945),Crime|Film-Noir\n3967,Billy Elliot (2000),Drama\n3968,Bedazzled (2000),Comedy\n3969,Pay It Forward (2000),Drama\n3970,\"Beyond, The (E tu vivrai nel terrore - L'aldilà) (1981)\",Horror\n3971,\"Private Eyes, The (1981)\",Comedy|Mystery\n3972,\"Legend of Drunken Master, The (Jui kuen II) (1994)\",Action|Comedy\n3973,Book of Shadows: Blair Witch 2 (2000),Crime|Horror|Mystery|Thriller\n3975,Lucky Numbers (2000),Comedy|Drama\n3976,Stardom (2000),Comedy|Drama\n3977,Charlie's Angels (2000),Action|Comedy\n3978,\"Legend of Bagger Vance, The (2000)\",Drama|Romance\n3979,Little Nicky (2000),Comedy\n3980,Men of Honor (2000),Drama\n3981,Red Planet (2000),Action|Sci-Fi|Thriller\n3983,You Can Count on Me (2000),Drama|Romance\n3984,Diamonds Are Forever (1971),Action|Adventure|Thriller\n3985,\"Eagle Has Landed, The (1976)\",Drama|War\n3986,\"6th Day, The (2000)\",Action|Sci-Fi|Thriller\n3987,Bounce (2000),Drama|Romance\n3988,How the Grinch Stole Christmas (a.k.a. The Grinch) (2000),Children|Comedy|Fantasy\n3989,One Day in September (1999),Documentary\n3990,Rugrats in Paris: The Movie (2000),Animation|Children|Comedy\n3991,102 Dalmatians (2000),Children|Comedy\n3992,Malèna (2000),Drama|Romance|War\n3993,Quills (2000),Drama|Romance\n3994,Unbreakable (2000),Drama|Sci-Fi\n3996,\"Crouching Tiger, Hidden Dragon (Wo hu cang long) (2000)\",Action|Drama|Romance\n3997,Dungeons & Dragons (2000),Action|Adventure|Comedy|Fantasy\n3998,Proof of Life (2000),Drama\n3999,Vertical Limit (2000),Action|Adventure\n4000,\"Bounty, The (1984)\",Adventure|Drama\n4001,Code of Silence (1985),Action\n4002,\"Planes, Trains & Automobiles (1987)\",Comedy\n4003,She's Having a Baby (1988),Comedy\n4005,\"Living Daylights, The (1987)\",Action|Adventure|Thriller\n4006,Transformers: The Movie (1986),Adventure|Animation|Children|Sci-Fi\n4007,Wall Street (1987),Drama\n4008,Born on the Fourth of July (1989),Drama|War\n4009,Talk Radio (1988),Drama\n4010,Brewster's Millions (1985),Comedy\n4011,Snatch (2000),Comedy|Crime|Thriller\n4012,Punchline (1988),Comedy|Drama\n4014,Chocolat (2000),Drama|Romance\n4015,\"Dude, Where's My Car? (2000)\",Comedy|Sci-Fi\n4016,\"Emperor's New Groove, The (2000)\",Adventure|Animation|Children|Comedy|Fantasy\n4017,Pollock (2000),Drama\n4018,What Women Want (2000),Comedy|Romance\n4019,Finding Forrester (2000),Drama\n4020,\"Gift, The (2000)\",Thriller\n4021,Before Night Falls (2000),Drama\n4022,Cast Away (2000),Drama\n4023,\"Family Man, The (2000)\",Comedy|Drama|Romance\n4024,\"House of Mirth, The (2000)\",Romance\n4025,Miss Congeniality (2000),Comedy|Crime\n4026,Nowhere to Hide (Injeong sajeong bol geot eobtda) (1999),Action|Comedy|Crime|Thriller\n4027,\"O Brother, Where Art Thou? (2000)\",Adventure|Comedy|Crime\n4029,State and Main (2000),Comedy|Drama\n4030,Dracula 2000 (2000),Horror\n4031,All the Pretty Horses (2000),Drama|Romance|Western\n4033,Thirteen Days (2000),Drama|Thriller|War\n4034,Traffic (2000),Crime|Drama|Thriller\n4035,\"Claim, The (2000)\",Romance|Western\n4036,Shadow of the Vampire (2000),Drama|Horror\n4037,House of Games (1987),Crime|Film-Noir|Mystery|Thriller\n4039,Annie (1982),Children|Musical\n4040,Don't Tell Mom the Babysitter's Dead (1991),Comedy\n4041,\"Officer and a Gentleman, An (1982)\",Drama|Romance\n4042,\"Alamo, The (1960)\",Action|Drama|War|Western\n4043,At Close Range (1986),Crime|Drama\n4045,Breakheart Pass (1975),Western\n4046,Friendly Persuasion (1956),Drama\n4047,Gettysburg (1993),Drama|War\n4048,Imaginary Crimes (1994),Drama\n4051,Horrors of Spider Island (Ein Toter Hing im Netz) (1960),Horror|Sci-Fi\n4052,Antitrust (2001),Crime|Drama|Thriller\n4053,Double Take (2001),Action|Comedy\n4054,Save the Last Dance (2001),Drama|Romance\n4055,Panic (2000),Drama\n4056,\"Pledge, The (2001)\",Crime|Drama|Mystery|Thriller\n4060,Love Field (1992),Drama\n4061,The Man in the Moon (1991),Drama|Romance\n4062,Mystic Pizza (1988),Comedy|Drama|Romance\n4063,Prelude to a Kiss (1992),Comedy|Drama|Romance\n4066,I'm Gonna Git You Sucka (1988),Action|Comedy\n4067,Untamed Heart (1993),Drama|Romance\n4068,Sugar & Spice (2001),Comedy\n4069,\"Wedding Planner, The (2001)\",Comedy|Romance\n4073,\"Invisible Circus, The (2001)\",Drama|Romance\n4076,Two Ninas (1999),Comedy|Romance\n4077,\"With a Friend Like Harry... (Harry, un ami qui vous veut du bien) (2000)\",Drama|Thriller\n4079,Amazon Women on the Moon (1987),Comedy|Sci-Fi\n4080,Baby Boom (1987),Comedy\n4081,Back to the Beach (1987),Comedy\n4082,Barfly (1987),Comedy|Drama|Romance\n4084,Beverly Hills Cop II (1987),Action|Comedy|Crime|Thriller\n4085,Beverly Hills Cop (1984),Action|Comedy|Crime|Drama\n4086,\"Big Easy, The (1987)\",Action|Crime|Mystery|Romance|Thriller\n4088,\"Big Town, The (1987)\",Drama|Romance|Thriller\n4089,Born in East L.A. (1987),Comedy\n4090,\"Brave Little Toaster, The (1987)\",Animation|Children\n4091,Can't Buy Me Love (1987),Comedy|Romance\n4092,Cherry 2000 (1987),Romance|Sci-Fi\n4095,Cry Freedom (1987),Drama\n4098,\"Dead, The (1987)\",Drama\n4101,Dogs in Space (1987),Drama\n4102,Eddie Murphy Raw (1987),Comedy|Documentary\n4103,Empire of the Sun (1987),Action|Adventure|Drama|War\n4104,Ernest Goes to Camp (1987),Comedy\n4105,\"Evil Dead, The (1981)\",Fantasy|Horror|Thriller\n4106,Extreme Prejudice (1987),Action|Crime|Drama|Thriller|Western\n4108,Five Corners (1987),Drama\n4109,Flowers in the Attic (1987),Drama|Thriller\n4111,Gardens of Stone (1987),Drama|War\n4114,\"Good Morning, Babylon (1987)\",Drama\n4115,Hiding Out (1987),Comedy\n4116,Hollywood Shuffle (1987),Comedy\n4117,Hope and Glory (1987),Drama\n4121,Innerspace (1987),Action|Adventure|Comedy|Sci-Fi\n4122,Ironweed (1987),Drama\n4123,Ishtar (1987),Comedy\n4124,Jaws: The Revenge (1987),Horror|Thriller\n4126,Less Than Zero (1987),Drama\n4128,\"Lost Boys, The (1987)\",Comedy|Horror|Thriller\n4130,Maid to Order (1987),Comedy|Fantasy\n4131,Making Mr. Right (1987),Comedy|Romance|Sci-Fi\n4132,Mannequin (1987),Comedy|Romance\n4133,Masters of the Universe (1987),Action|Adventure|Fantasy|Sci-Fi\n4135,\"Monster Squad, The (1987)\",Adventure|Comedy|Horror\n4136,\"Month in the Country, A (1987)\",Drama\n4139,No Man's Land (1987),Crime|Drama\n4140,North Shore (1987),Drama|Romance\n4141,Head Over Heels (2001),Comedy|Romance\n4142,Left Behind: The Movie (2000),Action|Adventure|Drama|Thriller\n4143,Valentine (2001),Horror|Mystery\n4144,In the Mood For Love (Fa yeung nin wa) (2000),Drama|Romance\n4146,\"Million Dollar Hotel, The (2001)\",Drama|Mystery|Romance\n4148,Hannibal (2001),Horror|Thriller\n4149,Saving Silverman (Evil Woman) (2001),Comedy|Romance\n4151,\"Taste of Others, The (Le goût des autres) (2000)\",Comedy|Drama|Romance\n4153,Down to Earth (2001),Comedy|Fantasy|Romance\n4155,Sweet November (2001),Drama|Romance\n4156,Company Man (2000),Comedy\n4158,Monkeybone (2001),Animation|Comedy|Fantasy\n4159,3000 Miles to Graceland (2001),Action|Thriller\n4161,\"Mexican, The (2001)\",Action|Comedy\n4162,See Spot Run (2001),Comedy\n4166,Series 7: The Contenders (2001),Action|Drama\n4167,15 Minutes (2001),Thriller\n4168,Get Over It (2001),Comedy|Romance\n4169,Blow Dry (a.k.a. Never Better) (2001),Comedy\n4171,Long Night's Journey Into Day (2000),Documentary\n4173,When Brendan Met Trudy (2000),Comedy|Romance\n4174,Avalon (1990),Drama\n4175,Gray's Anatomy (1996),Comedy|Drama\n4177,\"Mirror Crack'd, The (1980)\",Crime|Mystery|Thriller\n4178,Of Mice and Men (1939),Drama\n4179,Pixote (1981),Drama\n4180,Reform School Girls (1986),Action|Drama\n4181,Tapeheads (1988),Comedy\n4183,\"Unbelievable Truth, The (1989)\",Comedy|Drama\n4184,\"Bishop's Wife, The (1947)\",Comedy|Drama|Romance\n4185,Elvis: That's the Way It Is (1970),Documentary\n4186,\"Fortune Cookie, The (1966)\",Comedy|Drama|Romance\n4187,Lilies of the Field (1963),Drama\n4188,Hans Christian Andersen (1952),Children|Musical\n4189,\"Greatest Story Ever Told, The (1965)\",Drama\n4190,Elmer Gantry (1960),Drama\n4191,Alfie (1966),Comedy|Drama|Romance\n4194,I Know Where I'm Going! (1945),Drama|Romance|War\n4195,\"Abominable Dr. Phibes, The (1971)\",Horror|Mystery\n4197,Real Life (1979),Comedy\n4198,Battle Beyond the Stars (1980),Sci-Fi\n4200,Double Impact (1991),Action\n4201,\"End, The (1978)\",Comedy\n4203,Harley Davidson and the Marlboro Man (1991),Action|Crime|Drama\n4205,Mermaids (1990),Comedy|Drama|Romance\n4207,Navy Seals (1990),Action|Adventure|War\n4208,Unmade Beds (1997),Documentary\n4210,Manhunter (1986),Action|Crime|Drama|Horror|Thriller\n4211,Reversal of Fortune (1990),Drama\n4212,Death on the Nile (1978),Crime|Mystery\n4213,Deepstar Six (1989),Horror|Sci-Fi|Thriller\n4214,Revenge of the Nerds (1984),Comedy\n4215,Revenge of the Nerds II: Nerds in Paradise (1987),Comedy\n4216,Longtime Companion (1990),Drama\n4217,4 Little Girls (1997),Documentary\n4218,River's Edge (1986),Crime|Drama\n4219,Girls Just Want to Have Fun (1985),Comedy\n4220,\"Longest Yard, The (1974)\",Comedy\n4221,Necessary Roughness (1991),Comedy\n4222,C.H.U.D. (1984),Horror\n4223,Enemy at the Gates (2001),Drama|War\n4224,Exit Wounds (2001),Action|Thriller\n4225,\"Dish, The (2001)\",Comedy\n4226,Memento (2000),Mystery|Thriller\n4228,Heartbreakers (2001),Comedy|Crime|Romance\n4229,Say It Isn't So (2001),Comedy|Romance\n4231,Someone Like You (2001),Comedy|Romance\n4232,Spy Kids (2001),Action|Adventure|Children|Comedy\n4233,Tomcats (2001),Comedy\n4234,\"Tailor of Panama, The (2001)\",Drama|Thriller\n4235,Amores Perros (Love's a Bitch) (2000),Drama|Thriller\n4236,Keep the River on Your Right: A Modern Cannibal Tale (2000),Documentary\n4237,\"Gleaners & I, The (Les glaneurs et la glaneuse) (2000)\",Documentary\n4238,Along Came a Spider (2001),Action|Crime|Mystery|Thriller\n4239,Blow (2001),Crime|Drama\n4241,Pokémon 3: The Movie (2001),Animation|Children\n4246,Bridget Jones's Diary (2001),Comedy|Drama|Romance\n4247,Joe Dirt (2001),Adventure|Comedy|Mystery|Romance\n4248,Josie and the Pussycats (2001),Comedy\n4251,Chopper (2000),Drama|Thriller\n4252,\"Circle, The (Dayereh) (2000)\",Drama\n4254,Crocodile Dundee in Los Angeles (2001),Comedy|Drama\n4255,Freddy Got Fingered (2001),Comedy\n4262,Scarface (1983),Action|Crime|Drama\n4263,Days of Wine and Roses (1962),Drama\n4265,Driven (2001),Action|Thriller\n4266,\"Forsaken, The (2001)\",Horror\n4267,One Night at McCool's (2001),Comedy\n4268,Town & Country (2001),Comedy\n4270,\"Mummy Returns, The (2001)\",Action|Adventure|Comedy|Thriller\n4271,Eureka (Yurîka) (2000),Drama\n4273,Under the Sand (2000),Drama\n4274,Cleopatra (1963),Drama|Romance\n4275,Krull (1983),Action|Adventure|Fantasy|Sci-Fi\n4276,Lost in America (1985),Comedy\n4277,\"Lost World, The (1925)\",Adventure|Sci-Fi\n4278,Triumph of the Will (Triumph des Willens) (1934),Documentary\n4279,True Believer (1989),Crime\n4280,\"World According to Garp, The (1982)\",Comedy|Drama|Romance\n4281,Candy (1968),Comedy\n4282,Fellini Satyricon (1969),Drama|Fantasy\n4284,Frankie and Johnny (1966),Comedy\n4290,For the Boys (1991),Comedy|Drama|Musical\n4291,Nine to Five (a.k.a. 9 to 5) (1980),Comedy|Crime\n4292,Norma Rae (1979),Drama\n4293,Summer Rental (1985),Comedy\n4294,\"5,000 Fingers of Dr. T, The (1953)\",Children|Fantasy|Musical\n4296,Love Story (1970),Drama|Romance\n4297,Pelle the Conqueror (Pelle erobreren) (1987),Drama\n4298,Rififi (Du rififi chez les hommes) (1955),Crime|Film-Noir|Thriller\n4299,\"Knight's Tale, A (2001)\",Action|Comedy|Romance\n4300,Bread and Roses (2000),Drama\n4302,\"King Is Alive, The (2000)\",Drama\n4304,Startup.com (2001),Documentary\n4305,Angel Eyes (2001),Romance|Thriller\n4306,Shrek (2001),Adventure|Animation|Children|Comedy|Fantasy|Romance\n4308,Moulin Rouge (2001),Drama|Musical|Romance\n4310,Pearl Harbor (2001),Action|Drama|Romance|War\n4312,Himalaya (Himalaya - l'enfance d'un chef) (1999),Adventure|Drama\n4316,Ice Castles (1978),Drama\n4317,Love Potion #9 (1992),Comedy|Romance\n4318,Postcards From the Edge (1990),Comedy|Drama\n4319,Apache (1954),Western\n4321,City Slickers (1991),Comedy|Western\n4322,Eight Men Out (1988),Drama\n4324,\"Kentuckian, The (1955)\",Drama|Western\n4326,Mississippi Burning (1988),Crime|Drama|Thriller\n4327,\"Magnificent Seven, The (1960)\",Adventure|Western\n4329,Rio Bravo (1959),Western\n4332,Suspect (1987),Crime|Drama|Thriller\n4333,Throw Momma from the Train (1987),Comedy|Crime\n4334,Yi Yi (2000),Drama\n4337,\"Sand Pebbles, The (1966)\",Drama|Romance|War\n4338,Twelve O'Clock High (1949),Drama|War\n4339,Von Ryan's Express (1965),Action|Adventure|Drama|War\n4340,\"Animal, The (2001)\",Comedy\n4342,Big Eden (2000),Drama|Romance\n4343,Evolution (2001),Comedy|Sci-Fi\n4344,Swordfish (2001),Action|Crime|Drama\n4345,\"Anniversary Party, The (2001)\",Drama\n4347,Divided We Fall (Musíme si pomáhat) (2000),Comedy|Drama\n4349,Catch-22 (1970),Comedy|War\n4350,Forgotten Silver (1996),Comedy|Documentary\n4351,Point Break (1991),Action|Crime|Thriller\n4352,Shag (1989),Comedy|Drama\n4353,Uncommon Valor (1983),Action|War\n4354,Unlawful Entry (1992),Crime|Thriller\n4355,Youngblood (1986),Action|Drama\n4356,Gentlemen Prefer Blondes (1953),Comedy|Musical|Romance\n4357,How to Marry a Millionaire (1953),Comedy|Drama|Romance\n4359,\"Seven Year Itch, The (1955)\",Comedy\n4360,There's No Business Like Show Business (1954),Musical\n4361,Tootsie (1982),Comedy|Romance\n4366,Atlantis: The Lost Empire (2001),Adventure|Animation|Children|Fantasy\n4367,Lara Croft: Tomb Raider (2001),Action|Adventure\n4368,Dr. Dolittle 2 (2001),Comedy\n4369,\"Fast and the Furious, The (2001)\",Action|Crime|Thriller\n4370,A.I. Artificial Intelligence (2001),Adventure|Drama|Sci-Fi\n4371,Baby Boy (2001),Crime|Drama\n4372,Crazy/Beautiful (2001),Drama|Romance\n4375,\"Adventures of Felix, The (a.k.a. Funny Felix) (Drôle de Félix) (2000)\",Comedy|Drama\n4378,Sexy Beast (2000),Crime|Drama\n4380,\"Princess and the Warrior, The (Krieger und die Kaiserin, Der) (2000)\",Drama|Romance\n4381,\"Closet, The (Placard, Le) (2001)\",Comedy\n4383,\"Crimson Rivers, The (Rivières pourpres, Les) (2000)\",Crime|Drama|Mystery|Thriller\n4384,Lumumba (2000),Drama\n4386,Cats & Dogs (2001),Children|Comedy\n4387,Kiss of the Dragon (2001),Action\n4388,Scary Movie 2 (2001),Comedy\n4389,Lost and Delirious (2001),Drama\n4390,Rape Me (Baise-moi) (2000),Crime|Drama|Thriller\n4391,\"Vertical Ray of the Sun, The (Mua he chieu thang dung) (2000)\",Drama\n4392,Alice (1990),Comedy|Drama|Fantasy|Romance\n4394,Beach Blanket Bingo (1965),Comedy|Musical\n4396,\"Cannonball Run, The (1981)\",Action|Comedy\n4397,Cannonball Run II (1984),Action|Comedy\n4399,\"Diary of a Chambermaid (Journal d'une femme de chambre, Le) (1964)\",Comedy|Drama\n4401,Donovan's Reef (1963),Action|Comedy|Romance\n4402,Dr. Goldfoot and the Bikini Machine (1965),Comedy\n4403,\"Fall of the House of Usher, The (House of Usher) (1960)\",Horror\n4404,Faust (1926),Drama|Fantasy|Horror\n4405,\"Last Laugh, The (Letzte Mann, Der) (1924)\",Drama\n4406,\"Man Who Shot Liberty Valance, The (1962)\",Crime|Drama|Western\n4407,Salvador (1986),Drama|Thriller|War\n4409,Shadows and Fog (1991),Comedy|Drama|Mystery|Thriller\n4410,Something Wild (1986),Comedy|Crime|Drama\n4411,Sons of Katie Elder (1965),Western\n4414,X: The Man with the X-Ray Eyes (1963),Sci-Fi|Thriller\n4415,Cheech & Chong's Nice Dreams (1981),Comedy\n4417,\"House by the Cemetery, The (Quella villa accanto al cimitero) (1981)\",Horror\n4420,\"Barefoot Contessa, The (1954)\",Drama\n4422,Cries and Whispers (Viskningar och rop) (1972),Drama\n4424,\"Garden of the Finzi-Continis, The (Giardino dei Finzi-Contini, Il) (1970)\",Drama\n4426,Kiss Me Deadly (1955),Film-Noir\n4427,\"Lion in Winter, The (1968)\",Drama\n4428,\"Misfits, The (1961)\",Comedy|Drama|Romance|Western\n4432,Sweet Smell of Success (1957),Drama|Film-Noir\n4433,Written on the Wind (1956),Drama\n4437,Suspiria (1977),Horror\n4438,\"Fist of Fury (Chinese Connection, The) (Jing wu men) (1972)\",Action|Drama|Romance|Thriller\n4440,\"Big Boss, The (Fists of Fury) (Tang shan da xiong) (1971)\",Action|Thriller\n4441,Game of Death (1978),Action\n4442,\"Last Dragon, The (1985)\",Action|Comedy|Drama\n4443,Outland (1981),Action|Sci-Fi|Thriller\n4444,\"Way of the Dragon, The (a.k.a. Return of the Dragon) (Meng long guo jiang) (1972)\",Action|Crime\n4445,T-Rex: Back to the Cretaceous (1998),Adventure|Documentary|IMAX\n4446,Final Fantasy: The Spirits Within (2001),Adventure|Animation|Fantasy|Sci-Fi\n4447,Legally Blonde (2001),Comedy|Romance\n4448,\"Score, The (2001)\",Action|Drama\n4450,Bully (2001),Crime|Drama|Thriller\n4451,Jump Tomorrow (2001),Comedy|Drama|Romance\n4452,Made (2001),Comedy\n4453,Michael Jordan to the Max (2000),Documentary|IMAX\n4454,More (1998),Animation|Drama|Sci-Fi|IMAX\n4458,Africa: The Serengeti (1994),Documentary|IMAX\n4459,Alaska: Spirit of the Wild (1997),Documentary|IMAX\n4462,18 Again! (1988),Comedy|Fantasy\n4464,\"Accidental Tourist, The (1988)\",Comedy|Drama|Romance\n4465,\"Accused, The (1988)\",Drama\n4466,Above the Law (1988),Action|Crime|Drama\n4467,\"Adventures of Baron Munchausen, The (1988)\",Adventure|Comedy|Fantasy\n4469,Appointment with Death (1988),Crime|Mystery\n4470,Ariel (1988),Drama\n4471,Arthur 2: On the Rocks (1988),Comedy|Romance\n4473,Bat*21 (1988),Drama|War\n4474,Beaches (1988),Comedy|Drama|Musical\n4475,\"Beast of War, The (Beast, The) (1988)\",Drama|War\n4477,Big Top Pee-Wee (1988),Adventure|Children|Comedy\n4478,Biloxi Blues (1988),Comedy|Drama\n4479,Bird (1988),Drama|Musical\n4480,\"Blob, The (1988)\",Horror|Sci-Fi\n4482,\"Bright Lights, Big City (1988)\",Drama\n4483,Caddyshack II (1988),Comedy\n4486,Clean and Sober (1988),Drama\n4487,Cocktail (1988),Drama|Romance\n4488,Colors (1988),Action|Crime|Drama\n4489,Coming to America (1988),Comedy|Romance\n4490,\"Couch Trip, The (1988)\",Comedy\n4491,Criminal Law (1988),Thriller\n4492,Critters (1986),Comedy|Sci-Fi\n4493,Critters 2: The Main Course (1988),Comedy|Horror|Sci-Fi\n4495,Crossing Delancey (1988),Comedy|Romance\n4496,D.O.A. (1988),Film-Noir|Mystery|Thriller\n4498,\"Dead Pool, The (1988)\",Action|Crime|Thriller\n4499,Dirty Rotten Scoundrels (1988),Comedy\n4500,Drowning by Numbers (1988),Comedy|Drama\n4501,\"Elvira, Mistress of the Dark (1988)\",Comedy|Horror\n4502,Ernest Saves Christmas (1988),Children|Comedy\n4503,Everybody's All-American (1988),Romance\n4506,Frantic (1988),Crime|Mystery|Thriller\n4508,Gorillas in the Mist (1988),Drama\n4509,\"Great Outdoors, The (1988)\",Comedy\n4511,High Spirits (1988),Comedy\n4515,Imagine: John Lennon (1988),Documentary\n4516,Johnny Be Good (1988),Comedy\n4518,The Lair of the White Worm (1988),Comedy|Horror\n4519,\"Land Before Time, The (1988)\",Adventure|Animation|Children|Fantasy\n4520,License to Drive (1988),Comedy\n4521,Little Nikita (1988),Drama\n4522,Masquerade (1988),Mystery|Romance|Thriller\n4523,Milagro Beanfield War (1988),Comedy|Drama|Fantasy\n4524,Moon Over Parador (1988),Comedy\n4526,My Stepmother Is an Alien (1988),Comedy|Romance|Sci-Fi\n4527,\"Night in the Life of Jimmy Reardon, A (1988)\",Comedy|Romance\n4528,Off Limits (1988),Action|Thriller|War\n4529,Bagdad Cafe (Out of Rosenheim) (1987),Comedy|Drama\n4531,Red Heat (1988),Action\n4532,Return of the Living Dead Part II (1988),Comedy|Horror\n4533,\"Return of the Living Dead, The (1985)\",Comedy|Horror|Sci-Fi\n4534,Return to Snowy River (a.k.a. The Man From Snowy River II) (1988),Adventure|Drama|Western\n4535,\"Man from Snowy River, The (1982)\",Drama|Romance|Western\n4537,Running on Empty (1988),Drama\n4538,Salome's Last Dance (1988),Comedy|Drama\n4539,Salsa (1988),Musical|Romance\n4541,\"Serpent and the Rainbow, The (1988)\",Horror\n4543,Shoot to Kill (1988),Action|Adventure\n4544,Short Circuit 2 (1988),Comedy|Sci-Fi\n4545,Short Circuit (1986),Comedy|Sci-Fi\n4546,\"Vanishing, The (Spoorloos) (1988)\",Drama|Thriller\n4550,Switching Channels (1988),Comedy\n4552,\"Tetsuo, the Ironman (Tetsuo) (1988)\",Action|Horror|Sci-Fi|Thriller\n4553,They Live (1988),Action|Sci-Fi|Thriller\n4555,Torch Song Trilogy (1988),Comedy|Drama|Romance\n4557,Tucker: The Man and His Dream (1988),Drama\n4558,Twins (1988),Comedy\n4559,Vice Versa (1988),Comedy\n4560,Watchers (1988),Horror|Sci-Fi\n4561,Waxwork (1988),Comedy|Horror\n4562,Without a Clue (1988),Comedy|Mystery\n4563,Young Einstein (1988),Comedy\n4564,Always (1989),Drama|Fantasy|Romance\n4565,American Ninja (1985),Action|Adventure\n4566,American Ninja 2: The Confrontation (1987),Action|Adventure\n4567,American Ninja 3: Blood Hunt (1989),Action|Adventure\n4568,Best of the Best (1989),Action\n4569,Best of the Best 2 (1993),Action\n4570,\"Big Picture, The (1989)\",Comedy|Drama\n4571,Bill & Ted's Excellent Adventure (1989),Adventure|Comedy|Sci-Fi\n4572,Black Rain (1989),Action|Crime|Drama\n4573,Blaze (1989),Comedy|Drama\n4577,Casualties of War (1989),Drama|War\n4578,Chances Are (1989),Comedy|Romance\n4584,Dream a Little Dream (1989),Comedy|Drama|Romance\n4585,\"Dream Team, The (1989)\",Comedy\n4587,Earth Girls Are Easy (1988),Comedy|Musical|Sci-Fi\n4589,Eddie and the Cruisers (1983),Drama|Musical|Mystery\n4590,Enemies: A Love Story (1989),Drama\n4591,Erik the Viking (1989),Adventure|Comedy|Fantasy\n4592,\"Experts, The (1989)\",Comedy\n4593,Family Business (1989),Comedy\n4600,Gross Anatomy (a.k.a. A Cut Above) (1989),Comedy|Drama\n4602,Harlem Nights (1989),Comedy|Crime|Romance\n4603,Her Alibi (1989),Comedy|Romance\n4605,How to Get Ahead in Advertising (1989),Comedy|Fantasy\n4606,Immediate Family (1989),Drama\n4608,\"Innocent Man, An (1989)\",Crime|Drama\n4610,\"January Man, The (1989)\",Comedy|Crime|Mystery|Thriller\n4612,Jesus of Montreal (Jésus de Montréal) (1989),Drama\n4614,Kickboxer (1989),Action\n4615,Last Exit to Brooklyn (1989),Drama\n4616,Lean on Me (1989),Drama\n4617,Let It Ride (1989),Comedy\n4618,Leviathan (1989),Horror|Sci-Fi|Thriller\n4619,Little Monsters (1989),Comedy\n4621,Look Who's Talking (1989),Comedy|Romance\n4622,Loverboy (1989),Comedy\n4623,Major League (1989),Comedy\n4624,Meet the Feebles (1989),Animation|Comedy|Musical\n4625,Millennium (1989),Drama|Sci-Fi|Thriller\n4626,Miracle Mile (1989),Drama|Romance|Sci-Fi\n4627,Miss Firecracker (1989),Comedy\n4628,New York Stories (1989),Comedy|Drama\n4629,Next of Kin (1989),Action|Crime|Thriller\n4630,No Holds Barred (1989),Action\n4632,\"Package, The (1989)\",Action|Thriller\n4634,Penn & Teller Get Killed (1989),Adventure|Comedy\n4636,\"Punisher, The (1989)\",Action\n4638,Jurassic Park III (2001),Action|Adventure|Sci-Fi|Thriller\n4639,America's Sweethearts (2001),Comedy|Romance\n4640,Brother (2000),Action|Crime|Thriller\n4641,Ghost World (2001),Comedy|Drama\n4642,Hedwig and the Angry Inch (2000),Comedy|Drama|Musical\n4643,Planet of the Apes (2001),Action|Adventure|Drama|Sci-Fi\n4644,Bread and Tulips (Pane e tulipani) (2000),Comedy|Drama|Romance\n4645,Cure (1997),Crime|Horror|Thriller\n4649,Wet Hot American Summer (2001),Comedy\n4652,\"Return of Swamp Thing, The (1989)\",Comedy|Horror|Sci-Fi\n4654,Road House (1989),Action|Drama\n4655,Romero (1989),Drama\n4658,Santa Sangre (1989),Drama|Horror|Mystery|Thriller\n4659,Scandal (1989),Drama\n4660,Scenes from the Class Struggle in Beverly Hills (1989),Comedy\n4661,Sea of Love (1989),Crime|Drama|Thriller\n4662,\"See No Evil, Hear No Evil (1989)\",Comedy|Crime\n4663,She's Out of Control (1989),Comedy\n4664,Shirley Valentine (1989),Comedy|Romance\n4666,Skin Deep (1989),Comedy\n4667,Slaves of New York (1989),Drama\n4670,\"Stepfather, The (1987)\",Horror|Thriller\n4673,Tango & Cash (1989),Action|Comedy|Crime|Thriller\n4674,Tap (1989),Drama\n4675,Three Fugitives (1989),Action|Comedy\n4676,Troop Beverly Hills (1989),Comedy\n4677,Turner & Hooch (1989),Comedy|Crime\n4678,UHF (1989),Comedy\n4679,Uncle Buck (1989),Comedy\n4680,Vampire's Kiss (1989),Comedy|Fantasy|Horror\n4681,\"War of the Roses, The (1989)\",Comedy|Drama\n4682,Warlock (1989),Action|Horror\n4684,Worth Winning (1989),Comedy\n4686,Weekend at Bernie's II (1993),Adventure|Comedy\n4687,Billy Liar (1963),Comedy\n4688,Black Robe (1991),Adventure|Drama\n4690,\"Cotton Club, The (1984)\",Crime|Musical\n4691,Def-Con 4 (1985),Action|Sci-Fi\n4692,\"Hotel New Hampshire, The (1984)\",Drama\n4696,\"Zorro, the Gay Blade (1981)\",Comedy\n4697,Basket Case (1982),Comedy|Horror\n4698,Orphans (1997),Comedy|Drama\n4699,Original Sin (2001),Drama|Romance|Thriller\n4700,\"Princess Diaries, The (2001)\",Children|Comedy|Romance\n4701,Rush Hour 2 (2001),Action|Comedy\n4703,Chocolat (1988),Drama\n4704,Hatari! (1962),Adventure|Comedy\n4705,\"Cage aux Folles, La (1978)\",Comedy\n4706,\"Cage aux Folles II, La (1980)\",Comedy\n4709,Paint Your Wagon (1969),Comedy|Musical|Western\n4710,\"Shootist, The (1976)\",Drama|Western\n4711,Theremin: An Electronic Odyssey (1993),Documentary\n4712,\"Wild Child, The (Enfant sauvage, L') (1970)\",Drama\n4713,Altered States (1980),Drama|Sci-Fi\n4714,Any Which Way You Can (1980),Comedy\n4716,Bad Timing: A Sensual Obsession (1980),Drama\n4717,\"Battle Creek Brawl (Big Brawl, The) (1980)\",Action|Comedy\n4718,American Pie 2 (2001),Comedy\n4719,Osmosis Jones (2001),Action|Animation|Comedy|Crime|Drama|Romance|Thriller\n4720,\"Others, The (2001)\",Drama|Horror|Mystery|Thriller\n4721,American Outlaws (2001),Action|Comedy|Western\n4722,All Over the Guy (2001),Comedy\n4723,\"Deep End, The (2001)\",Drama\n4724,On the Edge (2001),Drama\n4725,Session 9 (2001),Horror|Thriller\n4727,Captain Corelli's Mandolin (2001),Drama|Romance|War\n4728,Rat Race (2001),Comedy\n4731,Innocence (2000),Drama\n4732,Bubble Boy (2001),Comedy\n4733,\"Curse of the Jade Scorpion, The (2001)\",Comedy\n4734,Jay and Silent Bob Strike Back (2001),Adventure|Comedy\n4735,Ghosts of Mars (2001),Horror|Sci-Fi|Thriller\n4736,Summer Catch (2001),Comedy|Drama|Romance\n4737,\"American Rhapsody, An (2001)\",Drama\n4738,Happy Accidents (2000),Romance|Sci-Fi\n4740,Maybe Baby (2000),Comedy|Romance\n4741,Together (Tillsammans) (2000),Comedy|Drama|Romance\n4743,Tortilla Soup (2001),Comedy|Romance\n4744,Jeepers Creepers (2001),Horror\n4745,O (2001),Drama\n4748,3 Ninjas (1992),Action|Children|Comedy\n4749,3 Ninjas Kick Back (1994),Action|Children|Comedy\n4750,3 Ninjas Knuckle Up (1995),Action|Children\n4751,\"Hunter, The (1980)\",Action|Thriller\n4752,Maniac (1980),Horror\n4753,Vamp (1986),Comedy|Horror\n4754,\"Wicker Man, The (1973)\",Drama|Horror|Mystery|Thriller\n4755,Wish Upon a Star (1996),Comedy\n4756,\"Musketeer, The (2001)\",Action|Adventure|Drama|Romance\n4757,Rock Star (2001),Comedy|Drama|Musical\n4761,Diamond Men (2001),Drama\n4763,\"Iron Ladies, The (Satree lek) (2000)\",Comedy\n4765,L.I.E. (2001),Drama\n4766,\"Our Lady of the Assassins (Virgen de los sicarios, La) (2000)\",Crime|Drama|Romance\n4767,Abbott and Costello Meet the Mummy (1955),Comedy|Horror\n4768,\"Dr. Mabuse: The Gambler (Dr. Mabuse, der Spieler) (1922)\",Crime|Mystery|Thriller\n4769,Into the Arms of Strangers: Stories of the Kindertransport (2000),Documentary\n4770,\"Glass House, The (2001)\",Thriller\n4771,Hardball (2001),Drama\n4772,Dinner Rush (2000),Drama\n4774,Big Trouble (2002),Comedy|Crime\n4775,Glitter (2001),Drama|Musical|Romance\n4776,Training Day (2001),Crime|Drama|Thriller\n4782,Sidewalks of New York (2001),Comedy|Romance\n4783,\"Endurance: Shackleton's Legendary Antarctic Expedition, The (2000)\",Documentary\n4784,\"French Lieutenant's Woman, The (1981)\",Drama\n4787,Little Man Tate (1991),Drama\n4789,Phantom of the Paradise (1974),Comedy|Fantasy|Horror|Musical|Thriller\n4792,13 Ghosts (1960),Horror\n4795,Father Goose (1964),Adventure|Comedy|Romance|War\n4796,\"Grass Is Greener, The (1960)\",Comedy|Romance\n4798,Indiscreet (1958),Comedy|Romance\n4799,\"It's a Mad, Mad, Mad, Mad World (1963)\",Action|Adventure|Comedy|Crime\n4800,King Solomon's Mines (1937),Action|Adventure|Drama|Romance|Thriller\n4801,\"Little Foxes, The (1941)\",Drama\n4802,Operation Petticoat (1959),Action|Comedy|Romance|War\n4803,Play Misty for Me (1971),Drama|Thriller\n4804,Pocketful of Miracles (1961),Comedy|Drama\n4806,\"Shop on Main Street, The (Obchod na korze) (1965)\",Drama\n4809,Silkwood (1983),Drama\n4810,I Never Promised You a Rose Garden (1977),Drama\n4811,Quadrophenia (1979),Drama|Musical\n4812,SpaceCamp (1986),Adventure|Sci-Fi\n4814,Don't Say a Word (2001),Thriller\n4815,Hearts in Atlantis (2001),Drama\n4816,Zoolander (2001),Comedy\n4818,Extreme Days (2001),Action|Adventure|Comedy|Drama\n4821,Joy Ride (2001),Adventure|Thriller\n4822,Max Keeble's Big Move (2001),Children|Comedy\n4823,Serendipity (2001),Comedy|Romance\n4826,\"Big Red One, The (1980)\",Action|Adventure|Drama|War\n4830,Brubaker (1980),Crime|Drama\n4831,Can't Stop the Music (1980),Comedy|Musical\n4832,Carny (1980),Drama\n4833,\"Changeling, The (1980)\",Horror|Mystery|Thriller\n4834,Cheech & Chong's Next Movie (1980),Comedy\n4835,Coal Miner's Daughter (1980),Drama\n4836,\"Competition, The (1980)\",Drama|Romance\n4837,Cruising (1980),Crime|Drama|Thriller\n4840,\"Last Metro, The (Dernier métro, Le) (1980)\",Drama|Romance\n4842,\"Dogs of War, The (1980)\",Drama|War\n4844,Bandits (2001),Comedy|Crime|Romance\n4846,Iron Monkey (Siu nin Wong Fei-hung ji: Tit Ma Lau) (1993),Action|Comedy\n4848,Mulholland Drive (2001),Crime|Drama|Film-Noir|Mystery|Thriller\n4849,My First Mister (2001),Comedy|Drama\n4851,Things Behind the Sun (2001),Drama\n4854,Clambake (1967),Musical\n4855,Dirty Harry (1971),Action|Crime|Thriller\n4857,Fiddler on the Roof (1971),Drama|Musical\n4859,Kansas (1988),Crime|Drama\n4861,Mission to Mir (1997),Documentary|IMAX\n4862,Not Without My Daughter (1991),Drama\n4863,Female Trouble (1975),Comedy|Crime\n4865,From Hell (2001),Crime|Horror|Mystery|Thriller\n4866,\"Last Castle, The (2001)\",Action\n4867,Riding in Cars with Boys (2001),Comedy|Drama\n4873,Waking Life (2001),Animation|Drama|Fantasy\n4874,K-PAX (2001),Drama|Fantasy|Mystery|Sci-Fi\n4875,On the Line (2001),Comedy|Romance\n4876,Thirteen Ghosts (a.k.a. Thir13en Ghosts) (2001),Horror|Thriller\n4878,Donnie Darko (2001),Drama|Mystery|Sci-Fi|Thriller\n4880,Life as a House (2001),Drama\n4881,\"Man Who Wasn't There, The (2001)\",Crime|Drama\n4885,Domestic Disturbance (2001),Thriller\n4886,\"Monsters, Inc. (2001)\",Adventure|Animation|Children|Comedy|Fantasy\n4887,\"One, The (2001)\",Action|Sci-Fi|Thriller\n4888,Tape (2001),Drama\n4889,Heist (2001),Crime|Drama\n4890,Shallow Hal (2001),Comedy|Fantasy|Romance\n4893,When a Stranger Calls (1979),Horror|Thriller\n4895,\"Wash, The (2001)\",Comedy\n4896,Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone) (2001),Adventure|Children|Fantasy\n4897,\"Fluffer, The (2001)\",Drama|Romance\n4898,Novocaine (2001),Comedy|Crime|Mystery|Thriller\n4899,Black Knight (2001),Adventure|Comedy|Fantasy\n4901,Spy Game (2001),Action|Crime|Drama|Thriller\n4902,\"Devil's Backbone, The (Espinazo del diablo, El) (2001)\",Drama|Fantasy|Horror|Thriller|War\n4903,In the Bedroom (2001),Drama\n4911,Jabberwocky (1977),Adventure|Comedy|Fantasy\n4912,Funny Girl (1968),Drama|Musical|Romance\n4914,Breathless (À bout de souffle) (1960),Crime|Drama|Romance\n4915,\"Beastmaster, The (1982)\",Action|Adventure|Fantasy\n4920,\"Now, Voyager (1942)\",Drama|Romance\n4921,Little Women (1933),Drama|Romance\n4923,Guadalcanal Diary (1943),Action|War\n4925,\"Cheap Detective, The (1978)\",Comedy\n4927,\"Last Wave, The (1977)\",Fantasy|Mystery|Thriller\n4928,That Obscure Object of Desire (Cet obscur objet du désir) (1977),Drama\n4929,\"Toy, The (1982)\",Comedy\n4930,Funeral in Berlin (1966),Action|Drama|Thriller\n4932,Dressed to Kill (1980),Mystery|Thriller\n4933,\"Earthling, The (1980)\",Adventure|Drama\n4936,Fame (1980),Drama|Musical\n4941,Flash Gordon (1980),Action|Adventure|Sci-Fi\n4945,\"Enforcer, The (1976)\",Crime\n4947,\"Gauntlet, The (1977)\",Action\n4948,I Bury the Living (1958),Horror\n4949,Invasion U.S.A. (1985),Action|Thriller\n4951,Lord of the Flies (1990),Adventure|Drama|Thriller\n4952,Morons From Outer Space (1985),Comedy|Sci-Fi\n4954,Ocean's Eleven (a.k.a. Ocean's 11) (1960),Comedy|Crime\n4956,\"Stunt Man, The (1980)\",Action|Adventure|Comedy|Drama|Romance|Thriller\n4957,Sudden Impact (1983),Crime|Thriller\n4958,Behind Enemy Lines (2001),Action|Drama|War\n4960,\"Independent, The (2000)\",Comedy\n4961,Pornstar: The Legend of Ron Jeremy (2001),Documentary\n4963,Ocean's Eleven (2001),Crime|Thriller\n4964,Baran (2001),Adventure|Drama|Romance\n4965,\"Business of Strangers, The (2001)\",Action|Drama|Thriller\n4967,No Man's Land (2001),Drama|War\n4968,Piñero (2001),Drama\n4969,And Then There Were None (1945),Crime|Mystery\n4970,\"Blue Angel, The (Blaue Engel, Der) (1930)\",Drama\n4971,Moscow on the Hudson (1984),Comedy|Drama\n4972,\"Owl and the Pussycat, The (1970)\",Comedy\n4973,\"Amelie (Fabuleux destin d'Amélie Poulain, Le) (2001)\",Comedy|Romance\n4974,Not Another Teen Movie (2001),Comedy\n4975,Vanilla Sky (2001),Mystery|Romance|Sci-Fi|Thriller\n4976,Iris (2001),Drama\n4977,Kandahar (Safar e Ghandehar) (2001),Drama\n4978,Lantana (2001),Drama|Mystery|Thriller\n4979,\"Royal Tenenbaums, The (2001)\",Comedy|Drama\n4980,Bill & Ted's Bogus Journey (1991),Adventure|Comedy|Fantasy|Sci-Fi\n4981,Clockwise (1986),Comedy\n4984,Morgan! (1966),Comedy|Drama|Fantasy\n4987,Spacehunter: Adventures in the Forbidden Zone (1983),Action|Adventure|Sci-Fi\n4988,White Water Summer (1987),Adventure\n4989,How High (2001),Comedy\n4990,Jimmy Neutron: Boy Genius (2001),Adventure|Animation|Children|Comedy\n4992,Kate & Leopold (2001),Comedy|Romance\n4993,\"Lord of the Rings: The Fellowship of the Ring, The (2001)\",Adventure|Fantasy\n4994,\"Majestic, The (2001)\",Comedy|Drama|Romance\n4995,\"Beautiful Mind, A (2001)\",Drama|Romance\n4996,Little Otik (Otesánek) (2000),Comedy|Drama|Fantasy\n4998,\"Defiant Ones, The (1958)\",Adventure|Crime|Drama|Thriller\n4999,Dodsworth (1936),Drama|Romance\n5000,Medium Cool (1969),Drama|Romance\n5001,Sahara (1943),Action|Drama|War\n5002,Fritz the Cat (1972),Animation\n5003,\"Nine Lives of Fritz the Cat, The (1974)\",Animation\n5004,\"Party, The (1968)\",Comedy\n5008,Witness for the Prosecution (1957),Drama|Mystery|Thriller\n5009,Ali (2001),Drama\n5010,Black Hawk Down (2001),Action|Drama|War\n5012,Yentl (1983),Drama|Musical|Romance\n5013,Gosford Park (2001),Comedy|Drama|Mystery\n5014,I Am Sam (2001),Drama\n5015,Monster's Ball (2001),Drama|Romance\n5016,\"Shipping News, The (2001)\",Drama\n5017,\"Big Heat, The (1953)\",Drama|Film-Noir\n5018,Motorama (1991),Adventure|Comedy|Crime|Drama|Fantasy|Mystery|Sci-Fi|Thriller\n5021,Murder by Death (1976),Comedy|Crime|Mystery|Thriller\n5022,\"Servant, The (1963)\",Drama\n5023,\"Waterdance, The (1992)\",Drama\n5025,Orange County (2002),Comedy\n5026,\"Brotherhood of the Wolf (Pacte des loups, Le) (2001)\",Action|Mystery|Thriller\n5027,Another 48 Hrs. (1990),Action|Comedy|Crime|Drama|Thriller\n5028,What Time Is It There? (Ni neibian jidian) (2001),Drama\n5033,\"Russia House, The (1990)\",Drama|Thriller\n5034,\"Truly, Madly, Deeply (1991)\",Drama|Romance\n5038,\"Flight of Dragons, The (1982)\",Adventure|Animation|Children|Drama|Fantasy\n5039,Dragonslayer (1981),Action|Adventure|Fantasy\n5040,Conan the Destroyer (1984),Action|Adventure|Fantasy\n5041,Fire and Ice (1983),Animation|Fantasy\n5042,Forbidden Zone (1980),Musical|Sci-Fi\n5043,\"Formula, The (1980)\",Thriller\n5046,Impostor (2002),Action|Drama|Sci-Fi|Thriller\n5047,Kung Pow: Enter the Fist (2002),Action|Comedy\n5048,Snow Dogs (2002),Adventure|Children|Comedy\n5049,48 Hrs. (1982),Action|Comedy|Crime|Drama\n5051,Italian for Beginners (Italiensk for begyndere) (2000),Comedy|Drama|Romance\n5053,Blankman (1994),Comedy\n5054,Brainstorm (1983),Sci-Fi|Thriller\n5055,Dragon: The Bruce Lee Story (1993),Action|Drama\n5056,\"Enigma of Kaspar Hauser, The (a.k.a. Mystery of Kaspar Hauser, The) (Jeder für sich und Gott Gegen Alle) (1974)\",Crime|Drama\n5057,4 for Texas (1963),Comedy|Western\n5059,Little Dieter Needs to Fly (1997),Documentary\n5060,M*A*S*H (a.k.a. MASH) (1970),Comedy|Drama|War\n5061,Mrs. Soffel (1984),Drama|Romance\n5062,Seconds (1966),Mystery|Sci-Fi|Thriller\n5063,One-Eyed Jacks (1961),Western\n5064,The Count of Monte Cristo (2002),Action|Adventure|Drama|Thriller\n5065,\"Mothman Prophecies, The (2002)\",Drama|Fantasy|Horror|Mystery|Thriller\n5066,\"Walk to Remember, A (2002)\",Drama|Romance\n5069,Escaflowne: The Movie (Escaflowne) (2000),Action|Adventure|Animation|Drama|Fantasy\n5071,Maelström (2000),Drama|Romance\n5072,Metropolis (2001),Animation|Sci-Fi\n5073,\"Son's Room, The (Stanza del figlio, La) (2001)\",Drama\n5074,Storytelling (2001),Comedy|Drama\n5075,Waydowntown (2000),Comedy\n5076,\"Adventures of Huck Finn, The (1993)\",Adventure|Children|Comedy|Drama\n5079,Young at Heart (1954),Drama|Musical|Romance\n5080,Slackers (2002),Comedy\n5081,Birthday Girl (2001),Drama|Romance\n5083,Rare Birds (2001),Comedy|Drama\n5085,Carmen Jones (1954),Drama|Musical\n5087,Get Out Your Handkerchiefs (Préparez vos mouchoirs) (1978),Comedy|Drama|Romance\n5088,\"Going Places (Valseuses, Les) (1974)\",Comedy|Crime|Drama\n5092,Big Fat Liar (2002),Children|Comedy\n5093,Collateral Damage (2002),Action|Thriller\n5094,Rollerball (2002),Action|Sci-Fi\n5095,\"Scotland, Pa. (2001)\",Comedy|Crime\n5096,Baby's Day Out (1994),Comedy\n5097,Bright Eyes (1934),Comedy|Drama\n5098,Dimples (1936),Musical\n5099,Heidi (1937),Children|Drama\n5101,Richard Pryor Here and Now (1983),Comedy|Documentary\n5102,Rookie of the Year (1993),Comedy|Fantasy\n5103,\"Sandlot, The (1993)\",Children|Comedy|Drama\n5105,Don't Look Now (1973),Drama|Horror|Thriller\n5106,Crossroads (2002),Comedy|Musical|Romance\n5107,Hart's War (2002),Drama|War\n5108,John Q (2002),Crime|Drama|Thriller\n5109,Return to Never Land (2002),Adventure|Animation|Children\n5110,Super Troopers (2001),Comedy|Crime|Mystery\n5111,\"Good Son, The (1993)\",Drama|Thriller\n5114,\"Bad and the Beautiful, The (1952)\",Drama\n5117,Funny Lady (1975),Comedy|Musical\n5119,Saturday Night and Sunday Morning (1960),Drama\n5120,Sleuth (1972),Comedy|Mystery|Thriller\n5121,Stroszek (1977),Comedy|Drama\n5122,Summer of '42 (1971),Drama\n5125,Used Cars (1980),Comedy\n5127,Dragonfly (2002),Drama|Fantasy|Mystery|Romance|Thriller\n5128,Queen of the Damned (2002),Fantasy|Horror\n5134,Mean Machine (2001),Comedy|Drama\n5135,Monsoon Wedding (2001),Comedy|Romance\n5137,Scratch (2001),Documentary\n5139,\"Bad News Bears, The (1976)\",Comedy\n5141,\"Bad News Bears in Breaking Training, The (1977)\",Comedy\n5142,\"Firemen's Ball, The (Horí, má panenko) (1967)\",Comedy|Drama\n5146,Vampire Hunter D: Bloodlust (Banpaia hantâ D) (2000),Animation|Fantasy|Horror|Sci-Fi\n5147,Wild Strawberries (Smultronstället) (1957),Drama\n5151,40 Days and 40 Nights (2002),Comedy|Romance\n5152,We Were Soldiers (2002),Action|Drama|War\n5153,Trouble Every Day (2001),Drama|Horror|Thriller\n5159,Ferngully: The Last Rainforest (1992),Animation|Children|Comedy|Musical\n5161,Intersection (1994),Drama|Romance\n5164,\"Troll in Central Park, A (1994)\",Animation|Children\n5165,Zombie (a.k.a. Zombie 2: The Dead Are Among Us) (Zombi 2) (1979),Horror\n5167,My Favorite Brunette (1947),Comedy|Mystery\n5168,Royal Wedding (1951),Comedy|Musical|Romance\n5169,Scarlet Street (1945),Film-Noir\n5170,All About the Benjamins (2002),Action|Comedy|Crime\n5171,\"Time Machine, The (2002)\",Action|Adventure|Sci-Fi\n5172,Full Frontal (2002),Comedy|Drama|Romance\n5177,\"Magnificent Ambersons, The (1942)\",Drama|Romance\n5179,Gloria (1980),Drama|Thriller\n5180,\"Great Rock 'n' Roll Swindle, The (1980)\",Documentary\n5182,Hawk the Slayer (1980),Action|Fantasy\n5186,Honeysuckle Rose (a.k.a. On the Road Again) (1980),Drama|Romance\n5187,Hopscotch (1980),Comedy\n5193,\"Jazz Singer, The (1980)\",Musical\n5198,\"Long Good Friday, The (1980)\",Drama|Thriller\n5199,\"Long Riders, The (1980)\",Western\n5202,Mon oncle d'Amérique (1980),Drama\n5203,The Monster Club (1981),Comedy|Horror\n5205,Motel Hell (1980),Comedy|Horror\n5208,\"Ninth Configuration, The (a.k.a. Twinkle, Twinkle, Killer Kane) (1980)\",Drama|War\n5210,\"Burial Ground (a.k.a. Zombie Horror) (a.k.a. Zombie 3) (Notti del Terrore, Le) (1981)\",Horror\n5214,\"Oh, God! (1977)\",Comedy|Fantasy\n5218,Ice Age (2002),Adventure|Animation|Children|Comedy\n5219,Resident Evil (2002),Action|Horror|Sci-Fi|Thriller\n5220,Showtime (2002),Action|Comedy\n5222,Kissing Jessica Stein (2001),Comedy|Romance\n5223,Pauline & Paulette (Pauline en Paulette) (2001),Comedy|Drama\n5224,Promises (2001),Documentary\n5225,And Your Mother Too (Y tu mamá también) (2001),Drama|Romance\n5226,All the Right Moves (1983),Drama|Romance\n5227,Barabbas (1961),Adventure|Drama\n5229,I Think I Do (1997),Comedy\n5230,\"Paleface, The (1948)\",Comedy|Western\n5231,Road to Morocco (1942),Comedy\n5232,Road to Singapore (1940),Comedy|Musical\n5233,Road to Utopia (1946),Comedy\n5234,Road to Zanzibar (1941),Comedy\n5236,\"Tale of Springtime, A (Conte de Printemps) (1990)\",Drama|Romance\n5237,Taps (1981),Drama\n5238,Return of the Secaucus 7 (1980),Drama\n5241,Seems Like Old Times (1980),Comedy|Romance\n5242,Serial (1980),Comedy\n5243,\"Young Master, The (Shi di chu ma) (1980)\",Action|Comedy\n5244,Shogun Assassin (1980),Action|Adventure\n5246,Smokey and the Bandit II (1980),Action|Comedy\n5247,Smokey and the Bandit (1977),Action|Comedy\n5248,Smokey and the Bandit III (1983),Action|Comedy\n5250,Stir Crazy (1980),Comedy\n5254,Blade II (2002),Action|Horror|Thriller\n5255,Sorority Boys (2002),Comedy\n5256,Stolen Summer (2002),Drama\n5258,George Washington (2000),Drama\n5264,Clockstoppers (2002),Action|Adventure|Sci-Fi|Thriller\n5265,Death to Smoochy (2002),Comedy|Crime|Drama\n5266,Panic Room (2002),Thriller\n5267,\"Rookie, The (2002)\",Drama\n5269,\"Piano Teacher, The (La pianiste) (2001)\",Drama\n5271,30 Years to Life (2001),Comedy|Drama|Romance\n5275,Boxcar Bertha (1972),Drama\n5276,Crimes of Passion (1984),Drama|Romance|Thriller\n5277,\"Evil That Men Do, The (1984)\",Action|Thriller\n5278,Fraternity Vacation (1985),Comedy|Romance\n5279,Impromptu (1991),Comedy|Romance\n5282,High Crimes (2002),Thriller\n5283,National Lampoon's Van Wilder (2002),Comedy\n5285,Lucky Break (2001),Comedy|Crime\n5288,\"Atomic Cafe, The (1982)\",Documentary|War\n5289,Body and Soul (1947),Drama|Film-Noir\n5291,Rashomon (Rashômon) (1950),Crime|Drama|Mystery\n5292,Slap Shot (1977),Comedy\n5293,Changing Lanes (2002),Drama|Thriller\n5294,Frailty (2001),Crime|Drama|Thriller\n5296,\"Sweetest Thing, The (2002)\",Comedy|Romance\n5297,\"Cat's Meow, The (2002)\",Drama|Thriller\n5298,Human Nature (2001),Comedy|Romance\n5299,My Big Fat Greek Wedding (2002),Comedy|Romance\n5300,3:10 to Yuma (1957),Action|Adventure|Drama|Thriller|Western\n5301,Bite the Bullet (1975),Action|Adventure|Western\n5302,Breakout (1975),Action|Adventure\n5303,Joe Versus the Volcano (1990),Comedy|Romance\n5304,\"Rome, Open City (a.k.a. Open City) (Roma, città aperta) (1945)\",Drama|War\n5305,Return of the Killer Tomatoes! (1988),Comedy|Horror|Sci-Fi\n5307,Taking Care of Business (1990),Comedy\n5308,Three Men and a Baby (1987),Comedy\n5309,Three Men and a Little Lady (1990),Comedy|Romance\n5312,Murder by Numbers (2002),Crime|Thriller\n5313,The Scorpion King (2002),Action|Adventure|Fantasy|Thriller\n5315,Chelsea Walls (2001),Drama\n5316,Enigma (2001),Romance|Thriller\n5319,Nine Queens (Nueve reinas) (2000),Crime|Thriller\n5323,Jason X (2002),Horror|Sci-Fi|Thriller\n5324,Life or Something Like It (2002),Comedy|Romance\n5325,Dogtown and Z-Boyz (2001),Documentary\n5329,\"Salton Sea, The (2002)\",Crime|Drama|Thriller\n5333,Bob le Flambeur (1955),Crime|Drama\n5334,Cadillac Man (1990),Comedy|Crime\n5335,\"Coca-Cola Kid, The (1985)\",Comedy|Romance\n5337,Delirious (1991),Comedy\n5339,Husbands and Wives (1992),Comedy|Drama\n5341,Lenny (1974),Drama\n5342,Nomads (1986),Horror|Mystery|Thriller\n5343,\"Temp, The (1993)\",Drama|Thriller\n5344,Thief of Hearts (1984),Drama|Thriller\n5346,Wild Orchid (1990),Drama|Romance\n5348,Hollywood Ending (2002),Comedy|Drama\n5349,Spider-Man (2002),Action|Adventure|Sci-Fi|Thriller\n5352,The Big Sleep (1978),Thriller\n5353,Butterflies Are Free (1972),Comedy|Drama\n5354,Cactus Flower (1969),Comedy\n5356,\"Giant Spider Invasion, The (1975)\",Horror|Sci-Fi\n5357,Iron Will (1994),Adventure\n5359,Rambling Rose (1991),Drama\n5360,\"Survivors, The (1983)\",Comedy\n5361,White Fang (1991),Adventure\n5363,\"New Guy, The (2002)\",Comedy\n5364,Unfaithful (2002),Drama|Thriller\n5365,\"Lady and the Duke, The (Anglaise et le duc, L') (2001)\",Drama|Romance\n5366,Whore (1991),Drama\n5367,My Beautiful Laundrette (1985),Drama|Romance\n5372,Calamity Jane (1953),Musical|Western\n5373,\"Cranes Are Flying, The (Letyat zhuravli) (1957)\",Drama|Romance|War\n5375,\"Harvey Girls, The (1946)\",Comedy|Musical|Western\n5377,About a Boy (2002),Comedy|Drama|Romance\n5378,Star Wars: Episode II - Attack of the Clones (2002),Action|Adventure|Sci-Fi|IMAX\n5379,\"Believer, The (2001)\",Drama\n5380,\"Importance of Being Earnest, The (2002)\",Comedy|Drama|Romance\n5382,Every Which Way But Loose (1978),Comedy\n5383,\"Hound of the Baskervilles, The (1959)\",Crime|Horror|Mystery\n5384,I Want to Live! (1958),Crime|Drama\n5385,\"Last Waltz, The (1978)\",Documentary\n5387,Enough (2002),Drama|Thriller\n5388,Insomnia (2002),Action|Crime|Drama|Mystery|Thriller\n5389,Spirit: Stallion of the Cimarron (2002),Adventure|Animation|Children|Western\n5391,Thirteen Conversations About One Thing (a.k.a. 13 Conversations) (2001),Drama\n5395,\"Gambler, The (1974)\",Drama\n5398,Requiem for a Heavyweight (1962),Drama\n5400,\"Sum of All Fears, The (2002)\",Drama|Thriller\n5401,Undercover Brother (2002),Comedy\n5404,84 Charing Cross Road (1987),Drama|Romance\n5410,Silent Running (1972),Drama|Sci-Fi\n5413,Zombie Holocaust (a.k.a. Doctor Butcher M.D.) (Zombi Holocaust) (1980),Horror\n5414,Bad Company (2002),Action|Comedy|Crime\n5415,Divine Secrets of the Ya-Ya Sisterhood (2002),Comedy|Drama\n5416,Cherish (2002),Comedy|Drama|Thriller\n5417,\"Fast Runner, The (Atanarjuat) (2001)\",Drama|Fantasy\n5418,\"Bourne Identity, The (2002)\",Action|Mystery|Thriller\n5419,Scooby-Doo (2002),Adventure|Children|Comedy|Fantasy|Mystery\n5420,Windtalkers (2002),Action|Drama|War\n5421,\"Dangerous Lives of Altar Boys, The (2002)\",Drama\n5422,\"Emperor's New Clothes, The (2001)\",Comedy\n5425,Dark Blue World (Tmavomodrý svet) (2001),Drama|War\n5427,Caveman (1981),Comedy\n5428,Cheech & Chong's The Corsican Brothers (1984),Comedy\n5433,Silver Bullet (Stephen King's Silver Bullet) (1985),Adventure|Drama|Horror|Mystery|Thriller\n5434,\"Sorry, Wrong Number (1948)\",Drama|Film-Noir|Thriller\n5438,Men at Work (1990),Action|Comedy\n5440,She Wore a Yellow Ribbon (1949),Western\n5443,Juwanna Mann (2002),Comedy\n5444,Lilo & Stitch (2002),Adventure|Animation|Children|Sci-Fi\n5445,Minority Report (2002),Action|Crime|Mystery|Sci-Fi|Thriller\n5446,Rabbit-Proof Fence (2002),Adventure|Drama\n5447,Sunshine State (2002),Drama\n5448,Hey Arnold! The Movie (2002),Adventure|Animation|Children|Comedy\n5449,Mr. Deeds (2002),Comedy|Romance\n5450,Lovely & Amazing (2001),Comedy|Drama|Romance\n5452,Look Who's Talking Now (1993),Children|Comedy|Romance\n5458,Like Mike (2002),Children|Comedy|Fantasy\n5459,Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2) (2002),Action|Comedy|Sci-Fi\n5460,\"Powerpuff Girls, The (2002)\",Action|Animation|Children|Comedy\n5462,\"Crocodile Hunter: Collision Course, The (2002)\",Adventure|Comedy\n5463,Reign of Fire (2002),Action|Adventure|Fantasy\n5464,Road to Perdition (2002),Crime|Drama\n5466,My Wife is an Actress (Ma Femme est une Actrice) (2001),Comedy|Drama|Romance\n5470,The Importance of Being Earnest (1952),Comedy|Romance\n5471,Perfect (1985),Drama|Romance\n5473,Fox and His Friends (Faustrecht der Freiheit) (1975),Drama\n5475,Z (1969),Drama|Mystery|Thriller\n5477,Sex and Lucia (Lucía y el sexo) (2001),Drama|Romance\n5478,Eight Legged Freaks (2002),Action|Comedy|Horror|Sci-Fi\n5479,K-19: The Widowmaker (2002),Action|Adventure|Drama|Thriller\n5480,Stuart Little 2 (2002),Children|Comedy\n5481,Austin Powers in Goldmember (2002),Comedy\n5483,\"Kid Stays in the Picture, The (2002)\",Documentary\n5489,Nosferatu the Vampyre (Nosferatu: Phantom der Nacht) (1979),Horror\n5490,The Big Bus (1976),Action|Comedy\n5498,Red Beard (Akahige) (1965),Drama\n5500,Top Secret! (1984),Comedy\n5501,\"Master of Disguise, The (2002)\",Comedy|Mystery\n5502,Signs (2002),Horror|Sci-Fi|Thriller\n5503,\"Last Kiss, The (Ultimo bacio, L') (2001)\",Comedy|Drama|Romance\n5504,Spy Kids 2: The Island of Lost Dreams (2002),Adventure|Children\n5505,\"Good Girl, The (2002)\",Comedy|Drama\n5506,Blood Work (2002),Crime|Drama|Mystery|Thriller\n5507,xXx (2002),Action|Crime|Thriller\n5508,24 Hour Party People (2002),Comedy|Drama|Musical\n5515,Songs From the Second Floor (Sånger från andra våningen) (2000),Drama\n5516,Read My Lips (Sur mes lèvres) (2001),Crime|Drama|Thriller\n5517,Nightcap (Merci pour le chocolat) (2000),Crime|Thriller\n5518,Beau Pere (a.k.a. Stepfather) (Beau-père) (1981),Drama\n5521,\"Principal, The (1987)\",Action|Crime|Drama\n5522,Rollerball (1975),Action|Drama|Sci-Fi\n5523,\"Adventures of Pluto Nash, The (2002)\",Action|Adventure|Comedy|Sci-Fi\n5524,Blue Crush (2002),Adventure|Drama|Romance\n5525,Mostly Martha (Bella Martha) (2001),Comedy|Drama|Romance\n5527,Possession (2002),Drama|Romance\n5528,One Hour Photo (2002),Drama|Thriller\n5530,Simone (S1m0ne) (2002),Comedy|Drama|Fantasy|Sci-Fi\n5531,Undisputed (2002),Drama\n5534,Hush! (2001),Drama\n5535,How I Killed My Father (a.k.a. My Father and I) (Comment j'ai tué mon Père) (2001),Drama\n5538,\"Care Bears Movie, The (1985)\",Animation|Children|Fantasy\n5539,Care Bears Movie II: A New Generation (1986),Animation|Children\n5540,Clash of the Titans (1981),Action|Adventure|Fantasy|Romance\n5541,Hot Shots! (1991),Action|Comedy|Romance|War\n5544,Time After Time (1979),Sci-Fi|Thriller\n5548,Down and Out in Beverly Hills (1986),Comedy\n5553,Stakeout (1987),Comedy|Crime|Romance|Thriller\n5556,FearDotCom (a.k.a. Fear.com) (a.k.a. Fear Dot Com) (2002),Crime|Horror|Thriller\n5558,Love and a Bullet (2002),Action|Crime\n5560,À nous la liberté (Freedom for Us) (1931),Comedy|Musical\n5561,True Colors (1991),Drama\n5562,Snipes (2001),Drama|Thriller\n5564,Swimfan (2002),Thriller\n5568,Johnny Dangerously (1984),Comedy\n5569,\"Last House on the Left, The (1972)\",Crime|Horror|Thriller\n5570,Thesis (Tesis) (1996),Drama|Horror|Thriller\n5572,Barbershop (2002),Comedy\n5573,Stealing Harvard (2002),Comedy|Crime\n5574,\"Transporter, The (2002)\",Action|Crime\n5575,Alias Betty (Betty Fisher et autres histoires) (2001),Crime|Drama\n5577,Igby Goes Down (2002),Comedy|Drama\n5581,Betsy's Wedding (1990),Comedy\n5582,Captain Ron (1992),Adventure|Comedy\n5585,Ernest Scared Stupid (1991),Comedy\n5588,\"Hills Have Eyes, The (1977)\",Horror\n5597,Suburban Commando (1991),Comedy|Sci-Fi\n5599,Tabu: A Story of the South Seas (1931),Drama|Romance\n5600,\"Wanderers, The (1979)\",Drama\n5601,\"Yearling, The (1946)\",Children|Drama\n5602,\"Ladykillers, The (1955)\",Comedy|Crime\n5603,\"Lavender Hill Mob, The (1951)\",Comedy|Crime\n5604,\"Man in the White Suit, The (1951)\",Comedy|Sci-Fi\n5605,Ratcatcher (1999),Drama\n5607,\"Son of the Bride (Hijo de la novia, El) (2001)\",Comedy|Drama\n5608,\"Das Experiment (Experiment, The) (2001)\",Drama|Thriller\n5609,Ballistic: Ecks vs. Sever (2002),Action|Thriller\n5611,\"Four Feathers, The (2002)\",Adventure|War\n5612,Trapped (2002),Action|Thriller\n5613,8 Women (2002),Comedy|Crime|Musical|Mystery\n5615,Invincible (2001),Drama\n5617,Secretary (2002),Comedy|Drama|Romance\n5618,Spirited Away (Sen to Chihiro no kamikakushi) (2001),Adventure|Animation|Fantasy\n5619,\"Trials of Henry Kissinger, The (2002)\",Documentary\n5620,Sweet Home Alabama (2002),Comedy|Romance\n5621,\"Tuxedo, The (2002)\",Action|Comedy\n5622,Charly (2002),Comedy|Drama|Romance\n5625,Moonlight Mile (2002),Drama|Romance\n5628,Wasabi (2001),Action|Comedy|Crime|Drama|Thriller\n5629,Jonah: A VeggieTales Movie (2002),Animation|Children|Musical\n5630,Red Dragon (2002),Crime|Mystery|Thriller\n5632,Bloody Sunday (2002),Drama\n5633,Heaven (2002),Drama\n5636,Welcome to Collinwood (2002),Comedy|Crime\n5637,Flirting (1991),Drama\n5638,Godzilla vs. Mothra (Mosura tai Gojira) (1964),Action|Adventure|Fantasy|Sci-Fi\n5641,\"Moderns, The (1988)\",Drama\n5642,\"Onion Field, The (1979)\",Drama\n5643,Powaqqatsi (1988),Documentary\n5644,\"Pride of the Yankees, The (1942)\",Drama\n5646,Valmont (1989),Drama|Romance\n5649,Horror of Dracula (Dracula) (1958),Horror\n5650,Strange Brew (1983),Comedy\n5651,\"Incredible Mr. Limpet, The (1964)\",Animation|Comedy|War\n5655,\"Fan, The (1981)\",Drama|Thriller\n5662,\"Wrong Guy, The (1997)\",Comedy|Romance|Thriller\n5663,Below (2002),Horror\n5666,\"Rules of Attraction, The (2002)\",Comedy|Drama|Romance|Thriller\n5667,Tuck Everlasting (2002),Drama|Fantasy\n5668,White Oleander (2002),Drama\n5669,Bowling for Columbine (2002),Documentary\n5670,Comedian (2002),Comedy|Documentary\n5672,Pokemon 4 Ever (a.k.a. Pokémon 4: The Movie) (2002),Adventure|Animation|Children|Fantasy\n5673,Punch-Drunk Love (2002),Comedy|Drama|Romance\n5675,Swept Away (2002),Comedy|Romance\n5677,Abandon (2002),Drama|Thriller\n5678,Formula 51 (2001),Action|Comedy|Crime|Thriller\n5679,\"Ring, The (2002)\",Horror|Mystery|Thriller\n5680,Auto Focus (2002),Crime|Drama\n5682,\"Grey Zone, The (2001)\",Drama\n5684,Naqoyqatsi (2002),Documentary\n5685,Real Women Have Curves (2002),Comedy|Drama\n5686,Russian Ark (Russkiy Kovcheg) (2002),Drama|Fantasy|War\n5689,Billy Bathgate (1991),Crime|Drama\n5690,Grave of the Fireflies (Hotaru no haka) (1988),Animation|Drama|War\n5691,Jason Goes to Hell: The Final Friday (1993),Action|Horror\n5693,Saturday Night Fever (1977),Comedy|Drama|Romance\n5694,Staying Alive (1983),Comedy|Drama|Musical\n5696,Urban Cowboy (1980),Drama\n5699,Tom Horn (1980),Western\n5700,The Pumaman (1980),Action|Adventure|Fantasy|Sci-Fi\n5703,Wholly Moses (1980),Comedy\n5705,Xanadu (1980),Fantasy|Musical|Romance\n5707,Absence of Malice (1981),Drama|Romance\n5710,Banana Joe (1981),Comedy\n5712,Blow Out (1981),Mystery|Thriller\n5715,\"Burning, The (1981)\",Horror\n5718,Carbon Copy (1981),Comedy\n5723,Continental Divide (1981),Comedy|Romance\n5729,Endless Love (1981),Drama|Romance\n5732,Eye of the Needle (1981),Thriller\n5734,Faces of Death 2 (1981),Documentary|Horror\n5735,Faces of Death (1978),Documentary|Horror\n5736,Faces of Death 3 (1985),Documentary|Horror\n5737,Faces of Death 4 (1990),Documentary|Horror\n5742,First Monday in October (1981),Comedy|Drama\n5745,\"Four Seasons, The (1981)\",Comedy|Drama\n5746,Galaxy of Terror (Quest) (1981),Action|Horror|Mystery|Sci-Fi\n5747,Gallipoli (1981),Drama|War\n5752,Gregory's Girl (1981),Comedy|Romance\n5754,\"Hand, The (1981)\",Drama|Horror\n5765,\"Looney, Looney, Looney Bugs Bunny Movie, The (1981)\",Animation|Children|Comedy\n5768,Modern Problems (1981),Comedy|Fantasy\n5772,My Dinner with André (1981),Drama\n5773,Neighbors (1981),Comedy\n5777,Pennies from Heaven (1981),Musical|Romance\n5778,Pieces (Mil gritos tiene la noche) (One Thousand Cries Has the Night) (1982),Horror|Mystery|Thriller\n5779,Piranha II: The Spawning (1981),Horror|Sci-Fi\n5780,Polyester (1981),Comedy\n5782,\"Professional, The (Le professionnel) (1981)\",Action|Drama|Thriller\n5784,Ghost Ship (2002),Horror\n5785,Jackass: The Movie (2002),Action|Comedy|Documentary\n5787,\"Truth About Charlie, The (2002)\",Mystery|Thriller\n5788,All or Nothing (2002),Drama\n5791,Frida (2002),Drama|Romance\n5792,Roger Dodger (2002),Comedy|Drama\n5795,\"Big Knife, The (1955)\",Film-Noir\n5796,Casino Royale (1967),Action|Adventure|Comedy\n5799,Exodus (1960),Drama|Romance|War\n5801,\"Russians Are Coming, the Russians Are Coming, The (1966)\",Comedy|War\n5803,I Spy (2002),Action|Adventure|Comedy|Crime\n5808,\"Weight of Water, The (2000)\",Thriller\n5809,Femme Fatale (2002),Crime|Thriller\n5810,8 Mile (2002),Drama\n5812,Far from Heaven (2002),Drama|Romance\n5815,Half Past Dead (2002),Action|Crime|Thriller\n5816,Harry Potter and the Chamber of Secrets (2002),Adventure|Fantasy\n5818,\"Crime of Father Amaro, The (Crimen del padre Amaro, El) (2002)\",Drama|Romance\n5819,Interview with the Assassin (2002),Drama\n5820,Standing in the Shadows of Motown (2002),Documentary|Musical\n5825,\"Life and Death of Colonel Blimp, The (1943)\",Drama|Romance|War\n5826,Rio Grande (1950),Romance|Western\n5828,Blackrock (1997),Drama|Thriller\n5829,Men with Brooms (2002),Comedy|Drama|Romance\n5830,Mysterious Island (1961),Adventure|Sci-Fi\n5832,Left Behind II: Tribulation Force (2002),Drama\n5833,Dog Soldiers (2002),Action|Horror\n5834,Fingers (1978),Drama\n5836,Houseboat (1958),Comedy|Romance\n5839,My Father's Glory (La gloire de mon père) (1990),Adventure|Drama\n5840,\"My Mother's Castle (Château de ma mère, Le) (1990)\",Comedy|Drama\n5841,Return to the Blue Lagoon (1991),Adventure|Romance\n5843,Toy Soldiers (1991),Action|Drama\n5846,Raggedy Man (1981),Drama\n5847,Ragtime (1981),Drama\n5850,Road Games (a.k.a. Roadgames) (1981),Thriller\n5853,Scanners (1981),Horror|Sci-Fi|Thriller\n5854,Sharky's Machine (1981),Crime|Drama|Romance\n5857,So Fine (1981),Comedy\n5859,Southern Comfort (1981),Drama|Thriller|War\n5864,\"Tarzan, the Ape Man (1981)\",Adventure\n5866,They All Laughed (1981),Comedy\n5867,Thief (1981),Crime|Drama|Thriller\n5868,This Is Elvis (1981),Documentary|Drama|Musical\n5869,True Confessions (1981),Crime|Drama\n5872,Die Another Day (2002),Action|Adventure|Thriller\n5873,The Emperor's Club (2002),Drama\n5874,Friday After Next (2002),Comedy\n5875,Personal Velocity (2002),Drama\n5876,\"Quiet American, The (2002)\",Drama|Thriller|War\n5878,Talk to Her (Hable con Ella) (2002),Drama|Romance\n5879,Eight Crazy Nights (Adam Sandler's Eight Crazy Nights) (2002),Animation|Comedy|Musical\n5880,Extreme Ops (2002),Action|Adventure|Crime|Thriller\n5881,Solaris (2002),Drama|Romance|Sci-Fi\n5882,Treasure Planet (2002),Adventure|Animation|Children|Sci-Fi|IMAX\n5883,They (2002),Horror|Thriller\n5888,Brother (Brat) (1997),Crime|Drama\n5891,I Spit on Your Grave (Day of the Woman) (1978),Horror|Thriller\n5893,\"Last Seduction, The (1994)\",Crime|Drama|Thriller\n5899,Zulu (1964),Action|Drama|War\n5900,Analyze That (2002),Comedy|Crime\n5901,Empire (2002),Crime|Drama\n5902,Adaptation (2002),Comedy|Drama|Romance\n5903,Equilibrium (2002),Action|Sci-Fi|Thriller\n5909,Visitor Q (Bizita Q) (2001),Comedy|Drama|Horror\n5910,\"Bolero (Uns et les autres, Les) (1981)\",Drama|War\n5913,Warning for the Joensson Gang (Varning för Jönssonligan) (1981),Comedy|Crime\n5914,\"Vernon, Florida (1981)\",Documentary\n5915,Victory (a.k.a. Escape to Victory) (1981),Action|Drama|War\n5917,Zoot Suit (1981),Drama|Musical\n5918,Alone in the Dark (1982),Horror\n5923,Author! Author! (1982),Comedy|Drama\n5926,Best Friends (1982),Comedy|Drama|Romance\n5927,\"Best Little Whorehouse in Texas, The (1982)\",Comedy|Drama|Musical|Romance\n5932,Burden of Dreams (1982),Documentary\n5933,Cannery Row (1982),Drama\n5936,\"Come Back to the Five and Dime, Jimmy Dean, Jimmy Dean (1982)\",Drama\n5938,Deathtrap (1982),Comedy|Crime|Mystery|Thriller\n5940,Eating Raoul (1982),Comedy\n5941,Drumline (2002),Comedy|Drama|Musical|Romance\n5942,\"Hot Chick, The (2002)\",Comedy\n5943,Maid in Manhattan (2002),Comedy|Romance\n5944,Star Trek: Nemesis (2002),Action|Drama|Sci-Fi|Thriller\n5945,About Schmidt (2002),Comedy|Drama\n5947,Evelyn (2002),Drama\n5949,Intact (Intacto) (2001),Thriller\n5952,\"Lord of the Rings: The Two Towers, The (2002)\",Adventure|Fantasy\n5954,25th Hour (2002),Crime|Drama\n5955,Antwone Fisher (2002),Drama\n5956,Gangs of New York (2002),Crime|Drama\n5957,Two Weeks Notice (2002),Comedy|Romance\n5958,\"Wild Thornberrys Movie, The (2002)\",Animation|Children|Comedy\n5959,Narc (2002),Crime|Drama|Thriller\n5960,Bad Influence (1990),Drama|Thriller\n5961,Blue Steel (1990),Action|Thriller\n5962,Body of Evidence (1993),Drama|Thriller\n5963,\"Children's Hour, The (1961)\",Drama\n5965,\"Duellists, The (1977)\",Action|War\n5966,\"Kiss Before Dying, A (1956)\",Film-Noir|Mystery\n5968,Miami Blues (1990),Comedy|Crime|Drama\n5969,My Girl 2 (1994),Comedy|Drama|Romance\n5970,My Girl (1991),Comedy|Drama|Romance\n5971,My Neighbor Totoro (Tonari no Totoro) (1988),Animation|Children|Drama|Fantasy\n5980,Black Christmas (1974),Horror|Mystery|Thriller\n5981,\"Day of the Triffids, The (1962)\",Horror|Sci-Fi\n5984,\"Story of O, The (Histoire d'O) (1975)\",Drama|Romance\n5985,Asoka (Ashoka the Great) (2001),Action|Drama|Romance\n5986,Fat City (1972),Drama\n5989,Catch Me If You Can (2002),Crime|Drama\n5991,Chicago (2002),Comedy|Crime|Drama|Musical\n5992,\"Hours, The (2002)\",Drama|Romance\n5993,Max (2002),Drama\n5994,Nicholas Nickleby (2002),Drama|Romance\n5995,\"Pianist, The (2002)\",Drama|War\n6000,\"House on the Edge of the Park, The (Casa sperduta nel parco, La) (1980)\",Horror|Thriller\n6001,\"King of Comedy, The (1983)\",Comedy|Drama\n6003,Confessions of a Dangerous Mind (2002),Comedy|Crime|Drama|Thriller\n6005,Blue Collar Comedy Tour: The Movie (2003),Comedy|Documentary\n6006,Just Married (2003),Comedy|Romance\n6008,\"Son, The (Le fils) (2002)\",Drama\n6012,\"Guy Thing, A (2003)\",Comedy|Romance\n6013,Kangaroo Jack (2003),Action|Comedy\n6014,National Security (2003),Action|Comedy\n6016,City of God (Cidade de Deus) (2002),Action|Adventure|Crime|Drama|Thriller\n6021,\"American Friend, The (Amerikanische Freund, Der) (1977)\",Crime|Drama|Mystery|Thriller\n6022,American Me (1992),Drama\n6025,CB4 - The Movie (1993),Comedy\n6027,Dogfight (1991),Drama|Romance\n6031,Imitation of Life (1959),Drama|Romance\n6032,\"Little Romance, A (1979)\",Comedy|Romance\n6033,Mystery Date (1991),Comedy\n6035,Pépé le Moko (1937),Crime|Drama|Romance\n6037,Summer Lovers (1982),Comedy|Drama|Romance\n6039,\"Woman in Red, The (1984)\",Comedy|Romance\n6040,Darkness Falls (2003),Horror|Thriller\n6042,Blind Spot: Hitler's Secretary (Im toten Winkel - Hitlers Sekretärin) (2002),Documentary\n6047,Dead Reckoning (1947),Drama|Film-Noir|Mystery\n6051,\"Harder They Come, The (1973)\",Action|Crime|Drama\n6056,Chaos (2001),Comedy|Crime|Drama\n6057,Biker Boyz (2003),Action|Crime|Drama\n6058,Final Destination 2 (2003),Horror|Thriller\n6059,\"Recruit, The (2003)\",Action|Thriller\n6060,\"Guru, The (2002)\",Comedy|Romance\n6062,Lost in La Mancha (2002),Documentary\n6063,May (2002),Drama|Horror\n6064,\"Harder They Fall, The (1956)\",Drama|Film-Noir\n6073,Victim (1961),Crime|Drama\n6077,Evil Under the Sun (1982),Crime|Drama|Mystery\n6078,Firefox (1982),Action|Sci-Fi|Thriller\n6084,Honkytonk Man (1982),Comedy|Drama\n6091,Labyrinth of Passion (Laberinto de Pasiones) (1982),Comedy\n6092,\"Last American Virgin, The (1982)\",Comedy|Drama\n6093,\"Last Unicorn, The (1982)\",Animation|Children|Fantasy\n6095,Dragon Lord (a.k.a. Dragon Strike) (Long Xiao Ye) (1982),Action\n6096,Making Love (1982),Drama\n6100,\"Midsummer Night's Sex Comedy, A (1982)\",Comedy|Romance\n6101,Missing (1982),Drama|Mystery|Thriller\n6103,Monsignor (1982),Drama|War\n6104,Monty Python Live at the Hollywood Bowl (1982),Comedy\n6105,Moonlighting (1982),Drama\n6107,\"Night of the Shooting Stars (Notte di San Lorenzo, La) (1982)\",Drama|War\n6109,One from the Heart (1982),Drama|Romance\n6114,Permanent Vacation (1982),Drama\n6115,Personal Best (1982),Drama\n6116,\"Pirate Movie, The (1982)\",Adventure|Comedy|Musical\n6121,Querelle (1982),Drama\n6122,Richard Pryor Live on the Sunset Strip (1982),Comedy|Documentary\n6123,Sunless (Sans Soleil) (1983),Documentary\n6124,Savannah Smiles (1982),Comedy\n6125,\"Secret Policeman's Other Ball, The (1982)\",Comedy|Documentary|Musical\n6126,\"Veronika Voss (Sehnsucht der Veronika Voss, Die) (1982)\",Drama\n6127,Shoot the Moon (1982),Drama\n6132,\"New York Ripper, The (Squartatore di New York, Lo) (1982)\",Crime|Horror|Mystery|Thriller\n6133,\"State of Things, The (Stand der Dinge, Der) (1982)\",Drama\n6140,Tenebre (1982),Horror|Mystery|Thriller\n6143,Trail of the Pink Panther (1982),Comedy|Crime\n6148,White Dog (1982),Drama|Horror|Thriller\n6154,Deliver Us from Eva (2003),Comedy|Romance\n6155,How to Lose a Guy in 10 Days (2003),Comedy|Romance\n6156,Shanghai Knights (2003),Action|Adventure|Comedy\n6157,Daredevil (2003),Action|Crime\n6159,All the Real Girls (2003),Drama|Romance\n6162,Gerry (2002),Adventure|Drama\n6163,He Loves Me... He Loves Me Not (À la folie... pas du tout) (2002),Romance|Thriller\n6166,Dennis the Menace (1993),Comedy\n6170,\"Black Stallion, The (1979)\",Adventure|Children|Drama\n6178,\"Patch of Blue, A (1965)\",Drama|Romance\n6180,Q & A (1990),Crime|Drama\n6182,\"Thrill of It All, The (1963)\",Comedy\n6183,Pillow Talk (1959),Comedy|Musical|Romance\n6184,\"Man Who Fell to Earth, The (1976)\",Drama|Sci-Fi\n6185,Dark Blue (2003),Action|Crime|Drama|Thriller\n6186,Gods and Generals (2003),Action|Drama|War\n6187,\"Life of David Gale, The (2003)\",Crime|Drama|Thriller\n6188,Old School (2003),Comedy\n6195,Stone Reader (2002),Documentary\n6197,Spider (2002),Drama|Mystery\n6198,American Heart (1992),Crime|Drama\n6201,Lady Jane (1986),Drama|Romance\n6203,Life Stinks (1991),Comedy\n6204,\"Meteor Man, The (1993)\",Comedy\n6207,\"Slaughter Rule, The (2002)\",Drama\n6211,Ten (2002),Drama\n6212,Bringing Down the House (2003),Comedy\n6213,Tears of the Sun (2003),Action|Drama|Thriller\n6214,Irreversible (Irréversible) (2002),Crime|Drama|Mystery|Thriller\n6215,Laurel Canyon (2002),Drama\n6216,Nowhere in Africa (Nirgendwo in Afrika) (2001),Drama\n6218,Bend It Like Beckham (2002),Comedy|Drama|Romance\n6219,\"Hunted, The (2003)\",Action|Drama|Thriller\n6223,Spun (2001),Comedy|Crime|Drama\n6225,King of Kings (1961),Drama\n6227,Loving You (1957),Drama|Musical\n6228,\"Talk of the Town, The (1942)\",Comedy|Romance|Thriller\n6229,Two-Lane Blacktop (1971),Drama\n6230,Bang the Drum Slowly (1973),Drama\n6231,\"Benny Goodman Story, The (1955)\",Drama|Musical\n6232,Born Free (1966),Adventure|Children|Drama\n6233,Born Yesterday (1993),Comedy|Romance\n6234,Equus (1977),Drama|Mystery\n6235,Europa Europa (Hitlerjunge Salomon) (1990),Drama|War\n6237,\"Glenn Miller Story, The (1953)\",Drama\n6238,Green Card (1990),Comedy|Drama|Romance\n6239,Journey to the Center of the Earth (1959),Adventure|Children|Sci-Fi\n6240,One Good Cop (1991),Action|Crime|Drama\n6242,Ringu (Ring) (1998),Horror|Mystery|Thriller\n6243,Ringu 2 (Ring 2) (1999),Horror|Mystery\n6244,Salaam Bombay! (1988),Drama\n6245,Sweet Charity (1969),Comedy|Drama|Musical|Romance\n6247,Women in Love (1969),Drama|Romance\n6249,Boat Trip (2003),Comedy\n6250,Dreamcatcher (2003),Drama|Horror|Sci-Fi|Thriller\n6252,View from the Top (2003),Comedy|Romance\n6254,\"Awful Truth, The (1937)\",Comedy|Romance\n6256,\"House with Laughing Windows, The (Casa dalle finestre che ridono, La) (1976)\",Horror|Mystery|Thriller\n6257,I Am Curious (Yellow) (Jag är nyfiken - en film i gult) (1967),Drama\n6260,\"Robe, The (1953)\",Drama\n6261,Wind (1992),Action|Romance\n6263,Basic (2003),Drama|Thriller|War\n6264,\"Core, The (2003)\",Action|Drama|Sci-Fi|Thriller\n6265,Head of State (2003),Comedy\n6266,What a Girl Wants (2003),Comedy|Drama|Romance\n6268,Raising Victor Vargas (2002),Comedy|Drama|Romance\n6269,Stevie (2002),Documentary\n6271,Day for Night (La Nuit Américaine) (1973),Comedy|Drama|Romance\n6273,In a Lonely Place (1950),Drama|Film-Noir|Mystery|Romance\n6276,Wake of the Red Witch (1948),Action|Adventure|Drama\n6279,\"Good Thief, The (2002)\",Crime|Drama\n6281,Phone Booth (2002),Drama|Thriller\n6283,Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira) (2001),Action|Animation|Sci-Fi|Thriller\n6284,DysFunktional Family (2003),Comedy|Documentary\n6286,\"Man Without a Past, The (Mies vailla menneisyyttä) (2002)\",Comedy|Crime|Drama\n6287,Anger Management (2003),Comedy\n6290,House of 1000 Corpses (2003),Horror\n6291,Lilya 4-Ever (Lilja 4-ever) (2002),Crime|Drama\n6294,Bulletproof Monk (2003),Action|Adventure|Sci-Fi\n6295,Chasing Papi (a.k.a. Papi Chulo) (2003),Comedy\n6296,\"Mighty Wind, A (2003)\",Comedy|Musical\n6297,Holes (2003),Adventure|Children|Comedy|Mystery\n6298,Malibu's Most Wanted (2003),Comedy|Crime\n6299,\"Winged Migration (Peuple migrateur, Le) (2001)\",Documentary\n6300,Flickering Lights (Blinkende lygter) (2000),Action|Comedy|Crime\n6301,Straw Dogs (1971),Drama|Thriller\n6302,Beginning of the End (1957),Sci-Fi\n6303,\"Andromeda Strain, The (1971)\",Mystery|Sci-Fi\n6305,Fahrenheit 451 (1966),Drama|Sci-Fi\n6306,I Am Trying to Break Your Heart (2002),Documentary\n6308,Legal Eagles (1986),Comedy|Crime|Romance\n6314,Undercover Blues (1993),Comedy|Crime\n6315,Wildcats (1986),Comedy\n6316,\"Wiz, The (1978)\",Adventure|Children|Comedy|Fantasy|Musical\n6318,\"Marrying Man, The (Too Hot to Handle) (1991)\",Comedy|Romance\n6322,Confidence (2003),Crime|Thriller\n6323,Identity (2003),Crime|Horror|Mystery|Thriller\n6327,\"Decade Under the Influence, A (2003)\",Documentary\n6329,Manic (2001),Drama\n6331,Spellbound (2002),Documentary\n6332,\"Lizzie McGuire Movie, The (2003)\",Children|Comedy|Romance\n6333,X2: X-Men United (2003),Action|Adventure|Sci-Fi|Thriller\n6335,\"Dancer Upstairs, The (2002)\",Crime|Drama|Thriller\n6337,Owning Mahowny (2003),Crime|Drama|Thriller\n6338,Daddy Day Care (2003),Children|Comedy\n6339,\"Man on the Train (Homme du train, L') (2002)\",Comedy|Drama\n6341,\"Shape of Things, The (2003)\",Drama\n6342,\"Trip, The (2002)\",Comedy|Drama|Romance\n6344,101 Reykjavik (101 Reykjavík) (2000),Comedy|Drama|Romance\n6345,\"Chorus Line, A (1985)\",Comedy|Drama|Musical\n6348,Breakin' 2: Electric Boogaloo (1984),Musical\n6349,Breakin' (1984),Drama|Musical\n6350,Laputa: Castle in the Sky (Tenkû no shiro Rapyuta) (1986),Action|Adventure|Animation|Children|Fantasy|Sci-Fi\n6355,\"Girls, Les (1957)\",Musical\n6356,Gunfight at the O.K. Corral (1957),Western\n6357,High Society (1956),Comedy|Musical|Romance\n6358,Kiss Me Kate (1953),Comedy|Musical|Romance\n6365,\"Matrix Reloaded, The (2003)\",Action|Adventure|Sci-Fi|Thriller|IMAX\n6367,Down with Love (2003),Comedy|Romance\n6368,Cinemania (2002),Documentary\n6369,Friends and Family (2001),Comedy\n6370,\"Spanish Apartment, The (L'auberge espagnole) (2002)\",Comedy|Drama|Romance\n6373,Bruce Almighty (2003),Comedy|Drama|Fantasy|Romance\n6375,Gigantic (A Tale of Two Johns) (2002),Documentary\n6377,Finding Nemo (2003),Adventure|Animation|Children|Comedy\n6378,\"Italian Job, The (2003)\",Action|Crime\n6379,Wrong Turn (2003),Horror|Thriller\n6380,Capturing the Friedmans (2003),Documentary\n6383,\"2 Fast 2 Furious (Fast and the Furious 2, The) (2003)\",Action|Crime|Thriller\n6384,Love the Hard Way (2001),Crime|Drama|Romance\n6385,Whale Rider (2002),Drama\n6386,Nevada Smith (1966),Western\n6387,Once a Thief (Zong heng si hai) (1991),Action|Comedy|Crime|Thriller\n6390,Silk Stockings (1957),Musical\n6395,\"Crazies, The (a.k.a. Code Name: Trixie) (1973)\",Action|Drama|Horror|Sci-Fi|Thriller\n6400,Murder on a Sunday Morning (Un coupable idéal) (2001),Documentary\n6404,\"White Sheik, The (Sceicco bianco, Lo) (1952)\",Comedy|Romance\n6405,Treasure Island (1950),Adventure|Children\n6408,Animals are Beautiful People (1974),Comedy|Documentary\n6410,Car Wash (1976),Comedy\n6412,Destry Rides Again (1939),Comedy|Western\n6413,\"Electric Horseman, The (1979)\",Comedy|Western\n6414,Gay Purr-ee (1962),Animation|Children|Musical\n6415,Intervista (1987),Comedy|Drama\n6416,King Rat (1965),Drama|War\n6419,Mr. & Mrs. Bridge (1990),Drama\n6422,Shenandoah (1965),Drama|War|Western\n6423,Straight Talk (1992),Comedy\n6424,Oscar (1991),Comedy|Crime|Mystery|Romance\n6425,\"6th Man, The (Sixth Man, The) (1997)\",Comedy\n6426,\"Far Country, The (1954)\",Western\n6427,\"Railway Children, The (1970)\",Children|Drama\n6428,Two Mules for Sister Sara (1970),Comedy|War|Western\n6429,Winchester '73 (1950),Western\n6431,Battle Cry (1955),Drama|War\n6432,\"Courtship of Eddie's Father, The (1963)\",Comedy\n6433,\"Man with the Movie Camera, The (Chelovek s kino-apparatom) (1929)\",Documentary\n6436,This Boy's Life (1993),Drama\n6440,Barton Fink (1991),Drama|Thriller\n6442,Belle époque (1992),Comedy|Romance\n6446,\"Comancheros, The (1961)\",Action|Adventure|Drama|Romance\n6447,Duel at Diablo (1966),War\n6448,\"Flight of the Phoenix, The (1965)\",Action|Adventure|Drama\n6449,From the Terrace (1960),Drama\n6450,\"Heaven Knows, Mr. Allison (1957)\",Drama|War\n6452,\"Long, Hot Summer, The (1958)\",Drama\n6454,Music Box (1989),Drama\n6458,\"Blue Max, The (1966)\",Adventure|Drama|War\n6460,\"Trial, The (Procès, Le) (1962)\",Drama\n6461,\"Unforgiven, The (1960)\",Drama|Western\n6464,Good Burger (1997),Children|Comedy\n6465,Jubilee (1977),Drama\n6466,Mississippi Masala (1991),Drama|Romance\n6467,Quai des Orfèvres (Jenny Lamour) (1947),Crime|Drama\n6468,\"Stranger Among Us, A (1992)\",Crime|Drama|Romance\n6470,Chisum (1970),Western\n6473,Half Moon Street (1986),Drama|Thriller\n6474,\"Truce, The (a.k.a. La Tregua) (1996)\",Drama\n6476,Shattered (1991),Mystery|Thriller\n6477,\"Song of Bernadette, The (1943)\",Drama\n6480,Thoroughly Modern Millie (1967),Comedy|Musical\n6482,Dumb and Dumberer: When Harry Met Lloyd (2003),Comedy\n6484,Hollywood Homicide (2003),Action|Crime|Drama\n6493,Alex and Emma (2003),Comedy|Drama|Romance\n6498,Murphy's War (1971),War\n6502,28 Days Later (2002),Action|Horror|Sci-Fi\n6503,Charlie's Angels: Full Throttle (2003),Action|Adventure|Comedy|Crime|Thriller\n6506,Fulltime Killer (Chuen jik sat sau) (2001),Action|Thriller\n6509,Ali: Fear Eats the Soul (Angst essen Seele auf) (1974),Drama|Romance\n6513,Made for Each Other (1939),Comedy|Drama|Romance\n6514,Ring of Terror (1962),Horror\n6515,You Only Live Once (1937),Crime|Film-Noir\n6516,Anastasia (1956),Drama\n6518,Flight of the Intruder (1991),Action|War\n6521,\"Main Event, The (1979)\",Comedy\n6522,Man's Favorite Sport? (1964),Comedy\n6525,Nuts (1987),Drama\n6527,Scaramouche (1952),Adventure|Romance\n6528,Start the Revolution Without Me (1970),Comedy\n6530,\"Tenant, The (Locataire, Le) (1976)\",Drama|Horror|Mystery|Thriller\n6531,\"Hour of the Pig, The (1993)\",Crime|Drama|Mystery\n6533,\"What's Up, Doc? (1972)\",Comedy\n6534,Hulk (2003),Action|Adventure|Sci-Fi\n6535,\"Legally Blonde 2: Red, White & Blonde (2003)\",Comedy\n6536,Sinbad: Legend of the Seven Seas (2003),Adventure|Animation|Children|Fantasy\n6537,Terminator 3: Rise of the Machines (2003),Action|Adventure|Sci-Fi\n6538,Swimming Pool (2003),Drama|Mystery|Thriller\n6539,Pirates of the Caribbean: The Curse of the Black Pearl (2003),Action|Adventure|Comedy|Fantasy\n6541,\"League of Extraordinary Gentlemen, The (a.k.a. LXG) (2003)\",Action|Fantasy|Sci-Fi\n6547,Northfork (2003),Drama|Fantasy\n6548,Bad Boys II (2003),Action|Comedy|Crime|Thriller\n6550,Johnny English (2003),Action|Comedy|Thriller\n6552,Dirty Pretty Things (2002),Crime|Drama|Thriller\n6559,Little Giants (1994),Children|Comedy\n6561,\"Mouse That Roared, The (1959)\",Comedy|War\n6562,Spencer's Mountain (1963),Comedy|Drama\n6564,Lara Croft Tomb Raider: The Cradle of Life (2003),Action|Adventure|Comedy|Romance|Thriller\n6565,Seabiscuit (2003),Drama\n6566,Spy Kids 3-D: Game Over (2003),Action|Adventure|Children\n6568,Camp (2003),Comedy|Musical\n6571,\"Mondays in the Sun (Lunes al sol, Los) (2002)\",Drama\n6579,\"One, Two, Three (1961)\",Comedy\n6582,Remo Williams: The Adventure Begins (1985),Action|Comedy|Crime|Thriller\n6584,\"What's Up, Tiger Lily? (1966)\",Adventure|Comedy|Crime|Thriller\n6585,White Lightning (1973),Action|Crime|Drama\n6586,American Wedding (American Pie 3) (2003),Comedy\n6587,Gigli (2003),Comedy|Crime|Romance\n6591,\"Magdalene Sisters, The (2002)\",Drama\n6592,\"Secret Lives of Dentists, The (2002)\",Drama\n6593,Freaky Friday (2003),Children|Comedy|Fantasy\n6595,S.W.A.T. (2003),Action|Thriller\n6596,\"Divorce, Le (2003)\",Comedy|Drama|Romance\n6598,Step Into Liquid (2002),Documentary\n6599,Accattone (1961),Drama\n6600,...And God Spoke (1993),Comedy\n6602,Brain Damage (1988),Comedy|Horror\n6603,\"Double Life, A (1947)\",Crime|Drama|Film-Noir\n6609,\"Gospel According to St. Matthew, The (Vangelo secondo Matteo, Il) (1964)\",Drama\n6611,Umberto D. (1952),Drama\n6612,Brother's Keeper (1992),Documentary\n6613,\"Day of the Dolphin, The (1973)\",Drama\n6615,Freddy vs. Jason (2003),Action|Horror|Thriller\n6617,Open Range (2003),Western\n6618,Shaolin Soccer (Siu lam juk kau) (2001),Action|Comedy\n6620,American Splendor (2003),Comedy|Drama\n6624,Agent Cody Banks (2003),Action|Adventure|Children|Fantasy\n6628,Hot Dog... The Movie (1984),Comedy\n6629,House of Wax (1953),Crime|Horror|Mystery|Thriller\n6630,\"Inn of the Sixth Happiness, The (1958)\",Adventure|Drama\n6636,\"Sure Thing, The (1985)\",Comedy|Romance\n6638,Valley Girl (1983),Comedy|Romance\n6639,Wait Until Dark (1967),Drama|Thriller\n6641,Code Unknown (Code inconnu: Récit incomplet de divers voyages) (2000),Drama\n6643,Tokyo Story (Tôkyô monogatari) (1953),Drama\n6644,\"Green Ray, The (Rayon vert, Le) (1986)\",Drama|Romance\n6645,THX 1138 (1971),Action|Adventure|Drama|Sci-Fi\n6646,Valley of the Dolls (1967),Drama\n6650,Kind Hearts and Coronets (1949),Comedy|Drama\n6658,10 (1979),Comedy|Romance\n6659,Tremors (1990),Comedy|Horror|Sci-Fi\n6662,\"Pink Panther, The (1963)\",Comedy|Crime\n6663,\"Pink Panther Strikes Again, The (1976)\",Comedy|Crime\n6664,Commando (1985),Action|Adventure\n6665,Dracula (1979),Horror|Romance\n6666,\"Discreet Charm of the Bourgeoisie, The (Charme discret de la bourgeoisie, Le) (1972)\",Comedy|Drama|Fantasy\n6669,Ikiru (1952),Drama\n6671,\"Angel at My Table, An (1990)\",Drama\n6676,Incident at Oglala (1992),Documentary\n6678,\"Handmaid's Tale, The (1990)\",Drama|Sci-Fi\n6679,Revolution OS (2001),Documentary\n6683,Fire (1996),Drama\n6684,Death in Venice (Morte a Venezia) (1971),Drama|Romance\n6686,\"Medallion, The (2003)\",Action|Comedy|Crime|Fantasy\n6690,Don't Tempt Me (Sin noticias de Dios) (2001),Comedy|Fantasy|Mystery\n6695,Jeepers Creepers 2 (2003),Horror|Thriller\n6703,\"Order, The (2003)\",Horror|Mystery|Thriller\n6706,Taking Sides (2001),Drama\n6707,Cabin Fever (2002),Horror|Thriller\n6708,Matchstick Men (2003),Comedy|Crime|Drama\n6709,Once Upon a Time in Mexico (2003),Action|Adventure|Crime|Thriller\n6710,Dummy (2002),Comedy|Drama|Romance\n6711,Lost in Translation (2003),Comedy|Drama|Romance\n6713,Millennium Actress (Sennen joyû) (2001),Animation|Drama|Romance\n6718,Gotcha! (1985),Comedy\n6721,Once Upon a Time in China (Wong Fei Hung) (1991),Action|Adventure|Drama\n6722,Once Upon a Time in China II (Wong Fei-hung Ji Yi: Naam yi dong ji keung) (1992),Action|Romance\n6723,Once Upon a Time in China III (Wong Fei-hung tsi sam: Siwong tsangba) (1993),Action\n6724,Paper Moon (1973),Comedy|Crime|Drama\n6725,Sgt. Pepper's Lonely Hearts Club Band (1978),Adventure|Musical\n6728,\"Ugly American, The (1963)\",Drama\n6730,Convoy (1978),Action|Comedy|Drama\n6731,Day of the Dead (1985),Horror|Sci-Fi|Thriller\n6732,\"Hello, Dolly! (1969)\",Comedy|Musical|Romance\n6735,\"Rose, The (1979)\",Drama\n6739,At War with the Army (1950),Comedy|Musical|Romance\n6743,Jungle Book (1942),Adventure|Fantasy\n6744,Once Bitten (1985),Comedy|Horror\n6748,\"Brood, The (1979)\",Horror\n6751,Cold Creek Manor (2003),Drama|Thriller\n6753,Secondhand Lions (2003),Children|Comedy|Drama\n6754,Underworld (2003),Action|Fantasy|Horror\n6755,Bubba Ho-tep (2002),Comedy|Horror\n6757,Demonlover (2002),Crime|Drama|Mystery|Thriller\n6760,In This World (2002),Adventure|Drama\n6762,Yossi & Jagger (2002),Drama|Romance\n6763,Duplex (2003),Comedy|Crime\n6764,\"Rundown, The (2003)\",Action|Adventure|Comedy\n6765,Under the Tuscan Sun (2003),Comedy|Drama|Romance\n6768,Luther (2003),Drama\n6769,Mambo Italiano (2003),Comedy\n6770,My Life Without Me (2003),Drama|Romance\n6771,Dorm Daze (National Lampoon Presents Dorm Daze) (2003),Comedy\n6772,To Be and to Have (Être et avoir) (2002),Documentary\n6773,\"Triplets of Belleville, The (Les triplettes de Belleville) (2003)\",Animation|Comedy|Fantasy\n6774,Videodrome (1983),Fantasy|Horror|Sci-Fi|Thriller\n6776,Lagaan: Once Upon a Time in India (2001),Comedy|Drama|Musical|Romance\n6777,Judgment at Nuremberg (1961),Drama\n6779,\"Same Time, Next Year (1978)\",Comedy|Drama|Romance\n6780,\"Brief History of Time, A (1991)\",Documentary\n6782,Leningrad Cowboys Go America (1989),Comedy|Musical\n6783,\"Rules of the Game, The (La règle du jeu) (1939)\",Comedy|Drama\n6785,Seven Brides for Seven Brothers (1954),Comedy|Musical|Romance|Western\n6786,Kiss of the Spider Woman (1985),Drama\n6787,All the President's Men (1976),Drama|Thriller\n6788,Angie (1994),Comedy|Drama|Romance\n6790,Avalon (2001),Drama|Fantasy|Sci-Fi\n6791,Babette's Feast (Babettes gæstebud) (1987),Drama\n6793,Beethoven (1992),Children|Comedy|Drama\n6794,Beethoven's 2nd (1993),Children|Comedy\n6796,Boyz N the Hood (1991),Crime|Drama\n6797,Bugsy (1991),Crime|Drama\n6798,Bugsy Malone (1976),Children|Comedy|Crime|Musical\n6800,Cobra (1986),Action|Crime\n6803,Phenomena (a.k.a. Creepers) (1985),Horror|Mystery|Thriller\n6806,Time and Tide (Seunlau Ngaklau) (2000),Action|Crime|Thriller\n6807,Monty Python's The Meaning of Life (1983),Comedy\n6808,Where Eagles Dare (1968),Action|Adventure|War\n6810,Sleeping with the Enemy (1991),Drama|Thriller\n6811,PCU (1994),Comedy\n6812,\"Rookie, The (1990)\",Action|Comedy|Thriller\n6813,\"Ghost and Mr. Chicken, The (1966)\",Comedy|Romance\n6814,City Heat (1984),Action|Comedy\n6816,Three O'Clock High (1987),Comedy\n6818,Come and See (Idi i smotri) (1985),Drama|War\n6820,Ginger Snaps (2000),Drama|Horror|Thriller\n6822,\"Ballad of Little Jo, The (1993)\",Drama|Western\n6826,\"Shakiest Gun in the West, The (1968)\",Comedy|Western\n6827,It's Pat (1994),Comedy\n6828,\"Sunday in the Country, A (Un dimanche à la campagne) (1984)\",Drama\n6829,\"Gun in Betty Lou's Handbag, The (1992)\",Comedy|Mystery\n6830,Sudden Fear (1952),Film-Noir|Horror|Thriller\n6832,Regarding Henry (1991),Drama\n6835,Alien Contamination (1980),Action|Horror|Sci-Fi\n6840,\"Hospital, The (1971)\",Comedy|Drama\n6850,Leap of Faith (1992),Comedy|Drama\n6851,\"Gas, Food, Lodging (1992)\",Drama|Romance\n6852,In Cold Blood (1967),Crime|Drama\n6856,Yankee Doodle Dandy (1942),Drama|Musical\n6857,Ninja Scroll (Jûbei ninpûchô) (1995),Action|Adventure|Animation|Fantasy\n6858,Knife in the Water (Nóz w wodzie) (1962),Drama\n6862,Out of Time (2003),Crime|Drama|Thriller\n6863,School of Rock (2003),Comedy|Musical\n6864,\"Concert for George, The (2003)\",Documentary|Musical\n6867,\"Station Agent, The (2003)\",Comedy|Drama\n6868,Wonderland (2003),Crime|Drama|Mystery|Thriller\n6869,Bus 174 (Ônibus 174) (2002),Crime|Documentary\n6870,Mystic River (2003),Crime|Drama|Mystery\n6872,\"House of the Dead, The (2003)\",Action|Horror\n6873,Intolerable Cruelty (2003),Comedy|Romance\n6874,Kill Bill: Vol. 1 (2003),Action|Crime|Thriller\n6875,Dopamine (2003),Comedy|Drama|Romance\n6877,Girls Will Be Girls (2003),Comedy\n6879,Runaway Jury (2003),Drama|Thriller\n6880,\"Texas Chainsaw Massacre, The (2003)\",Horror\n6881,Pieces of April (2003),Comedy|Drama\n6883,Sylvia (2003),Drama|Romance\n6884,Veronica Guerin (2003),Crime|Drama|Thriller\n6885,In the Cut (2003),Crime|Drama|Mystery|Romance|Thriller\n6887,Radio (2003),Drama\n6888,Scary Movie 3 (2003),Comedy|Horror\n6889,Brother Bear (2003),Adventure|Animation|Children\n6890,Elephant (2003),Drama\n6892,\"Singing Detective, The (2003)\",Comedy|Drama|Musical|Mystery\n6893,\"Italian Job, The (1969)\",Action|Comedy|Crime\n6896,Shoah (1985),Documentary|War\n6898,Sweet Sixteen (2002),Drama\n6902,Interstate 60 (2002),Adventure|Comedy|Drama|Fantasy|Mystery|Sci-Fi|Thriller\n6906,That Was Then... This Is Now (1985),Drama\n6909,\"Eye, The (Gin gwai) (Jian gui) (2002)\",Thriller\n6918,\"Unvanquished, The (Aparajito) (1957)\",Drama\n6920,\"Cercle Rouge, Le (Red Circle, The) (1970)\",Crime|Thriller\n6927,\"Human Stain, The (2003)\",Drama|Romance|Thriller\n6930,Girlhood (2003),Documentary\n6932,Shattered Glass (2003),Crime|Drama\n6934,\"Matrix Revolutions, The (2003)\",Action|Adventure|Sci-Fi|Thriller|IMAX\n6935,\"Revolution Will Not Be Televised, The (a.k.a. Chavez: Inside the Coup) (2003)\",Documentary\n6936,Elf (2003),Children|Comedy|Fantasy\n6940,In My Skin (Dans ma Peau) (2002),Drama\n6942,Love Actually (2003),Comedy|Drama|Romance\n6944,Father of the Bride (1991),Comedy\n6945,My Architect: A Son's Journey (2003),Documentary\n6947,Master and Commander: The Far Side of the World (2003),Adventure|Drama|War\n6950,\"Missing, The (2003)\",Adventure|Thriller|Western\n6951,\"Cat in the Hat, The (2003)\",Children|Comedy\n6952,Gothika (2003),Horror|Thriller\n6953,21 Grams (2003),Crime|Drama|Mystery|Romance|Thriller\n6954,\"Barbarian Invasions, The (Les invasions barbares) (2003)\",Comedy|Crime|Drama|Mystery|Romance\n6957,Bad Santa (2003),Comedy|Crime\n6958,\"Haunted Mansion, The (2003)\",Children|Comedy|Fantasy|Horror\n6959,Timeline (2003),Action|Adventure|Sci-Fi\n6961,Damage (Fatale) (1992),Drama\n6963,Devil's Playground (2002),Documentary\n6964,Dance with a Stranger (1985),Crime|Drama|Thriller\n6966,Darkman (1990),Action|Crime|Fantasy|Sci-Fi|Thriller\n6970,Desk Set (1957),Comedy|Romance\n6971,Europa (Zentropa) (1991),Drama|Thriller\n6974,\"Freshman, The (1990)\",Comedy|Crime\n6975,Funny Games (1997),Drama|Horror|Thriller\n6977,New Jack City (1991),Action|Crime|Drama\n6978,Slacker (1991),Comedy|Drama\n6979,WarGames (1983),Drama|Sci-Fi|Thriller\n6981,\"Ordet (Word, The) (1955)\",Drama\n6982,Forbidden Games (Jeux interdits) (1952),Drama|War\n6983,Jane Eyre (1944),Drama|Romance\n6985,\"Passion of Joan of Arc, The (Passion de Jeanne d'Arc, La) (1928)\",Drama\n6986,Ben-Hur: A Tale of the Christ (1925),Adventure|Drama|Romance\n6987,\"Cabinet of Dr. Caligari, The (Cabinet des Dr. Caligari., Das) (1920)\",Crime|Fantasy|Horror\n6989,Gorky Park (1983),Crime|Drama|Thriller\n6990,The Great Train Robbery (1978),Action|Adventure|Comedy|Crime|Drama\n6991,\"Greystoke: The Legend of Tarzan, Lord of the Apes (1984)\",Adventure|Drama|Romance\n6992,Guarding Tess (1994),Comedy|Drama\n6993,Hannah and Her Sisters (1986),Comedy|Drama|Romance\n6995,Hercules in New York (1970),Action|Comedy|Fantasy\n6996,Highlander II: The Quickening (1991),Action|Sci-Fi\n6997,Hoffa (1992),Crime|Drama\n6999,Housesitter (1992),Comedy|Romance\n7000,Hudson Hawk (1991),Action|Adventure|Comedy\n7001,Invasion of the Body Snatchers (1978),Horror|Mystery|Sci-Fi|Thriller\n7002,Mindwalk (1990),Drama\n7003,Kafka (1991),Comedy|Drama|Mystery|Sci-Fi|Thriller\n7004,Kindergarten Cop (1990),Action|Comedy|Crime|Thriller\n7005,King Ralph (1991),Comedy\n7007,\"Last Boy Scout, The (1991)\",Action|Comedy|Crime|Drama|Thriller\n7008,Last Tango in Paris (Ultimo tango a Parigi) (1972),Drama|Romance\n7009,Lorenzo's Oil (1992),Drama\n7010,\"Lover, The (Amant, L') (1992)\",Drama|Romance\n7011,\"Bullfighter, The (Matador) (1986)\",Comedy|Crime|Drama\n7012,Mr. Destiny (1990),Comedy|Fantasy\n7013,\"Night of the Hunter, The (1955)\",Drama|Film-Noir|Thriller\n7016,Over the Top (1987),Action|Drama\n7017,Passenger 57 (1992),Action|Thriller\n7018,Presumed Innocent (1990),Crime|Drama|Thriller\n7020,Proof (1991),Comedy|Drama|Romance\n7022,Battle Royale (Batoru rowaiaru) (2000),Action|Drama|Horror|Thriller\n7023,\"Wedding Banquet, The (Xi yan) (1993)\",Comedy|Drama|Romance\n7024,\"Salo, or The 120 Days of Sodom (Salò o le 120 giornate di Sodoma) (1976)\",Drama\n7025,\"Midnight Clear, A (1992)\",Drama|War\n7026,Summer School (1987),Comedy\n7027,Silverado (1985),Action|Western\n7028,Quick Change (1990),Comedy|Crime\n7029,Rabid (1977),Horror|Thriller\n7034,Show Me Love (Fucking Åmål) (1998),Drama|Romance\n7036,Teen Wolf (1985),Comedy|Fantasy\n7038,Things You Can Tell Just by Looking at Her (2000),Drama|Romance\n7040,To Live and Die in L.A. (1985),Action|Crime|Drama|Thriller\n7042,Betty Blue (37°2 le matin) (1986),Drama|Romance\n7043,Vivre sa vie: Film en douze tableaux (My Life to Live) (1962),Drama\n7044,Wild at Heart (1990),Crime|Drama|Mystery|Romance|Thriller\n7045,\"Witches, The (1990)\",Children|Fantasy\n7046,\"Witches of Eastwick, The (1987)\",Comedy|Fantasy|Horror|Thriller\n7048,Nothing to Lose (1997),Action|Adventure|Comedy|Crime\n7050,Follow the Fleet (1936),Comedy|Musical|Romance\n7051,\"What's New, Pussycat (1965)\",Comedy\n7055,Swing Time (1936),Comedy|Musical|Romance\n7056,\"Public Enemy, The (1931)\",Action|Crime|Drama\n7058,Life with Father (1947),Comedy\n7059,National Velvet (1944),Children|Drama\n7060,Jesus Christ Superstar (1973),Drama|Musical\n7061,Dark Victory (1939),Drama|Romance\n7062,Birdman of Alcatraz (1962),Drama\n7063,\"Aguirre: The Wrath of God (Aguirre, der Zorn Gottes) (1972)\",Adventure|Drama\n7064,Beauty and the Beast (La belle et la bête) (1946),Drama|Fantasy\n7065,\"Birth of a Nation, The (1915)\",Drama|War\n7067,Juliet of the Spirits (Giulietta degli spiriti) (1965),Comedy|Drama|Fantasy|Romance\n7068,Last Year at Marienbad (L'Année dernière à Marienbad) (1961),Drama|Mystery|Romance\n7069,\"Macbeth (a.k.a. Tragedy of Macbeth, The) (1971)\",Drama\n7070,Red River (1948),Action|Adventure|Western\n7071,\"Woman Under the Influence, A (1974)\",Drama\n7072,Stagecoach (1939),Action|Drama|Romance|Western\n7073,\"Shot in the Dark, A (1964)\",Comedy|Crime|Mystery\n7074,\"Navigator, The (1924)\",Comedy\n7075,\"Court Jester, The (1956)\",Adventure|Comedy|Musical\n7076,Bullitt (1968),Action|Crime|Drama|Thriller\n7078,Jezebel (1938),Drama\n7079,\"Hunchback of Notre Dame, The (1939)\",Drama\n7080,42nd Street (1933),Drama|Musical|Romance\n7081,I'm No Angel (1933),Comedy\n7082,That Touch of Mink (1962),Comedy|Romance\n7083,Sweet Dreams (1985),Drama\n7084,\"Play It Again, Sam (1972)\",Comedy|Romance\n7085,Send Me No Flowers (1964),Comedy|Romance\n7086,Pygmalion (1938),Comedy|Drama\n7087,\"Passage to India, A (1984)\",Adventure|Drama\n7088,Black Orpheus (Orfeu Negro) (1959),Drama|Romance\n7089,Amarcord (1973),Comedy|Drama\n7090,Hero (Ying xiong) (2002),Action|Adventure|Drama\n7091,Horse Feathers (1932),Comedy\n7093,\"Front Page, The (1974)\",Comedy\n7095,Looking for Mr. Goodbar (1977),Drama\n7096,Rivers and Tides (2001),Documentary\n7099,Nausicaä of the Valley of the Wind (Kaze no tani no Naushika) (1984),Adventure|Animation|Drama|Fantasy|Sci-Fi\n7101,Doc Hollywood (1991),Comedy|Romance\n7102,Dragnet (1987),Comedy|Crime|Drama\n7104,1941 (1979),Comedy|War\n7107,Foul Play (1978),Comedy|Thriller\n7108,Crime Story (Zhong an zu) (1993),Action|Crime|Drama\n7110,Blind Beast (Môjuu) (1969),Drama|Thriller\n7111,Ryan's Daughter (1970),Drama|Romance\n7115,Deep Red (Profondo rosso) (1975),Horror|Mystery|Thriller\n7116,Diabolique (Les diaboliques) (1955),Horror|Mystery|Thriller\n7117,Leprechaun (1993),Comedy|Horror\n7121,Adam's Rib (1949),Comedy|Romance\n7122,King of Hearts (1966),Comedy|Drama|War\n7123,Naked Lunch (1991),Drama|Fantasy|Mystery|Sci-Fi\n7125,Spring Forward (1999),Drama\n7126,\"Killing of a Chinese Bookie, The (1976)\",Comedy|Crime|Drama|Film-Noir|Musical\n7130,Darling (1965),Drama\n7131,\"Summer Place, A (1959)\",Drama\n7132,\"Night at the Opera, A (1935)\",Comedy|Musical|Romance\n7135,Shoot the Piano Player (Tirez sur le pianiste) (1960),Crime|Drama|Romance|Thriller\n7136,Stolen Kisses (Baisers volés) (1968),Comedy|Drama|Romance\n7137,\"Cooler, The (2003)\",Comedy|Drama|Romance\n7139,In America (2002),Drama|Romance\n7142,Honey (2003),Drama|Romance\n7143,\"Last Samurai, The (2003)\",Action|Adventure|Drama|War\n7147,Big Fish (2003),Drama|Fantasy|Romance\n7149,Something's Gotta Give (2003),Comedy|Drama|Romance\n7150,Stuck on You (2003),Comedy\n7151,Girl with a Pearl Earring (2003),Drama|Romance\n7152,\"Statement, The (2003)\",Drama|Thriller\n7153,\"Lord of the Rings: The Return of the King, The (2003)\",Action|Adventure|Drama|Fantasy\n7154,Mona Lisa Smile (2003),Drama|Romance\n7155,Calendar Girls (2003),Comedy\n7156,\"Fog of War: Eleven Lessons from the Life of Robert S. McNamara, The (2003)\",Documentary|War\n7158,House of Sand and Fog (2003),Drama\n7160,Monster (2003),Crime|Drama\n7161,Cheaper by the Dozen (2003),Children|Comedy\n7162,Cold Mountain (2003),Drama|Romance|War\n7163,Paycheck (2003),Action|Sci-Fi|Thriller\n7164,Peter Pan (2003),Action|Adventure|Children|Fantasy\n7165,\"Company, The (2003)\",Drama|Musical\n7171,Aileen: Life and Death of a Serial Killer (2003),Documentary\n7172,Distant (Uzak) (2002),Drama\n7173,Along Came Polly (2004),Comedy|Romance\n7177,Osama (2003),Drama\n7178,\"Great Gatsby, The (1974)\",Drama\n7179,Wuthering Heights (1992),Drama|Romance\n7180,Odds Against Tomorrow (1959),Crime|Drama|Thriller\n7182,Lord Love a Duck (1966),Comedy\n7186,Once Upon a Crime... (1992),Comedy|Mystery\n7189,\"Car 54, Where Are You? (1994)\",Comedy\n7190,Jane Eyre (1970),Drama\n7192,Only the Strong (1993),Action\n7193,\"Adventures of Ford Fairlane, The (1990)\",Action|Comedy\n7195,\"Enforcer, The (1951)\",Crime|Drama|Film-Noir\n7196,\"Men, The (1950)\",Drama\n7198,The Pick-up Artist (1987),Comedy|Crime|Drama|Romance\n7199,Melvin Goes to Dinner (2003),Comedy|Drama\n7204,Hells Angels on Wheels (1967),Drama\n7206,Mon Oncle (My Uncle) (1958),Comedy\n7207,Where the Boys Are (1960),Comedy\n7208,Dr. Jekyll and Mr. Hyde (1941),Drama|Horror\n7209,\"M. Hulot’s Holiday (Mr. Hulot's Holiday) (Vacances de Monsieur Hulot, Les) (1953)\",Comedy\n7210,My Darling Clementine (1946),Western\n7211,People Will Talk (1951),Comedy|Romance\n7212,I Was a Male War Bride (1949),Comedy|Romance\n7215,To Have and Have Not (1944),Adventure|Drama|Romance|Thriller|War\n7216,High Sierra (1941),Crime|Drama|Film-Noir|Thriller\n7217,Dark Passage (1947),Crime|Drama|Film-Noir|Romance|Thriller\n7219,They Drive by Night (1940),Drama\n7222,Reefer Madness (a.k.a. Tell Your Children) (1938),Comedy|Drama\n7223,D.O.A. (1950),Drama|Film-Noir|Mystery\n7228,Cool World (1992),Animation|Comedy|Fantasy\n7234,\"Strada, La (1954)\",Drama\n7235,Ichi the Killer (Koroshiya 1) (2001),Action|Comedy|Crime|Drama|Horror|Thriller\n7236,\"Boy and His Dog, A (1975)\",Sci-Fi\n7238,Ashes and Diamonds (Popiól i diament) (1958),Drama|War\n7243,Intolerance: Love's Struggle Throughout the Ages (1916),Drama\n7245,Tormented (1960),Horror|Thriller\n7247,Chitty Chitty Bang Bang (1968),Adventure|Children|Comedy|Fantasy|Musical\n7248,\"Suriyothai (a.k.a. Legend of Suriyothai, The) (2001)\",Action|Adventure|Drama|War\n7250,\"Out of Towners, The (1970)\",Comedy\n7254,The Butterfly Effect (2004),Drama|Sci-Fi|Thriller\n7255,Win a Date with Tad Hamilton! (2004),Comedy|Romance\n7256,Touching the Void (2003),Adventure|Documentary\n7257,\"Big Bounce, The (2004)\",Comedy|Crime|Thriller\n7258,\"Perfect Score, The (2004)\",Comedy|Crime\n7260,Latter Days (2003),Comedy|Drama|Romance\n7263,Miracle (2004),Drama\n7265,\"Dreamers, The (2003)\",Drama\n7266,\"Lost Skeleton of Cadavra, The (2002)\",Comedy|Horror|Sci-Fi\n7272,Super Fly (Superfly) (1972),Action|Crime|Drama\n7282,\"Hip Hop Witch, Da (2000)\",Comedy|Horror|Thriller\n7283,Swing Shift (1984),Drama\n7285,Thirteen (2003),Drama\n7293,50 First Dates (2004),Comedy|Romance\n7294,Welcome to Mooseport (2004),Comedy\n7299,Monsieur Ibrahim (Monsieur Ibrahim et les fleurs du Coran) (2003),Drama\n7300,Vanishing Point (1971),Action|Drama\n7302,\"Thief of Bagdad, The (1924)\",Action|Adventure|Fantasy\n7303,The Diary of Anne Frank (1959),Drama|War\n7305,Black Widow (1987),Crime|Drama|Mystery|Thriller\n7307,Flesh & Blood (1985),Action|Adventure|Drama|War\n7308,King Solomon's Mines (1985),Adventure|Comedy\n7309,\"Black Pirate, The (1926)\",Action|Adventure\n7311,\"Goodbye, Mr. Chips (1939)\",Drama|Romance\n7312,\"Follow Me, Boys! (1966)\",Comedy|Drama\n7315,Against the Ropes (2004),Comedy|Drama\n7316,Confessions of a Teenage Drama Queen (2004),Comedy\n7317,EuroTrip (2004),Adventure|Comedy\n7318,\"Passion of the Christ, The (2004)\",Drama\n7319,Club Dread (2004),Comedy|Horror\n7320,Dirty Dancing: Havana Nights (2004),Romance\n7323,\"Good bye, Lenin! (2003)\",Comedy|Drama\n7324,Hidalgo (2004),Adventure|Drama\n7325,Starsky & Hutch (2004),Action|Comedy|Crime|Thriller\n7327,Persona (1966),Drama\n7334,\"Front, The (1976)\",Comedy|Drama\n7335,Pickup on South Street (1953),Film-Noir\n7340,Just One of the Guys (1985),Comedy\n7343,Wisconsin Death Trip (1999),Documentary\n7346,\"Girl Next Door, The (2004)\",Comedy|Romance\n7347,Secret Window (2004),Mystery|Thriller\n7348,Spartan (2004),Thriller\n7349,Broken Wings (Knafayim Shvurot) (2002),Drama\n7352,Wilbur Wants to Kill Himself (2002),Comedy|Drama|Romance\n7354,Mad Dog and Glory (1993),Comedy|Drama|Romance\n7355,Mr. Toad's Wild Ride (a.k.a. The Wind in the Willows) (1996),Adventure|Animation|Comedy\n7357,Peyton Place (1957),Drama|Romance\n7358,Searching for Debra Winger (2002),Documentary\n7360,Dawn of the Dead (2004),Action|Drama|Horror|Thriller\n7361,Eternal Sunshine of the Spotless Mind (2004),Drama|Romance|Sci-Fi\n7362,Taking Lives (2004),Crime|Drama|Thriller\n7366,Jersey Girl (2004),Comedy|Drama|Romance\n7367,\"Ladykillers, The (2004)\",Comedy|Crime\n7369,Scooby-Doo 2: Monsters Unleashed (2004),Action|Adventure|Children|Comedy|Mystery\n7371,Dogville (2003),Drama|Mystery|Thriller\n7372,Ned Kelly (2003),Drama\n7373,Hellboy (2004),Action|Adventure|Fantasy|Horror\n7374,Home on the Range (2004),Animation|Children|Comedy|Musical|Western\n7375,\"Prince & Me, The (2004)\",Comedy|Romance\n7376,Walking Tall (2004),Action\n7379,The Alamo (2004),Drama|War|Western\n7380,Ella Enchanted (2004),Comedy|Fantasy|Romance\n7381,\"Whole Ten Yards, The (2004)\",Action|Comedy|Crime\n7382,I'm Not Scared (Io non ho paura) (2003),Drama|Mystery|Thriller\n7386,\"Ten Commandments, The (1956)\",Adventure|Drama\n7387,Dawn of the Dead (1978),Action|Drama|Horror\n7394,Those Magnificent Men in Their Flying Machines (1965),Action|Adventure|Comedy\n7395,Cheaper by the Dozen (1950),Comedy|Drama\n7396,Scenes From a Marriage (Scener ur ett äktenskap) (1973),Drama\n7407,Africa Screams (1949),Adventure|Comedy\n7411,Munchies (1987),Comedy|Horror\n7415,\"Late Show, The (1977)\",Comedy|Crime|Drama|Mystery\n7419,After Hours (1985),Comedy|Thriller\n7437,Connie and Carla (2004),Comedy\n7438,Kill Bill: Vol. 2 (2004),Action|Drama|Thriller\n7439,\"Punisher, The (2004)\",Action|Crime|Thriller\n7444,13 Going on 30 (2004),Comedy|Fantasy|Romance\n7445,Man on Fire (2004),Action|Crime|Drama|Mystery|Thriller\n7448,Envy (2004),Comedy\n7449,Godsend (2004),Drama|Horror|Thriller\n7450,Laws of Attraction (2004),Comedy|Romance\n7451,Mean Girls (2004),Comedy\n7453,New York Minute (2004),Action|Adventure|Comedy\n7454,Van Helsing (2004),Action|Adventure|Fantasy|Horror\n7456,Valentin (Valentín) (2002),Drama\n7458,Troy (2004),Action|Adventure|Drama|War\n7459,Carandiru (2003),Crime|Drama\n7460,Coffee and Cigarettes (2003),Comedy|Drama\n7478,Swimming to Cambodia (1987),Drama\n7481,Enemy Mine (1985),Adventure|Drama|Sci-Fi\n7482,Enter the Dragon (1973),Action|Crime\n7484,Gimme Shelter (1970),Documentary\n7487,Henry & June (1990),Drama\n7492,Martin (1977),Drama|Horror\n7493,\"Three Faces of Eve, The (1957)\",Drama\n7502,Band of Brothers (2001),Action|Drama|War\n7505,\"Kingdom, The (Riget) (1994)\",Drama|Horror|Mystery\n7541,100 Girls (2000),Comedy|Romance\n7560,Fail-Safe (1964),Drama|Thriller|War\n7564,Kwaidan (Kaidan) (1964),Horror\n7566,28 Up (1985),Documentary\n7569,You Only Live Twice (1967),Action|Adventure|Sci-Fi|Thriller\n7570,Octopussy (1983),Action|Adventure|Thriller\n7571,\"Blue Gardenia, The (1953)\",Crime|Drama|Film-Noir|Thriller\n7572,Wit (2001),Drama\n7573,Never Say Never Again (1983),Action|Adventure|Thriller\n7574,Maborosi (Maboroshi no hikari) (1995),Drama\n7577,\"Magic Flute, The (Trollflöjten) (1975)\",Comedy|Fantasy|Musical|Romance\n7579,Pride and Prejudice (1940),Comedy|Drama|Romance\n7583,In This Our Life (1942),Drama\n7584,Woman of the Year (1942),Comedy|Romance\n7585,Summertime (1955),Drama|Romance\n7586,Soldier of Orange (a.k.a. Survival Run) (Soldaat van Oranje) (1977),Drama|Thriller|War\n7587,\"Samouraï, Le (Godson, The) (1967)\",Crime|Drama|Thriller\n7613,White Palace (1990),Drama\n7614,Oklahoma! (1955),Musical|Romance|Western\n7615,Desert Hearts (1985),Drama\n7616,Body Double (1984),Mystery|Thriller\n7619,\"Miracle Worker, The (1962)\",Drama\n7620,Monster in a Box (1992),Comedy|Drama\n7624,School Ties (1992),Drama\n7625,Girl (1998),Drama\n7627,Just Write (1997),Comedy\n7636,Raising Cain (1992),Horror|Thriller\n7649,Babylon 5: In the Beginning (1998),Adventure|Sci-Fi\n7650,\"Witchfinder General (Conquerer Worm, The) (1968)\",Horror\n7669,Pride and Prejudice (1995),Drama|Romance\n7697,\"Prince and the Showgirl, The (1957)\",Comedy|Romance\n7698,\"China Syndrome, The (1979)\",Drama|Thriller\n7700,\"Wages of Fear, The (Salaire de la peur, Le) (1953)\",Action|Adventure|Drama|Thriller\n7701,Look Who's Talking Too (1990),Comedy|Romance\n7702,\"Bells of St. Mary's, The (1945)\",Drama\n7705,Pat and Mike (1952),Comedy|Romance\n7706,Animal Crackers (1930),Comedy|Musical\n7708,Bedazzled (1967),Comedy|Fantasy\n7713,Cat People (1942),Drama|Horror|Romance|Thriller\n7714,Camelot (1967),Drama|Musical|Romance\n7720,\"Four Musketeers, The (1974)\",Action|Adventure|Comedy|Romance\n7728,\"Postman Always Rings Twice, The (1946)\",Crime|Drama|Film-Noir|Thriller\n7738,That's The Way I Like It (a.k.a. Forever Fever) (1998),Comedy|Drama|Romance\n7743,Explorers (1985),Adventure|Children|Sci-Fi\n7748,Pierrot le fou (1965),Crime|Drama\n7753,Tuesdays with Morrie (1999),Drama\n7757,Jason and the Argonauts (1963),Action|Adventure|Fantasy\n7759,Nostalghia (1983),Drama\n7762,\"Tinker, Tailor, Soldier, Spy (1979)\",Drama|Thriller\n7764,\"Driller Killer, The (1979)\",Drama|Horror\n7766,Throne of Blood (Kumonosu jô) (1957),Action|Drama|Thriller|War\n7767,\"Best of Youth, The (La meglio gioventù) (2003)\",Drama\n7771,Zorba the Greek (Alexis Zorbas) (1964),Adventure|Drama\n7773,\"Bang, Bang, You're Dead (2002)\",Drama\n7774,My Side of the Mountain (1969),Adventure|Children\n7782,Sniper (1993),Action|Drama\n7786,Genghis Blues (1999),Documentary\n7787,To Hell and Back (1955),Action|Drama|War\n7789,\"11'09\"\"01 - September 11 (2002)\",Drama\n7790,\"Bon Voyage, Charlie Brown (and Don't Come Back!) (1980)\",Animation|Children|Comedy\n7791,Internal Affairs (1990),Crime|Thriller\n7792,\"Parallax View, The (1974)\",Thriller\n7802,\"Warriors, The (1979)\",Action|Adventure|Crime|Thriller\n7809,Ambush (Rukajärven tie) (1999),Drama|Romance|War\n7810,Babylon 5: A Call to Arms (1999),Adventure|Sci-Fi\n7811,Babylon 5: The River of Souls (1998),Drama|Sci-Fi\n7812,Babylon 5: Thirdspace (1998),Drama|Sci-Fi\n7815,True Stories (1986),Comedy|Musical\n7817,Zardoz (1974),Fantasy|Sci-Fi\n7818,School For Scoundrels (1960),Comedy\n7820,\"Virgin Spring, The (Jungfrukällan) (1960)\",Crime|Drama\n7822,Mogambo (1953),Adventure|Drama|Romance\n7826,\"Secret Life of Walter Mitty, The (1947)\",Comedy|Romance|Thriller\n7827,Cypher (2002),Action|Sci-Fi|Thriller\n7831,Another Thin Man (1939),Comedy|Crime|Drama|Mystery|Romance\n7832,\"Thin Man Goes Home, The (1945)\",Comedy|Crime|Mystery\n7833,Shadow of the Thin Man (1941),Comedy|Crime|Mystery\n7834,After the Thin Man (1936),Comedy|Crime|Mystery|Romance\n7835,Song of the Thin Man (1947),Comedy|Crime|Drama|Musical|Mystery|Romance\n7836,Woodstock (1970),Documentary|Musical\n7840,Gunga Din (1939),Adventure|Comedy|War\n7841,Children of Dune (2003),Fantasy|Sci-Fi\n7842,Dune (2000),Drama|Fantasy|Sci-Fi\n7843,Lammbock (2001),Comedy\n7844,\"Legend, The (Legend of Fong Sai-Yuk, The) (Fong Sai Yuk) (1993)\",Action|Comedy\n7845,Tremors II: Aftershocks (1996),Comedy|Horror|Sci-Fi\n7846,Tremors 3: Back to Perfection (2001),Comedy|Horror|Sci-Fi\n7872,Getting It Right (1989),Comedy|Drama\n7878,Straight to Hell (1987),Comedy|Crime|Western\n7881,White Zombie (1932),Horror\n7882,The Plague of the Zombies (1966),Horror\n7883,I Walked with a Zombie (1943),Drama|Horror\n7888,How to Succeed in Business Without Really Trying (1967),Comedy|Musical\n7889,Pat Garrett and Billy the Kid (1973),Western\n7892,\"Street Fighter, The (Gekitotsu! Satsujin ken) (1974)\",Action\n7894,\"Duck, You Sucker (1971)\",Action|Western\n7895,Bring Me the Head of Alfredo Garcia (1974),Crime|Drama|Thriller\n7897,\"Ballad of Cable Hogue, The (1970)\",Comedy|Western\n7899,Master of the Flying Guillotine (Du bi quan wang da po xue di zi) (1975),Action\n7914,Berlin: Symphony of a Great City (Berlin: Die Sinfonie der Großstadt) (1927),Documentary\n7915,Samurai Fiction (SF: Episode One) (1998),Action|Adventure|Comedy\n7916,Gidget (1959),Comedy\n7919,Drunken Angel (Yoidore tenshi) (1948),Drama|Film-Noir\n7920,Desperate Living (1977),Comedy|Crime\n7921,\"Devil's Rain, The (1975)\",Horror\n7922,\"Valachi Papers,The (1972)\",Crime|Drama\n7924,Stray Dog (Nora inu) (1949),Drama|Film-Noir|Thriller\n7925,\"Hidden Fortress, The (Kakushi-toride no san-akunin) (1958)\",Action|Adventure\n7926,High and Low (Tengoku to jigoku) (1963),Crime|Drama|Film-Noir|Thriller\n7932,Dark Days (2000),Documentary\n7934,Zelig (1983),Comedy\n7935,Face to Face (Ansikte mot ansikte) (1976),Drama|Fantasy|Horror|Mystery\n7936,Shame (Skammen) (1968),Drama|War\n7938,Winter Light (Nattvardsgästerna) (1963),Drama\n7939,Through a Glass Darkly (Såsom i en spegel) (1961),Drama\n7941,Smiles of a Summer Night (Sommarnattens leende) (1955),Comedy|Romance\n7942,Summer with Monika (Sommaren med Monika) (1953),Drama|Romance\n7943,\"Killers, The (1946)\",Crime|Film-Noir\n7944,\"Night of the Iguana, The (1964)\",Drama|Thriller\n7946,Reflections in a Golden Eye (1967),Drama\n7947,Under the Volcano (1984),Drama\n7948,Wise Blood (1979),Comedy|Drama\n7951,Nightbreed (1990),Fantasy|Horror\n7958,Bloody Mama (1970),Crime|Drama\n7959,\"Trip, The (1967)\",Drama\n7976,Ken Park (2002),Drama\n7979,Monterey Pop (1968),Documentary|Musical\n7980,\"Bridge Too Far, A (1977)\",Action|Drama|War\n7981,Infernal Affairs (Mou gaan dou) (2002),Crime|Drama|Thriller\n7982,\"Tale of Two Sisters, A (Janghwa, Hongryeon) (2003)\",Drama|Horror|Mystery|Thriller\n7983,Broadway Danny Rose (1984),Comedy\n7984,From Beyond (1986),Horror|Sci-Fi\n7987,Dolls (1987),Horror\n7990,Rock 'N' Roll High School (1979),Comedy|Musical\n7991,Death Race 2000 (1975),Action|Sci-Fi\n7995,\"Wild Angels, The (1966)\",Action|Drama\n8003,Bedlam (1946),Drama|Horror\n8008,Brigadoon (1954),Fantasy|Musical|Romance\n8009,Marjorie Morningstar (1958),Drama\n8010,\"Power of One, The (1992)\",Drama\n8011,\"Weather Underground, The (2002)\",Documentary\n8012,Kikujiro (Kikujirô no natsu) (1999),Comedy|Drama\n8014,\"Spring, Summer, Fall, Winter... and Spring (Bom yeoreum gaeul gyeoul geurigo bom) (2003)\",Drama\n8015,\"Phantom Tollbooth, The (1970)\",Adventure|Animation|Children|Fantasy\n8016,\"Getaway, The (1972)\",Action|Crime|Drama|Thriller\n8019,Dark Water (Honogurai mizu no soko kara) (2002),Drama|Horror|Mystery|Thriller\n8033,How to Steal a Million (1966),Comedy|Crime|Romance\n8039,Support Your Local Sheriff! (1969),Comedy|Western\n8042,Mean Streets (1973),Crime|Drama\n8044,I Am a Fugitive from a Chain Gang (1932),Crime|Drama|Film-Noir\n8056,Harper (1966),Crime|Drama|Mystery\n8057,Sweet Bird of Youth (1962),Drama\n8070,Grill Point (Halbe Treppe) (2002),Drama\n8093,Shiri (Swiri) (1999),Action|Drama|Romance|Thriller\n8094,Bad Day at Black Rock (1955),Drama|Thriller|Western\n8117,In China They Eat Dogs (I Kina spiser de hunde) (1999),Action|Comedy\n8121,\"Seducing Doctor Lewis (Grande séduction, La) (2003)\",Comedy\n8123,Sammy and Rosie Get Laid (1987),Comedy|Drama\n8125,Sunrise: A Song of Two Humans (1927),Drama|Romance\n8126,Shock Corridor (1963),Drama\n8128,Au revoir les enfants (1987),Drama\n8129,Sex: The Annabel Chong Story (1999),Documentary\n8130,\"Girl Next Door, The (1999)\",Documentary\n8131,Pursuit of Happiness (2001),Comedy|Romance\n8132,Gladiator (1992),Action|Drama\n8133,\"Inheritance, The (Arven) (2003)\",Drama\n8136,Indestructible Man (1956),Crime|Horror|Sci-Fi\n8137,\"Wasp Woman, The (1959)\",Horror|Sci-Fi\n8138,Attack of the Giant Leeches (1959),Horror|Sci-Fi\n8142,Dead or Alive: Hanzaisha (1999),Action|Crime\n8143,Lola Montès (1955),Drama\n8147,Charly (1968),Drama|Sci-Fi\n8154,\"Dolce Vita, La (1960)\",Drama\n8157,Jin Roh: The Wolf Brigade (Jin-Rô) (1998),Animation|Fantasy|Thriller\n8158,Rush (1991),Crime|Drama\n8167,Captain Blood (1935),Action|Adventure|Romance\n8169,*batteries not included (1987),Children|Comedy|Fantasy|Sci-Fi\n8183,Educating Rita (1983),Comedy|Drama\n8187,On Moonlight Bay (1951),Comedy|Musical\n8188,Sansho the Bailiff (Sanshô dayû) (1954),Drama\n8189,Zazie dans le métro (1960),Comedy\n8190,\"Americanization of Emily, The (1964)\",Comedy|Drama|War\n8191,Anne of the Thousand Days (1969),Drama\n8194,Baby Doll (1956),Drama\n8195,\"Avventura, L' (Adventure, The) (1960)\",Drama|Mystery|Romance\n8196,Beyond the Valley of the Dolls (1970),Comedy|Horror\n8197,Hiroshima Mon Amour (1959),Drama|Romance|War\n8199,Ugetsu (Ugetsu monogatari) (1953),Drama|Thriller\n8207,\"Day of the Jackal, The (1973)\",Crime|Thriller\n8208,\"Razor's Edge, The (1946)\",Drama\n8225,Night of the Living Dead (1990),Horror\n8228,\"Maltese Falcon, The (a.k.a. Dangerous Female) (1931)\",Mystery\n8235,Safety Last! (1923),Action|Comedy|Romance\n8236,While the City Sleeps (1956),Drama|Film-Noir\n8239,Viridiana (1961),Comedy|Drama\n8240,Totally F***ed Up (1993),Drama\n8253,Lupin III: The Castle Of Cagliostro (Rupan sansei: Kariosutoro no shiro) (1979),Action|Adventure|Animation|Comedy|Crime|Mystery\n8254,Arizona Dream (1993),Comedy|Drama|Fantasy|Romance\n8256,Queen Christina (1933),Drama|Romance\n8257,Battleground (1949),Action|Drama|War\n8261,3 Women (Three Women) (1977),Drama\n8263,Take Me Out to the Ball Game (1949),Comedy|Musical|Romance\n8264,Grey Gardens (1975),Documentary\n8266,Purple Rain (1984),Drama|Musical\n8267,Signs of Life (Lebenszeichen) (1968),Drama\n8268,Point of No Return (1993),Action|Thriller\n8273,\"Tale of Ham and Passion, A (Jamón, Jamón) (1992)\",Comedy|Drama|Romance\n8275,College (1927),Comedy\n8290,Mitchell (1975),Action|Crime\n8327,Dolls (2002),Drama|Romance\n8331,\"Man Who Came to Dinner, The (1942)\",Comedy\n8332,Sunday Bloody Sunday (1971),Drama\n8336,\"Major and the Minor, The (1942)\",Comedy|Romance\n8337,\"Caine Mutiny, The (1954)\",Drama|War\n8338,Black Narcissus (1947),Drama\n8340,Escape from Alcatraz (1979),Drama|Thriller\n8341,Oliver Twist (1948),Adventure|Crime|Drama\n8360,Shrek 2 (2004),Adventure|Animation|Children|Comedy|Musical|Romance\n8361,\"Day After Tomorrow, The (2004)\",Action|Adventure|Drama|Sci-Fi|Thriller\n8362,Raising Helen (2004),Comedy|Drama|Romance\n8363,Soul Plane (2004),Comedy\n8364,Baadasssss! (How to Get the Man's Foot Outta Your Ass) (2003),Drama\n8366,Saved! (2004),Comedy|Drama\n8367,\"Time of the Wolf, The (Le temps du loup) (2003)\",Drama\n8368,Harry Potter and the Prisoner of Azkaban (2004),Adventure|Fantasy|IMAX\n8369,Mindhunters (2004),Action|Crime|Horror|Mystery|Thriller\n8370,\"Blind Swordsman: Zatoichi, The (Zatôichi) (2003)\",Action|Comedy|Crime|Drama\n8371,\"Chronicles of Riddick, The (2004)\",Action|Sci-Fi|Thriller\n8372,Garfield: The Movie (2004),Animation|Children|Comedy\n8373,\"Stepford Wives, The (2004)\",Comedy|Fantasy|Thriller\n8376,Napoleon Dynamite (2004),Comedy\n8385,Lover Come Back (1961),Comedy|Romance\n8387,Police Academy: Mission to Moscow (1994),Comedy|Crime\n8388,Ring of Bright Water (1969),Comedy|Drama\n8392,Fool for Love (1985),Drama\n8403,Helen of Troy (1956),Action|Adventure|Drama|Romance|War\n8404,\"Hound of the Baskervilles, The (1939)\",Crime|Mystery|Thriller\n8410,Suddenly (1954),Crime|Drama|Film-Noir\n8420,Possessed (1947),Drama|Film-Noir\n8422,Kings Row (1942),Drama|Romance\n8423,\"Kid Brother, The (1927)\",Children|Comedy|Romance\n8447,This Island Earth (1955),Sci-Fi\n8451,Blackboard Jungle (1955),Drama\n8453,It Had to Be You (2000),Comedy|Romance\n8459,\"Heiress, The (1949)\",Drama|Romance\n8460,State Fair (1945),Musical|Romance\n8462,Executive Suite (1954),Drama\n8463,Johnny Belinda (1948),Drama\n8464,Super Size Me (2004),Comedy|Documentary|Drama\n8465,Johnny Eager (1942),Crime|Drama|Film-Noir|Romance\n8477,\"Jetée, La (1962)\",Romance|Sci-Fi\n8482,\"Picture of Dorian Gray, The (1945)\",Drama|Fantasy|Horror\n8484,\"Human Condition I, The (Ningen no joken I) (1959)\",Drama|War\n8485,Samsara (2001),Adventure|Drama|Romance\n8487,Please Don't Eat the Daisies (1960),Children|Comedy|Musical\n8491,White Heat (1949),Crime|Drama|Film-Noir\n8492,\"Christmas Carol, A (Scrooge) (1951)\",Drama|Fantasy\n8493,Memphis Belle (1990),Action|Drama|War\n8494,\"Cincinnati Kid, The (1965)\",Drama\n8499,Pretty Baby (1978),Drama\n8502,Show Boat (1951),Drama|Musical|Romance\n8504,Box of Moon Light (1996),Comedy|Drama\n8507,Freaks (1932),Crime|Drama|Horror\n8511,\"Immigrant, The (1917)\",Comedy\n8522,My Little Chickadee (1940),Comedy|Western\n8524,\"High and the Mighty, The (1954)\",Drama\n8525,\"Ugly Dachshund, The (1966)\",Children|Comedy\n8526,Around the World in 80 Days (2004),Adventure|Children|Comedy\n8527,I'll Sleep When I'm Dead (2003),Crime|Drama\n8528,Dodgeball: A True Underdog Story (2004),Comedy\n8529,\"Terminal, The (2004)\",Comedy|Drama|Romance\n8530,Dear Frankie (2004),Drama|Romance\n8531,White Chicks (2004),Action|Comedy|Crime\n8533,\"Notebook, The (2004)\",Drama|Romance\n8534,Two Brothers (Deux frères) (2004),Adventure|Children|Drama\n8535,De-Lovely (2004),Drama|Musical\n8537,Kaena: The Prophecy (Kaena: La prophétie) (2003),Action|Adventure|Animation|Children|Sci-Fi\n8542,\"Day at the Races, A (1937)\",Comedy|Musical\n8544,\"Now You See Him, Now You Don't (1972)\",Comedy|Sci-Fi\n8571,Bob & Carol & Ted & Alice (1969),Comedy|Drama\n8572,\"Littlest Rebel, The (1935)\",Children|Drama\n8574,\"Claymation Christmas Celebration, A (1987)\",Animation|Children|Comedy|Musical\n8575,\"Happenstance (Battement d'ailes du papillon, Le) (2001)\",Comedy|Drama\n8576,Kopps (2003),Action|Comedy\n8577,Comandante (2003),Documentary\n8580,Into the Woods (1991),Adventure|Comedy|Fantasy|Musical\n8581,Pirates of Silicon Valley (1999),Documentary|Drama\n8582,Manufacturing Consent: Noam Chomsky and the Media (1992),Documentary|War\n8583,\"Clock, The (1945)\",Adventure|Drama|Romance\n8584,Leave Her to Heaven (1945),Drama|Film-Noir\n8589,Winter War (Talvisota) (1989),Drama|War\n8591,\"Philadelphia Experiment, The (1984)\",Adventure|Drama|Sci-Fi\n8596,Revenge of the Pink Panther (1978),Comedy|Crime\n8600,Angels with Dirty Faces (1938),Crime|Drama|Film-Noir|Thriller\n8604,Taxi (1998),Action|Comedy\n8607,Tokyo Godfathers (2003),Adventure|Animation|Drama\n8609,Our Hospitality (1923),Comedy\n8610,All of Me (1984),Comedy|Fantasy\n8611,\"Farmer's Daughter, The (1947)\",Comedy\n8612,Lassie Come Home (1943),Adventure|Children|Drama\n8614,Overboard (1987),Comedy|Romance\n8616,By the Light of the Silvery Moon (1953),Children|Musical|Romance\n8617,Butterfield 8 (1960),Drama\n8618,Johnny Guitar (1954),Drama|Western\n8620,\"Exterminating Angel, The (Ángel exterminador, El) (1962)\",Comedy|Drama|Fantasy|Mystery\n8622,Fahrenheit 9/11 (2004),Documentary\n8623,Roxanne (1987),Comedy|Romance\n8625,\"Same River Twice, The (2003)\",Documentary\n8629,\"Book of Life, The (1998)\",Comedy|Fantasy\n8633,\"Last Starfighter, The (1984)\",Action|Adventure|Comedy|Sci-Fi\n8636,Spider-Man 2 (2004),Action|Adventure|Sci-Fi|IMAX\n8638,Before Sunset (2004),Drama|Romance\n8640,King Arthur (2004),Action|Adventure|Drama|War\n8641,Anchorman: The Legend of Ron Burgundy (2004),Comedy\n8642,Sleepover (2004),Comedy\n8643,\"Cinderella Story, A (2004)\",Comedy|Romance\n8644,\"I, Robot (2004)\",Action|Adventure|Sci-Fi|Thriller\n8645,\"Maria Full of Grace (Maria, Llena eres de gracia) (2004)\",Crime|Drama\n8650,Long Day's Journey Into Night (1962),Drama\n8654,Prince Valiant (1954),Adventure\n8656,\"Short Film About Killing, A (Krótki film o zabijaniu) (1988)\",Crime|Drama\n8657,\"Tin Star, The (1957)\",Western\n8661,How the West Was Won (1962),Adventure|Drama|Western\n8665,\"Bourne Supremacy, The (2004)\",Action|Crime|Thriller\n8666,Catwoman (2004),Action|Crime|Fantasy\n8667,A Home at the End of the World (2004),Drama|Romance\n8670,\"Testament of Dr. Mabuse, The (Das Testament des Dr. Mabuse) (1933)\",Crime|Horror|Mystery|Thriller\n8672,Battle Hymn (1957),Drama\n8675,\"Enemy Below, The (1957)\",Action|Drama|War\n8684,\"Man Escaped, A (Un  condamné à mort s'est échappé ou Le vent souffle où il veut) (1956)\",Adventure|Drama\n8689,\"Shock to the System, A (1990)\",Comedy|Crime|Thriller\n8690,Slaughterhouse-Five (1972),Comedy|Drama|Sci-Fi|War\n8695,\"Bachelor and the Bobby-Soxer, The (1947)\",Comedy\n8699,Dancing in September (2000),Drama\n8700,Destination Tokyo (1943),Adventure|War\n8709,How I Got Into College (1989),Comedy|Romance\n8711,Mr. Blandings Builds His Dream House (1948),Comedy\n8712,My Favorite Wife (1940),Comedy|Romance\n8713,\"New Adventures of Pippi Longstocking, The (1988)\",Adventure|Children|Fantasy|Musical\n8718,\"Snake Pit, The (1948)\",Drama\n8720,\"Super, The (1991)\",Comedy\n8722,Two of a Kind (1983),Comedy|Fantasy|Romance\n8724,\"Leopard, The (Gattopardo, Il) (1963)\",Drama|War\n8725,\"Goodbye, Columbus (1969)\",Comedy|Drama|Romance\n8727,\"Day of the Locust, The (1975)\",Drama\n8730,To End All Wars (2001),Action|Drama|War\n8743,Biggles (1986),Adventure|Fantasy|Sci-Fi\n8745,\"World of Suzie Wong, The (1960)\",Drama|Romance\n8751,Gun Crazy (a.k.a. Deadly Is the Female) (1949),Crime|Drama|Film-Noir\n8752,\"Set-Up, The (1949)\",Drama|Film-Noir|Romance\n8753,Unprecedented: The 2000 Presidential Election (2002),Documentary\n8754,\"Prime of Miss Jean Brodie, The (1969)\",Drama\n8761,\"Three Lives of Thomasina, The (1964)\",Children|Drama\n8763,\"One and Only, Genuine, Original Family Band, The (1968)\",Children|Comedy|Musical\n8765,This Gun for Hire (1942),Crime|Film-Noir|Thriller\n8766,Black Angel (1946),Drama|Film-Noir|Mystery\n8767,\"Big Clock, The (1948)\",Crime|Film-Noir|Thriller\n8768,Criss Cross (1949),Crime|Drama|Film-Noir\n8772,\"Spy Who Came in from the Cold, The (1965)\",Drama|Thriller\n8777,Roadkill (a.k.a. Roadkill: Move or Die) (1989),Drama\n8779,Bon Voyage (2003),Comedy|Drama\n8781,\"Manchurian Candidate, The (2004)\",Thriller\n8783,\"Village, The (2004)\",Drama|Mystery|Thriller\n8784,Garden State (2004),Comedy|Drama|Romance\n8785,Early Summer (Bakushû) (1951),Drama\n8790,Revengers Tragedy (2002),Comedy|Horror\n8795,Musa the Warrior (Musa) (2001),Action|Adventure|Drama|War\n8796,\"Funny Thing Happened on the Way to the Forum, A (1966)\",Comedy|Musical\n8797,Salesman (1969),Documentary\n8798,Collateral (2004),Action|Crime|Drama|Thriller\n8799,Little Black Book (2004),Comedy|Romance\n8800,Code 46 (2003),Romance|Sci-Fi\n8807,Harold and Kumar Go to White Castle (2004),Adventure|Comedy\n8808,\"Princess Diaries 2: Royal Engagement, The (2004)\",Comedy|Romance\n8810,AVP: Alien vs. Predator (2004),Action|Horror|Sci-Fi|Thriller\n8811,Yu-Gi-Oh! (2004),Action|Adventure|Animation|Fantasy\n8813,We Don't Live Here Anymore (2004),Drama\n8814,Without a Paddle (2004),Comedy\n8819,Double Trouble (1967),Musical\n8820,Spinout (1966),Comedy|Musical\n8821,Harum Scarum (1965),Comedy|Musical\n8823,\"Sting II, The (1983)\",Comedy|Crime\n8827,\"Bill Cosby, Himself (1983)\",Comedy|Documentary\n8828,Dead Ringer (1964),Drama|Thriller\n8830,Anacondas: The Hunt for the Blood Orchid (2004),Adventure|Drama|Horror|Sci-Fi|Thriller\n8831,Suspect Zero (2004),Crime|Thriller\n8832,Warriors of Heaven and Earth (Tian di ying xiong) (2003),Action|Adventure|Drama\n8833,Vanity Fair (2004),Drama|Romance\n8835,Paparazzi (2004),Drama|Thriller\n8836,Wicker Park (2004),Drama|Romance|Thriller\n8838,Alice Doesn't Live Here Anymore (1974),Drama|Romance\n8839,\"Mangler, The (1995)\",Horror\n8840,Who's That Knocking at My Door? (1967),Drama\n8848,\"Vitelloni, I (a.k.a. The Young and the Passionate) (1953)\",Drama\n8850,Flipper (1963),Adventure|Children|Drama\n8851,Smile (1975),Comedy\n8853,\"Small Circle of Friends, A (1980)\",Drama\n8854,Night of the Demons (1988),Horror\n8857,Lilith (1964),Drama\n8859,SuperBabies: Baby Geniuses 2 (2004),Comedy\n8860,Cellular (2004),Action|Crime|Drama|Mystery|Thriller\n8861,Resident Evil: Apocalypse (2004),Action|Horror|Sci-Fi|Thriller\n8864,Mr. 3000 (2004),Comedy|Drama\n8865,Sky Captain and the World of Tomorrow (2004),Action|Adventure|Sci-Fi\n8866,Wimbledon (2004),Comedy|Romance\n8870,\"Forgotten, The (2004)\",Drama|Mystery|Sci-Fi|Thriller\n8871,\"Last Shot, The (2004)\",Comedy\n8872,\"Dirty Shame, A (2004)\",Comedy\n8873,\"Motorcycle Diaries, The (Diarios de motocicleta) (2004)\",Adventure|Drama\n8874,Shaun of the Dead (2004),Comedy|Horror\n8879,Murder on the Orient Express (1974),Crime|Mystery|Thriller\n8880,Mask (1985),Drama\n8882,\"Boston Strangler, The (1968)\",Crime|Drama|Mystery|Thriller\n8884,\"Man with One Red Shoe, The (1985)\",Comedy|Thriller\n8892,Basket Case 3: The Progeny (1992),Comedy|Horror\n8893,Basket Case 2 (1990),Comedy|Horror\n8899,Hardcore (1979),Drama\n8903,\"Terror, The (1963)\",Horror|Mystery\n8906,Cannibal Holocaust (1980),Horror\n8907,Shark Tale (2004),Animation|Children|Comedy\n8908,Ladder 49 (2004),Action|Drama|Thriller\n8910,I Heart Huckabees (2004),Comedy\n8911,Raise Your Voice (2004),Romance\n8914,Primer (2004),Drama|Sci-Fi\n8915,Stage Beauty (2004),Drama\n8916,Shall We Dance? (2004),Comedy|Romance\n8917,Team America: World Police (2004),Action|Adventure|Animation|Comedy\n8918,Eulogy (2004),Comedy|Crime|Drama\n8920,\"Country Girl, The (1954)\",Drama\n8921,\"Rose Tattoo, The (1955)\",Drama|Romance\n8923,Tess (1979),Drama|Romance\n8927,Cannonball (1976),Action|Comedy|Drama\n8928,\"Fearless Vampire Killers, The (1967)\",Comedy|Horror\n8929,Black Beauty (1971),Children|Drama\n8930,\"Five Obstructions, The (Fem benspænd, De) (2003)\",Documentary\n8931,Born Rich (2003),Documentary\n8933,\"Decline of the American Empire, The (Déclin de l'empire américain, Le) (1986)\",Comedy|Drama\n8935,All I Want for Christmas (1991),Children|Comedy|Romance\n8937,Friday Night Lights (2004),Action|Drama\n8938,Tarnation (2003),Documentary\n8943,Being Julia (2004),Comedy|Drama\n8946,Surviving Christmas (2004),Comedy\n8947,\"Grudge, The (2004)\",Horror|Mystery|Thriller\n8948,Alfie (2004),Comedy|Drama|Romance\n8949,Sideways (2004),Comedy|Drama|Romance\n8950,The Machinist (2004),Drama|Mystery|Thriller\n8951,Vera Drake (2004),Drama\n8954,Lightning in a Bottle (2004),Documentary\n8955,Undertow (2004),Crime|Drama|Thriller\n8957,Saw (2004),Horror|Mystery|Thriller\n8958,Ray (2004),Drama\n8961,\"Incredibles, The (2004)\",Action|Adventure|Animation|Children|Comedy\n8963,It's All About Love (2003),Drama|Romance|Sci-Fi|Thriller\n8964,Callas Forever (2002),Drama\n8965,\"Polar Express, The (2004)\",Adventure|Animation|Children|Fantasy|IMAX\n8966,Kinsey (2004),Drama\n8968,After the Sunset (2004),Action|Adventure|Comedy|Crime|Thriller\n8969,Bridget Jones: The Edge of Reason (2004),Comedy|Drama|Romance\n8970,Finding Neverland (2004),Drama\n8972,National Treasure (2004),Action|Adventure|Drama|Mystery|Thriller\n8973,Bad Education (La mala educación) (2004),Drama|Thriller\n8974,\"SpongeBob SquarePants Movie, The (2004)\",Adventure|Animation|Children|Comedy\n8977,Alexander (2004),Action|Adventure|Drama|War\n8979,Guerrilla: The Taking of Patty Hearst (2004),Documentary\n8981,Closer (2004),Drama|Romance\n8982,I Am David (2003),Drama\n8983,House of Flying Daggers (Shi mian mai fu) (2004),Action|Drama|Romance\n8984,Ocean's Twelve (2004),Action|Comedy|Crime|Thriller\n8985,Blade: Trinity (2004),Action|Fantasy|Horror|Thriller\n8986,\"Bellboy, The (1960)\",Comedy\n8987,Bush's Brain (2004),Documentary\n8988,Cinderfella (1960),Comedy\n8989,Damn Yankees! (1958),Comedy|Musical\n8998,That's Entertainment (1974),Documentary\n8999,\"That's Entertainment, Part II (1976)\",Documentary\n9000,That's Entertainment! III (1994),Documentary\n9001,\"Wackiest Ship in the Army, The (1960)\",Comedy|War\n9004,D.A.R.Y.L. (1985),Adventure|Children|Sci-Fi\n9005,Fire in the Sky (1993),Drama|Mystery|Sci-Fi\n9010,Love Me If You Dare (Jeux d'enfants) (2003),Drama|Romance\n9012,Ruby Gentry (1952),Drama\n9018,Control Room (2004),Documentary|War\n25737,\"Golem, The (Golem, wie er in die Welt kam, Der) (1920)\",Fantasy|Horror\n25744,Haxan: Witchcraft Through the Ages (a.k.a. The Witches) (1922),Documentary|Horror\n25750,Sherlock Jr. (1924),Comedy|Fantasy|Romance\n25752,\"Freshman, The (1925)\",Comedy\n25753,Greed (1924),Drama\n25755,\"Phantom of the Opera, The (1925)\",Drama|Horror\n25763,\"Pandora's Box (Büchse der Pandora, Die) (1929)\",Drama\n25764,\"Cameraman, The (1928)\",Comedy|Drama|Romance\n25769,\"Steamboat Bill, Jr. (1928)\",Comedy|Romance\n25771,\"Andalusian Dog, An (Chien andalou, Un) (1929)\",Fantasy\n25773,Little Caesar (1931),Crime|Drama\n25774,\"Golden Age, The (Âge d'Or, L') (1930)\",Comedy|Drama|Romance\n25777,Monkey Business (1931),Comedy\n25788,Scarface (1932),Crime|Drama\n25792,\"I Was Born, But... (a.k.a. Children of Tokyo) (Otona no miru ehon - Umarete wa mita keredo) (1932)\",Comedy|Drama\n25795,Dinner at Eight (1933),Comedy|Drama|Romance\n25801,She Done Him Wrong (1933),Comedy|Romance\n25805,\"Atalante, L' (1934)\",Comedy|Drama|Romance\n25807,\"Black Cat, The (1934)\",Adventure|Crime|Horror|Thriller\n25825,Fury (1936),Drama|Film-Noir\n25826,Libeled Lady (1936),Comedy|Romance\n25827,Mr. Deeds Goes to Town (1936),Comedy|Romance\n25828,\"Petrified Forest, The (1936)\",Crime|Drama|Romance\n25839,Nothing Sacred (1937),Comedy|Drama|Romance\n25841,Stage Door (1937),Drama\n25842,Topper (1937),Comedy|Fantasy|Romance\n25850,Holiday (1938),Comedy|Drama|Romance\n25852,Gaslight (1940),Mystery|Thriller\n25856,Wuthering Heights (1939),Drama|Romance\n25865,\"Letter, The (1940)\",Drama|Film-Noir\n25868,Ball of Fire (1941),Comedy|Romance\n25874,Never Give a Sucker an Even Break (1941),Comedy|Musical\n25882,\"Hard Way, The (1943)\",Drama\n25886,Random Harvest (1942),Drama|Romance\n25891,Heaven Can Wait (1943),Comedy|Fantasy|Romance\n25898,Day of Wrath (Vredens dag) (1943),Drama\n25900,\"Curse of the Cat People, The (1944)\",Drama\n25901,\"Henry V (Chronicle History of King Henry the Fift with His Battell Fought at Agincourt in France, The) (1944)\",Drama|War\n25904,Ministry of Fear (1944),Drama|Film-Noir|Thriller\n25906,Mr. Skeffington (1944),Drama|Romance\n25911,\"Woman in the Window, The (1944)\",Crime|Film-Noir|Thriller\n25916,They Were Expendable (1945),Drama|War\n25920,\"Blue Dahlia, The (1946)\",Crime|Drama|Film-Noir|Mystery|Thriller\n25927,\"Stranger, The (1946)\",Drama|Film-Noir|Thriller\n25929,Nightmare Alley (1947),Drama|Film-Noir\n25930,Odd Man Out (1947),Crime|Drama|Film-Noir|Thriller\n25937,Easter Parade (1948),Musical|Romance\n25940,\"Lady from Shanghai, The (1947)\",Drama|Film-Noir|Mystery\n25941,Letter from an Unknown Woman (1948),Drama|Romance\n25945,They Live by Night (1949),Crime|Film-Noir|Romance\n25947,Unfaithfully Yours (1948),Comedy\n25952,\"Letter to Three Wives, A (1949)\",Comedy|Drama\n25962,King Solomon's Mines (1950),Action|Adventure|Romance\n25965,Summer Stock (1950),Comedy|Musical|Romance\n25971,Carrie (1952),Drama|Romance\n25972,Clash by Night (1952),Drama|Film-Noir\n25993,Magnificent Obsession (1954),Drama|Romance\n25995,Samurai I: Musashi Miyamoto (Miyamoto Musashi) (1954),Action|Adventure|Drama\n25996,\"Star Is Born, A (1954)\",Drama|Musical\n25999,The Wild One (1953),Drama\n26003,Night and Fog (Nuit et brouillard) (1955),Crime|Documentary|War\n26005,Samurai II: Duel at Ichijoji Temple (Zoku Miyamoto Musashi: Ichijôji no kettô) (1955),Action|Adventure|Drama\n26007,\"Unknown Soldier, The (Tuntematon sotilas) (1955)\",Drama|War\n26009,\"Burmese Harp, The (Biruma no tategoto) (1956)\",Drama|War\n26010,Carousel (1956),Musical|Romance\n26012,Samurai III: Duel on Ganryu Island (a.k.a. Bushido) (Miyamoto Musashi kanketsuhen: kettô Ganryûjima) (1956),Action|Adventure|Drama\n26013,Rodan (Sora no daikaijû Radon) (1956),Adventure\n26025,\"Spirit of St. Louis, The (1957)\",Adventure|Drama\n26052,Pickpocket (1959),Crime|Drama\n26079,David and Lisa (1962),Drama\n26082,Harakiri (Seppuku) (1962),Drama\n26084,\"Music Man, The (1962)\",Children|Comedy|Musical|Romance\n26085,Mutiny on the Bounty (1962),Adventure|Drama|Romance\n26086,\"Occurrence at Owl Creek Bridge, An (La rivière du hibou) (1962)\",Drama|War\n26093,\"Wonderful World of the Brothers Grimm, The (1962)\",Adventure|Animation|Children|Comedy|Drama|Fantasy|Musical|Romance\n26094,\"Eclisse, L' (Eclipse) (1962)\",Drama\n26111,Becket (1964),Drama\n26116,\"Hush... Hush, Sweet Charlotte (1964)\",Horror|Thriller\n26117,\"Killers, The (1964)\",Action|Crime|Drama|Film-Noir|Thriller\n26122,Onibaba (1964),Drama|Horror|War\n26125,\"Spider Baby or, The Maddest Story Ever Told (Spider Baby) (1968)\",Comedy|Horror\n26131,\"Battle of Algiers, The (La battaglia di Algeri) (1966)\",Drama|War\n26133,\"Charlie Brown Christmas, A (1965)\",Animation|Children|Comedy\n26147,\"Thousand Clowns, A (1965)\",Comedy|Drama|Romance\n26150,Andrei Rublev (Andrey Rublyov) (1969),Drama|War\n26151,Au Hasard Balthazar (1966),Crime|Drama\n26152,Batman (1966),Action|Adventure|Comedy\n26157,Manos: The Hands of Fate (1966),Horror\n26160,Asterix and the Gauls (Astérix le Gaulois) (1967),Action|Adventure|Animation|Children|Comedy\n26163,Don't Look Back (1967),Documentary|Musical\n26164,Fando and Lis (Fando y Lis) (1968),Adventure|Fantasy\n26171,Play Time (a.k.a. Playtime) (1967),Comedy\n26172,Point Blank (1967),Action|Crime|Drama|Thriller\n26176,Titicut Follies (1967),Documentary|Drama\n26178,Two for the Road (1967),Comedy|Drama|Romance\n26180,Up the Down Staircase (1967),Drama\n26188,\"Heart Is a Lonely Hunter, The (1968)\",Drama\n26198,\"Yours, Mine and Ours (1968)\",Children|Comedy\n26199,Alice's Restaurant (1969),Comedy|Drama\n26208,My Night At Maud's (Ma Nuit Chez Maud) (1969),Comedy|Drama|Romance\n26228,\"Swedish Love Story, A (Kärlekshistoria, En) (1970)\",Drama|Romance\n26229,\"Landlord, The (1970)\",Comedy|Drama\n26231,Performance (1970),Crime|Drama|Thriller\n26241,The Devils (1971),Drama\n26242,Duel (1971),Action|Mystery|Thriller\n26251,Mon Oncle Antoine (1971),Drama\n26258,\"Topo, El (1970)\",Fantasy|Western\n26265,Dr. Phibes Rises Again (1972),Adventure|Comedy|Horror|Romance\n26268,The Tall Blond Man with One Black Shoe (1972),Comedy|Mystery\n26271,Lady Sings the Blues (1972),Drama|Musical\n26294,My Name Is Nobody (Il Mio nome è Nessuno) (1973),Comedy|Western\n26302,Scarecrow (1973),Drama\n26303,Sisters (1973),Horror|Thriller\n26313,California Split (1974),Comedy|Drama\n26317,Emmanuelle (1974),Drama|Romance\n26318,\"Phantom of Liberty, The (Fantôme de la liberté, Le) (1974)\",Comedy|Drama\n26320,Flesh for Frankenstein (a.k.a. Andy Warhol's Frankenstein) (1973),Drama|Horror|Sci-Fi\n26322,Gone in 60 Seconds (1974),Action|Crime|Drama\n26323,\"Groove Tube, The (1974)\",Comedy\n26324,Harry and Tonto (1974),Comedy|Drama\n26325,Hearts and Minds (1974),Documentary|War\n26326,\"Holy Mountain, The (Montaña sagrada, La) (1973)\",Drama\n26338,Cousin cousine (1975),Comedy|Romance\n26342,\"Farewell, My Lovely (1975)\",Crime|Mystery|Thriller\n26346,\"Story of Adele H., The (Histoire d'Adèle H., L') (1975)\",Drama\n26349,Night Moves (1975),Crime|Thriller\n26350,\"Passenger, The (Professione: reporter) (1975)\",Drama\n26366,Harlan County U.S.A. (1976),Documentary\n26371,The Missouri Breaks (1976),Drama|Western\n26375,Silver Streak (1976),Action|Comedy|Crime\n26386,High Anxiety (1977),Comedy|Thriller\n26391,\"New York, New York (1977)\",Drama|Musical|Romance\n26393,Sorcerer (1977),Action|Thriller\n26394,\"Turning Point, The (1977)\",Drama|Romance\n26400,Gates of Heaven (1978),Documentary\n26403,\"Hobbit, The (1977)\",Animation|Children|Fantasy\n26404,In Praise of Older Women (1978),Drama\n26409,\"Clonus Horror, The (1979)\",Horror|Sci-Fi\n26413,Snake in the Eagle's Shadow (Se ying diu sau) (1978),Action|Comedy\n26414,\"Wedding, A (1978)\",Comedy|Drama\n26422,Hair (1979),Comedy|Drama|Musical\n26425,\"In-Laws, The (1979)\",Action|Comedy\n26430,\"Luna, La (1979)\",Drama\n26435,Starting Over (1979),Comedy|Romance\n26462,Bad Boys (1983),Crime|Drama|Thriller\n26464,Blue Thunder (1983),Action|Crime|Drama\n26467,\"Day After, The (1983)\",Drama|Sci-Fi\n26471,Eddie Murphy Delirious (1983),Comedy|Documentary\n26472,\"Norte, El (1984)\",Adventure|Drama\n26480,\"Raiders of Atlantis, The (1983)\",Action|Mystery|Sci-Fi\n26485,Rumble Fish (1983),Drama\n26487,Star 80 (1983),Drama\n26492,Twilight Zone: The Movie (1983),Fantasy|Horror|Sci-Fi|Thriller\n26494,Suburbia (1984),Drama\n26501,Choose Me (1984),Comedy|Romance\n26505,Comfort and Joy (1984),Comedy\n26509,Electric Dreams (1984),Comedy|Drama|Romance|Sci-Fi\n26513,\"Ice Pirates, The (1984)\",Action|Adventure|Comedy|Sci-Fi\n26524,\"Times of Harvey Milk, The (1984)\",Documentary\n26528,Anne of Green Gables (1985),Children|Drama\n26547,Police Story (Ging chaat goo si) (1985),Action|Comedy|Crime|Thriller\n26554,\"Quiet Earth, The (1985)\",Drama|Mystery|Sci-Fi\n26555,Spies Like Us (1985),Comedy\n26562,White Nights (1985),Drama\n26564,'Round Midnight (1986),Drama|Musical\n26574,Ginger and Fred (Ginger e Fred) (1986),Comedy|Drama\n26578,\"Sacrifice, The (Offret - Sacraficatio) (1986)\",Drama\n26581,Sherman's March (1985),Documentary\n26585,\"Better Tomorrow, A (Ying hung boon sik) (1986)\",Crime|Drama|Thriller\n26587,\"Decalogue, The (Dekalog) (1989)\",Crime|Drama|Romance\n26599,\"Law of Desire (Ley del deseo, La) (1987)\",Comedy|Drama|Romance\n26603,Prince of Darkness (1987),Fantasy|Horror|Sci-Fi|Thriller\n26606,\"Chinese Ghost Story, A (Sinnui yauwan) (1987)\",Action|Fantasy|Horror|Romance\n26614,\"Bourne Identity, The (1988)\",Action|Adventure|Drama|Mystery|Thriller\n26622,Dominick and Eugene (1988),Drama\n26631,Alice (Neco z Alenky) (1988),Animation|Fantasy|Mystery\n26649,Lonesome Dove (1989),Adventure|Drama|Western\n26655,Common Threads: Stories from the Quilt (1989),Documentary\n26662,Kiki's Delivery Service (Majo no takkyûbin) (1989),Adventure|Animation|Children|Drama|Fantasy\n26663,Monsieur Hire (1989),Crime|Romance|Thriller\n26680,Cry-Baby (1990),Comedy|Musical|Romance\n26684,Frankenhooker (1990),Comedy|Horror\n26686,Ghost Dad (1990),Comedy|Fantasy\n26689,Havana (1990),Drama\n26693,It (1990),Drama|Fantasy|Horror|Mystery|Thriller\n26694,Ju Dou (1990),Drama\n26695,\"Krays, The (1990)\",Drama\n26700,Nuns on the Run (1990),Comedy|Crime\n26701,Patlabor: The Movie (Kidô keisatsu patorebâ: The Movie) (1989),Action|Animation|Crime|Drama|Film-Noir|Mystery|Sci-Fi|Thriller\n26702,\"Reflecting Skin, The (1990)\",Drama|Horror|Thriller\n26704,State of Grace (1990),Crime|Drama|Thriller\n26712,35 Up (1991),Documentary\n26726,Dutch (1991),Comedy\n26729,Hearts of Darkness: A Filmmakers Apocalypse (1991),Documentary\n26731,Homicide (1991),Crime|Drama|Thriller\n26732,Johnny Stecchino (1991),Comedy\n26736,Riki-Oh: The Story of Ricky (Lik Wong) (1991),Action|Crime|Thriller\n26737,Light Sleeper (1992),Crime|Drama\n26749,Prospero's Books (1991),Drama|Fantasy\n26750,Quigley Down Under (1990),Adventure|Drama|Western\n26775,Johnny Suede (1991),Comedy|Musical|Romance\n26776,Porco Rosso (Crimson Pig) (Kurenai no buta) (1992),Adventure|Animation|Comedy|Fantasy|Romance\n26782,\"Mambo Kings, The (1992)\",Drama|Musical\n26784,Night and the City (1992),Crime|Drama\n26788,\"Story of Qiu Ju, The (Qiu Ju da guan si) (1992)\",Comedy|Drama\n26791,Shining Through (1992),Drama|Romance|Thriller|War\n26797,Visions of Light: The Art of Cinematography (1992),Documentary\n26809,\"Baby of Mâcon, The (a.k.a. The Baby of Macon) (1993)\",Drama\n26810,Bad Boy Bubby (1993),Drama\n26812,Barbarians at the Gate (1993),Drama\n26819,Fortress (1992),Action|Sci-Fi\n26835,\"Positively True Adventures of the Alleged Texas Cheerleader-Murdering Mom, The (1993)\",Comedy|Thriller\n26838,\"Snapper, The (1993)\",Comedy|Drama\n26840,Sonatine (Sonachine) (1993),Action|Comedy|Crime|Drama\n26842,Tai Chi Master (Twin Warriors) (Tai ji: Zhang San Feng) (1993),Action|Adventure|Comedy|Drama\n26843,Three of Hearts (1993),Comedy|Romance\n26850,71 Fragments of a Chronology of Chance (71 Fragmente einer Chronologie des Zufalls) (1994),Drama\n26854,\"Darkman II: Return of Durant, The (1995)\",Action|Crime|Horror\n26865,Fist of Legend (Jing wu ying xiong) (1994),Action|Drama\n26870,Major League II (1994),Comedy\n26886,\"Defender, The (a.k.a. Bodyguard from Beijing, The) (Zhong Nan Hai bao biao) (1994)\",Action\n26903,Whisper of the Heart (Mimi wo sumaseba) (1995),Animation|Drama|Romance\n26915,Tromeo and Juliet (1996),Comedy|Drama\n26947,Pusher (1996),Crime|Thriller\n26974,Gummo (1997),Drama\n26999,\"Lion King II: Simba's Pride, The (1998)\",Adventure|Animation|Children|Musical|Romance\n27002,From the Earth to the Moon (1998),Action|Documentary|Drama|Thriller\n27005,\"Interview, The (1998)\",Crime|Drama|Mystery|Thriller\n27020,Gia (1998),Drama|Romance\n27022,Thursday (1998),Action|Crime|Thriller\n27032,Who Am I? (Wo shi shei) (1998),Action|Adventure|Comedy|Sci-Fi|Thriller\n27075,Addams Family Reunion (1998),Children|Comedy|Fantasy\n27109,Lady Snowblood (Shurayukihime) (1973),Action|Crime|Drama|Thriller\n27156,\"Neon Genesis Evangelion: The End of Evangelion (Shin seiki Evangelion Gekijô-ban: Air/Magokoro wo, kimi ni) (1997)\",Action|Animation|Drama|Fantasy|Sci-Fi\n27178,In July (Im Juli) (2000),Comedy|Romance\n27186,Kirikou and the Sorceress (Kirikou et la sorcière) (1998),Adventure|Animation|Children|Fantasy\n27193,Taxi 2 (2000),Action|Comedy\n27251,\"10th Kingdom, The (2000)\",Adventure|Comedy|Fantasy\n27253,\"Extremely Goofy Movie, An (2000)\",Animation|Children|Comedy\n27255,\"Wind Will Carry Us, The (Bad ma ra khahad bord) (1999)\",Drama\n27266,2046 (2004),Drama|Fantasy|Romance|Sci-Fi\n27317,Audition (Ôdishon) (1999),Drama|Horror|Mystery|Romance|Thriller\n27322,Paragraph 175 (2000),Documentary\n27329,Paradise Lost 2: Revelations (2000),Documentary\n27334,Sound and Fury (2000),Documentary\n27338,The Hole (2001),Drama|Horror|Mystery|Thriller\n27351,Spiral (2000),Horror\n27369,Daria: Is It Fall Yet? (2000),Animation|Comedy\n27373,61* (2001),Drama\n27376,\"Tunnel, The (Tunnel, Der) (2001)\",Action|Drama|Thriller\n27397,Joint Security Area (Gongdong gyeongbi guyeok JSA) (2000),Crime|Drama|Mystery|Thriller|War\n27410,Conspiracy (2001),Drama|War\n27416,Jalla! Jalla! (2000),Comedy|Drama|Romance\n27423,\"O Auto da Compadecida (Dog's Will, A) (2000)\",Adventure|Comedy\n27441,Blood: The Last Vampire (2000),Action|Animation|Horror\n27478,Ali G Indahouse (2002),Comedy\n27482,Cube 2: Hypercube (2002),Horror|Mystery|Sci-Fi\n27523,My Sassy Girl (Yeopgijeogin geunyeo) (2001),Comedy|Romance\n27544,Waterboys (2001),Comedy\n27555,Fubar (2002),Comedy\n27592,Sympathy for Mr. Vengeance (Boksuneun naui geot) (2002),Crime|Drama\n27604,Suicide Club (Jisatsu saakuru) (2001),Horror|Mystery|Thriller\n27611,Battlestar Galactica (2003),Drama|Sci-Fi|War\n27646,Soldier's Girl (2003),Drama\n27648,Bright Young Things (2003),Comedy|Drama\n27660,\"Animatrix, The (2003)\",Action|Animation|Drama|Sci-Fi\n27664,\"Brown Bunny, The (2003)\",Drama\n27674,11:14 (2003),Comedy|Crime|Drama|Mystery|Thriller\n27685,Bring It On Again (2004),Comedy\n27689,\"Crimson Rivers 2: Angels of the Apocalypse (Rivières pourpres II - Les anges de l'apocalypse, Les) (2004)\",Action|Crime|Thriller\n27700,Evil (Ondskan) (2003),Drama\n27704,Battle Royale 2: Requiem (Batoru rowaiaru II: Chinkonka) (2003),Action|Drama|Thriller|War\n27706,Lemony Snicket's A Series of Unfortunate Events (2004),Adventure|Children|Comedy|Fantasy\n27713,Bukowski: Born into This (2003),Documentary\n27721,\"Very Long Engagement, A (Un long dimanche de fiançailles) (2004)\",Drama|Mystery|Romance|War\n27722,Last Life in the Universe (Ruang rak noi nid mahasan) (2003),Drama|Romance\n27724,Hitler: The Rise of Evil (2003),Drama\n27727,Head-On (Gegen die Wand) (2004),Drama|Romance\n27728,Ghost in the Shell 2: Innocence (a.k.a. Innocence) (Inosensu) (2004),Action|Animation|Drama|Sci-Fi|Thriller\n27731,\"Cat Returns, The (Neko no ongaeshi) (2002)\",Adventure|Animation|Children|Fantasy\n27741,\"Twilight Samurai, The (Tasogare Seibei) (2002)\",Drama|Romance\n27751,'Salem's Lot (2004),Drama|Horror|Mystery|Thriller\n27768,Intimate Strangers (Confidences trop intimes) (2004),Drama\n27772,Ju-on: The Grudge (2002),Horror\n27773,Old Boy (2003),Mystery|Thriller\n27778,Ginger Snaps Back: The Beginning (2004),Fantasy|Horror\n27783,\"Lost Embrace (Abrazo partido, El) (2004)\",Comedy|Drama\n27784,One Missed Call (Chakushin ari) (2003),Horror|Mystery\n27788,\"Jacket, The (2005)\",Drama|Mystery|Sci-Fi|Thriller\n27790,Millions (2004),Children|Comedy|Crime|Drama|Fantasy\n27792,\"Saddest Music in the World, The (2003)\",Comedy|Drama|Fantasy|Musical|Romance\n27793,Starship Troopers 2: Hero of the Federation (2004),Action|Horror|Sci-Fi|War\n27798,Ju-on: The Grudge 2 (2003),Horror\n27800,Interstella 5555: The 5tory of the 5ecret 5tar 5ystem (2003),Adventure|Animation|Fantasy|Musical|Sci-Fi\n27801,Ong-Bak: The Thai Warrior (Ong Bak) (2003),Action|Thriller\n27802,Infernal Affairs 2 (Mou gaan dou II) (2003),Action|Crime|Drama|Thriller\n27803,\"Sea Inside, The (Mar adentro) (2004)\",Drama\n27808,Spanglish (2004),Comedy|Drama|Romance\n27812,Festival Express (2003),Documentary|Musical\n27815,\"Chorus, The (Choristes, Les) (2004)\",Drama\n27816,Saints and Soldiers (2003),Action|Adventure|Drama|War\n27821,\"Interpreter, The (2005)\",Drama|Thriller\n27822,Open Water (2003),Drama|Thriller\n27826,Touch of Pink (2004),Comedy|Drama|Romance\n27831,Layer Cake (2004),Crime|Drama|Thriller\n27834,\"Return, The (Vozvrashcheniye) (2003)\",Drama\n27837,Flight of the Phoenix (2004),Action|Adventure\n27838,Mean Creek (2004),Drama|Thriller\n27839,\"Ring Two, The (2005)\",Drama|Horror|Mystery|Thriller\n27846,\"Corporation, The (2003)\",Documentary\n27850,\"Yes Men, The (2003)\",Documentary\n27851,\"Fond Kiss, A (Ae Fond Kiss...) (2004)\",Drama|Romance\n27857,As it is in Heaven (Så som i himmelen) (2004),Drama|Musical|Romance\n27867,\"Football Factory, The (2004)\",Action|Drama\n27869,Tae Guk Gi: The Brotherhood of War (Taegukgi hwinalrimyeo) (2004),Action|Drama|War\n27871,Something the Lord Made (2004),Drama\n27873,Metallica: Some Kind of Monster (2004),Documentary\n27875,Redemption: The Stan Tookie Williams Story (2004),Crime|Documentary|Drama\n27876,Schultze Gets the Blues (2003),Comedy|Drama\n27878,Born into Brothels (2004),Documentary\n27879,DiG! (2004),Documentary\n27882,Riding Giants (2004),Documentary\n27899,What the #$*! Do We Know!? (a.k.a. What the Bleep Do We Know!?) (2004),Comedy|Documentary|Drama\n27904,\"Scanner Darkly, A (2006)\",Animation|Drama|Mystery|Sci-Fi|Thriller\n27912,Outfoxed: Rupert Murdoch's War on Journalism (2004),Documentary\n27922,Jerry Seinfeld: 'I'm Telling You for the Last Time' (1998),Comedy|Documentary\n30707,Million Dollar Baby (2004),Drama\n30712,\"Narrow Margin, The (1952)\",Crime|Drama|Film-Noir\n30723,Vincent & Theo (1990),Drama\n30745,Gozu (Gokudô kyôfu dai-gekijô: Gozu) (2003),Comedy|Crime|Drama|Horror|Mystery\n30749,Hotel Rwanda (2004),Drama|War\n30783,Blood and Black Lace (Sei donne per l'assassino) (1964),Horror|Thriller\n30793,Charlie and the Chocolate Factory (2005),Adventure|Children|Comedy|Fantasy|IMAX\n30803,3-Iron (Bin-jip) (2004),Drama|Romance\n30810,\"Life Aquatic with Steve Zissou, The (2004)\",Adventure|Comedy|Fantasy\n30812,\"Aviator, The (2004)\",Drama\n30816,\"Phantom of the Opera, The (2004)\",Drama|Musical|Romance\n30818,Beyond the Sea (2004),Drama|Musical\n30820,\"Woodsman, The (2004)\",Drama\n30822,In Good Company (2004),Comedy|Drama\n30825,Meet the Fockers (2004),Comedy\n30846,\"Assassination of Richard Nixon, The (2004)\",Crime|Drama|Thriller\n30848,\"Love Song for Bobby Long, A (2004)\",Drama\n30850,\"Merchant of Venice, The (2004)\",Drama\n30867,Kamikaze Girls (Shimotsuma monogatari) (2004),Comedy\n30883,Fat Albert (2004),Comedy|Fantasy\n30892,In the Realms of the Unreal (2004),Animation|Documentary\n30894,White Noise (2005),Drama|Horror|Mystery|Sci-Fi|Thriller\n30898,\"Upside of Anger, The (2005)\",Comedy|Drama|Romance\n31000,Sweet Liberty (1986),Comedy\n31026,\"Phantom of the Opera, The (1989)\",Drama|Horror|Musical\n31035,Testament (1983),Drama\n31101,Stander (2003),Action|Crime|Drama\n31104,Hester Street (1975),Drama\n31109,\"Bigamist, The (1953)\",Drama\n31114,Imaginary Heroes (2004),Comedy|Drama\n31116,Sergeant York (1941),Drama|War\n31150,Wizards (1977),Animation|Fantasy|Sci-Fi|War\n31156,Abbott and Costello Meet the Invisible Man (1951),Comedy|Sci-Fi\n31162,\"Life and Death of Peter Sellers, The (2004)\",Comedy|Drama\n31184,Appleseed (Appurushîdo) (2004),Action|Animation|Fantasy|Sci-Fi\n31193,\"Many Adventures of Winnie the Pooh, The (1977)\",Animation|Children|Musical\n31221,Elektra (2005),Action|Adventure|Crime|Drama\n31225,Coach Carter (2005),Drama\n31270,Shivers (They Came from Within) (1975),Drama|Horror|Sci-Fi\n31284,\"Star Is Born, A (1976)\",Drama|Musical|Romance\n31290,Beastmaster 2: Through the Portal of Time (1991),Action|Adventure|Fantasy|Sci-Fi\n31364,Memories of Murder (Salinui chueok) (2003),Crime|Drama|Mystery|Thriller\n31374,Hobson's Choice (1954),Comedy|Drama|Romance\n31408,Summer Storm (Sommersturm) (2004),Drama|Romance\n31410,\"Downfall (Untergang, Der) (2004)\",Drama|War\n31413,\"White Sound, The (Das weiße Rauschen) (2001)\",Drama\n31420,Assault on Precinct 13 (2005),Action|Crime|Drama|Thriller\n31422,Are We There Yet? (2005),Children|Comedy\n31427,Hide and Seek (2005),Horror|Mystery|Thriller\n31431,Boogeyman (2005),Drama|Horror|Mystery|Thriller\n31433,\"Wedding Date, The (2005)\",Comedy|Romance\n31435,Rory O'Shea Was Here (Inside I'm Dancing) (2004),Drama\n31437,Nobody Knows (Dare mo shiranai) (2004),Drama\n31445,Employee of the Month (2004),Comedy|Drama\n31502,Salem's Lot (1979),Drama|Horror|Mystery|Thriller\n31522,\"Marriage of Maria Braun, The (Ehe der Maria Braun, Die) (1979)\",Drama\n31524,\"Bitter Tears of Petra von Kant, The (bitteren Tränen der Petra von Kant, Die) (1972)\",Drama\n31547,Lessons of Darkness (Lektionen in Finsternis) (1992),Documentary|War\n31549,Fata Morgana (1971),Documentary|Drama|Sci-Fi\n31658,Howl's Moving Castle (Hauru no ugoku shiro) (2004),Adventure|Animation|Fantasy|Romance\n31660,Steamboy (Suchîmubôi) (2004),Action|Animation|Drama|Sci-Fi\n31682,\"Nomi Song, The (2004)\",Documentary|Musical\n31685,Hitch (2005),Comedy|Romance\n31689,Inside Deep Throat (2005),Documentary\n31694,Bride & Prejudice (2004),Comedy|Musical|Romance\n31696,Constantine (2005),Action|Fantasy|Horror|Thriller\n31700,Because of Winn-Dixie (2005),Children|Comedy|Drama\n31724,Pauly Shore Is Dead (2003),Comedy\n31737,Bunny Lake Is Missing (1965),Mystery|Thriller\n31747,The Boyfriend School (1990),Comedy|Romance\n31770,Night and the City (1950),Film-Noir|Thriller\n31804,Night Watch (Nochnoy dozor) (2004),Action|Fantasy|Horror|Mystery|Sci-Fi|Thriller\n31878,Kung Fu Hustle (Gong fu) (2004),Action|Comedy\n31903,Zelary (2003),Drama|Romance\n31921,\"Seven-Per-Cent Solution, The (1976)\",Adventure|Comedy|Crime|Drama|Mystery|Thriller\n31923,\"Three Musketeers, The (1973)\",Action|Adventure|Comedy\n31930,Masculin Féminin (1966),Drama\n31952,Control (Kontroll) (2003),Comedy|Crime|Drama|Mystery\n31956,5x2 (2004),Drama|Romance\n31963,Bed & Board (Domicile conjugal) (1970),Comedy|Drama\n31973,Germany Year Zero (Germania anno zero) (Deutschland im Jahre Null) (1948),Drama|War\n32017,\"Pacifier, The (2005)\",Action|Comedy\n32019,Be Cool (2005),Comedy|Crime|Musical\n32022,Gunner Palace (2004),Documentary|War\n32025,Walk on Water (2004),Drama|Thriller\n32029,Hostage (2005),Action|Crime|Drama|Thriller\n32031,Robots (2005),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi|IMAX\n32078,Godzilla vs. Mechagodzilla II (Gojira VS Mekagojira) (1993),Action|Drama|Sci-Fi\n32139,\"Agony and the Ecstasy, The (1965)\",Drama\n32153,Once Upon a Forest (1993),Adventure|Animation|Children|Fantasy\n32160,Twentieth Century (1934),Comedy\n32170,Chronicles (Crónicas) (2004),Crime|Drama\n32174,\"Green Berets, The (1968)\",Action|Drama|War\n32203,Brian's Song (1971),Drama\n32211,Thriller: A Cruel Picture (Thriller - en grym film) (1974),Action|Crime|Drama|Thriller\n32234,Julia (1977),Drama\n32280,The 3 Penny Opera (1931),Comedy|Drama|Musical\n32289,Ice Princess (2005),Children|Comedy|Drama\n32291,Melinda and Melinda (2004),Comedy|Drama\n32296,Miss Congeniality 2: Armed and Fabulous (2005),Adventure|Comedy|Crime\n32298,Guess Who (2005),Comedy|Romance\n32302,\"League of Ordinary Gentlemen, A (2004)\",Documentary\n32349,Stella Dallas (1937),Drama\n32352,\"Thief and the Cobbler, The (a.k.a. Arabian Knight) (1995)\",Adventure|Animation|Comedy|Fantasy\n32369,Panic in the Streets (1950),Crime|Drama|Film-Noir|Thriller\n32371,Call Northside 777 (1948),Crime|Drama|Film-Noir\n32381,Bells Are Ringing (1960),Comedy|Musical|Romance\n32387,\"Sword of Doom, The (Dai-bosatsu tôge) (1966)\",Action|Drama\n32395,Attack of the Mushroom People (Matango) (1963),Fantasy|Horror|Sci-Fi|Thriller\n32444,Carmen (1983),Drama|Musical|Romance\n32456,\"Pom Poko (a.k.a. Raccoon War, The) (Heisei tanuki gassen pompoko) (1994)\",Animation|Comedy|Drama|Fantasy\n32460,Knockin' on Heaven's Door (1997),Action|Comedy|Crime|Drama\n32464,City of Hope (1991),Drama\n32469,We're No Angels (1955),Comedy|Crime|Drama\n32515,Walker (1987),Adventure|Drama|War|Western\n32525,The Earrings of Madame de... (1953),Drama|Romance\n32554,Memories (Memorîzu) (1995),Animation|Fantasy|Sci-Fi|Thriller\n32562,Harvie Krumpet (2003),Animation|Comedy|Drama\n32582,\"Wild Parrots of Telegraph Hill, The (2003)\",Documentary\n32587,Sin City (2005),Action|Crime|Film-Noir|Mystery|Thriller\n32591,Look at Me (Comme une image) (2004),Comedy|Drama|Romance\n32596,Sahara (2005),Action|Adventure|Comedy\n32598,Fever Pitch (2005),Comedy|Romance\n32632,Electra Glide in Blue (1973),Action|Crime\n32666,National Lampoon's Lady Killers (National Lampoon's Gold Diggers) (2003),Comedy\n32686,Blood on Satan's Claw (a.k.a. Satan's Skin) (1971),Horror|Thriller\n32728,\"Little Girl Who Lives Down the Lane, The (1976)\",Drama|Mystery|Thriller\n32735,Arabian Nights (Il fiore delle mille e una notte) (1974),Comedy|Drama|Fantasy\n32743,Ringu 0: Bâsudei (2000),Drama|Horror|Thriller\n32797,Satan's Brew (Satansbraten) (1976),Comedy|Drama\n32825,Sexmission (Seksmisja) (1984),Adventure|Comedy|Sci-Fi\n32840,Vincent (1982),Animation\n32844,Waterloo Bridge (1940),Drama|Romance|War\n32853,\"Sorrow and the Pity, The (Le chagrin et la pitié) (1969)\",Documentary|War\n32882,\"Big Store, The (1941)\",Comedy|Musical\n32892,Ivan's Childhood (a.k.a. My Name is Ivan) (Ivanovo detstvo) (1962),Drama|War\n32898,\"Trip to the Moon, A (Voyage dans la lune, Le) (1902)\",Action|Adventure|Fantasy|Sci-Fi\n32914,Carrie (2002),Drama|Horror|Thriller\n32943,Life Is Sweet (1990),Comedy|Drama\n33004,\"Hitchhiker's Guide to the Galaxy, The (2005)\",Adventure|Comedy|Sci-Fi\n33021,Dark Habits (Entre tinieblas) (1983),Comedy|Drama\n33085,\"Amityville Horror, The (2005)\",Horror|Thriller\n33124,Before the Fall (NaPolA - Elite für den Führer) (2004),Drama|War\n33138,Palindromes (2004),Adventure|Comedy|Drama\n33145,\"Lot Like Love, A (2005)\",Comedy|Drama|Romance\n33154,Enron: The Smartest Guys in the Room (2005),Documentary\n33158,xXx: State of the Union (2005),Action|Crime|Thriller\n33162,Kingdom of Heaven (2005),Action|Drama|Romance|War\n33164,House of Wax (2005),Horror|Thriller\n33166,Crash (2004),Crime|Drama\n33171,Mysterious Skin (2004),Drama|Mystery\n33296,Buying the Cow (2002),Comedy|Romance\n33312,\"Cocoanuts, The (1929)\",Comedy|Musical\n33358,Off the Map (2003),Comedy|Drama\n33380,25 Watts (2001),Comedy|Drama\n33437,Unleashed (Danny the Dog) (2005),Action|Crime|Drama|Thriller\n33493,Star Wars: Episode III - Revenge of the Sith (2005),Action|Adventure|Sci-Fi\n33495,Kicking & Screaming (2005),Comedy\n33499,Monster-in-Law (2005),Comedy|Romance\n33558,\"Snow Walker, The (2003)\",Adventure|Drama\n33587,\"Uninvited, The (1944)\",Horror|Mystery|Romance\n33592,Bad Guy (Nabbeun namja) (2001),Drama\n33615,Madagascar (2005),Adventure|Animation|Children|Comedy\n33621,Somersault (2004),Drama\n33639,Mad Hot Ballroom (2005),Children|Documentary\n33646,\"Longest Yard, The (2005)\",Comedy|Drama\n33660,Cinderella Man (2005),Drama|Romance\n33669,\"Sisterhood of the Traveling Pants, The (2005)\",Adventure|Comedy|Drama\n33672,Lords of Dogtown (2005),Action|Comedy|Drama\n33679,Mr. & Mrs. Smith (2005),Action|Adventure|Comedy|Romance\n33681,\"Adventures of Sharkboy and Lavagirl 3-D, The (2005)\",Action|Adventure|Children|Fantasy\n33683,High Tension (Haute tension) (Switchblade Romance) (2003),Horror|Thriller\n33688,Parineeta (2005),Drama|Musical|Romance\n33750,Innocent Voices (Voces inocentes) (2004),Drama|War\n33760,Anna and the King of Siam (1946),Drama|Romance\n33794,Batman Begins (2005),Action|Crime|IMAX\n33817,My Summer of Love (2004),Drama|Romance\n33826,Saint Ralph (2004),Comedy|Drama\n33830,Herbie: Fully Loaded (2005),Adventure|Comedy|Romance\n33834,Land of the Dead (2005),Action|Horror|Thriller\n33836,Bewitched (2005),Comedy|Fantasy|Romance\n33838,Rize (2005),Documentary\n33880,Me and You and Everyone We Know (2005),Comedy|Drama\n33896,3 Extremes (Three... Extremes) (Saam gaang yi) (2004),Horror\n33903,\"Edukators, The (Die Fetten Jahre sind vorbei) (2004)\",Comedy|Crime|Drama|Romance\n33912,\"Unmarried Woman, An (1978)\",Comedy|Drama|Romance\n33917,\"Member of the Wedding, The (1952)\",Drama\n34002,Room Service (1938),Comedy\n34018,At the Circus (1939),Comedy|Musical\n34048,War of the Worlds (2005),Action|Adventure|Sci-Fi|Thriller\n34072,\"March of the Penguins (Marche de l'empereur, La) (2005)\",Documentary\n34129,Rebound (2005),Comedy\n34143,Dark Water (2005),Drama|Horror|Thriller\n34150,Fantastic Four (2005),Action|Adventure|Sci-Fi\n34153,Murderball (2005),Documentary\n34162,Wedding Crashers (2005),Comedy|Romance\n34164,Happy Endings (2005),Comedy|Drama\n34198,Russian Dolls (Les poupées russes) (2005),Comedy|Romance\n34271,Hustle & Flow (2005),Crime|Drama\n34319,\"Island, The (2005)\",Action|Sci-Fi|Thriller\n34321,Bad News Bears (2005),Children|Comedy\n34323,\"Devil's Rejects, The (2005)\",Action|Crime|Horror\n34326,Last Days (2005),Drama\n34332,Sky High (2005),Action|Adventure|Children|Comedy\n34334,Stealth (2005),Action|Adventure|Sci-Fi|Thriller\n34336,Must Love Dogs (2005),Comedy|Romance\n34338,\"Aristocrats, The (2005)\",Comedy|Documentary\n34359,Georgy Girl (1966),Comedy\n34364,This Is My Life (1992),Comedy|Drama\n34405,Serenity (2005),Action|Adventure|Sci-Fi\n34435,Sholay (1975),Action|Adventure|Comedy|Musical|Romance|Thriller\n34437,Broken Flowers (2005),Comedy|Drama\n34517,Berserk (1967),Horror|Mystery|Thriller\n34520,\"Dukes of Hazzard, The (2005)\",Action|Adventure|Comedy\n34523,The Chumscrubber (2005),Comedy|Drama\n34528,Junebug (2005),Comedy|Drama\n34530,Deuce Bigalow: European Gigolo (2005),Comedy\n34532,\"Skeleton Key, The (2005)\",Drama|Horror|Mystery|Thriller\n34534,Four Brothers (2005),Action|Crime|Drama\n34536,The Great Raid (2005),Action|Drama|War\n34542,Grizzly Man (2005),Documentary\n34552,\"Girl in the Café, The (2005)\",Drama|Romance\n34583,Prime Cut (1972),Action|Crime|Drama\n34608,\"Best of Everything, The (1959)\",Drama|Romance\n35836,\"40-Year-Old Virgin, The (2005)\",Comedy|Romance\n35957,Red Eye (2005),Horror|Thriller\n36152,Dreamchild (1985),Drama|Fantasy|Romance\n36276,Hidden (a.k.a. Cache) (Caché) (2005),Drama|Mystery|Thriller\n36289,Asterix & Obelix vs. Caesar (Astérix et Obélix contre César) (1999),Adventure|Children|Comedy|Fantasy\n36397,Valiant (2005),Adventure|Animation|Children|Comedy|Fantasy|War\n36401,\"Brothers Grimm, The (2005)\",Comedy|Fantasy|Horror|Thriller\n36509,\"Cave, The (2005)\",Action|Adventure|Horror|Mystery|Sci-Fi|Thriller\n36517,\"Constant Gardener, The (2005)\",Drama|Thriller\n36519,Transporter 2 (2005),Action|Crime|Thriller\n36525,Just Like Heaven (2005),Comedy|Fantasy|Romance\n36527,Proof (2005),Drama\n36529,Lord of War (2005),Action|Crime|Drama|Thriller|War\n36533,Cry_Wolf (a.k.a. Cry Wolf) (2005),Drama|Horror|Mystery|Thriller\n36535,Everything Is Illuminated (2005),Comedy|Drama\n36553,In Old Chicago (1937),Action|Drama|Musical|War\n36708,Family Guy Presents Stewie Griffin: The Untold Story (2005),Adventure|Animation|Comedy\n36931,New Police Story (Xin jing cha gu shi) (2004),Action|Crime|Drama\n37211,Go West (1940),Comedy|Musical|Western\n37240,Why We Fight (2005),Documentary\n37277,200 Motels (1971),Comedy|Musical\n37380,Doom (2005),Action|Horror|Sci-Fi\n37382,Domino (2005),Crime|Drama|Thriller\n37384,Waiting... (2005),Comedy\n37386,Aeon Flux (2005),Action|Sci-Fi\n37475,\"Unfinished Life, An (2005)\",Drama\n37477,\"Man, The (2005)\",Action|Comedy|Crime\n37720,\"Exorcism of Emily Rose, The (2005)\",Crime|Drama|Horror|Thriller\n37727,Flightplan (2005),Action|Drama|Thriller\n37729,Corpse Bride (2005),Animation|Comedy|Fantasy|Musical|Romance\n37731,Green Street Hooligans (a.k.a. Hooligans) (2005),Crime|Drama\n37733,\"History of Violence, A (2005)\",Action|Crime|Drama|Thriller\n37736,Oliver Twist (2005),Drama\n37739,\"Greatest Game Ever Played, The (2005)\",Drama\n37741,Capote (2005),Crime|Drama\n37785,\"Anderson Tapes, The (1971)\",Crime|Drama|Thriller\n37830,Final Fantasy VII: Advent Children (2004),Action|Adventure|Animation|Fantasy|Sci-Fi\n37853,Into the Blue (2005),Action|Adventure|Crime|Thriller\n37855,\"Prize Winner of Defiance Ohio, The (2005)\",Drama\n37857,MirrorMask (2005),Adventure|Children|Drama|Fantasy\n38038,Wallace & Gromit in The Curse of the Were-Rabbit (2005),Adventure|Animation|Children|Comedy\n38061,Kiss Kiss Bang Bang (2005),Comedy|Crime|Mystery|Thriller\n38304,No Direction Home: Bob Dylan (2005),Documentary\n38384,Hail the Conquering Hero (1944),Comedy\n38499,Angels in America (2003),Drama|Fantasy\n38798,In Her Shoes (2005),Comedy|Drama\n38886,\"Squid and the Whale, The (2005)\",Comedy|Drama\n38992,Two for the Money (2005),Drama\n38994,Separate Lies (2005),Drama|Romance|Thriller\n39052,Star Wreck: In the Pirkinning (2005),Action|Comedy|Sci-Fi\n39183,Brokeback Mountain (2005),Drama|Romance\n39231,Elizabethtown (2005),Comedy|Drama|Romance\n39234,North Country (2005),Drama\n39292,\"Good Night, and Good Luck. (2005)\",Crime|Drama\n39307,Dreamer: Inspired by a True Story (2005),Children|Drama\n39381,\"Proposition, The (2005)\",Crime|Drama|Western\n39398,C.S.A.: The Confederate States of America (2004),Comedy|Drama\n39408,Left Behind: World at War (2005),Drama\n39414,Shopgirl (2005),Comedy|Drama|Romance\n39416,Kids in America (2005),Comedy|Drama\n39419,Where the Truth Lies (2005),Drama|Thriller\n39421,After School Special (a.k.a. Barely Legal) (2003),Comedy\n39427,Stay (2005),Thriller\n39435,\"Legend of Zorro, The (2005)\",Action|Adventure|Drama|Western\n39444,\"Weather Man, The (2005)\",Comedy|Drama\n39446,Saw II (2005),Horror|Thriller\n39659,Teorema (1968),Drama\n39715,American Pie Presents: Band Camp (American Pie 4: Band Camp) (2005),Comedy\n39768,Life is a Miracle (Zivot je cudo) (2004),Comedy|Drama|Musical|Romance|War\n39779,Tarzan and His Mate (1934),Action|Adventure\n39869,Manderlay (2005),Drama\n39941,\"Love on the Run (Amour en fuite, L') (1979)\",Comedy|Drama|Romance\n40148,Revolver (2005),Crime|Drama|Thriller\n40226,Wild Zero (2000),Action|Comedy|Horror|Romance|Sci-Fi\n40278,Jarhead (2005),Action|Drama|War\n40339,Chicken Little (2005),Action|Adventure|Animation|Children|Comedy|Sci-Fi\n40412,Dead Man's Shoes (2004),Crime|Thriller\n40414,Joyeux Noël (Merry Christmas) (2005),Drama|War\n40491,\"Match Factory Girl, The (Tulitikkutehtaan tyttö) (1990)\",Comedy|Drama\n40574,Get Rich or Die Tryin' (2005),Action|Crime|Drama\n40581,Just Friends (2005),Comedy|Romance\n40583,Syriana (2005),Drama|Thriller\n40597,One-Way Ticket to Mombasa (Menolippu Mombasaan) (2002),Comedy|Drama\n40614,Derailed (2005),Drama|Thriller\n40629,Pride & Prejudice (2005),Drama|Romance\n40723,Wolf Creek (2005),Crime|Horror|Thriller\n40732,\"Descent, The (2005)\",Adventure|Drama|Horror|Thriller\n40815,Harry Potter and the Goblet of Fire (2005),Adventure|Fantasy|Thriller|IMAX\n40817,Dinner with Friends (2001),Comedy|Drama\n40819,Walk the Line (2005),Drama|Musical|Romance\n40826,Rent (2005),Drama|Musical|Romance\n40833,\"Fists in the Pocket (Pugni in tasca, I) (1965)\",Drama\n40851,Zathura (2005),Action|Adventure|Children|Fantasy\n40870,C.R.A.Z.Y. (2005),Drama\n40946,Sarah Silverman: Jesus Is Magic (2005),Comedy|Musical\n40959,\"Ice Harvest, The (2005)\",Action|Comedy|Crime|Thriller\n41226,Sounder (1972),Drama\n41285,Match Point (2005),Crime|Drama|Romance\n41336,Nazarin (Nazarín) (1959),Drama\n41527,Paradise Now (2005),Crime|Drama|Thriller|War\n41566,\"Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The (2005)\",Adventure|Children|Fantasy\n41569,King Kong (2005),Action|Adventure|Drama|Fantasy|Thriller\n41571,Memoirs of a Geisha (2005),Drama|Romance\n41573,\"Family Stone, The (2005)\",Comedy|Drama|Romance\n41585,Kiss of Death (1947),Crime|Drama|Film-Noir\n41714,Dona Flor and Her Two Husbands (Dona Flor e Seus Dois Maridos) (1976),Comedy\n41716,\"Matador, The (2005)\",Comedy|Drama|Thriller\n41769,Mozart and the Whale (2005),Comedy|Drama|Romance\n41863,\"Three Burials of Melquiades Estrada, The (2006)\",Adventure|Crime|Drama\n41912,Slim Susie (Smala Sussie) (2003),Comedy|Crime|Mystery\n41997,Munich (2005),Action|Crime|Drama|Thriller\n42002,\"Producers, The (2005)\",Comedy|Musical\n42004,Transamerica (2005),Adventure|Comedy|Drama\n42007,Rumor Has It... (2005),Comedy|Drama|Romance\n42009,Cheaper by the Dozen 2 (2005),Adventure|Comedy\n42011,Fun with Dick and Jane (2005),Comedy|Crime\n42013,\"Ringer, The (2005)\",Comedy\n42015,Casanova (2005),Action|Adventure|Comedy|Drama|Romance\n42163,Richard Pryor: Live in Concert (1979),Comedy|Documentary\n42191,Luxo Jr. (1986),Animation|Children\n42197,Keeping Mum (2005),Comedy|Crime\n42217,Late Spring (Banshun) (1949),Drama\n42351,Threads (1984),Drama|Sci-Fi|War\n42418,\"New World, The (2005)\",Adventure|Drama|Romance\n42632,Lady Vengeance (Sympathy for Lady Vengeance) (Chinjeolhan geumjassi) (2005),Crime|Drama|Mystery|Thriller\n42677,\"Cutting Edge: The Magic of Movie Editing, The (2004)\",Documentary\n42681,49th Parallel (1941),Adventure|Drama|Thriller|War\n42718,District 13 (Banlieue 13) (2004),Action|Crime|Sci-Fi\n42721,BloodRayne (2005),Action|Fantasy\n42723,Hostel (2005),Horror\n42725,Grandma's Boy (2006),Comedy\n42728,Tristan & Isolde (2006),Drama|Romance\n42730,Glory Road (2006),Drama\n42732,Last Holiday (2006),Comedy\n42734,Hoodwinked! (2005),Animation|Children|Comedy\n42738,Underworld: Evolution (2006),Action|Fantasy|Horror\n42740,Looking for Comedy in the Muslim World (2005),Comedy\n42783,Shadows of Our Forgotten Ancestors (Tini zabutykh predkiv) (1964),Drama|Romance\n42900,Cul-de-sac (1966),Comedy|Crime|Drama|Thriller\n42935,Riding Alone for Thousands of Miles (Qian li zou dan qi) (2005),Drama\n42946,Project A ('A' gai waak) (1983),Action|Comedy\n42958,Little Manhattan (2005),Children|Comedy|Romance\n43177,Over the Edge (1979),Crime|Drama\n43267,On Probation (Tiempo de Valientes) (2005),Action|Comedy\n43333,Water (2005),Drama|Romance\n43351,\"Temptations, The (1998)\",Drama|Musical\n43376,Sophie Scholl: The Final Days (Sophie Scholl - Die letzten Tage) (2005),Drama|War\n43391,Matti: Hell Is for Heroes (Matti) (2006),Comedy|Drama\n43396,\"World's Fastest Indian, The (2005)\",Drama\n43419,Bandidas (2006),Action|Comedy|Crime|Western\n43556,Annapolis (2006),Drama\n43558,Big Momma's House 2 (2006),Action|Comedy|Crime\n43560,Nanny McPhee (2005),Children|Comedy|Fantasy\n43635,Bye Bye Birdie (1963),Comedy|Musical\n43679,Final Destination 3 (2006),Horror|Mystery|Thriller\n43708,Block Party (a.k.a. Dave Chappelle's Block Party) (2005),Comedy|Documentary\n43744,Imagine Me & You (2005),Comedy|Drama|Romance\n43832,\"Call of Cthulhu, The (2005)\",Horror|Thriller\n43836,\"Pink Panther, The (2006)\",Adventure|Comedy|Crime\n43838,Troll (1986),Comedy|Fantasy|Horror\n43869,Curious George (2006),Adventure|Animation|Children|Comedy\n43871,Firewall (2006),Crime|Drama|Thriller\n43899,Tony Takitani (2004),Drama\n43904,When a Stranger Calls (2006),Horror|Thriller\n43908,London (2005),Drama\n43910,Neil Young: Heart of Gold (2006),Documentary|Musical\n43917,Eight Below (2006),Action|Adventure|Drama|Romance\n43919,Date Movie (2006),Comedy|Romance\n43921,Running Scared (2006),Action|Crime|Thriller\n43928,Ultraviolet (2006),Action|Fantasy|Sci-Fi|Thriller\n43930,Just My Luck (2006),Comedy|Romance\n43932,Pulse (2006),Action|Drama|Fantasy|Horror|Mystery|Sci-Fi|Thriller\n43936,16 Blocks (2006),Crime|Thriller\n44004,Failure to Launch (2006),Comedy|Romance\n44022,Ice Age 2: The Meltdown (2006),Adventure|Animation|Children|Comedy\n44073,Stromboli (1950),Drama\n44191,V for Vendetta (2006),Action|Sci-Fi|Thriller|IMAX\n44193,She's the Man (2006),Comedy|Romance\n44195,Thank You for Smoking (2006),Comedy|Drama\n44197,Find Me Guilty (2006),Comedy|Crime|Drama\n44199,Inside Man (2006),Crime|Drama|Thriller\n44204,Tsotsi (2005),Crime|Drama\n44225,Aquamarine (2006),Children|Comedy|Fantasy\n44245,Leprechaun in the Hood (2000),Action|Comedy|Horror\n44301,Lights in the Dusk (Laitakaupungin valot) (2006),Crime|Drama\n44317,Kummeli Stories (1995),Comedy\n44397,\"Hills Have Eyes, The (2006)\",Drama|Horror|Thriller\n44421,\"Personal Journey with Martin Scorsese Through American Movies, A (1995)\",Documentary\n44511,Unknown White Male (2005),Documentary\n44555,\"Lives of Others, The (Das leben der Anderen) (2006)\",Drama|Romance|Thriller\n44587,Nanook of the North (1922),Documentary|Drama\n44597,Youth of the Beast (Yaju no seishun) (1963),Action|Crime|Mystery\n44613,Take the Lead (2006),Drama\n44633,\"Devil and Daniel Johnston, The (2005)\",Documentary\n44665,Lucky Number Slevin (2006),Crime|Drama|Mystery\n44671,\"Wild Blue Yonder, The (2005)\",Sci-Fi\n44694,Volver (2006),Comedy|Drama\n44709,Akeelah and the Bee (2006),Drama\n44717,Lisbela e o Prisioneiro (Lisbela and the Prisoner) (2003),Comedy|Romance\n44731,Stay Alive (2006),Horror|Sci-Fi|Thriller\n44759,Basic Instinct 2 (2006),Crime|Drama|Mystery|Thriller\n44761,Brick (2005),Crime|Drama|Film-Noir|Mystery\n44788,This Film Is Not Yet Rated (2006),Documentary\n44828,Slither (2006),Comedy|Horror|Sci-Fi\n44840,\"Benchwarmers, The (2006)\",Comedy\n44849,Renaissance (2006),Action|Animation|Film-Noir|Sci-Fi|Thriller\n44864,Friends with Money (2006),Comedy|Drama|Romance\n44911,Magic (1978),Drama|Horror|Romance|Thriller\n44972,Scary Movie 4 (2006),Comedy|Horror\n44974,Hard Candy (2005),Drama|Thriller\n45000,\"Chinoise, La (1967)\",Comedy|Drama\n45028,\"Prairie Home Companion, A (2006)\",Comedy|Drama|Musical\n45062,\"Sentinel, The (2006)\",Crime|Drama|Thriller\n45081,Silent Hill (2006),Fantasy|Horror|Thriller\n45172,23 (23 - Nichts ist so wie es scheint) (1998),Drama|Thriller\n45179,\"Glass Key, The (1942)\",Crime|Drama|Film-Noir|Mystery\n45183,\"Protector, The (a.k.a. Warrior King) (Tom yum goong) (2005)\",Action|Comedy|Crime|Thriller\n45186,Mission: Impossible III (2006),Action|Adventure|Thriller\n45208,RV (2006),Adventure|Children|Comedy\n45210,United 93 (2006),Crime|Drama\n45221,Stick It (2006),Comedy\n45382,Down in the Valley (2005),Drama|Romance\n45431,Over the Hedge (2006),Adventure|Animation|Children|Comedy\n45440,Art School Confidential (2006),Comedy|Drama\n45442,Poseidon (2006),Action|Adventure|Thriller|IMAX\n45447,\"Da Vinci Code, The (2006)\",Drama|Mystery|Thriller\n45499,X-Men: The Last Stand (2006),Action|Sci-Fi|Thriller\n45501,\"Break-Up, The (2006)\",Comedy|Drama|Romance\n45506,Twelve and Holding (2005),Drama\n45517,Cars (2006),Animation|Children|Comedy\n45521,Wassup Rockers (2005),Comedy|Drama\n45662,\"Omen, The (2006)\",Horror|Thriller\n45666,Nacho Libre (2006),Comedy\n45668,\"Lake House, The (2006)\",Drama|Fantasy|Romance\n45672,Click (2006),Adventure|Comedy|Drama|Fantasy|Romance\n45679,\"Seventh Victim, The (1943)\",Drama|Film-Noir|Horror|Mystery\n45720,\"Devil Wears Prada, The (2006)\",Comedy|Drama\n45722,Pirates of the Caribbean: Dead Man's Chest (2006),Action|Adventure|Fantasy\n45726,\"You, Me and Dupree (2006)\",Comedy\n45728,Clerks II (2006),Comedy\n45730,Lady in the Water (2006),Drama|Fantasy|Mystery\n45732,My Super Ex-Girlfriend (2006),Comedy|Fantasy|Romance\n45837,Let It Be (1970),Documentary\n45880,Marie Antoinette (2006),Drama|Romance\n45928,Who Killed the Electric Car? (2006),Documentary\n45942,\"Mother and the Whore, The (Maman et la putain, La) (1973)\",Drama\n45950,\"Inconvenient Truth, An (2006)\",Documentary\n45969,Career Opportunities (1991),Comedy|Romance\n45987,Chuck Berry Hail! Hail! Rock 'n' Roll (1987),Documentary|Musical\n46062,High School Musical (2006),Children|Comedy|Drama|Musical|Romance\n46322,Jet Li's Fearless (Huo Yuan Jia) (2006),Action|Drama\n46335,\"Fast and the Furious: Tokyo Drift, The (Fast and the Furious 3, The) (2006)\",Action|Crime|Drama|Thriller\n46337,Garfield: A Tail of Two Kitties (2006),Animation|Children|Comedy\n46347,Metal: A Headbanger's Journey (2005),Documentary\n46530,Superman Returns (2006),Action|Adventure|Sci-Fi|IMAX\n46544,Edward II (1991),Drama\n46559,\"Road to Guantanamo, The (2006)\",Drama|War\n46561,Leonard Cohen: I'm Your Man (2005),Documentary|Musical\n46574,\"OH in Ohio, The (2006)\",Comedy\n46578,Little Miss Sunshine (2006),Adventure|Comedy|Drama\n46664,\"Fallen Idol, The (1948)\",Drama|Mystery|Thriller\n46723,Babel (2006),Drama|Thriller\n46772,Strangers with Candy (2005),Comedy\n46850,Wordplay (2006),Documentary\n46855,Army of Shadows (L'armée des ombres) (1969),Action|Drama|Thriller|War\n46865,Little Man (2006),Comedy\n46919,End of the Spear (2005),Drama\n46948,Monster House (2006),Animation|Children|Fantasy|Mystery\n46965,Snakes on a Plane (2006),Action|Comedy|Horror|Thriller\n46967,Scoop (2006),Comedy|Fantasy|Mystery\n46970,Talladega Nights: The Ballad of Ricky Bobby (2006),Action|Comedy\n46972,Night at the Museum (2006),Action|Comedy|Fantasy|IMAX\n46974,World Trade Center (2006),Drama\n46976,Stranger than Fiction (2006),Comedy|Drama|Fantasy|Romance\n47044,Miami Vice (2006),Action|Crime|Drama|Thriller\n47092,On Dangerous Ground (1952),Crime|Drama|Film-Noir\n47099,\"Pursuit of Happyness, The (2006)\",Drama\n47122,John Tucker Must Die (2006),Comedy|Romance\n47124,\"Ant Bully, The (2006)\",Adventure|Animation|Children|Comedy|Fantasy|IMAX\n47148,Mrs. Palfrey at the Claremont (2005),Comedy|Drama\n47152,Cria Cuervos (1976),Drama\n47196,\"Rainmaker, The (1956)\",Comedy|Romance|Thriller|Western\n47200,Crank (2006),Action|Thriller\n47202,\"Secret Life of Words, The (2005)\",Drama|Romance\n47254,Chaos (2005),Action|Crime|Drama|Thriller\n47261,\"Night Listener, The (2006)\",Fantasy|Mystery|Thriller\n47274,Murmur of the Heart (Le souffle au coeur) (1971),Drama\n47287,Compulsion (1959),Crime|Drama|Thriller\n47330,Dirty Mary Crazy Larry (1974),Action|Crime|Drama|Romance\n47382,Step Up (2006),Drama|Romance\n47384,Zoom (2006),Adventure|Comedy|Drama|Fantasy\n47404,Mind Game (2004),Adventure|Animation|Comedy|Fantasy|Romance|Sci-Fi\n47423,Half Nelson (2006),Drama\n47465,Tideland (2005),Drama|Fantasy|Thriller\n47491,Adam's Apples (Adams æbler) (2005),Comedy|Drama\n47493,Cabin in the Sky (1943),Fantasy|Musical\n47518,Accepted (2006),Comedy\n47606,Captain January (1936),Children|Comedy|Musical\n47610,\"Illusionist, The (2006)\",Drama|Fantasy|Mystery|Romance\n47629,The Queen (2006),Drama\n47640,Beerfest (2006),Comedy\n47714,Blithe Spirit (1945),Comedy|Drama|Fantasy|Romance\n47721,\"Red Balloon, The (Ballon rouge, Le) (1956)\",Children|Fantasy\n47728,Green for Danger (1946),Crime|Mystery\n47810,\"Wicker Man, The (2006)\",Horror|Mystery|Thriller\n47815,Crossover (2006),Action|Drama\n47894,\"Wind That Shakes the Barley, The (2006)\",Drama|War\n47937,Severance (2006),Comedy|Horror|Thriller\n47950,Hollywoodland (2006),Crime|Drama|Mystery|Thriller\n47952,\"Covenant, The (2006)\",Action|Horror|Thriller\n47978,SherryBaby (2006),Drama\n47997,Idiocracy (2006),Adventure|Comedy|Sci-Fi|Thriller\n47999,Jesus Camp (2006),Documentary|Drama\n48032,\"Tiger and the Snow, The (La tigre e la neve) (2005)\",Comedy|Drama|Romance|War\n48043,\"Fountain, The (2006)\",Drama|Fantasy|Romance\n48061,Snoopy Come Home (1972),Animation|Children|Comedy|Musical\n48082,\"Science of Sleep, The (La science des rêves) (2006)\",Comedy|Drama|Fantasy|Romance\n48142,\"Black Dahlia, The (2006)\",Crime|Drama|Mystery|Thriller\n48159,Everyone's Hero (2006),Adventure|Animation|Children|Comedy\n48165,\"Seventh Continent, The (Der siebente Kontinent) (1989)\",Drama\n48198,Streamers (1983),Drama|War\n48231,Taxidermia (2006),Comedy|Drama|Horror\n48262,\"Bridge, The (2006)\",Documentary\n48268,Empire Falls (2005),Drama|Romance\n48301,\"Private Life of Henry VIII, The (1933)\",Comedy|Drama\n48304,Apocalypto (2006),Adventure|Drama|Thriller\n48319,Flyboys (2006),Action|Adventure|Drama|War\n48322,Jackass Number Two (2006),Comedy|Documentary\n48385,Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan (2006),Comedy\n48394,\"Pan's Labyrinth (Laberinto del fauno, El) (2006)\",Drama|Fantasy|Thriller\n48414,Open Season (2006),Adventure|Animation|Children|Comedy|IMAX\n48501,G.O.R.A. (2004),Adventure|Comedy|Sci-Fi\n48516,\"Departed, The (2006)\",Crime|Drama|Thriller\n48518,\"Texas Chainsaw Massacre: The Beginning, The (2006)\",Horror|Thriller\n48520,Employee of the Month (2006),Comedy\n48522,Stormbreaker (Alex Rider: Operation Stormbreaker) (2006),Action|Children\n48560,Running With Scissors (2006),Comedy|Drama\n48591,\"Grudge 2, The (2006)\",Drama|Horror|Mystery|Thriller\n48593,Man of the Year (2006),Comedy|Thriller\n48596,\"Marine, The (2006)\",Action|Drama|Thriller\n48660,\"Elementary Particles, The (Elementarteilchen) (2006)\",Drama|Romance\n48682,Offside (2006),Comedy|Drama\n48696,Little Children (2006),Drama|Romance\n48698,Deliver Us from Evil (2006),Documentary\n48711,Facing the Giants (2006),Action|Drama\n48738,\"Last King of Scotland, The (2006)\",Drama|Thriller\n48741,\"U.S. vs. John Lennon, The (2006)\",Documentary\n48744,Shortbus (2006),Comedy|Drama|Romance\n48774,Children of Men (2006),Action|Adventure|Drama|Sci-Fi|Thriller\n48780,\"Prestige, The (2006)\",Drama|Mystery|Sci-Fi|Thriller\n48783,Flags of Our Fathers (2006),Drama|War\n48791,Flicka (2006),Children|Drama\n48817,Sleeping Dogs Lie (a.k.a. Stay) (2006),Comedy|Drama|Romance\n48856,\"Guide to Recognizing Your Saints, A (2006)\",Crime|Drama\n48872,13 Tzameti (2005),Film-Noir|Thriller\n48877,Saw III (2006),Crime|Horror|Thriller\n48972,Lunacy (Sílení) (2006),Animation|Horror\n48982,Flushed Away (2006),Animation|Comedy\n48997,Perfume: The Story of a Murderer (2006),Crime|Drama|Thriller\n49013,\"Santa Clause 3: The Escape Clause, The (2006)\",Comedy|Fantasy\n49132,Shut Up & Sing (2006),Documentary\n49220,For Your Consideration (2006),Comedy\n49225,Street Fight (2005),Documentary\n49265,Shooting Dogs (a.k.a. Beyond the Gates) (2005),Documentary|Drama|War\n49272,Casino Royale (2006),Action|Adventure|Thriller\n49274,Happy Feet (2006),Adventure|Animation|Children|Comedy|IMAX\n49278,Déjà Vu (Deja Vu) (2006),Action|Sci-Fi|Thriller\n49280,Bobby (2006),Drama\n49284,10 Items or Less (2006),Comedy|Drama|Romance\n49286,\"Holiday, The (2006)\",Comedy|Romance\n49299,Luna de Avellaneda (2004),Drama|Romance\n49314,Harsh Times (2006),Action|Crime|Drama\n49394,Simon of the Desert (Simón del desierto) (1965),Drama\n49396,Tenacious D in The Pick of Destiny (2006),Adventure|Comedy|Musical\n49526,National Lampoon's Van Wilder: The Rise of Taj (2006),Comedy\n49528,Turistas (2006),Adventure|Drama|Horror|Mystery|Thriller\n49530,Blood Diamond (2006),Action|Adventure|Crime|Drama|Thriller|War\n49647,Charlotte's Web (2006),Children|Comedy|Drama|Fantasy\n49649,Eragon (2006),Action|Adventure|Fantasy\n49651,Rocky Balboa (2006),Action|Drama\n49688,\"Dam Busters, The (1955)\",Action|Drama|War\n49772,\"Painted Veil, The (2006)\",Drama|Romance\n49817,\"Plague Dogs, The (1982)\",Adventure|Animation|Drama\n49822,\"Good Shepherd, The (2006)\",Drama|Thriller\n49824,Dreamgirls (2006),Drama|Musical\n49902,\"Decameron, The (Decameron, Il) (1971)\",Comedy|Drama\n49910,Freedom Writers (2007),Drama\n49917,When the Levees Broke: A Requiem in Four Acts (2006),Documentary\n49932,Inland Empire (2006),Drama|Mystery|Thriller\n49957,\"History Boys, The (2006)\",Comedy|Drama\n49961,Notes on a Scandal (2006),Drama\n50005,Curse of the Golden Flower (Man cheng jin dai huang jin jia) (2006),Action|Drama\n50011,\"Bothersome Man, The (Brysomme mannen, Den) (2006)\",Comedy|Drama|Fantasy|Mystery\n50064,\"Good German, The (2006)\",Drama|Mystery|Thriller\n50068,Letters from Iwo Jima (2006),Drama|War\n50147,Black Christmas (2006),Action|Horror|Thriller\n50160,Miss Potter (2006),Drama\n50162,Arthur and the Invisibles (2007),Action|Children|Fantasy\n50189,American Pie Presents The Naked Mile (American Pie 5: The Naked Mile) (2006),Comedy|Romance\n50245,Alice in the Cities (Alice in den Stadten) (1974),Drama\n50259,Old Joy (2006),Drama\n50442,Alpha Dog (2007),Crime|Drama\n50445,\"Hitcher, The (2007)\",Action|Horror|Thriller\n50514,After the Wedding (Efter brylluppet) (2006),Drama\n50583,Linda Linda Linda (2005),Comedy|Drama\n50601,Bridge to Terabithia (2007),Adventure|Children|Fantasy\n50641,House (Hausu) (1977),Comedy|Fantasy|Horror\n50651,Kenny (2006),Comedy\n50658,49 Up (2005),Documentary\n50685,Waitress (2007),Comedy|Drama|Romance\n50703,\"Secret, The (2006)\",Documentary\n50740,Seven Up! (1964),Documentary\n50742,7 Plus Seven (1970),Documentary\n50792,Catch and Release (2006),Comedy|Drama|Romance\n50794,Smokin' Aces (2006),Action|Crime|Drama|Thriller\n50798,Epic Movie (2007),Adventure|Comedy\n50802,Because I Said So (2007),Comedy|Drama|Romance\n50804,Hannibal Rising (2007),Drama|Horror|Thriller\n50806,Norbit (2007),Comedy|Romance\n50842,\"Boss of It All, The (Direktøren for det hele) (2006)\",Comedy|Drama\n50851,Cocaine Cowboys (2006),Documentary\n50872,Ratatouille (2007),Animation|Children|Drama\n50912,\"Paris, I Love You (Paris, je t'aime) (2006)\",Romance\n50923,\"Astronaut Farmer, The (2007)\",Drama\n50954,It's a Boy Girl Thing (2006),Comedy|Romance\n51044,Magical Mystery Tour (1967),Comedy|Musical\n51077,Ghost Rider (2007),Action|Fantasy|Thriller\n51080,Breach (2007),Drama|Thriller\n51084,Music and Lyrics (2007),Comedy|Romance\n51086,\"Number 23, The (2007)\",Drama|Mystery|Thriller\n51088,Reno 911!: Miami (2007),Comedy\n51091,Black Snake Moan (2006),Drama\n51094,Gray Matters (2006),Comedy|Drama|Romance\n51127,loudQUIETloud: A Film About the Pixies (2006),Documentary\n51174,Factory Girl (2006),Drama\n51207,Street Trash (1987),Comedy|Horror\n51255,Hot Fuzz (2007),Action|Comedy|Crime|Mystery\n51277,\"36th Chamber of Shaolin, The (Shao Lin san shi liu fang) (Master Killer) (1978)\",Action|Adventure\n51304,Karla (2006),Crime|Drama|Thriller\n51357,Citizen X (1995),Crime|Drama|Thriller\n51372,\"\"\"Great Performances\"\" Cats (1998)\",Musical\n51380,\"Canterbury Tales, The (I racconti di Canterbury) (1972)\",Comedy|Drama\n51412,Next (2007),Action|Sci-Fi|Thriller\n51418,Breaking and Entering (2006),Drama\n51471,Amazing Grace (2006),Drama|Romance\n51540,Zodiac (2007),Crime|Drama|Thriller\n51575,Wild Hogs (2007),Adventure|Comedy\n51662,300 (2007),Action|Fantasy|War|IMAX\n51698,\"Last Mimzy, The (2007)\",Adventure|Children|Sci-Fi\n51705,Priceless (Hors de prix) (2006),Comedy|Romance\n51709,\"Host, The (Gwoemul) (2006)\",Comedy|Drama|Horror|Sci-Fi|Thriller\n51773,\"America, America (1963)\",Drama\n51834,Becoming Jane (2007),Drama|Romance\n51884,\"Namesake, The (2006)\",Drama|Romance\n51925,Premonition (2007),Drama|Fantasy|Mystery|Thriller\n51927,Dead Silence (2007),Horror|Mystery|Thriller\n51931,Reign Over Me (2007),Drama\n51935,Shooter (2007),Action|Drama|Thriller\n51937,\"Hills Have Eyes II, The (2007)\",Horror|Thriller\n51939,TMNT (Teenage Mutant Ninja Turtles) (2007),Action|Adventure|Animation|Children|Comedy|Fantasy\n52241,\"Lookout, The (2007)\",Crime|Drama|Thriller\n52245,Blades of Glory (2007),Comedy|Romance\n52281,Grindhouse (2007),Action|Crime|Horror|Sci-Fi|Thriller\n52287,Meet the Robinsons (2007),Action|Adventure|Animation|Children|Comedy|Sci-Fi\n52319,Inglorious Bastards (Quel maledetto treno blindato) (1978),Action|Adventure|Drama|War\n52328,Sunshine (2007),Adventure|Drama|Sci-Fi|Thriller\n52378,No Way Out (1950),Drama|Film-Noir\n52435,How the Grinch Stole Christmas! (1966),Animation|Comedy|Fantasy|Musical\n52456,Perfect Stranger (2007),Crime|Drama|Mystery|Thriller\n52458,Disturbia (2007),Drama|Thriller\n52460,Pathfinder (2007),Action|Adventure|Drama|Thriller|War\n52462,Aqua Teen Hunger Force Colon Movie Film for Theaters (2007),Action|Adventure|Animation|Comedy|Fantasy|Mystery|Sci-Fi\n52528,Tristana (1970),Drama\n52545,Puccini for Beginners (2006),Comedy|Romance\n52579,\"Vie en Rose, La (Môme, La) (2007)\",Drama|Musical\n52604,Fracture (2007),Crime|Drama|Mystery|Thriller\n52606,Big Nothing (2006),Comedy|Crime|Thriller\n52617,Woman on the Beach (Haebyeonui yeoin) (2006),Comedy|Drama\n52644,Vacancy (2007),Horror|Thriller\n52666,Benny's Video (1992),Drama|Horror\n52668,In the Land of Women (2007),Comedy|Drama|Romance\n52694,Mr. Bean's Holiday (2007),Comedy\n52712,\"Invisible, The (2007)\",Crime|Drama|Fantasy|Mystery|Thriller\n52717,\"Condemned, The (2007)\",Action|Adventure|Crime|Thriller\n52722,Spider-Man 3 (2007),Action|Adventure|Sci-Fi|Thriller|IMAX\n52730,It's a Very Merry Muppet Christmas Movie (2002),Children|Comedy\n52767,21 Up (1977),Documentary\n52831,Maniac Cop (1988),Action|Crime|Horror|Thriller\n52885,Paprika (Papurika) (2006),Animation|Mystery|Sci-Fi\n52913,Sylvia Scarlett (1935),Comedy|Drama|Romance\n52950,Day Watch (Dnevnoy dozor) (2006),Action|Fantasy|Horror|Thriller\n52952,This Is England (2006),Drama\n52967,Away from Her (2006),Drama\n52973,Knocked Up (2007),Comedy|Drama|Romance\n52975,Hairspray (2007),Comedy|Drama|Musical\n53000,28 Weeks Later (2007),Horror|Sci-Fi|Thriller\n53024,Jonestown: The Life and Death of Peoples Temple (2006),Documentary\n53038,Red Dust (1932),Drama\n53121,Shrek the Third (2007),Adventure|Animation|Children|Comedy|Fantasy\n53123,Once (2006),Drama|Musical|Romance\n53125,Pirates of the Caribbean: At World's End (2007),Action|Adventure|Comedy|Fantasy\n53129,Mr. Brooks (2007),Crime|Drama|Thriller\n53133,Gracie (2007),Drama\n53138,\"Librarian: Return to King Solomon's Mines, The (2006)\",Action|Adventure|Fantasy\n53189,Eagle vs Shark (2007),Comedy\n53207,88 Minutes (2008),Crime|Drama|Mystery|Thriller\n53318,Cashback (2006),Comedy|Drama|Romance\n53322,Ocean's Thirteen (2007),Crime|Thriller\n53326,Them (Ils) (2006),Horror\n53435,Hostel: Part II (2007),Crime|Horror|Thriller\n53447,Paranoid Park (2007),Crime|Drama\n53460,Surf's Up (2007),Animation|Children|Comedy\n53464,Fantastic Four: Rise of the Silver Surfer (2007),Action|Adventure|Sci-Fi\n53466,Nancy Drew (2007),Adventure|Crime|Thriller\n53468,Fido (2006),Comedy|Horror|Thriller\n53519,Death Proof (2007),Action|Adventure|Crime|Horror|Thriller\n53550,Rescue Dawn (2006),Action|Adventure|Drama|War\n53737,\"Night of the Generals, The (1967)\",Crime|Drama|Mystery|Thriller|War\n53883,\"Power of Nightmares, The: The Rise of the Politics of Fear (2004)\",Documentary\n53887,O Lucky Man! (1973),Comedy|Drama|Fantasy|Musical\n53894,Sicko (2007),Documentary|Drama\n53953,1408 (2007),Drama|Horror|Thriller\n53956,Death at a Funeral (2007),Comedy\n53972,Live Free or Die Hard (2007),Action|Adventure|Crime|Thriller\n53974,License to Wed (2007),Comedy|Romance\n53993,Evan Almighty (2007),Comedy|Fantasy\n53996,Transformers (2007),Action|Sci-Fi|Thriller|IMAX\n53999,Captivity (2007),Crime|Thriller\n54001,Harry Potter and the Order of the Phoenix (2007),Adventure|Drama|Fantasy|IMAX\n54004,I Now Pronounce You Chuck and Larry (2007),Comedy|Romance\n54190,Across the Universe (2007),Drama|Fantasy|Musical|Romance\n54220,\"Sterile Cuckoo, The (1969)\",Comedy|Drama\n54251,Dorian Blues (2004),Comedy\n54256,Hot Rod (2007),Comedy\n54259,Stardust (2007),Adventure|Comedy|Fantasy|Romance\n54270,Skinwalkers (2007),Horror|Thriller\n54272,\"Simpsons Movie, The (2007)\",Animation|Comedy\n54276,No Reservations (2007),Comedy|Drama|Romance\n54281,Charlie Bartlett (2007),Comedy|Drama\n54286,\"Bourne Ultimatum, The (2007)\",Action|Crime|Thriller\n54290,Bratz: The Movie (2007),Comedy\n54328,My Best Friend (Mon meilleur ami) (2006),Comedy\n54331,You Kill Me (2007),Comedy|Crime|Thriller\n54372,Tell No One (Ne le dis à personne) (2006),Crime|Drama|Mystery|Thriller\n54419,Czech Dream (Ceský sen) (2004),Documentary\n54426,12:08 East of Bucharest (A fost sau n-a fost?) (2006),Comedy|Drama\n54503,Superbad (2007),Comedy\n54513,Talk to Me (2007),Drama\n54648,Rush Hour 3 (2007),Action|Comedy|Crime|Thriller\n54732,Balls of Fury (2007),Comedy\n54734,Sydney White (2007),Comedy\n54736,\"Kingdom, The (2007)\",Action|Drama|Thriller\n54745,Rocket Science (2007),Comedy|Drama\n54768,Daddy Day Camp (2007),Children|Comedy\n54771,\"Invasion, The (2007)\",Action|Drama|Horror|Sci-Fi|Thriller\n54775,War (2007),Action|Thriller\n54780,\"Nanny Diaries, The (2007)\",Comedy|Drama|Romance\n54785,Halloween (2007),Horror\n54787,Death Sentence (2007),Drama|Thriller\n54881,\"King of Kong, The (2007)\",Documentary\n54910,Behind the Mask: The Rise of Leslie Vernon (2006),Comedy|Horror|Thriller\n54995,Planet Terror (2007),Action|Horror|Sci-Fi\n54997,3:10 to Yuma (2007),Action|Crime|Drama|Western\n54999,Shoot 'Em Up (2007),Action|Comedy|Crime\n55031,\"Evening with Kevin Smith, An (2002)\",Comedy|Documentary\n55052,Atonement (2007),Drama|Romance|War\n55063,My Winnipeg (2007),Documentary|Fantasy\n55069,\"4 Months, 3 Weeks and 2 Days (4 luni, 3 saptamâni si 2 zile) (2007)\",Drama\n55071,No End in Sight (2007),Documentary\n55078,Far from the Madding Crowd (1967),Drama|Romance\n55094,In the Valley of Elah (2007),Drama|Mystery\n55100,I Could Never Be Your Woman (2007),Comedy|Romance\n55110,December Boys (2007),Drama\n55116,\"Hunting Party, The (2007)\",Action|Adventure|Comedy|Drama|Thriller\n55118,Eastern Promises (2007),Crime|Drama|Thriller\n55156,\"Unreasonable Man, An (2006)\",Documentary\n55167,Tekkonkinkreet (Tekkon kinkurîto) (2006),Action|Adventure|Animation|Crime|Fantasy\n55207,Cashback (2004),Comedy|Drama\n55232,Resident Evil: Extinction (2007),Action|Horror|Sci-Fi|Thriller\n55245,Good Luck Chuck (2007),Comedy|Romance\n55247,Into the Wild (2007),Action|Adventure|Drama\n55250,\"Game Plan, The (2007)\",Comedy\n55253,\"Lust, Caution (Se, jie) (2007)\",Drama|Romance|Thriller|War\n55259,\"Seeker: The Dark Is Rising, The (2007)\",Action|Adventure|Drama|Fantasy\n55261,\"Heartbreak Kid, The (2007)\",Comedy|Drama|Romance\n55267,Dan in Real Life (2007),Comedy|Drama|Romance\n55269,\"Darjeeling Limited, The (2007)\",Adventure|Comedy|Drama\n55272,We Own the Night (2007),Crime|Drama\n55274,Elizabeth: The Golden Age (2007),Drama\n55276,Michael Clayton (2007),Drama|Thriller\n55280,Lars and the Real Girl (2007),Comedy|Drama\n55282,30 Days of Night (2007),Horror|Thriller\n55290,Gone Baby Gone (2007),Crime|Drama|Mystery\n55294,Weirdsville (2007),Comedy|Crime|Drama\n55363,\"Assassination of Jesse James by the Coward Robert Ford, The (2007)\",Crime|Drama|Western\n55417,Irina Palm (2007),Drama\n55442,Persepolis (2007),Animation|Drama\n55444,Control (2007),Drama\n55451,The Jane Austen Book Club (2007),Comedy|Drama|Romance\n55498,Silk (2007),Adventure|Drama|Romance\n55555,\"Edge of Heaven, The (Auf der anderen Seite) (2007)\",Drama\n55566,Tyler Perry's Why Did I Get Married? (2007),Comedy|Drama\n55577,Saw IV (2007),Crime|Horror|Thriller\n55652,Scum (1979),Crime|Drama\n55684,\"City of Violence, The (Jjakpae) (2006)\",Action|Crime|Drama\n55687,My Kid Could Paint That (2007),Documentary\n55721,Elite Squad (Tropa de Elite) (2007),Action|Crime|Drama|Thriller\n55732,Martian Child (2007),Comedy|Drama\n55757,Chilly Scenes of Winter (Head Over Heels) (1979),Comedy|Drama|Romance\n55765,American Gangster (2007),Crime|Drama|Thriller\n55768,Bee Movie (2007),Animation|Comedy\n55805,Before the Devil Knows You're Dead (2007),Crime|Drama|Thriller\n55814,\"Diving Bell and the Butterfly, The (Scaphandre et le papillon, Le) (2007)\",Drama\n55820,No Country for Old Men (2007),Crime|Drama\n55830,Be Kind Rewind (2008),Comedy\n55851,Crazy Love (2007),Documentary\n55872,August Rush (2007),Drama|Musical\n55895,\"Desperate Hours, The (1955)\",Drama|Film-Noir|Thriller\n55908,\"Man from Earth, The (2007)\",Drama|Sci-Fi\n55946,Lions For Lambs (2007),Drama|Thriller|War\n55995,Beowulf (2007),Action|Adventure|Animation|Fantasy|IMAX\n55999,Mr. Magorium's Wonder Emporium (2007),Children|Comedy|Fantasy\n56003,Southland Tales (2006),Comedy|Drama|Sci-Fi|Thriller\n56015,Kansas City Confidential (1952),Crime|Drama|Film-Noir|Mystery\n56030,Darfur Now (2007),Documentary\n56069,Murder Party (2007),Comedy|Drama|Horror|Thriller\n56079,Smiley Face (2007),Comedy\n56095,XXY (2007),Drama\n56145,\"Mist, The (2007)\",Horror|Sci-Fi\n56152,Enchanted (2007),Adventure|Animation|Children|Comedy|Fantasy|Musical|Romance\n56156,Hitman (2007),Action|Crime|Thriller\n56169,Awake (2007),Drama|Thriller\n56171,\"Golden Compass, The (2007)\",Adventure|Children|Fantasy\n56174,I Am Legend (2007),Action|Horror|Sci-Fi|Thriller|IMAX\n56176,Alvin and the Chipmunks (2007),Children|Comedy\n56251,Futurama: Bender's Big Score (2007),Animation|Comedy|Sci-Fi\n56274,Margot at the Wedding (2007),Drama\n56286,I'm Not There (2007),Drama\n56333,\"Savages, The (2007)\",Comedy|Drama\n56336,Wrong Turn 2: Dead End (2007),Action|Horror|Thriller\n56339,\"Orphanage, The (Orfanato, El) (2007)\",Drama|Horror|Mystery|Thriller\n56367,Juno (2007),Comedy|Drama|Romance\n56563,Helvetica (2007),Documentary\n56587,\"Bucket List, The (2007)\",Comedy|Drama\n56607,\"Kite Runner, The (2007)\",Drama\n56633,Butterfly on a Wheel (Shattered) (2007),Crime|Drama|Thriller\n56715,Wristcutters: A Love Story (2006),Drama|Fantasy|Romance\n56757,Sweeney Todd: The Demon Barber of Fleet Street (2007),Drama|Horror|Musical|Thriller\n56775,National Treasure: Book of Secrets (2007),Action|Adventure\n56782,There Will Be Blood (2007),Drama|Western\n56788,Charlie Wilson's War (2007),Comedy|Drama|War\n56801,AVPR: Aliens vs. Predator - Requiem (2007),Action|Horror|Sci-Fi\n56805,Walk Hard: The Dewey Cox Story (2007),Comedy|Musical\n56869,Drained (O cheiro do Ralo) (2006),Comedy\n56885,\"Great Debaters, The (2007)\",Drama\n56908,Dedication (2007),Comedy|Drama|Romance\n56915,\"Water Horse: Legend of the Deep, The (2007)\",Adventure|Children|Fantasy\n56921,Battlestar Galactica: Razor (2007),Action|Drama|Sci-Fi|Thriller\n56941,P.S. I Love You (2007),Comedy|Drama|Romance\n56949,27 Dresses (2008),Comedy|Romance\n57038,To the Left of the Father (Lavoura Arcaica) (2001),Drama\n57223,D-War (Dragon Wars) (2007),Action|Adventure|Drama|Fantasy\n57243,\"Band's Visit, The (Bikur Ha-Tizmoret) (2007)\",Comedy|Drama\n57274,[REC] (2007),Drama|Horror|Thriller\n57326,In the Name of the King: A Dungeon Siege Tale (2008),Action|Adventure|Fantasy\n57353,Flawless (2007),Crime|Drama\n57368,Cloverfield (2008),Action|Mystery|Sci-Fi|Thriller\n57401,Cleaner (2007),Crime|Thriller\n57418,\"Rachel, Rachel (1968)\",Drama|Romance\n57430,Welcome to L.A. (1976),Drama|Musical\n57453,Arranged (2007),Comedy|Drama|Romance\n57504,\"Girl Who Leapt Through Time, The (Toki o kakeru shôjo) (2006)\",Animation|Comedy|Drama|Romance|Sci-Fi\n57526,Untraceable (2008),Crime|Thriller\n57528,Rambo (Rambo 4) (2008),Action|Drama|Thriller|War\n57532,Meet the Spartans (2008),Comedy\n57640,Hellboy II: The Golden Army (2008),Action|Adventure|Fantasy|Sci-Fi\n57669,In Bruges (2008),Comedy|Crime|Drama|Thriller\n57792,Caramel (Sukkar banat) (2007),Comedy\n57845,Joe Strummer: The Future Is Unwritten (2007),Documentary\n57910,Teeth (2007),Comedy|Horror\n57951,Fool's Gold (2008),Action|Adventure|Comedy|Romance\n57972,Deep Water (2006),Documentary\n57980,\"Art of Negative Thinking, The (Kunsten å tenke negativt) (2006)\",Comedy|Drama\n58025,Jumper (2008),Action|Adventure|Drama|Sci-Fi|Thriller\n58029,It's a Free World... (2007),Drama\n58047,\"Definitely, Maybe (2008)\",Comedy|Drama|Romance\n58103,Vantage Point (2008),Action|Drama|Thriller\n58105,\"Spiderwick Chronicles, The (2008)\",Adventure|Children|Drama|Fantasy|IMAX\n58107,Step Up 2 the Streets (2008),Drama|Musical|Romance\n58146,Witless Protection (2008),Comedy\n58154,\"Other Boleyn Girl, The (2008)\",Drama|Romance\n58156,Semi-Pro (2008),Comedy\n58191,Taxi to the Dark Side (2007),Documentary\n58293,\"10,000 BC (2008)\",Adventure|Romance|Thriller\n58295,\"Bank Job, The (2008)\",Action|Crime|Thriller\n58297,Doomsday (2008),Action|Drama|Sci-Fi|Thriller\n58299,Horton Hears a Who! (2008),Adventure|Animation|Children|Comedy\n58301,Funny Games U.S. (2007),Drama|Thriller\n58303,\"Counterfeiters, The (Die Fälscher) (2007)\",Crime|Drama|War\n58306,Mongol (2007),Drama|War\n58315,\"Love Guru, The (2008)\",Comedy\n58347,Penelope (2006),Comedy|Fantasy|Romance\n58351,City of Men (Cidade dos Homens) (2007),Drama\n58365,Chicago 10 (2007),Animation|Documentary\n58376,Zeitgeist: The Movie (2007),Documentary|War\n58425,Heima (2007),Documentary\n58432,What Just Happened (2008),Comedy|Drama\n58520,Mala Noche (1985),Drama\n58554,\"Class, The (Klass) (2007)\",Drama\n58559,\"Dark Knight, The (2008)\",Action|Crime|Drama|IMAX\n58627,Never Back Down (2008),Action\n58649,Napoléon (1927),Drama|War\n58655,Drillbit Taylor (2008),Comedy\n58706,\"Under the Same Moon (Misma luna, La) (2007)\",Drama\n58803,21 (2008),Crime|Drama|Romance|Thriller\n58839,Leatherheads (2008),Comedy|Drama|Romance\n58879,Shine a Light (2008),Documentary|Musical|IMAX\n58889,\"Business of Being Born, The (2008)\",Documentary\n58904,Chan Is Missing (1982),Crime\n58964,Inside (À l'intérieur) (2007),Horror|Thriller\n58972,Nim's Island (2008),Adventure|Comedy|Fantasy\n58975,\"Ruins, The (2008)\",Horror|Thriller\n58998,Forgetting Sarah Marshall (2008),Comedy|Romance\n59014,Superhero Movie (2008),Action|Comedy|Sci-Fi\n59016,Street Kings (2008),Crime|Drama|Thriller\n59018,\"Visitor, The (2007)\",Drama|Romance\n59022,Harold & Kumar Escape from Guantanamo Bay (2008),Adventure|Comedy\n59037,Speed Racer (2008),Action|Children|Sci-Fi|IMAX\n59103,\"Forbidden Kingdom, The (2008)\",Action|Adventure|Comedy|Fantasy\n59118,Happy-Go-Lucky (2008),Comedy|Drama\n59126,Religulous (2008),Comedy|Documentary\n59141,Son of Rambow (2007),Children|Comedy|Drama\n59143,Super High Me (2007),Comedy|Documentary\n59180,Tarzan Finds a Son! (1939),Action|Adventure\n59258,Baby Mama (2008),Comedy\n59273,Delirious (2006),Comedy|Drama\n59306,Prom Night (2008),Horror|Mystery|Thriller\n59315,Iron Man (2008),Action|Adventure|Sci-Fi\n59333,Made of Honor (2008),Comedy|Romance\n59339,Mister Lonely (2007),Comedy|Drama\n59369,Taken (2008),Action|Crime|Drama|Thriller\n59387,\"Fall, The (2006)\",Adventure|Drama|Fantasy\n59392,Stargate: The Ark of Truth (2008),Action|Fantasy|Sci-Fi\n59418,\"American Crime, An (2007)\",Crime\n59421,What Happens in Vegas... (2008),Comedy|Romance\n59429,American Pie Presents Beta House (American Pie 6: Beta House) (2007),Comedy\n59447,Fiorile (1993),Drama\n59501,\"Chronicles of Narnia: Prince Caspian, The (2008)\",Adventure|Children|Fantasy\n59519,Reprise (2006),Drama\n59549,Shelter (2007),Drama|Romance\n59590,Young at Heart (a.k.a. Young@Heart) (2007),Documentary|Musical\n59594,\"War, Inc. (2008)\",Comedy|Crime|Thriller\n59615,Indiana Jones and the Kingdom of the Crystal Skull (2008),Action|Adventure|Comedy|Sci-Fi\n59669,Following Sean (2005),Documentary\n59684,Lake of Fire (2006),Documentary\n59721,\"Grand, The (2007)\",Comedy\n59725,Sex and the City (2008),Comedy|Romance\n59727,\"Strangers, The (2008)\",Horror|Thriller\n59731,\"Bigger, Stronger, Faster* (2008)\",Documentary\n59784,Kung Fu Panda (2008),Action|Animation|Children|Comedy|IMAX\n59805,Antonio das Mortes (O Dragão da Maldade contra o Santo Guerreiro) (1969),Drama|Western\n59810,Recount (2008),Drama\n59814,Ex Drummer (2007),Comedy|Crime|Drama|Horror\n59832,Where the Sidewalk Ends (1950),Crime|Drama|Film-Noir\n59834,100 Rifles (1969),Adventure|War|Western\n59846,\"Iron Mask, The (1929)\",Adventure|Drama|Romance\n59900,You Don't Mess with the Zohan (2008),Comedy\n59935,Flesh Gordon (1974),Adventure|Comedy|Sci-Fi\n59945,\"Mark of Zorro, The (1920)\",Adventure|Romance|Western\n59985,Chaos Theory (2007),Comedy|Drama|Romance\n59995,Boy A (2007),Crime|Drama\n60037,\"Happening, The (2008)\",Drama|Sci-Fi|Thriller\n60040,\"Incredible Hulk, The (2008)\",Action|Sci-Fi\n60069,WALL·E (2008),Adventure|Animation|Children|Romance|Sci-Fi\n60072,Wanted (2008),Action|Thriller\n60074,Hancock (2008),Action|Adventure|Comedy|Crime|Fantasy\n60086,Boy Culture (2006),Drama\n60126,Get Smart (2008),Action|Comedy\n60128,Young People Fucking (a.k.a. YPF) (2007),Comedy\n60135,Surfwise (2007),Documentary\n60137,\"Rape of Europa, The (2006)\",Documentary\n60161,Futurama: The Beast with a Billion Backs (2008),Action|Animation|Comedy|Romance|Sci-Fi\n60291,Gonzo: The Life and Work of Dr. Hunter S. Thompson (2008),Documentary\n60293,\"Wackness, The (2008)\",Comedy|Drama|Romance\n60295,Up the Yangtze (2007),Documentary\n60333,Encounters at the End of the World (2008),Documentary\n60343,Wee Willie Winkie (1937),Adventure\n60382,Roman Polanski: Wanted and Desired (2008),Documentary\n60384,Z Channel: A Magnificent Obsession (2004),Documentary\n60397,Mamma Mia! (2008),Comedy|Musical|Romance\n60471,Rogue (2007),Action|Adventure|Horror|Sci-Fi|Thriller\n60487,\"It's the Great Pumpkin, Charlie Brown (1966)\",Animation|Children|Comedy\n60514,Journey to the Center of the Earth (2008),Action|Adventure|Sci-Fi\n60516,Meet Dave (2008),Adventure|Children|Comedy|Romance|Sci-Fi\n60609,Death Note (2006),Adventure|Crime|Drama|Horror|Mystery\n60649,Space Chimps (2008),Adventure|Animation|Comedy\n60674,Stargate: Continuum (2008),Sci-Fi\n60684,Watchmen (2009),Action|Drama|Mystery|Sci-Fi|Thriller|IMAX\n60753,Felon (2008),Crime|Drama\n60756,Step Brothers (2008),Comedy\n60760,\"X-Files: I Want to Believe, The (2008)\",Drama|Mystery|Sci-Fi|Thriller\n60763,American Teen (2008),Documentary\n60766,Man on Wire (2008),Documentary\n60832,Pathology (2008),Crime|Horror|Thriller\n60857,\"Tracey Fragments, The (2007)\",Drama\n60937,\"Mummy: Tomb of the Dragon Emperor, The (2008)\",Action|Adventure|Fantasy|Thriller\n60943,Frozen River (2008),Drama\n60950,Vicky Cristina Barcelona (2008),Comedy|Drama|Romance\n60990,\"End of Summer, The (Early Autumn) (Kohayagawa-ke no aki) (1961)\",Drama\n61013,Absolute Giganten (1999),Action|Comedy|Drama|Romance\n61024,Pineapple Express (2008),Action|Comedy|Crime\n61026,Red Cliff (Chi bi) (2008),Action|Adventure|Drama|War\n61071,\"Sisterhood of the Traveling Pants 2, The (2008)\",Adventure|Comedy|Drama|Romance\n61075,Elegy (2008),Drama|Romance\n61123,High School Musical 2 (2007),Comedy|Drama|Musical|Romance\n61132,Tropic Thunder (2008),Action|Adventure|Comedy|War\n61160,Star Wars: The Clone Wars (2008),Action|Adventure|Animation|Sci-Fi\n61167,Henry Poole is Here (2008),Drama|Mystery\n61206,In the City of Sylvia (En la ciudad de Sylvia) (2007),Drama\n61210,Mutant Chronicles (2008),Action|Adventure|Sci-Fi\n61236,Waltz with Bashir (Vals im Bashir) (2008),Animation|Documentary|Drama|War\n61240,Let the Right One In (Låt den rätte komma in) (2008),Drama|Fantasy|Horror|Romance\n61248,Death Race (2008),Action|Adventure|Sci-Fi|Thriller\n61250,\"House Bunny, The (2008)\",Comedy\n61289,Sukiyaki Western Django (2008),Action|Western\n61323,Burn After Reading (2008),Comedy|Crime|Drama\n61348,Disaster Movie (2008),Comedy\n61350,Babylon A.D. (2008),Action|Adventure|Sci-Fi|Thriller\n61352,Traitor (2008),Crime|Drama|Thriller\n61357,Trouble the Water (2008),Documentary\n61361,\"Women, The (2008)\",Comedy|Drama\n61394,\"Onion Movie, The (2008)\",Comedy\n61401,\"Spirit, The (2008)\",Action|Comedy|Fantasy|Thriller\n61465,Bangkok Dangerous (2008),Action|Crime|Thriller\n61634,Son of Lassie (1945),Children|Drama\n61646,DarkBlueAlmostBlack (Azuloscurocasinegro) (2006),Drama|Romance\n61705,Lakeview Terrace (2008),Drama|Thriller\n61729,Ghost Town (2008),Comedy|Fantasy|Romance\n62049,1984 (1956),Drama|Sci-Fi\n62081,Eagle Eye (2008),Action|Crime|Thriller|IMAX\n62113,How to Lose Friends & Alienate People (2008),Comedy\n62115,Six Shooter (2004),Comedy|Drama\n62155,Nick and Norah's Infinite Playlist (2008),Comedy|Drama|Romance\n62203,Martyrs (2008),Horror\n62250,Gomorrah (Gomorra) (2008),Crime|Drama\n62331,Dead Leaves (2004),Action|Adventure|Animation|Comedy|Sci-Fi\n62336,FLCL (2000),Animation|Comedy|Fantasy|Sci-Fi\n62344,Rachel Getting Married (2008),Drama|Romance\n62374,Body of Lies (2008),Action|Drama|Thriller\n62376,City of Ember (2008),Adventure|Children|Sci-Fi\n62378,Magicians (2007),Comedy\n62383,\"20,000 Leagues Under the Sea (1916)\",Action|Adventure|Sci-Fi\n62394,Max Payne (2008),Action|Crime|Drama|Thriller\n62434,Zack and Miri Make a Porno (2008),Comedy|Drama|Romance\n62437,W. (2008),Drama\n62511,\"Synecdoche, New York (2008)\",Comedy|Drama\n62644,\"Wave, The (Welle, Die) (2008)\",Drama\n62718,\"Angus, Thongs and Perfect Snogging (2008)\",Comedy|Romance\n62733,Quarantine (2008),Drama|Horror|Mystery|Thriller\n62764,Black Moon (1975),Fantasy|Mystery|Sci-Fi|War\n62792,Pride and Glory (2008),Crime|Drama\n62801,Lone Wolf and Cub: Baby Cart to Hades (Kozure Ôkami: Shinikazeni mukau ubaguruma) (1972),Action|Drama\n62849,RocknRolla (2008),Action|Crime\n62912,High School Musical 3: Senior Year (2008),Musical\n62956,Futurama: Bender's Game (2008),Action|Adventure|Animation|Comedy|Fantasy|Sci-Fi\n62999,Madagascar: Escape 2 Africa (2008),Action|Adventure|Animation|Children|Comedy|IMAX\n63062,Changeling (2008),Crime|Drama|Mystery\n63072,\"Road, The (2009)\",Adventure|Drama|Thriller\n63082,Slumdog Millionaire (2008),Crime|Drama|Romance\n63113,Quantum of Solace (2008),Action|Adventure|Thriller\n63131,Role Models (2008),Comedy\n63179,Tokyo! (2008),Drama\n63239,Cinderella (1997),Children|Fantasy|Musical|Romance\n63276,Crows Zero (Kurôzu zero) (2007),Action\n63393,Camp Rock (2008),Comedy|Musical|Romance\n63436,Saw V (2008),Crime|Horror|Thriller\n63479,Sex Drive (2008),Comedy\n63481,Soul Men (2008),Comedy|Musical\n63515,The Island (2006),Drama|Mystery\n63540,Beverly Hills Chihuahua (2008),Adventure|Children|Comedy\n63629,Fanny (1961),Drama|Romance\n63808,\"Class, The (Entre les murs) (2008)\",Drama\n63826,Splinter (2008),Action|Horror|Thriller\n63836,\"Manson Family, The (2003)\",Crime|Drama|Horror\n63853,Australia (2008),Adventure|Drama|War|Western\n63859,Bolt (2008),Action|Adventure|Animation|Children|Comedy\n63876,Milk (2008),Drama\n63992,Twilight (2008),Drama|Fantasy|Romance|Thriller\n64030,Transporter 3 (2008),Action|Adventure|Crime|Thriller\n64032,Four Christmases (2008),Comedy\n64034,\"Boy in the Striped Pajamas, The (Boy in the Striped Pyjamas, The) (2008)\",Drama|War\n64114,Fireproof (2008),Drama|Romance\n64116,Igor (2008),Animation|Comedy\n64153,\"Devil's Chair, The (2006)\",Horror\n64197,Hunger (2008),Drama\n64229,Cadillac Records (2008),Drama|Musical\n64249,Shrek the Halls (2007),Adventure|Animation|Comedy|Fantasy\n64278,\"Pervert's Guide to Cinema, The (2006)\",Documentary\n64285,Wallace and Gromit in 'A Matter of Loaf and Death' (2008),Animation|Comedy\n64321,\"Friend of Mine, A (Ein Freund von mir) (2006)\",Comedy|Drama\n64338,Gypsy (1993),Comedy|Drama|Musical\n64497,\"Day the Earth Stood Still, The (2008)\",Drama|Sci-Fi|Thriller|IMAX\n64499,Che: Part One (2008),Drama|War\n64501,Che: Part Two (2008),Drama|War\n64508,Starship Troopers 3: Marauder (2008),Action|Sci-Fi|War\n64575,Doubt (2008),Drama|Mystery\n64614,Gran Torino (2008),Crime|Drama\n64620,Frost/Nixon (2008),Drama\n64622,\"Reader, The (2008)\",Drama|Romance\n64660,Waiter (Ober) (2006),Comedy\n64695,Sword of the Stranger (Sutorejia: Mukô hadan) (2007),Action|Adventure|Animation\n64701,I've Loved You So Long (Il y a longtemps que je t'aime) (2008),Drama|Mystery\n64716,Seven Pounds (2008),Drama\n64839,\"Wrestler, The (2008)\",Drama\n64900,\"Chinese Ghost Story II, A (Sien nui yau wan II yan gaan do) (1990)\",Action|Adventure|Fantasy|Horror|Romance\n64957,\"Curious Case of Benjamin Button, The (2008)\",Drama|Fantasy|Mystery|Romance\n64969,Yes Man (2008),Comedy\n64983,Valkyrie (2008),Drama|Thriller|War\n64990,Pete Seeger: The Power of Song (2007),Documentary\n64993,5 Centimeters per Second (Byôsoku 5 senchimêtoru) (2007),Animation|Drama|Romance\n64997,War of the Worlds (2005),Action|Sci-Fi\n65037,Ben X (2007),Drama\n65088,Bedtime Stories (2008),Adventure|Children|Comedy\n65126,Choke (2008),Comedy|Drama\n65130,Revolutionary Road (2008),Drama|Romance\n65133,Blackadder Back & Forth (1999),Comedy\n65135,Blackadder's Christmas Carol (1988),Comedy\n65188,Dear Zachary: A Letter to a Son About His Father (2008),Documentary\n65193,Wild Child (2008),Drama|Romance\n65216,Defiance (2008),Drama|Thriller|War\n65230,Marley & Me (2008),Comedy|Drama\n65259,Involuntary (De ofrivilliga) (2008),Drama\n65261,Ponyo (Gake no ue no Ponyo) (2008),Adventure|Animation|Children|Fantasy\n65310,Poultrygeist: Night of the Chicken Dead (2006),Comedy|Horror|Musical\n65418,Wendy and Lucy (2008),Drama\n65465,Last Chance Harvey (2008),Drama|Romance\n65514,Ip Man (2008),Action|Drama|War\n65552,Replicant (2001),Action|Sci-Fi|Thriller\n65567,Passengers (2008),Drama|Mystery|Thriller\n65577,\"Tale of Despereaux, The (2008)\",Adventure|Animation|Children|Comedy|Fantasy\n65585,Bride Wars (2009),Comedy|Romance\n65601,My Bloody Valentine 3-D (2009),Horror|Thriller\n65638,Aspen (1991),Documentary\n65642,\"Timecrimes (Cronocrímenes, Los) (2007)\",Sci-Fi|Thriller\n65665,Hamlet (2000),Drama\n65682,Underworld: Rise of the Lycans (2009),Action|Fantasy|Horror|Thriller\n65685,Inkheart (2008),Adventure|Fantasy\n65802,Paul Blart: Mall Cop (2009),Action|Comedy|Crime\n65982,Outlander (2008),Action|Adventure|Sci-Fi\n66019,\"Great Ecstasy of Woodcarver Steiner, The (Große Ekstase des Bildschnitzers Steiner, Die) (1974)\",Documentary\n66066,\"Grudge 3, The (2009)\",Horror\n66090,Eden Lake (2008),Horror|Thriller\n66097,Coraline (2009),Animation|Fantasy|Thriller\n66130,Chocolate (2008),Action|Drama\n66171,Push (2009),Sci-Fi|Thriller\n66198,\"International, The (2009)\",Drama|Thriller\n66200,Two Lovers (2008),Drama|Romance\n66203,He's Just Not That Into You (2009),Comedy|Drama|Romance\n66246,Numbskull Emptybrook (Uuno Turhapuro) (1973),Comedy\n66297,Futurama: Into the Wild Green Yonder (2009),Action|Animation|Comedy|Sci-Fi\n66310,Frontière(s) (2007),Drama|Horror|Thriller\n66317,Comet in Moominland (1992),Adventure|Animation|Fantasy\n66335,Afro Samurai: Resurrection (2009),Animation\n66371,Departures (Okuribito) (2008),Drama\n66427,My Name Is Bruce (2007),Comedy|Horror\n66509,Funny People (2009),Comedy|Drama\n66544,Nuremberg (2000),Drama|War\n66596,Mystery Team (2009),Comedy|Crime|Mystery\n66659,Tyler Perry's Madea Goes to Jail (2009),Comedy|Crime|Drama\n66665,Away We Go (2009),Comedy|Drama|Romance\n66686,\"Unsuspected, The (1947)\",Drama|Film-Noir|Thriller\n66744,\"Divo, Il (2008)\",Drama\n66785,\"Good, the Bad, the Weird, The (Joheunnom nabbeunnom isanghannom) (2008)\",Action|Adventure|Comedy|Western\n66798,\"Pink Panther 2, The (2009)\",Adventure|Comedy|Mystery\n66808,Far Cry (2008),Action|Adventure|Drama\n66915,Rock-A-Doodle (1991),Adventure|Animation|Children|Musical\n66934,Dr. Horrible's Sing-Along Blog (2008),Comedy|Drama|Musical|Sci-Fi\n67087,\"I Love You, Man (2009)\",Comedy\n67193,Duplicity (2009),Crime|Romance|Thriller\n67197,Knowing (2009),Action|Drama|Mystery|Sci-Fi|Thriller\n67252,Ong-Bak 2: The Beginning (Ong Bak 2) (2008),Action\n67255,\"Girl with the Dragon Tattoo, The (Män som hatar kvinnor) (2009)\",Crime|Drama|Mystery|Thriller\n67267,Sunshine Cleaning (2008),Comedy|Drama\n67295,Kung Fu Panda: Secrets of the Furious Five (2008),Action|Animation|Children|Comedy\n67361,Echelon Conspiracy (2009),Action|Mystery|Thriller\n67408,Monsters vs. Aliens (2009),Animation|Sci-Fi|IMAX\n67429,Sita Sings the Blues (2008),Animation|Musical\n67504,Land of Silence and Darkness (Land des Schweigens und der Dunkelheit) (1971),Documentary\n67508,\"Baader Meinhof Komplex, Der (2008)\",Action|Crime|Drama|Thriller\n67665,Anvil! The Story of Anvil (2008),Documentary|Musical\n67695,Observe and Report (2009),Action|Comedy\n67734,Adventureland (2009),Comedy|Drama\n67788,Confessions of a Shopaholic (2009),Comedy|Romance\n67799,The Butterfly Effect 3: Revelations (2009),Drama|Fantasy|Sci-Fi|Thriller\n67867,Dragonball Evolution (2009),Action|Adventure|Fantasy|Sci-Fi\n67923,\"Fast & Furious (Fast and the Furious 4, The) (2009)\",Action|Crime|Drama|Thriller\n67957,Superstar: The Karen Carpenter Story (1988),Drama|Musical\n67997,In the Loop (2009),Comedy\n68073,Pirate Radio (2009),Comedy|Drama\n68099,Apollo 13: To the Edge and Back (1994),Documentary\n68135,17 Again (2009),Comedy|Drama\n68137,Nana (2005),Drama\n68157,Inglourious Basterds (2009),Action|Drama|War\n68159,State of Play (2009),Crime|Drama|Thriller\n68194,\"Damned United, The (2009)\",Drama\n68205,Crank: High Voltage (2009),Action|Comedy|Crime\n68237,Moon (2009),Drama|Mystery|Sci-Fi|Thriller\n68269,\"Young Victoria, The (2009)\",Drama|Romance\n68319,X-Men Origins: Wolverine (2009),Action|Sci-Fi|Thriller\n68324,\"Girlfriend Experience, The (2009)\",Drama\n68347,Sin Nombre (2009),Crime|Drama|Thriller\n68358,Star Trek (2009),Action|Adventure|Sci-Fi|IMAX\n68444,\"Great Buck Howard, The (2008)\",Comedy\n68486,Red Cliff Part II (Chi Bi Xia: Jue Zhan Tian Xia) (2009),Action|Drama|War\n68536,Stanley Kubrick: A Life in Pictures (2001),Documentary\n68554,Angels & Demons (2009),Crime|Drama|Mystery|Thriller\n68614,\"Seduction of Joe Tynan, The (1979)\",Drama\n68659,Fanboys (2009),Adventure|Comedy|Drama\n68791,Terminator Salvation (2009),Action|Adventure|Sci-Fi|Thriller\n68793,Night at the Museum: Battle of the Smithsonian (2009),Action|Comedy|IMAX\n68835,Were the World Mine (2008),Adventure|Fantasy|Musical|Romance\n68838,Every Little Step (2008),Documentary\n68848,\"Brothers Bloom, The (2008)\",Adventure|Comedy|Crime|Romance\n68872,Paisan (Paisà) (1946),Drama|War\n68884,Shall We Kiss? (Un baiser s'il vous plait) (2007),Comedy|Romance\n68901,Chop Shop (2007),Drama\n68932,\"Soloist, The (2009)\",Drama|Musical\n68945,Neon Genesis Evangelion: Death & Rebirth (Shin seiki Evangelion Gekijô-ban: Shito shinsei) (1997),Action|Animation|Mystery|Sci-Fi\n68952,Drag Me to Hell (2009),Comedy|Horror\n68954,Up (2009),Adventure|Animation|Children|Drama\n68959,Fullmetal Alchemist the Movie: Conqueror of Shamballa (Gekijô-ban hagane no renkinjutsushi: Shanbara wo yuku mono) (2005),Action|Adventure|Animation|Drama\n68965,Dance Flick (2009),Comedy|Musical\n68967,\"Summer Hours (Heure d'été, L') (2008)\",Drama\n69069,Fired Up (2009),Comedy\n69118,In the Electric Mist (2009),Drama|Mystery\n69122,\"Hangover, The (2009)\",Comedy|Crime\n69134,Antichrist (2009),Drama|Fantasy\n69241,Berlin Alexanderplatz (1980),Drama\n69253,New in Town (2009),Comedy|Romance\n69275,Dead Snow (Død snø) (2009),Action|Adventure|Comedy|Horror\n69278,Land of the Lost (2009),Action|Adventure|Comedy|Sci-Fi\n69280,\"Clique, The (2008)\",Comedy\n69306,\"Taking of Pelham 1 2 3, The (2009)\",Crime|Drama|Thriller\n69406,\"Proposal, The (2009)\",Comedy|Romance\n69436,Year One (2009),Adventure|Comedy\n69458,Tyson (2008),Documentary\n69481,\"Hurt Locker, The (2008)\",Action|Drama|Thriller|War\n69495,Breakfast with Scot (2007),Drama|Romance\n69516,\"Limits of Control, The (2009)\",Crime|Drama|Film-Noir\n69524,Raiders of the Lost Ark: The Adaptation (1989),Action|Adventure|Thriller\n69526,Transformers: Revenge of the Fallen (2009),Action|Adventure|Sci-Fi|IMAX\n69529,Home (2009),Documentary\n69559,\"File on Thelma Jordan, The (1950)\",Crime|Drama|Film-Noir|Mystery\n69604,Whatever Works (2009),Comedy|Romance\n69606,Ghosts of Girlfriends Past (2009),Comedy|Fantasy|Romance\n69640,Public Enemies (2009),Crime|Drama|Thriller\n69644,Ice Age: Dawn of the Dinosaurs (2009),Action|Adventure|Animation|Children|Comedy|Romance\n69654,Prison Break: The Final Break (2009),Action|Drama|Thriller\n69685,Daria: Is It College Yet? (2002),Animation|Comedy\n69712,My Sister's Keeper (2009),Drama\n69720,Hood of Horror (2006),Comedy|Drama|Horror\n69746,Watchmen: Tales of the Black Freighter (2009),Action|Adventure|Animation|Horror\n69757,(500) Days of Summer (2009),Comedy|Drama|Romance\n69761,Through the Olive Trees (Zire darakhatan zeyton) (1994),Drama\n69784,Brüno (Bruno) (2009),Comedy\n69805,\"Librarian, The: The Curse of the Judas Chalice (2008)\",Action|Adventure|Fantasy\n69821,Men of War (1994),Action|Drama\n69844,Harry Potter and the Half-Blood Prince (2009),Adventure|Fantasy|Mystery|Romance|IMAX\n69849,Roots (1977),Drama|War\n69908,\"Group, The (1966)\",Drama\n69945,\"Fast and the Furious, The (1955)\",Crime|Mystery\n69951,\"Imaginarium of Doctor Parnassus, The (2009)\",Drama|Fantasy\n69974,Shiver (Eskalofrío) (2008),Horror|Thriller\n70121,'Neath the Arizona Skies (1934),Western\n70159,Orphan (2009),Drama|Horror|Mystery|Thriller\n70183,\"Ugly Truth, The (2009)\",Comedy|Drama|Romance\n70188,Wild River (1960),Drama|Romance\n70201,High Hopes (1988),Comedy\n70282,Aliens in the Attic (2009),Adventure|Children|Fantasy|Sci-Fi\n70286,District 9 (2009),Mystery|Sci-Fi|Thriller\n70293,Julie & Julia (2009),Comedy|Drama|Romance\n70305,Race to Witch Mountain (2009),Adventure|Children|Fantasy|Sci-Fi|Thriller\n70336,G.I. Joe: The Rise of Cobra (2009),Action|Adventure|Sci-Fi|Thriller\n70344,Cold Souls (2009),Comedy|Drama\n70418,Introducing Dorothy Dandridge (1999),Drama|Musical|Romance\n70465,Jerusalema (Gangster's Paradise: Jerusalema) (2008),Action|Crime|Drama\n70488,Wings of Hope (Julianes Sturz in den Dschungel) (2000),Adventure|Documentary\n70533,Evangelion: 1.0 You Are (Not) Alone (Evangerion shin gekijôban: Jo) (2007),Action|Animation|Sci-Fi\n70545,\"Deal, The (2008)\",Comedy\n70565,\"Goods: Live Hard, Sell Hard, The (2009)\",Comedy\n70567,Adam (2009),Drama|Romance\n70597,Gigantic (2008),Comedy|Romance\n70599,\"Time Traveler's Wife, The (2009)\",Drama|Romance|Sci-Fi\n70663,\"I Love You, Beth Cooper (2009)\",Comedy|Romance\n70678,Huhwihaji Anha (No Regret) (2006),Drama\n70697,G-Force (2009),Action|Adventure|Children|Fantasy\n70728,Bronson (2009),Action|Comedy|Drama|Thriller\n70751,Little Richard (2000),Drama\n70762,\"Curiosity of Chance, The (2006)\",Comedy\n70846,Lorna's Silence (Le silence de Lorna) (2008),Drama\n70862,It Might Get Loud (2008),Documentary\n70898,Post Grad (2009),Comedy\n70927,To Each His Own Cinema (Chacun son cinéma ou Ce petit coup au coeur quand la lumière s'éteint et que le film commence) (2007),Comedy|Drama\n70946,Troll 2 (1990),Fantasy|Horror\n70984,Taking Woodstock (2009),Comedy\n70994,Halloween II (2009),Horror|Thriller\n71033,\"Secret in Their Eyes, The (El secreto de sus ojos) (2009)\",Crime|Drama|Mystery|Romance|Thriller\n71057,9 (2009),Adventure|Animation|Sci-Fi\n71102,\"Three Musketeers, The (1933)\",Action|Adventure|Thriller\n71106,Frequently Asked Questions About Time Travel (2009),Comedy|Sci-Fi\n71108,\"White Ribbon, The (Das weiße Band) (2009)\",Drama|Mystery\n71131,\"Most Hated Family in America, The (2007)\",Documentary\n71135,Pandorum (2009),Horror|Sci-Fi|Thriller\n71156,\"Men Who Stare at Goats, The (2009)\",Action|Comedy|Drama\n71180,Padre padrone (1977),Drama\n71205,Jennifer's Body (2009),Comedy|Horror|Sci-Fi|Thriller\n71211,\"Informant!, The (2009)\",Comedy|Crime|Drama|Thriller\n71248,Extract (2009),Comedy\n71252,\"Final Destination, The (Final Destination 4) (Final Destination in 3-D, The) (2009)\",Horror|Thriller\n71254,Gamer (2009),Action|Sci-Fi|Thriller\n71264,Cloudy with a Chance of Meatballs (2009),Animation|Children|Fantasy|IMAX\n71282,\"Food, Inc. (2008)\",Documentary\n71304,Thirst (Bakjwi) (2009),Drama|Horror\n71318,Terra (a.k.a. Battle for Terra) (2007),Adventure|Animation|Sci-Fi\n71379,Paranormal Activity (2009),Horror|Thriller\n71390,\"Not Quite Hollywood: The Wild, Untold Story of Ozploitation! (2008)\",Documentary\n71404,\"3 Worlds of Gulliver, The (1960)\",Adventure|Fantasy\n71429,World's Greatest Dad (2009),Comedy|Drama\n71433,\"Black God, White Devil (Deus e o Diabo na Terra do Sol) (1964)\",Adventure|Crime|Drama|Western\n71438,Still Walking (Aruitemo aruitemo) (2008),Drama\n71460,Wanted (2009),Action|Romance\n71462,\"Cove, The (2009)\",Documentary\n71464,\"Serious Man, A (2009)\",Comedy|Drama\n71466,City Island (2009),Comedy|Drama\n71468,Ink (2009),Action|Fantasy|Sci-Fi\n71490,Grace (2009),Drama|Horror|Thriller\n71494,\"Haunted World of El Superbeasto, The (2009)\",Action|Animation|Comedy|Horror|Thriller\n71518,Whip It (2009),Comedy|Drama\n71520,\"Invention of Lying, The (2009)\",Comedy\n71525,A-Haunting We Will Go (1942),Comedy\n71530,Surrogates (2009),Action|Sci-Fi|Thriller\n71533,Next Day Air (2009),Action|Comedy|Crime\n71535,Zombieland (2009),Action|Comedy|Horror\n71573,Whiteout (2009),Action|Crime|Drama|Mystery|Thriller\n71579,\"Education, An (2009)\",Drama|Romance\n71640,Burma VJ: Reporting from a Closed Country (Burma VJ: Reporter i et lukket land) (2008),Documentary\n71650,Werner Herzog Eats His Shoe (1980),Documentary\n71668,Couples Retreat (2009),Comedy|Romance\n71700,Deadgirl (2008),Horror\n71732,I Sell the Dead (2008),Comedy|Horror\n71745,Where the Wild Things Are (2009),Adventure|Children|Drama|Fantasy|IMAX\n71755,Earth Entranced (Terra em Transe) (1967),Drama\n71804,Reckless (1984),Comedy|Drama|Romance\n71810,Legionnaire (1998),Action|Adventure|Drama|War\n71823,\"New York, I Love You (2009)\",Drama|Romance\n71838,Law Abiding Citizen (2009),Drama|Thriller\n71876,Amelia (2009),Drama\n71899,Mary and Max (2009),Animation|Comedy|Drama\n72011,Up in the Air (2009),Drama|Romance\n72043,Monsters vs Aliens: Mutant Pumpkins from Outer Space (2009),Animation|Comedy|Sci-Fi\n72104,Balance (1989),Animation|Drama|Mystery|Sci-Fi|Thriller\n72109,Vampire Girl vs. Frankenstein Girl (Kyûketsu Shôjo tai Shôjo Furanken) (2009),Action|Comedy|Horror|Romance\n72129,Saw VI (2009),Crime|Horror|Mystery|Thriller\n72131,Michael Jackson's This Is It (2009),Documentary|Musical|IMAX\n72165,Cirque du Freak: The Vampire's Assistant (2009),Action|Adventure|Comedy|Fantasy|Horror|Thriller\n72169,Good Hair (2009),Comedy|Documentary\n72171,Black Dynamite (2009),Action|Comedy\n72176,Big Fan (2009),Comedy|Crime|Drama\n72209,Astro Boy (2009),Action|Animation|Children|Sci-Fi\n72224,Gentlemen Broncos (2009),Comedy\n72226,Fantastic Mr. Fox (2009),Adventure|Animation|Children|Comedy|Crime\n72294,\"Christmas Carol, A (2009)\",Animation|Children|Drama|Fantasy|IMAX\n72308,Battlestar Galactica: The Plan (2009),Action|Adventure|Drama|Sci-Fi\n72356,Partly Cloudy (2009),Animation|Children|Comedy|Fantasy\n72367,Grey Gardens (2009),Drama\n72378,2012 (2009),Action|Drama|Sci-Fi|Thriller\n72380,\"Box, The (2009)\",Drama|Horror|Mystery|Sci-Fi|Thriller\n72386,Broken Embraces (Los abrazos rotos) (2009),Drama|Romance|Thriller\n72393,\"Fourth Kind, The (2009)\",Horror|Mystery|Sci-Fi|Thriller\n72395,Precious (2009),Drama\n72405,Bad Lieutenant: Port of Call New Orleans (2009),Crime|Drama\n72407,\"Twilight Saga: New Moon, The (2009)\",Drama|Fantasy|Horror|Romance|Thriller\n72479,\"Messenger, The (2009)\",Drama|Romance|War\n72489,Ninja Assassin (2009),Action|Crime|Drama|Thriller\n72603,Merry Madagascar (2009),Animation\n72605,Brothers (2009),Drama|Thriller|War\n72612,\"Fly, The (Légy, A) (1980)\",Animation|Comedy\n72626,\"Billy Blazes, Esq. (1919)\",Comedy|Western\n72630,Sleep Dealer (2008),Sci-Fi\n72641,\"Blind Side, The  (2009)\",Drama\n72647,Zorn's Lemma (1970),Drama\n72683,Limit (Limite) (1931),Drama\n72694,Shrink (2009),Drama\n72696,Old Dogs (2009),Comedy\n72701,Planet 51 (2009),Adventure|Animation|Children|Comedy|Sci-Fi\n72720,\"Single Man, A (2009)\",Drama\n72731,\"Lovely Bones, The (2009)\",Crime|Drama|Fantasy|Horror|Thriller\n72733,Invictus (2009),Drama\n72737,\"Princess and the Frog, The (2009)\",Animation|Children|Fantasy|Musical|Romance\n72741,Everybody's Fine (2009),Drama\n72762,Armored (2009),Action|Drama|Thriller\n72781,Red Chapel (Røde kapel) (2006),Comedy|Documentary\n72880,Flaming Creatures (1963),Drama\n72919,Did You Hear About the Morgans? (2009),Comedy|Crime|Drama|Romance\n72947,Make the Yuletide Gay (2009),Comedy|Romance\n72998,Avatar (2009),Action|Adventure|Sci-Fi|IMAX\n73015,It's Complicated (2009),Comedy|Romance\n73017,Sherlock Holmes (2009),Action|Crime|Mystery|Thriller\n73023,Crazy Heart (2009),Drama|Romance\n73042,Alvin and the Chipmunks: The Squeakquel (2009),Animation|Children|Comedy|Musical\n73101,Looking for Eric (2009),Comedy|Drama|Fantasy\n73106,American Pie Presents: The Book of Love (American Pie 7: The Book of Love) (2009),Comedy\n73168,Carriers (2009),Drama|Horror|Thriller\n73211,Pontypool (2008),Horror|Thriller\n73266,Youth in Revolt (2009),Comedy|Drama|Romance\n73268,Daybreakers (2010),Action|Drama|Horror|Thriller\n73276,\"Age of Stupid, The (2009)\",Documentary\n73290,Hachiko: A Dog's Story (a.k.a. Hachi: A Dog's Tale) (2009),Drama\n73319,Leap Year (2010),Comedy|Romance\n73321,\"Book of Eli, The (2010)\",Action|Adventure|Drama\n73323,\"Girl Who Kicked the Hornet's Nest, The (Luftslottet som sprängdes) (2009)\",Action|Crime|Mystery\n73344,\"Prophet, A (Un Prophète) (2009)\",Crime|Drama\n73386,Staten Island (2009),Crime|Drama\n73392,Collapse (2009),Documentary\n73469,Mr. Warmth: The Don Rickles Project (2007),Documentary\n73488,Blood: The Last Vampire (2009),Action|Horror|Thriller\n73531,\"Last of England, The (1988)\",Drama\n73572,\"My Son, My Son, What Have Ye Done (2009)\",Drama|Horror\n73587,Soul Kitchen (2009),Comedy\n73664,Dragon Hunters (Chasseurs de dragons) (2008),Adventure|Animation|Children\n73741,Ninja (2009),Action|Crime|Drama|Thriller\n73759,Hellsing Ultimate OVA Series (2006),Action|Animation|Horror\n73808,\"Chaser, The (Chugyeogja) (2008)\",Crime|Drama|Thriller\n73854,\"Rudolph, the Red-Nosed Reindeer (1964)\",Adventure|Animation|Children|Fantasy|Musical\n73860,Nowhere Boy (2009),Drama\n73881,3 Idiots (2009),Comedy|Drama|Romance\n73929,Legion (2010),Action|Fantasy|Horror|Thriller\n74089,Peter Pan (1960),Children|Fantasy|Musical\n74115,Dante's Inferno Animated (2010),Action|Animation|Fantasy\n74152,Zach Galifianakis: Live at the Purple Onion (2006),Comedy|Documentary\n74154,When in Rome (2010),Comedy|Romance\n74156,Edge of Darkness (2010),Drama|Thriller\n74228,Triangle (2009),Drama|Horror|Mystery|Thriller\n74275,I Love You Phillip Morris (2009),Comedy|Drama|Romance\n74282,Anne of Green Gables: The Sequel (a.k.a. Anne of Avonlea) (1987),Children|Drama|Romance\n74324,Temple Grandin (2010),Drama\n74327,\"First Day of the Rest of Your Life, The (Le premier jour du reste de ta vie) (2008)\",Comedy|Drama\n74370,\"House of the Devil, The (2009)\",Horror|Thriller\n74416,Fish Tank (2009),Drama\n74438,\"Legend of the Red Dragon (a.k.a. New Legend of Shaolin, The) (Hong Xi Guan: Zhi Shao Lin wu zu) (1994)\",Action|Adventure|Comedy|Drama|Romance\n74450,Valentine's Day (2010),Comedy|Romance\n74452,\"Wolfman, The (2010)\",Horror|Thriller\n74458,Shutter Island (2010),Drama|Mystery|Thriller\n74486,$9.99 (2008),Animation\n74508,Persuasion (2007),Drama|Romance\n74510,\"Girl Who Played with Fire, The (Flickan som lekte med elden) (2009)\",Action|Crime|Drama|Mystery|Thriller\n74530,Percy Jackson & the Olympians: The Lightning Thief (2010),Adventure|Fantasy\n74532,Cop Out (2010),Action|Comedy|Crime\n74545,\"Ghost Writer, The (2010)\",Drama|Mystery|Thriller\n74580,\"Spy Next Door, The (2010)\",Action|Children|Comedy\n74624,Agora (2009),Adventure|Drama|Romance\n74630,Tom Thumb (1958),Children|Fantasy|Musical\n74649,Shades of Ray (2008),Comedy|Drama|Romance\n74668,District 13: Ultimatum (Banlieue 13 - Ultimatum) (2009),Action|Sci-Fi\n74677,\"Yes Men Fix the World, The (2009)\",Documentary\n74685,\"Crazies, The (2010)\",Action|Drama|Horror|Sci-Fi|Thriller\n74688,Dear John (2010),Drama|Romance|War\n74698,Tooth Fairy (2010),Comedy|Fantasy\n74727,Gentlemen of Fortune (Dzhentlmeny udachi) (1972),Comedy|Crime|Drama|Mystery\n74740,Fermat's Room (La habitación de Fermat) (2007),Mystery|Thriller\n74754,\"Room, The (2003)\",Comedy|Drama|Romance\n74787,My Name is Khan (2010),Drama|Romance\n74789,Alice in Wonderland (2010),Adventure|Fantasy|IMAX\n74795,Green Zone (2010),Action|Drama|Thriller|War\n74851,From Paris with Love (2010),Action|Crime\n74868,Dorian Gray (2009),Drama|Horror|Sci-Fi\n74916,Greenberg (2010),Comedy|Drama\n74944,Brooklyn's Finest (2010),Crime|Drama|Thriller\n74946,She's Out of My League (2010),Comedy\n74948,Harry Brown (2009),Crime|Drama|Thriller\n75341,Remember Me (2010),Drama|Romance\n75349,Teenage Caveman (2002),Horror|Sci-Fi|Thriller\n75440,Will Ferrell: You're Welcome America - A Final Night with George W Bush (2009),Comedy\n75803,Our Family Wedding (2010),Comedy\n75805,\"Bounty Hunter, The (2010)\",Action|Comedy|Romance\n75813,Leaves of Grass (2009),Comedy|Crime|Drama|Thriller\n75816,Women in Trouble (2009),Comedy\n75823,Combat Shock (1986),Drama|Horror|War\n75983,North Face (Nordwand) (2008),Adventure|Drama\n75985,Repo Men (2010),Action|Sci-Fi|Thriller\n75990,\"Apprenticeship of Duddy Kravitz, The (1974)\",Comedy|Drama\n76030,Case 39 (2009),Horror|Thriller\n76054,Oceans (Océans) (2009),Documentary|Drama\n76060,\"Slammin' Salmon, The (2009)\",Comedy\n76077,Hot Tub Time Machine (2010),Comedy|Sci-Fi\n76091,Mother (Madeo) (2009),Crime|Drama|Mystery|Thriller\n76093,How to Train Your Dragon (2010),Adventure|Animation|Children|Fantasy|IMAX\n76111,About Elly (Darbareye Elly) (2009),Drama|Mystery\n76173,Micmacs (Micmacs à tire-larigot) (2009),Comedy|Crime\n76175,Clash of the Titans (2010),Action|Adventure|Drama|Fantasy\n76210,Defendor (2009),Comedy|Crime|Drama\n76251,Kick-Ass (2010),Action|Comedy\n76272,Five Minutes of Heaven (2009),Crime|Drama|Thriller\n76293,Date Night (2010),Action|Comedy|Romance\n76303,Mark of the Devil (Hexen bis aufs Blut gequält) (1970),Drama|Horror\n76738,Steam of Life (Miesten vuoro) (2010),Documentary\n76763,\"Runaways, The (2010)\",Drama|Musical\n77191,Death at a Funeral (2010),Comedy\n77201,Valhalla Rising (2009),Action|Drama|War\n77206,Diary of a Wimpy Kid (2010),Children|Comedy\n77291,Aria (1987),Comedy|Drama\n77307,Dogtooth (Kynodontas) (2009),Drama\n77359,Red Riding: 1983 (2009),Crime|Drama|Mystery\n77364,\"Losers, The (2010)\",Action|Adventure|Drama|Mystery|Thriller\n77414,\"Last Song, The (2010)\",Drama|Romance\n77421,Cyrus (2010),Comedy|Drama|Romance\n77427,\"Human Centipede, The (First Sequence) (2009)\",Horror\n77435,This Is the Army (1943),Comedy|Musical|War\n77455,Exit Through the Gift Shop (2010),Comedy|Documentary\n77561,Iron Man 2 (2010),Action|Adventure|Sci-Fi|Thriller|IMAX\n77658,Cosmos (1980),Documentary\n77798,\"Nightmare on Elm Street, A (2010)\",Fantasy|Horror|Thriller\n77800,Four Lions (2010),Comedy|Drama\n77808,Bobby Deerfield (1977),Drama|Romance\n77810,Diary of a Nymphomaniac (Diario de una Ninfómana) (2008),Drama\n77837,You Don't Know Jack (2010),Drama\n77846,12 Angry Men (1997),Crime|Drama\n77866,Robin Hood (2010),Action|Adventure|Drama|Romance|War\n77907,\"Red Chapel, The (Røde kapel, Det) (2009)\",Comedy|Documentary\n78034,Cemetery Junction (2010),Comedy|Drama|Romance\n78039,Blue Valentine (2010),Drama|Romance\n78041,Killers (2010),Action|Comedy\n78088,Buried (2010),Mystery|Thriller\n78101,Life After Tomorrow (2006),Documentary\n78105,Prince of Persia: The Sands of Time (2010),Action|Adventure|Fantasy|Romance|IMAX\n78111,Artists and Models (1955),Comedy|Musical\n78116,Please Give (2010),Comedy|Drama\n78122,Peter & the Wolf (2006),Animation|Musical\n78160,Ricky Gervais Live: Animals (2003),Comedy\n78174,Sex and the City 2 (2010),Comedy|Drama|Romance\n78209,Get Him to the Greek (2010),Comedy\n78218,Unthinkable (2010),Drama|Thriller\n78264,\"Back-up Plan, The (2010)\",Comedy|Romance\n78266,Splice (2009),Horror|Sci-Fi|Thriller\n78316,Letters to Juliet (2010),Drama|Romance\n78321,\"41-Year-Old Virgin Who Knocked Up Sarah Marshall and Felt Superbad About It, The (2010)\",Comedy\n78349,Exam (2009),Mystery|Thriller\n78467,Jonah Hex (2010),Action|Drama|Thriller|Western\n78469,\"A-Team, The (2010)\",Action|Comedy|Thriller\n78499,Toy Story 3 (2010),Adventure|Animation|Children|Comedy|Fantasy|IMAX\n78517,Joan Rivers: A Piece of Work (2010),Documentary\n78544,Ricky Gervais Live 3: Fame (2007),Comedy\n78574,Winter's Bone (2010),Drama|Thriller\n78637,Shrek Forever After (a.k.a. Shrek: The Final Chapter) (2010),Adventure|Animation|Children|Comedy|Fantasy|IMAX\n78653,Everyone Else (Alle Anderen) (2009),Drama|Romance\n78703,TiMER (2009),Comedy|Drama|Fantasy|Romance\n78729,24: Redemption (2008),Action|Adventure|Crime|Drama|Thriller\n78772,\"Twilight Saga: Eclipse, The (2010)\",Fantasy|Romance|Thriller|IMAX\n78829,\"Betrayal, The (Nerakhoon) (2008)\",Documentary\n78836,Enter the Void (2009),Drama\n78893,\"Last Airbender, The (2010)\",Action|Adventure|Fantasy\n78903,State of Siege (État de siège) (1972),Drama|Thriller\n78967,\"Island of Dr. Moreau, The (1977)\",Adventure|Fantasy|Horror|Romance|Sci-Fi|Thriller\n79006,Empire of Dreams: The Story of the 'Star Wars' Trilogy (2004),Documentary\n79008,South Park: Imaginationland (2008),Animation|Comedy|Fantasy\n79029,Kurt Cobain About a Son (2006),Documentary|Musical\n79057,Predators (2010),Action|Sci-Fi|Thriller\n79091,Despicable Me (2010),Animation|Children|Comedy|Crime\n79132,Inception (2010),Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX\n79134,Grown Ups (2010),Comedy\n79136,Thirst (2008),Drama\n79139,\"Sorcerer's Apprentice, The (2010)\",Action|Adventure|Children|Comedy|Fantasy\n79163,Swedish Auto (2006),Drama|Romance\n79185,Knight and Day (2010),Action|Comedy|Romance\n79203,Nightwatching (2007),Drama|Mystery\n79224,\"Karate Kid, The (2010)\",Action|Children|Drama\n79242,\"Kids Are All Right, The (2010)\",Comedy|Drama\n79251,\"Serbian Film, A (Srpski film) (2010)\",Horror|Thriller\n79259,Cherrybomb (2009),Drama|Thriller\n79274,Batman: Under the Red Hood (2010),Action|Animation\n79293,Salt (2010),Action|Thriller\n79299,\"No. 1 Ladies' Detective Agency, The (2008)\",Comedy|Crime|Mystery\n79318,Winnebago Man (2009),Comedy|Documentary\n79357,Mr. Nobody (2009),Drama|Fantasy|Romance|Sci-Fi\n79428,Dinner for Schmucks (2010),Comedy\n79469,\"Northerners, The (De noorderlingen) (1992)\",Comedy\n79553,Ip Man 2 (2010),Action\n79588,Charlie St. Cloud (2010),Drama|Fantasy|Romance\n79590,\"Rebound, The (2009)\",Comedy|Romance\n79592,\"Other Guys, The (2010)\",Action|Comedy\n79677,\"Two Escobars, The (2010)\",Crime|Documentary\n79686,All Tomorrow's Parties (2009),Documentary|Musical\n79695,\"Expendables, The (2010)\",Action|Adventure|Thriller\n79702,Scott Pilgrim vs. the World (2010),Action|Comedy|Fantasy|Musical|Romance\n79720,Animal Kingdom (2010),Crime|Drama\n79796,Centurion (2010),Action|Adventure|Drama|Thriller|War\n79824,Babies (Bébé(s)) (2010),Documentary\n79868,Heartless (2009),Fantasy|Horror|Mystery|Thriller\n79879,Piranha (Piranha 3D) (2010),Action|Horror|Thriller\n79946,\"Joneses, The (2009)\",Comedy|Drama\n80026,Tekken (2010),Action|Sci-Fi\n80083,Dragon Ball Z: Dead Zone (Doragon bôru Z 1: Ora no Gohan wo kaese) (1989),Action|Adventure|Animation|Fantasy|Sci-Fi\n80126,\"American, The (2010)\",Drama|Thriller\n80166,\"Switch, The (2010)\",Comedy|Romance\n80185,GasLand (2010),Documentary\n80217,Hated (1994),Documentary\n80219,Machete (2010),Action|Adventure|Comedy|Crime|Thriller\n80241,Going the Distance (2010),Comedy|Romance\n80346,\"Song to Remember, A (1945)\",Drama\n80350,Vampires Suck (2010),Comedy\n80363,Resident Evil: Afterlife (2010),Action|Horror|Sci-Fi|Thriller|IMAX\n80463,\"Social Network, The (2010)\",Drama\n80489,\"Town, The (2010)\",Crime|Drama|Thriller\n80549,Easy A (2010),Comedy|Romance\n80551,Eat Pray Love (2010),Drama|Romance\n80553,Howl (2010),Drama\n80572,I'm Still Here (2010),Comedy|Drama\n80584,\"Patrik Age 1.5 (Patrik 1,5) (2008)\",Comedy|Drama|Romance\n80586,Flipped (2010),Comedy|Drama|Romance\n80590,Wall Street: Money Never Sleeps (2010),Drama\n80599,Buster Keaton: A Hard Act to Follow (1987),Documentary\n80615,Legend of the Guardians: The Owls of Ga'Hoole (2010),Adventure|Animation|Fantasy|IMAX\n80693,It's Kind of a Funny Story (2010),Comedy|Drama\n80717,Voyeur (Abel) (1986),Comedy\n80727,Middle Men (2009),Comedy|Crime|Drama\n80736,\"Poughkeepsie Tapes, The (2007)\",Horror|Mystery|Thriller\n80748,Alice in Wonderland (1933),Adventure|Children|Fantasy\n80831,Let Me In (2010),Drama|Horror|Mystery\n80839,Secretariat (2010),Adventure|Drama\n80844,Lake Mungo (2008),Drama|Mystery|Thriller\n80846,Devil (2010),Horror|Mystery|Thriller\n80858,You Again (2010),Comedy\n80860,Life as We Know It (2010),Comedy|Romance\n80862,Catfish (2010),Documentary|Mystery\n80864,You Will Meet a Tall Dark Stranger (2010),Comedy|Romance\n80906,Inside Job (2010),Documentary\n80917,Monsters (2010),Drama|Sci-Fi\n80969,Never Let Me Go (2010),Drama|Romance|Sci-Fi\n81018,\"Illusionist, The (L'illusionniste) (2010)\",Animation\n81054,Love Is Colder Than Death (Liebe ist kälter als der Tod) (1969),Comedy|Crime|Romance\n81083,Kaboom (2010),Comedy|Sci-Fi\n81132,Rubber (2010),Action|Adventure|Comedy|Crime|Drama|Film-Noir|Horror|Mystery|Thriller|Western\n81138,7 Days (Les 7 jours du talion) (2010),Thriller\n81156,Jackass 3D (2010),Action|Comedy|Documentary\n81158,Restrepo (2010),Documentary|War\n81191,Waiting for 'Superman' (2010),Documentary\n81229,Red (2010),Action|Comedy\n81417,Paranormal Activity 2 (2010),Horror|IMAX\n81512,Hereafter (2010),Drama|Fantasy\n81516,Black Death (2010),Adventure|Drama|Horror|Mystery\n81535,Saw VII 3D - The Final Chapter (2010),Horror|Mystery|Thriller\n81537,Due Date (2010),Comedy\n81562,127 Hours (2010),Adventure|Drama|Thriller\n81564,Megamind (2010),Action|Animation|Children|Comedy|Sci-Fi|IMAX\n81591,Black Swan (2010),Drama|Thriller\n81641,Fair Game (2010),Drama|Thriller\n81660,1990: The Bronx Warriors (1990: I guerrieri del Bronx) (1982),Action|Sci-Fi\n81782,Unstoppable (2010),Action|Drama|Thriller\n81784,Morning Glory (2010),Comedy|Drama|Romance\n81786,Certified Copy (Copie conforme) (2010),Drama\n81788,\"Next Three Days, The (2010)\",Crime|Drama|Romance|Thriller\n81819,Biutiful (2010),Drama\n81831,\"First Beautiful Thing, The (La prima cosa bella) (2010)\",Comedy|Drama\n81834,Harry Potter and the Deathly Hallows: Part 1 (2010),Action|Adventure|Fantasy|IMAX\n81845,\"King's Speech, The (2010)\",Drama\n81847,Tangled (2010),Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX\n81898,\"Agony and the Ecstasy of Phil Spector, The (2009)\",Documentary\n81910,\"Art of the Steal, The (2009)\",Documentary\n81932,\"Fighter, The (2010)\",Drama\n81949,\"Romantics, The (2010)\",Comedy|Drama|Romance\n82035,Cocaine Cowboys II: Hustlin' With the Godmother (2008),Crime|Documentary\n82037,\"Tillman Story, The (2010)\",Documentary\n82041,\"Loved Ones, The (2009)\",Horror\n82093,London Boulevard (2010),Crime|Romance\n82095,Skyline (2010),Sci-Fi|Thriller\n82150,Bunny and the Bull (2009),Adventure|Comedy|Drama\n82152,Beastly (2011),Drama|Fantasy|Romance\n82167,Love and Other Drugs (2010),Comedy|Drama|Romance\n82169,\"Chronicles of Narnia: The Voyage of the Dawn Treader, The (2010)\",Adventure|Children|Fantasy\n82173,Tiny Furniture (2010),Comedy\n82202,\"Tourist, The (2010)\",Drama|Thriller\n82242,Rare Exports: A Christmas Tale (Rare Exports) (2010),Action|Comedy\n82313,Nightfall (1957),Crime|Drama|Film-Noir\n82378,All Good Things (2010),Drama|Mystery|Thriller\n82459,True Grit (2010),Western\n82461,Tron: Legacy (2010),Action|Adventure|Sci-Fi|IMAX\n82463,Another Year (2010),Drama\n82499,How Do You Know (2010),Comedy|Drama|Romance\n82527,Barney's Version (2010),Drama\n82534,\"Company Men, The (2010)\",Drama\n82608,Zerophilia (2005),Comedy|Romance\n82667,I Saw the Devil (Akmareul boatda) (2010),Crime|Thriller\n82852,Little Fockers (2010),Comedy\n82854,Gulliver's Travels (2010),Adventure|Comedy|Fantasy\n82931,\"Last Circus, The (Balada triste de trompeta) (Sad Trumpet Ballad, A) (2010)\",Comedy|Drama|War\n82934,\"Most Dangerous Man in America: Daniel Ellsberg and the Pentagon Papers, The (2009)\",Documentary\n83086,Burlesque (2010),Drama|Musical|Romance\n83096,\"Haunted House, The (1921)\",Comedy\n83132,\"Secret World of Arrietty, The (Kari-gurashi no Arietti) (2010)\",Animation|Children|Fantasy\n83134,Tucker & Dale vs Evil (2010),Comedy|Horror\n83177,Yogi Bear (2010),Children|Comedy\n83270,Made in Dagenham (2010),Comedy|Drama\n83293,Waste Land (2010),Documentary\n83318,\"Goat, The (1921)\",Comedy\n83322,\"Boat, The (1921)\",Comedy\n83332,Who Is Harry Nilsson (And Why Is Everybody Talkin' About Him?) (2010),Documentary\n83349,\"Green Hornet, The (2011)\",Action|Comedy|Crime|Fantasy|Thriller|IMAX\n83359,\"Play House, The (1921)\",Comedy\n83361,\"Paleface, The (1922)\",Comedy\n83374,\"Warrior's Way, The (2010)\",Action|Fantasy|Western\n83411,Cops (1922),Comedy\n83480,Season of the Witch (2011),Adventure|Drama|Fantasy\n83506,Ricky Gervais Live 4: Science (2010),Comedy\n83603,Fern flowers (Fleur de fougère) (1949),Animation\n83613,Cowboys & Aliens (2011),Action|Sci-Fi|Thriller|Western|IMAX\n83803,Day & Night (2010),Animation|Children\n83827,Marwencol (2010),Documentary\n83829,Scorpio Rising (1964),(no genres listed)\n83910,\"Dilemma, The (2011)\",Comedy|Drama\n83976,\"Trip, The (2010)\",Comedy|Drama\n84098,Phone Call from a Stranger (1952),Drama\n84116,Poetry (Shi) (2010),Drama\n84152,Limitless (2011),Sci-Fi|Thriller\n84154,Transcendent Man (2009),Documentary\n84160,Wishful Drinking (2010),Documentary\n84187,Evangelion: 2.0 You Can (Not) Advance (Evangerion shin gekijôban: Ha) (2009),Action|Animation|Drama|Sci-Fi\n84236,\"White Stripes Under Great White Northern Lights, The (2009)\",Documentary\n84304,What Women Want (a.k.a. I Know a Woman's Heart) (2011),Comedy|Romance\n84312,Home Alone 4 (2002),Children|Comedy|Crime\n84374,No Strings Attached (2011),Comedy|Romance\n84392,\"Lincoln Lawyer, The (2011)\",Crime|Drama|Thriller\n84395,\"Rite, The (2011)\",Drama|Horror|Thriller\n84414,All-Star Superman (2011),Action|Adventure|Animation|Sci-Fi\n84506,Silent Souls (Ovsyanki) (2010),Drama\n84601,Unknown (2011),Drama|Mystery|Thriller\n84615,Cedar Rapids (2011),Comedy\n84637,Gnomeo & Juliet (2011),Adventure|Animation|Children|Comedy|Fantasy|Romance\n84696,Burke and Hare (2010),Comedy|Thriller\n84772,Paul (2011),Adventure|Comedy|Sci-Fi\n84844,Brother 2 (Brat 2) (2000),Crime|Drama\n84847,Emma (2009),Comedy|Drama|Romance\n84944,Rango (2011),Action|Adventure|Animation|Children|Comedy|Western\n84950,Take Me Home Tonight (2011),Comedy|Drama\n84952,Confessions (Kokuhaku) (2010),Drama|Horror\n84954,\"Adjustment Bureau, The (2011)\",Romance|Sci-Fi|Thriller\n85016,Cropsey (2009),Documentary|Horror\n85020,\"Mechanic, The (2011)\",Action|Drama|Thriller\n85022,Hall Pass (2011),Comedy\n85025,\"Eagle, The (2011)\",Adventure|Drama\n85056,I Am Number Four (2011),Action|Sci-Fi|Thriller|IMAX\n85131,Battle: Los Angeles (2011),Action|Sci-Fi|War\n85179,Summer Wars (Samâ wôzu) (2009),Adventure|Animation|Comedy|Sci-Fi\n85213,\"Sunset Limited, The (2011)\",Drama\n85261,Mars Needs Moms (2011),Action|Adventure|Animation|Children|Comedy|Sci-Fi|IMAX\n85316,Winnie the Pooh and Tigger Too (1974),Animation|Children\n85342,Elite Squad: The Enemy Within (Tropa de Elite 2 - O Inimigo Agora É Outro) (2010),Action|Crime|Drama\n85367,Just Go with It (2011),Comedy|Romance\n85394,Cave of Forgotten Dreams (2010),Documentary\n85397,Red Riding Hood (2011),Fantasy|Horror|Mystery|Thriller\n85399,\"Big Mommas: Like Father, Like Son (2011)\",Comedy\n85401,Super (2010),Action|Comedy|Drama\n85412,\"Troll Hunter, The (Trolljegeren) (2010)\",Fantasy|Horror\n85414,Source Code (2011),Action|Drama|Mystery|Sci-Fi|Thriller\n85438,Jane Eyre (2011),Drama|Romance\n85510,Sucker Punch (2011),Action|Fantasy|Thriller|IMAX\n85572,\"New Daughter, The (2009)\",Horror|Thriller\n85612,Eden (2006),Drama|Romance\n85736,BURN-E (2008),Adventure|Animation|Children|Sci-Fi\n85774,Senna (2010),Documentary\n85780,Family Guy Presents: It's a Trap (2010),Animation|Comedy|Sci-Fi\n85788,Insidious (2010),Fantasy|Horror|Thriller\n85796,Hobo with a Shotgun (2011),Action|Adventure|Crime|Thriller\n85881,Win Win (2011),Comedy|Drama\n86000,Boy (2010),Comedy|Drama\n86014,Diary of a Wimpy Kid: Rodrick Rules (2011),Comedy\n86028,Henry's Crime (2010),Comedy|Crime\n86059,Hop (2011),Animation|Children|Comedy\n86142,13 Assassins (Jûsan-nin no shikaku) (2010),Action\n86190,Hanna (2011),Action|Adventure|Mystery|Thriller\n86290,American: The Bill Hicks Story (2009),Comedy|Documentary\n86293,Arthur (2011),Comedy\n86298,Rio (2011),Adventure|Animation|Children|Comedy\n86320,Melancholia (2011),Drama|Sci-Fi\n86332,Thor (2011),Action|Adventure|Drama|Fantasy|IMAX\n86345,Louis C.K.: Hilarious (2010),Comedy\n86347,Louis C.K.: Chewed Up (2008),Comedy\n86377,Louis C.K.: Shameless (2007),Comedy\n86487,Mildred Pierce (2011),Drama\n86504,Voices from the List (2004),Documentary\n86548,Water for Elephants (2011),Drama|Romance\n86593,African Cats (2011),Adventure|Documentary\n86626,Socialism (Film socialisme) (2010),Drama\n86644,\"Fast Five (Fast and the Furious 5, The) (2011)\",Action|Crime|Drama|Thriller|IMAX\n86721,Idiots and Angels (2008),Animation|Drama|Fantasy\n86781,Incendies (2010),Drama|Mystery|War\n86817,Something Borrowed (2011),Comedy|Drama|Romance\n86833,Bridesmaids (2011),Comedy\n86835,Priest (2011),Action|Horror|Sci-Fi|Thriller\n86852,\"Beaver, The (2011)\",Drama\n86864,Mothra (Mosura) (1961),Adventure|Fantasy|Sci-Fi\n86880,Pirates of the Caribbean: On Stranger Tides (2011),Action|Adventure|Fantasy|IMAX\n86882,Midnight in Paris (2011),Comedy|Fantasy|Romance\n86884,\"Kid With a Bike, The (Le gamin au vélo) (2011)\",Drama\n86892,The Man from Nowhere (2010),Action|Crime|Thriller\n86898,\"Tree of Life, The (2011)\",Drama\n86911,\"Hangover Part II, The (2011)\",Comedy\n86982,Destroy All Monsters (Kaijû sôshingeki) (1968),Action|Sci-Fi|Thriller\n87192,Attack the Block (2011),Action|Comedy|Sci-Fi\n87205,\"Tunnel, The (2011)\",Drama|Horror|Thriller\n87218,He Ran All the Way (1951),Crime|Drama|Film-Noir\n87222,Kung Fu Panda 2 (2011),Action|Adventure|Animation|Children|Comedy|IMAX\n87232,X-Men: First Class (2011),Action|Adventure|Sci-Fi|Thriller|War\n87234,Submarine (2010),Comedy|Drama|Romance\n87298,Everything Must Go (2010),Comedy|Drama\n87304,Beginners (2010),Drama\n87306,Super 8 (2011),Mystery|Sci-Fi|Thriller|IMAX\n87383,Curly Top (1935),Children|Musical|Romance\n87430,Green Lantern (2011),Action|Adventure|Sci-Fi\n87444,Elektra Luxx (2010),Comedy\n87483,Mr. Popper's Penguins (2011),Comedy\n87485,Bad Teacher (2011),Comedy\n87520,Transformers: Dark of the Moon (2011),Action|Adventure|Sci-Fi|War|IMAX\n87522,Larry Crowne (2011),Comedy|Drama|Romance\n87529,Your Highness (2011),Action|Adventure|Comedy|Fantasy\n87598,\"Dolly Sisters, The (1945)\",Drama|Musical|Romance\n87660,Too Big to Fail (2011),Drama\n87785,Takers (2010),Action|Crime|Thriller\n87869,Horrible Bosses (2011),Comedy|Crime\n87876,Cars 2 (2011),Adventure|Animation|Children|Comedy|IMAX\n87884,Savage Messiah (1972),Drama\n87930,Page One: Inside the New York Times (2011),Documentary\n87975,Burn Notice: The Fall of Sam Axe (2011),Crime|Drama|Mystery\n88024,To Sleep with Anger (1990),Drama\n88106,Mahler (1974),Drama\n88118,\"Perfect Host, The (2010)\",Crime|Drama|Thriller\n88125,Harry Potter and the Deathly Hallows: Part 2 (2011),Action|Adventure|Drama|Fantasy|Mystery|IMAX\n88129,Drive (2011),Crime|Drama|Film-Noir|Thriller\n88140,Captain America: The First Avenger (2011),Action|Adventure|Sci-Fi|Thriller|War\n88163,\"Crazy, Stupid, Love. (2011)\",Comedy|Drama|Romance\n88179,One Day (2011),Drama|Romance\n88235,\"Guard, The (2011)\",Comedy|Crime\n88267,Winnie the Pooh (2011),Animation|Children|Comedy\n88272,\"Woman, The (2011)\",Horror\n88345,Mike's New Car (2002),Animation|Comedy\n88356,\"Smurfs, The (2011)\",Animation|Children|Comedy\n88380,Dylan Dog: Dead of Night (2010),Comedy|Horror|Mystery|Thriller\n88405,Friends with Benefits (2011),Comedy|Romance\n88672,Our Idiot Brother (2011),Comedy\n88682,\"Letter to Elia, A (2010)\",Documentary\n88744,Rise of the Planet of the Apes (2011),Action|Drama|Sci-Fi|Thriller\n88785,\"Change-Up, The (2011)\",Comedy\n88810,\"Help, The (2011)\",Drama\n88812,30 Minutes or Less (2011),Action|Comedy|Crime\n88879,Gantz (2011),Action|Horror|Sci-Fi\n88932,Final Destination 5 (2011),Horror|Thriller|IMAX\n88950,\"Conspirator, The (2010)\",Drama\n88954,\"Very Harold & Kumar 3D Christmas, A (2011)\",Comedy\n89000,Carancho (2010),Crime|Drama|Romance\n89030,Fright Night (2011),Comedy|Horror\n89039,Another Earth (2011),Drama|Romance|Sci-Fi\n89045,Rocky VI (1986) ,Comedy\n89047,Hesher (2010),Drama\n89072,Stake Land (2010),Horror\n89085,\"Debt, The (2011)\",Drama|Thriller\n89087,Colombiana (2011),Action|Adventure|Drama|Thriller\n89090,Bill Cunningham New York (2011),Documentary\n89102,Freakonomics (2010),Documentary\n89118,\"Skin I Live In, The (La piel que habito) (2011)\",Drama\n89194,Prom (2011),Comedy|Drama\n89203,Magic Trip (2011),Documentary\n89260,Project Nim (2011),Documentary\n89300,Win/win (2010),Drama\n89305,\"Inbetweeners Movie, The (2011)\",Adventure|Comedy\n89321,\"Future, The (2011)\",Drama\n89337,\"Interrupters, The (2011)\",Documentary\n89343,Red State (2011),Action|Crime|Horror|Thriller\n89356,Chinese Take-Out (Chinese Take-Away) (Un cuento chino) (2011),Comedy\n89388,I Don't Know How She Does It (2011),Comedy\n89408,April Love (1957),Comedy|Drama|Musical\n89427,Shark Night 3D (2011),Horror|Thriller\n89470,Contagion (2011),Sci-Fi|Thriller|IMAX\n89492,Moneyball (2011),Drama\n89678,Northanger Abbey (2007),Drama|Romance\n89745,\"Avengers, The (2012)\",Action|Adventure|Sci-Fi|IMAX\n89753,Tinker Tailor Soldier Spy (2011),Drama|Film-Noir|Thriller\n89759,\"Separation, A (Jodaeiye Nader az Simin) (2011)\",Drama\n89761,\"Dangerous Method, A (2011)\",Drama|Thriller\n89774,Warrior (2011),Drama\n89804,\"Ides of March, The (2011)\",Drama\n89837,Kill List (2011),Horror|Mystery|Thriller\n89840,Killer Elite (2011),Action|Thriller\n89864,50/50 (2011),Comedy|Drama\n89870,Clapham Junction (2007),Drama\n89881,Superman and the Mole-Men (1951),Children|Mystery|Sci-Fi\n89904,The Artist (2011),Comedy|Drama|Romance\n90057,Take Shelter (2011),Drama\n90061,\"Myth of the American Sleepover, The (2010)\",Comedy|Drama|Romance\n90249,Real Steel (2011),Action|Drama|Sci-Fi|IMAX\n90266,Buck (2011),Documentary\n90343,Footloose (2011),Comedy|Drama|Musical\n90345,\"Thing, The (2011)\",Horror|Mystery|Sci-Fi|Thriller\n90357,Tyrannosaur (2011),Drama\n90374,Martha Marcy May Marlene (2011),Drama|Thriller\n90376,We Need to Talk About Kevin (2011),Drama|Thriller\n90403,\"Three Musketeers, The (2011)\",Action|Adventure\n90405,In Time (2011),Crime|Sci-Fi|Thriller\n90428,Margaret (2011),Drama\n90430,Carnage (2011),Comedy|Drama\n90439,Margin Call (2011),Drama|Thriller\n90469,Paranormal Activity 3 (2011),Horror\n90522,Johnny English Reborn (2011),Adventure|Comedy|Thriller\n90524,Abduction (2011),Action|Drama|Mystery|Thriller\n90531,Shame (2011),Drama\n90576,What's Your Number? (2011),Comedy|Romance\n90600,Headhunters (Hodejegerne) (2011),Action|Crime|Thriller\n90603,Batman: Year One (2011),Action|Animation|Crime\n90647,Puss in Boots (2011),Adventure|Animation|Comedy|Fantasy|IMAX\n90717,Tower Heist (2011),Action|Comedy|Crime\n90719,J. Edgar (2011),Drama\n90738,\"Double, The (2011)\",Action|Crime|Drama|Mystery|Thriller\n90746,\"Adventures of Tintin, The (2011)\",Action|Animation|Mystery|IMAX\n90863,George Harrison: Living in the Material World (2011),Documentary\n90866,Hugo (2011),Children|Drama|Mystery\n90870,Trespass (2011),Crime|Drama|Thriller\n90888,Immortals (2011),Action|Drama|Fantasy\n90890,Jack and Jill (2011),Comedy\n90947,\"Oslo, August 31st (Oslo, 31. august) (2011)\",Drama\n91077,\"Descendants, The (2011)\",Comedy|Drama\n91094,\"Muppets, The (2011)\",Children|Comedy|Musical\n91104,\"Twilight Saga: Breaking Dawn - Part 1, The (2011)\",Adventure|Drama|Fantasy|Romance\n91126,War Horse (2011),Drama|War\n91128,\"Rum Diary, The (2011)\",Comedy|Drama|Thriller\n91134,My Week with Marilyn (2011),Drama\n91199,Weekend (2011),Drama|Romance\n91273,Bunraku (2010),Action|Drama|Fantasy\n91286,\"Little Colonel, The (1935)\",Children|Comedy|Crime|Drama\n91323,\"Sitter, The (2011)\",Comedy\n91325,Extremely Loud and Incredibly Close (2011),Drama\n91355,Asterix and the Vikings (Astérix et les Vikings) (2006),Adventure|Animation|Children|Comedy|Fantasy\n91414,Arthur Christmas (2011),Animation|Children|Comedy|Drama\n91470,Violet & Daisy (2011),Action|Drama\n91483,Bullet to the Head (2012),Action|Crime|Film-Noir\n91485,\"Expendables 2, The (2012)\",Action|Adventure\n91488,\"Snowman, The (1982)\",Animation|Children|Musical\n91500,The Hunger Games (2012),Action|Adventure|Drama|Sci-Fi|Thriller\n91505,Clone (Womb) (2010),Drama|Romance|Sci-Fi\n91529,\"Dark Knight Rises, The (2012)\",Action|Adventure|Crime|IMAX\n91535,\"Bourne Legacy, The (2012)\",Action|Adventure|Drama|Thriller|IMAX\n91542,Sherlock Holmes: A Game of Shadows (2011),Action|Adventure|Comedy|Crime|Mystery|Thriller\n91548,Life in a Day (2011),Documentary|Drama\n91582,Stagecoach (1966),Western\n91610,Toronto Stories (2008),Drama\n91622,Young Adult (2011),Comedy|Drama\n91628,New Year's Eve (2011),Comedy|Romance\n91630,Mission: Impossible - Ghost Protocol (2011),Action|Adventure|Thriller|IMAX\n91653,We Bought a Zoo (2011),Comedy|Drama\n91658,\"Girl with the Dragon Tattoo, The (2011)\",Drama|Thriller\n91660,\"Darkest Hour, The (2011)\",Action|Horror|Sci-Fi|Thriller\n91673,Albert Nobbs (2011),Drama\n91688,Salvation Boulevard (2011),Comedy|Thriller\n91690,Friends with Kids (2011),Comedy\n91842,Contraband (2012),Action|Crime|Drama|Thriller\n91869,Being Elmo: A Puppeteer's Journey (2011),Documentary\n91873,Joyful Noise (2012),Comedy|Musical\n91886,Dolphin Tale (2011),Children|Drama\n91890,\"Iron Lady, The (2011)\",Drama\n91935,Albatross (2011),Drama\n91947,\"Revenant, The (2009)\",Comedy|Horror\n91974,Underworld: Awakening (2012),Action|Fantasy|Horror|IMAX\n91976,\"Grey, The (2012)\",Action|Drama\n91978,Man on a Ledge (2012),Crime|Thriller\n92004,Chill Out! (Descongélate!) (2003),Comedy|Drama\n92008,Haywire (2011),Action|Thriller\n92048,\"Whistleblower, The (2010)\",Drama|Thriller\n92058,\"Human Centipede II (Full Sequence), The (2011)\",Horror\n92163,Fados (2007),Documentary|Musical\n92198,Seeking Justice (2011),Action|Drama|Thriller\n92206,Hostel: Part III (2011) ,Horror|Thriller\n92210,\"Disappearance of Haruhi Suzumiya, The (Suzumiya Haruhi no shôshitsu) (2010)\",Adventure|Animation|Drama|Mystery|Sci-Fi\n92234,Red Tails (2012),Action|Adventure|Drama|War\n92259,Intouchables (2011),Comedy|Drama\n92264,One for the Money (2012),Action|Comedy|Crime\n92309,\"Innkeepers, The (2011)\",Horror|Thriller\n92420,Chronicle (2012),Action|Sci-Fi|Thriller\n92424,Dottie Gets Spanked (1993),Drama\n92439,\"Art of Getting By, The (2011)\",Drama|Romance\n92494,Dylan Moran: Monster (2004),Comedy|Documentary\n92496,\"Dylan Moran: Like, Totally (2006)\",Comedy\n92498,Dylan Moran Live: What It Is (2009),Comedy\n92507,Safe House (2012),Action|Crime|Mystery|Thriller\n92509,\"Vow, The (2012)\",Drama|Romance\n92535,Louis C.K.: Live at the Beacon Theater (2011),Comedy\n92613,Holding Trevor (2007),Drama|Romance\n92665,\"For a Good Time, Call... (2012)\",Comedy|Drama|Romance\n92681,Journey 2: The Mysterious Island (2012),Action|Adventure|Comedy|Sci-Fi|IMAX\n92694,Perfect Sense (2011),Drama|Romance|Sci-Fi\n92751,Kokowääh (2011),Comedy\n92756,Hearts of the West (1975),Comedy|Western\n92938,Ghost Rider: Spirit of Vengeance (2012),Action|Fantasy|Thriller\n92954,Prayers for Bobby (2009),Drama\n92966,Love Wrecked (2005),Comedy|Romance\n93040,\"Civil War, The (1990)\",Documentary|War\n93061,October Baby (2011),Drama\n93242,Gone (2012),Drama|Thriller\n93265,Courageous (2011),Drama\n93270,Project X (2012),Comedy\n93272,Dr. Seuss' The Lorax (2012),Animation|Fantasy|Musical|IMAX\n93287,\"Big Year, The (2011)\",Comedy\n93320,Trailer Park Boys (1999),Comedy|Crime\n93324,Undefeated (2011),Documentary\n93326,This Means War (2012),Action|Comedy|Romance\n93363,John Carter (2012),Action|Adventure|Sci-Fi|IMAX\n93422,Starbuck (2011),Comedy\n93432,Forks Over Knives (2011),Documentary\n93443,Goon (2011),Comedy|Drama\n93498,Game Change (2012),Drama\n93510,21 Jump Street (2012),Action|Comedy|Crime\n93512,\"Jeff, Who Lives at Home (2012)\",Comedy|Drama\n93563,Lockout (2012),Action|Sci-Fi|Thriller\n93693,Casa de mi Padre (2012),Comedy\n93700,Corman's World: Exploits of a Hollywood Rebel (2011),Documentary\n93721,Jiro Dreams of Sushi (2011),Documentary\n93766,Wrath of the Titans (2012),Action|Adventure|Fantasy|IMAX\n93805,Iron Sky (2012),Action|Comedy|Sci-Fi\n93831,American Reunion (American Pie 4) (2012),Comedy\n93838,The Raid: Redemption (2011),Action|Crime\n93840,\"Cabin in the Woods, The (2012)\",Comedy|Horror|Sci-Fi|Thriller\n93855,God Bless America (2011),Comedy|Drama\n93980,\"Three Stooges, The (2012)\",Comedy\n93982,\"Raven, The (2012)\",Mystery|Thriller\n94011,\"Big Bang, The (2011)\",Action|Thriller\n94015,Mirror Mirror (2012),Adventure|Comedy|Fantasy\n94018,Battleship (2012),Action|Sci-Fi|Thriller|IMAX\n94024,Louis Theroux: The Most Hated Family in America in Crisis (2011),Documentary\n94070,\"Best Exotic Marigold Hotel, The (2011)\",Comedy|Drama\n94266,\"Five-Year Engagement, The (2012)\",Comedy|Romance\n94323,Think Like a Man (2012),Comedy\n94325,\"Lucky One, The (2012)\",Drama\n94466,Black Mirror (2011),Drama|Sci-Fi\n94478,Dark Shadows (2012),Comedy|Horror|IMAX\n94480,The Scorpion King: Rise of a Warrior (2008),Action|Adventure|Fantasy\n94494,96 Minutes (2011) ,Drama|Thriller\n94672,Across the Line: The Exodus of Charlie Wright (2010),Crime|Drama\n94677,\"Dictator, The (2012)\",Comedy\n94777,Men in Black III (M.III.B.) (M.I.B.³) (2012),Action|Comedy|Sci-Fi|IMAX\n94780,Snow White and the Huntsman (2012),Action|Adventure|Drama\n94799,Sound of My Voice (2011),Drama|Mystery|Sci-Fi\n94833,\"Pirates! Band of Misfits, The (2012)\",Adventure|Animation|Children|Comedy\n94864,Prometheus (2012),Action|Horror|Sci-Fi|IMAX\n94896,Bernie (2011),Comedy|Crime|Drama\n94919,Inhale (2010),Drama|Thriller\n94931,Take This Waltz (2011),Drama|Romance\n94939,Sound of Noise (2010),Comedy|Crime|Musical\n94953,Wanderlust (2012),Comedy\n94959,Moonrise Kingdom (2012),Comedy|Drama|Romance\n94969,Kahaani (2012),Crime|Drama|Thriller\n95067,\"Thousand Words, A (2012)\",Comedy|Drama\n95088,Safety Not Guaranteed (2012),Comedy|Drama\n95105,Madagascar 3: Europe's Most Wanted (2012),Adventure|Animation|Children|Comedy|IMAX\n95113,Eaux d'artifice (1953),Fantasy\n95115,Inauguration of the Pleasure Dome (1954),Fantasy\n95135,Your Sister's Sister (2011),Comedy|Drama\n95147,Dragon Ball: Sleeping Princess in Devil's Castle (Doragon bôru: Majinjô no nemuri hime) (1987),Action|Adventure|Animation|Children\n95165,Dragon Ball Z the Movie: The World's Strongest (a.k.a. Dragon Ball Z: The Strongest Guy in The World) (Doragon bôru Z: Kono yo de ichiban tsuyoi yatsu) (1990),Action|Adventure|Animation|Sci-Fi|Thriller\n95167,Brave (2012),Action|Adventure|Animation|Children\n95182,Dragon Ball Z the Movie: The Tree of Might (Doragon bôru Z 3: Chikyû marugoto chô kessen) (1990),Action|Adventure|Animation|Sci-Fi\n95199,What to Expect When You're Expecting (2012),Comedy|Drama|Romance\n95201,To Rome with Love (2012),Comedy\n95207,Abraham Lincoln: Vampire Hunter (2012),Action|Fantasy|Horror|Thriller\n95307,Rock of Ages (2012),Comedy|Drama|Musical|IMAX\n95309,Seeking a Friend for the End of the World (2012),Comedy|Drama|Romance\n95311,Presto (2008),Animation|Children|Comedy|Fantasy\n95313,Jack-Jack Attack (2005),Adventure|Animation|Children|Comedy\n95375,Boundin' (2003),Animation|Children\n95377,One Man Band (2005),Animation|Comedy|Musical\n95441,Ted (2012),Comedy|Fantasy\n95443,\"Giant Mechanical Man, The (2012)\",Comedy|Drama|Romance\n95449,Magic Mike (2012),Drama|Romance\n95473,Dragon Ball Z: The Return of Cooler (Doragon bôru Z 6: Gekitotsu! Hyakuoku pawâ no senshi) (1992),Action|Adventure|Animation\n95475,Dragon Ball Z: Cooler's Revenge (Doragon bôru Z 5: Tobikkiri no saikyô tai saikyô) (1991),Action|Adventure|Animation\n95499,Dragon Ball Z: Broly - The Legendary Super Saiyan (Doragon bôru Z 8: Moetsukiro!! Nessen retsusen-chô gekisen) (1993),Action|Adventure|Animation\n95508,Cleanskin (2012),Crime|Drama|Thriller\n95510,\"Amazing Spider-Man, The (2012)\",Action|Adventure|Sci-Fi|IMAX\n95543,Ice Age 4: Continental Drift (2012),Adventure|Animation|Comedy\n95558,Beasts of the Southern Wild (2012),Drama|Fantasy\n95567,People Like Us (2012),Drama\n95583,Savages (2012),Crime|Drama|Thriller\n95654,Geri's Game (1997),Animation|Children\n95720,\"Watch, The (2012)\",Comedy|Sci-Fi\n95740,\"Adventures of Mary-Kate and Ashley, The: The Case of the United States Navy Adventure (1997)\",Children|Musical|Mystery\n95744,2 Days in New York (2012),Comedy\n95752,Terminal USA (1993),Comedy\n95761,Killer Joe (2011),Crime|Thriller\n95780,Dragon Ball Z: Bio-Broly (Doragon bôru Z 11: Sûpâ senshi gekiha! Katsu no wa ore da) (1994),Action|Adventure|Animation\n95782,Dragon Ball Z: Fusion Reborn (Doragon bôru Z 12: Fukkatsu no fyushon!! Gokû to Bejîta) (1995),Action|Adventure|Animation\n95858,For the Birds (2000),Animation|Children|Comedy\n95873,Ruby Sparks (2012),Comedy|Fantasy|Romance\n95875,Total Recall (2012),Action|Sci-Fi|Thriller\n95949,\"Immature, The (Immaturi) (2011)\",Comedy\n95963,Dragon Ball Z: Wrath of the Dragon (Doragon bôru Z 13: Ryûken bakuhatsu!! Gokû ga yaraneba dare ga yaru) (1995),Action|Adventure|Animation\n95965,Dragon Ball Z: Bardock - The Father of Goku (Doragon bôru Z: Tatta hitori no saishuu kessen - Furiiza ni itonda Z senshi Kakarotto no chichi) (1990),Action|Adventure|Animation\n96004,Dragon Ball Z: The History of Trunks (Doragon bôru Z: Zetsubô e no hankô!! Nokosareta chô senshi - Gohan to Torankusu) (1993),Action|Adventure|Animation\n96007,Dragon Ball GT: A Hero's Legacy (Doragon bôru GT: Gokû gaiden! Yûki no akashi wa sû-shin-chû) (1997),Action|Adventure|Animation\n96020,Sidewalls (Medianeras) (2011),Drama\n96075,Bleak House (2005),Drama\n96079,Skyfall (2012),Action|Adventure|Thriller|IMAX\n96110,\"Campaign, The (2012)\",Comedy\n96114,Brake (2012),Crime|Thriller\n96150,\"Queen of Versailles, The (2012)\",Documentary\n96281,ParaNorman (2012),Adventure|Animation|Comedy\n96314,Celeste and Jesse Forever (Celeste & Jesse Forever) (2012),Comedy|Drama|Romance\n96373,Broken (2012),Drama\n96417,Premium Rush (2012),Action|Thriller\n96432,Lawless (2012),Crime|Drama\n96448,Piranha 3DD (a.k.a. Piranha DD) (2012),Comedy|Horror\n96467,Sleepwalk with Me (2012),Comedy|Drama\n96488,Searching for Sugar Man (2012),Documentary\n96490,\"Possession, The (2012)\",Horror|Thriller\n96530,Conception (2011),Comedy|Romance\n96563,Paradise Lost 3: Purgatory (2011),Documentary\n96565,Bachelorette (2012),Comedy\n96588,Pitch Perfect (2012),Comedy|Musical\n96590,\"Cold Light of Day, The (2012)\",Action|Thriller\n96606,Samsara (2011),Documentary\n96610,Looper (2012),Action|Crime|Sci-Fi\n96616,That's My Boy (2012),Comedy\n96634,Apartment 143 (2011),Horror|Thriller\n96655,Robot & Frank (2012),Comedy|Drama|Sci-Fi\n96667,Ai Weiwei: Never Sorry (2012),Documentary\n96691,Resident Evil: Retribution (2012),Action|Horror|Sci-Fi|IMAX\n96726,Lola Versus (2012),Comedy|Romance\n96728,\"Master, The (2012)\",Drama\n96737,Dredd (2012),Action|Sci-Fi\n96792,Kismet (1955),Adventure|Comedy|Fantasy|Musical|Romance\n96811,End of Watch (2012),Crime|Drama|Thriller\n96815,V/H/S (2012),Horror|Thriller\n96821,\"Perks of Being a Wallflower, The (2012)\",Drama|Romance\n96829,\"Hunt, The (Jagten) (2012)\",Drama\n96832,Holy Motors (2012),Drama|Fantasy|Musical|Mystery|Sci-Fi\n96849,Sparkle (2012),Drama|Musical\n96861,Taken 2 (2012),Action|Crime|Drama|Thriller\n96863,\"Paperboy, The (2012)\",Thriller\n96901,\"Making of a Legend: Gone with the Wind, The (1988)\",Documentary\n96911,\"Royal Affair, A (Kongelig affære, En) (2012)\",Drama|Romance\n97057,Kon-Tiki (2012),Adventure|Documentary|Drama\n97168,Marley (2012),Documentary\n97188,Sinister (2012),Horror|Thriller\n97225,Hotel Transylvania (2012),Animation|Children|Comedy\n97230,Side by Side (2012),Documentary\n97254,Shakespeare-Wallah (1965),Drama\n97304,Argo (2012),Drama|Thriller\n97306,Seven Psychopaths (2012),Comedy|Crime\n97328,Liberal Arts (2012),Comedy|Drama\n97393,\"House I Live In, The (2012)\",Documentary\n97395,West of Memphis (2012),Documentary\n97470,Catch .44 (2011),Action|Drama|Thriller\n97593,Tony (2009),Drama|Horror|Thriller\n97639,How to Survive a Plague (2012),Documentary\n97673,56 Up (2012),Documentary\n97742,Alex Cross (2012),Action|Crime|Mystery|Thriller\n97744,\"Ambassador, The (Ambassadøren) (2011)\",Documentary\n97752,Cloud Atlas (2012),Drama|Sci-Fi|IMAX\n97757,'Hellboy': The Seeds of Creation (2004),Action|Adventure|Comedy|Documentary|Fantasy\n97817,Pumping Iron II: The Women (1985),Documentary\n97826,\"Patience Stone, The (2012)\",Drama|War\n97836,Here Comes the Boom (2012),Action|Comedy\n97858,Mental (2012),Comedy|Drama\n97860,Killing Them Softly (2012),Crime|Drama|Thriller\n97866,\"Imposter, The (2012)\",Documentary\n97870,\"Sessions, The (Surrogate, The) (2012)\",Drama\n97895,What Richard Did (2012),Drama\n97913,Wreck-It Ralph (2012),Animation|Comedy\n97921,Silver Linings Playbook (2012),Comedy|Drama\n97923,Flight (2012),Drama\n97936,Anna Karenina (2012),Drama\n97938,Life of Pi (2012),Adventure|Drama|IMAX\n97957,Excision (2012),Crime|Drama|Horror|Thriller\n97994,Union Square (2011),Drama\n98000,Student of the Year (2012),Comedy|Romance\n98056,Amour (2012),Drama|Romance\n98083,Jackass 3.5 (2011),Comedy|Documentary\n98122,Indie Game: The Movie (2012),Documentary\n98124,\"Batman: The Dark Knight Returns, Part 1 (2012)\",Action|Animation|Sci-Fi\n98126,Capital (Le capital) (2012),Drama\n98154,Lincoln (2012),Drama|War\n98160,Nature Calls (2012),Comedy\n98175,Vamps (2012),Comedy|Horror|Romance\n98230,10 Years (2011),Comedy|Drama|Romance\n98243,Rise of the Guardians (2012),Adventure|Animation|Children|Fantasy|IMAX\n98279,\"Fantastic Fear of Everything, A (2012)\",Comedy\n98296,Deadfall (2012),Crime|Drama|Thriller\n98369,Halo 4: Forward Unto Dawn (2012),Action|Sci-Fi|Thriller\n98441,Rebecca of Sunnybrook Farm (1938),Children|Comedy|Drama|Musical\n98458,Baby Take a Bow (1934),Children|Comedy|Drama\n98473,\"Sleeping Car Murder, The (Compartiment tueurs) (1965)\",Drama|Mystery|Thriller\n98491,Paperman (2012),Animation|Comedy|Romance\n98585,Hitchcock (2012),Drama\n98587,Caesar Must Die (Cesare deve morire) (2012),Drama\n98604,From Up on Poppy Hill (Kokuriko-zaka kara) (2011),Animation|Drama|Romance\n98607,Redline (2009),Action|Animation|Sci-Fi\n98611,Just Around the Corner (1938),Comedy|Musical\n98615,Burn Up! (1991),Action|Animation\n98795,Jazz (2001),Documentary\n98803,Little Miss Broadway (1938),Drama|Musical\n98809,\"Hobbit: An Unexpected Journey, The (2012)\",Adventure|Fantasy|IMAX\n98829,\"Evil Cult, The (Lord of the Wu Tang) (Yi tian tu long ji: Zhi mo jiao jiao zhu) (1993)\",Action|Fantasy\n98836,Hyde Park on Hudson (2012),Comedy|Drama\n98908,How to Make Love to a Woman (2010),Comedy|Romance\n98913,Violeta Went to Heaven (Violeta se fue a los cielos) (2011),Drama\n98933,Yossi (Ha-Sippur Shel Yossi) (2012),Drama|Romance\n98961,Zero Dark Thirty (2012),Action|Drama|Thriller\n98963,Neighbouring Sounds (O som ao redor) (2012),Drama|Thriller\n99005,Fire with Fire (2012),Action|Crime|Drama\n99007,Warm Bodies (2013),Comedy|Horror|Romance\n99030,Wrong (2012),Comedy|Drama\n99085,Our Little Girl (1935),Comedy|Drama|Romance\n99089,Poor Little Rich Girl (1936),Adventure|Musical|Romance\n99106,\"Guilt Trip, The (2012)\",Comedy\n99112,Jack Reacher (2012),Action|Crime|Thriller\n99114,Django Unchained (2012),Action|Drama|Western\n99117,This Is 40 (2012),Drama\n99145,\"Impossible, The (Imposible, Lo) (2012)\",Drama|Thriller\n99149,\"Misérables, Les (2012)\",Drama|Musical|Romance|IMAX\n99220,Quartet (2012),Comedy|Drama\n99270,Stand Up and Cheer! (1934),Comedy|Musical\n99273,Stowaway (1936),Adventure|Musical\n99276,Susannah of the Mounties (1939),Drama\n99296,Would You Rather (2012),Horror|Thriller\n99320,Maximum Conviction (2012),Action|Adventure|Thriller\n99415,Parental Guidance (2012),Comedy\n99437,John Dies at the End (2012),Comedy|Fantasy|Horror\n99468,\"Central Park Five, The (2012)\",Documentary\n99470,\"Collection, The (2012)\",Action|Horror|Thriller\n99574,Promised Land (2012),Drama\n99609,Judas Kiss (2011),Drama|Sci-Fi\n99615,Role/Play (2010),Drama\n99669,Aftermath (1994),Horror\n99675,Eat Sleep Die (Äta sova dö) (2012),Drama\n99728,Gangster Squad (2013),Action|Crime|Drama\n99741,\"Company You Keep, The (2012)\",Thriller\n99764,It's Such a Beautiful Day (2012),Animation|Comedy|Drama|Fantasy|Sci-Fi\n99795,Whores' Glory (2011),Documentary\n99811,Beware of Mr. Baker (2012),Documentary\n99813,\"Batman: The Dark Knight Returns, Part 2 (2013)\",Action|Animation\n99839,Paul Williams Still Alive (2011),Comedy|Documentary|Musical\n99846,Everything or Nothing: The Untold Story of 007 (2012),Documentary\n99912,Mama (2013),Horror\n99917,Upstream Color (2013),Romance|Sci-Fi|Thriller\n99992,Shadow Dancer (2012),Crime|Drama|Thriller\n100017,Keep the Lights On (2012),Drama\n100032,Beauty Is Embarrassing (2012),Documentary\n100034,Girl Model (2011),Documentary\n100083,Movie 43 (2013),Comedy\n100106,\"Pervert's Guide to Ideology, The (2012)\",Documentary\n100159,Sightseers (2012),Comedy\n100163,Hansel & Gretel: Witch Hunters (2013),Action|Fantasy|Horror|IMAX\n100226,Why Stop Now (2012),Comedy|Drama\n100272,Snow White (Blancanieves) (2012),Drama\n100304,\"Liability, The (2012)\",Action|Thriller\n100306,Angst  (1983),Drama|Horror\n100326,Stand Up Guys (2012),Comedy|Crime\n100365,Call Me Kuchu (2012),Documentary\n100383,Side Effects (2013),Crime|Drama|Mystery|Thriller\n100390,Identity Thief (2013),Comedy|Crime\n100450,Battlestar Galactica: Blood & Chrome (2012),Sci-Fi\n100487,Beautiful Creatures (2013),Drama|Fantasy|Romance\n100498,\"Good Day to Die Hard, A (2013)\",Action|Crime|Thriller|IMAX\n100517,\"World Before Her, The (2012)\",Documentary\n100527,Safe Haven (2013),Drama|Mystery|Romance\n100553,Frozen Planet (2011),Documentary\n100556,\"Act of Killing, The (2012)\",Documentary\n100581,Room 237 (2012),Documentary\n100714,Before Midnight (2013),Drama|Romance\n100745,TPB AFK: The Pirate Bay Away from Keyboard (2013),Documentary\n100843,Oh Boy (A Coffee in Berlin) (2012),Comedy|Drama\n101025,Jack the Giant Slayer (2013),Adventure|Fantasy|IMAX\n101070,Wadjda (2012),Drama\n101076,G.I. Joe: Retaliation (2013),Action|Adventure|Sci-Fi|Thriller|IMAX\n101088,Stoker (2013),Drama|Mystery|Thriller\n101106,Sound City (2013),Documentary\n101112,Oz the Great and Powerful (2013),Action|Adventure|Fantasy|IMAX\n101142,\"Croods, The (2013)\",Adventure|Animation|Comedy\n101283,\"Incredible Burt Wonderstone, The (2013)\",Comedy\n101285,Spring Breakers (2013),Comedy|Crime|Drama\n101360,\"Call, The (2013)\",Drama|Thriller\n101362,Olympus Has Fallen (2013),Action|Thriller\n101415,\"First Time, The (2012)\",Comedy|Drama|Romance\n101525,\"Place Beyond the Pines, The (2012)\",Crime|Drama\n101529,\"Brass Teapot, The (2012)\",Comedy|Fantasy|Thriller\n101531,Phil Spector (2013),Drama\n101577,\"Host, The (2013)\",Action|Adventure|Romance\n101612,Admission (2013),Comedy|Romance\n101741,Trance (2013),Crime|Thriller\n101850,Death on the Staircase (Soupçons) (2004),Crime|Documentary\n101864,Oblivion (2013),Action|Adventure|Sci-Fi|IMAX\n101884,Dark Tide (2012),Adventure|Drama|Thriller\n101895,42 (2013),Drama\n101904,Happy (2011),Documentary|Drama\n101947,From the Sky Down (2011),Documentary\n101962,Wolf Children (Okami kodomo no ame to yuki) (2012),Animation|Fantasy\n102033,Pain & Gain (2013),Action|Comedy|Crime\n102123,This Is the End (2013),Action|Comedy\n102125,Iron Man 3 (2013),Action|Sci-Fi|Thriller|IMAX\n102165,\"English Teacher, The (2013)\",Comedy|Drama\n102194,Mud (2012),Adventure|Crime|Drama\n102217,Bill Hicks: Revelations (1993),Comedy\n102252,Legendary Weapons of China (1982),Action|Adventure\n102278,Pawn (2013),Crime|Thriller\n102378,Syrup (2013),Comedy|Drama\n102396,\"Woman in the Fifth, The (Femme du Vème, La) (2011)\",Drama|Mystery|Thriller\n102407,\"Great Gatsby, The (2013)\",Drama\n102445,Star Trek Into Darkness (2013),Action|Adventure|Sci-Fi|IMAX\n102469,Wish You Were Here (2012),Drama|Mystery\n102481,\"Internship, The (2013)\",Comedy\n102588,Stories We Tell (2012),Documentary\n102666,Ivan Vasilievich: Back to the Future (Ivan Vasilievich menyaet professiyu) (1973),Adventure|Comedy\n102684,Only God Forgives (2013),Drama|Thriller\n102686,\"Hangover Part III, The (2013)\",Comedy\n102716,\"Fast & Furious 6 (Fast and the Furious 6, The) (2013)\",Action|Crime|Thriller|IMAX\n102720,Epic (2013),Adventure|Animation|Fantasy\n102753,\"Past, The (Le passé) (2013)\",Drama|Mystery|Romance\n102792,\"Broken Circle Breakdown, The (2012)\",Drama\n102800,Frances Ha (2012),Comedy|Drama\n102819,Behind the Candelabra (2013),Drama\n102880,After Earth (2013),Action|Adventure|Sci-Fi|IMAX\n102903,Now You See Me (2013),Crime|Mystery|Thriller\n102905,Lovelace (2013),Drama\n102993,\"Way, Way Back, The (2013)\",Comedy|Drama\n102995,Foxfire (2012),Drama\n103042,Man of Steel (2013),Action|Adventure|Fantasy|Sci-Fi|IMAX\n103048,\"Kings of Summer, The (2013)\",Comedy\n103107,20 Feet from Stardom (Twenty Feet from Stardom) (2013),Documentary\n103137,\"Bling Ring, The (2013)\",Crime|Drama\n103141,Monsters University (2013),Adventure|Animation|Comedy\n103210,Fullmetal Alchemist: The Sacred Star of Milos (2011),Action|Adventure|Animation\n103221,Not Suitable for Children (2012),Comedy|Romance\n103228,Pacific Rim (2013),Action|Adventure|Sci-Fi|IMAX\n103235,\"Best Offer, The (Migliore offerta, La) (2013)\",Thriller\n103249,World War Z (2013),Action|Drama|Horror|IMAX\n103253,Elysium (2013),Action|Drama|Sci-Fi|IMAX\n103279,What Maisie Knew (2012),Drama\n103299,American Mary (2012),Horror|Thriller\n103335,Despicable Me 2 (2013),Animation|Children|Comedy|IMAX\n103339,White House Down (2013),Action|Drama|Thriller|IMAX\n103341,\"World's End, The (2013)\",Action|Comedy|Sci-Fi\n103372,\"Heat, The (2013)\",Action|Comedy|Crime\n103384,\"Lone Ranger, The (2013)\",Action|Adventure|Western|IMAX\n103444,Woody Allen: A Documentary (2012),Documentary\n103449,Passion (2012),Crime|Drama|Mystery|Thriller\n103502,\"Knot, The (2012)\",Comedy|Romance\n103539,The Spectacular Now (2013),Comedy|Drama|Romance\n103543,\"Lifeguard, The (2013)\",Comedy|Drama\n103596,Sharknado (2013),Sci-Fi\n103624,Fruitvale Station (2013),Drama\n103655,R.I.P.D. (2013),Action|Comedy|Fantasy\n103659,Justice League: The Flashpoint Paradox (2013),Action|Adventure|Animation|Fantasy|Sci-Fi\n103671,Joker (2012),Comedy\n103688,\"Conjuring, The (2013)\",Horror|Thriller\n103731,\"Angel Named Billy, An (2007)\",Drama\n103755,Turbo (2013),Adventure|Animation|Children|Comedy|Fantasy\n103772,\"Wolverine, The (2013)\",Action|Adventure|Fantasy|Sci-Fi\n103801,Drinking Buddies (2013),Comedy|Drama|Romance\n103810,Red 2 (2013),Action|Comedy|Crime|Thriller\n103813,Miami Connection (1987),Action|Crime\n103819,Coffee Town (2013),Comedy\n103865,Revenge for Jolly! (2012),Comedy|Drama\n103883,2 Guns (2013),Action|Comedy|Crime\n103980,Blue Jasmine (2013),Drama\n103984,\"Great Beauty, The (Grande Bellezza, La) (2013)\",Comedy|Drama\n104069,Louis C.K.: Oh My God (2013),Comedy\n104074,Percy Jackson: Sea of Monsters (2013),Adventure|Children|Fantasy\n104076,\"Smurfs 2, The (2013)\",Animation|Children|Comedy\n104078,Alan Partridge: Alpha Papa (2013),Comedy\n104119,\"Forsyte Saga, The (1967)\",Drama\n104129,Man of Tai Chi (2013),Action|IMAX\n104211,We're the Millers (2013),Comedy|Crime\n104218,Grown Ups 2 (2013),Comedy\n104241,Kick-Ass 2 (2013),Action|Comedy|Crime\n104243,Riddick (2013),Action|Sci-Fi|Thriller|IMAX\n104245,Planes (2013),Adventure|Animation|Comedy\n104272,Blackfish (2013),Documentary\n104283,\"Wind Rises, The (Kaze tachinu) (2013)\",Animation|Drama|Romance\n104303,Jobs (2013),Drama\n104312,\"Mortal Instruments: City of Bones, The (2013)\",Action|Adventure|Drama|IMAX\n104321,Touchy Feely (2013),Drama\n104337,Lee Daniels' The Butler (2013),Drama\n104339,In a World... (2013),Comedy\n104374,About Time (2013),Drama|Fantasy|Romance\n104419,Justice League: Crisis on Two Earths (2010),Action|Animation|Sci-Fi\n104441,\"Frozen Ground, The (2013)\",Crime|Drama|Thriller\n104457,You're Next (2011),Horror|Thriller\n104590,Tidal Wave (2009),Drama\n104595,Family Band: The Cowsills Story (2011) ,Documentary\n104597,\"Chicago 8, The (2011)\",Drama\n104662,\"First Nudie Musical, The (1976)\",Comedy|Musical\n104726,Koch (2012),Documentary\n104757,Evocateur: The Morton Downey Jr. Movie (2012),Documentary\n104760,Getaway (2013),Action|Crime\n104841,Gravity (2013),Action|Sci-Fi|IMAX\n104863,What If (2013),Comedy|Drama|Romance\n104879,Prisoners (2013),Drama|Mystery|Thriller\n104881,\"Out of the Furnace (Dust to Dust) (Low Dweller, The) (2013)\",Drama|Thriller\n104906,Austenland (2013),Comedy|Romance\n104913,Rush (2013),Action|Drama\n104925,\"Family, The (2013)\",Action|Comedy|Crime\n104944,Short Term 12 (2013),Drama\n105037,\"To Do List, The (2013)\",Comedy\n105121,Inescapable (2012),Action|Drama|War\n105197,Nebraska (2013),Adventure|Drama\n105211,Enough Said (2013),Comedy|Drama|Romance\n105213,Don Jon (2013),Comedy|Drama|Romance\n105246,Mood Indigo (L'écume des jours) (2013),Drama|Fantasy\n105254,Crystal Fairy & the Magical Cactus and 2012 (2013),Adventure|Comedy\n105351,Runner Runner (2013),Crime|Drama|Thriller\n105355,Blue Is the Warmest Color (La vie d'Adèle) (2013),Drama|Romance\n105429,Inequality for All (2013),Documentary\n105468,Cloudy with a Chance of Meatballs 2 (2013),Animation|Children|Comedy|Fantasy\n105504,Captain Phillips (2013),Adventure|Drama|Thriller|IMAX\n105585,Machete Kills (Machete 2) (2013),Action|Crime|Thriller\n105593,Filth (2013),Comedy|Crime|Drama\n105715,Just Wright (2010),Comedy|Romance\n105731,Carrie (2013),Drama|Horror\n105755,\"Counselor, The (2013)\",Crime|Drama|Thriller\n105763,Bloodsucking Freaks (1976),Horror\n105769,\"Congress, The (2013)\",Animation|Sci-Fi\n105844,12 Years a Slave (2013),Drama\n105954,All Is Lost (2013),Action|Adventure|Drama\n106002,Ender's Game (2013),Action|Adventure|Sci-Fi|IMAX\n106004,Maniac (1963),Crime|Horror|Mystery|Romance|Thriller\n106011,\"Blue Umbrella, The (2013)\",Animation\n106022,Toy Story of Terror (2013),Animation|Children|Comedy\n106062,Jackass Presents: Bad Grandpa (2013),Comedy\n106072,Thor: The Dark World (2013),Action|Adventure|Fantasy|IMAX\n106100,Dallas Buyers Club (2013),Drama\n106111,Marc Maron: Thinky Pain (2013),Comedy\n106144,\"Selfish Giant, The (2013)\",Drama\n106204,Pieta (2013),Drama\n106236,Somm (2012),Documentary\n106330,Last Vegas (2013),Comedy|Drama|Romance\n106332,Muscle Shoals (2013),Documentary\n106397,Stephen Tobolowsky's Birthday Party (2005),Comedy|Documentary|Drama\n106417,Absent (Ausente) (2011),Drama|Thriller\n106438,Philomena (2013),Comedy|Drama\n106441,\"Book Thief, The (2013)\",Children|Drama|War\n106452,Ida (2013),Drama\n106471,One Piece Film: Strong World (2009),Action|Adventure|Animation|Comedy|Fantasy\n106473,One Piece Film Z (2012),Action|Adventure|Animation|Fantasy\n106487,The Hunger Games: Catching Fire (2013),Action|Adventure|Sci-Fi|IMAX\n106489,\"Hobbit: The Desolation of Smaug, The (2013)\",Adventure|Fantasy|IMAX\n106491,47 Ronin (2013),Action|Adventure|Fantasy\n106540,Delivery Man (2013),Comedy\n106542,Charlie Countryman (2013),Action|Comedy|Romance\n106642,\"Day of the Doctor, The (2013)\",Adventure|Drama|Sci-Fi\n106696,Frozen (2013),Adventure|Animation|Comedy|Fantasy|Musical|Romance\n106762,Trigun: Badlands Rumble (2010),Action|Animation|Sci-Fi|Western\n106766,Inside Llewyn Davis (2013),Drama\n106782,\"Wolf of Wall Street, The (2013)\",Comedy|Crime|Drama\n106839,Mandela: Long Walk to Freedom (2013),Drama\n106870,Grave Encounters 2 (2012),Horror\n106873,Evangelion: 3.0 You Can (Not) Redo (2012),Action|Animation|Drama\n106883,All is Bright (2013),Comedy|Drama\n106916,American Hustle (2013),Crime|Drama\n106918,\"Secret Life of Walter Mitty, The (2013)\",Adventure|Comedy|Drama\n106920,Her (2013),Drama|Romance|Sci-Fi\n107042,Six by Sondheim (2013),Documentary\n107057,Dead Set (2008),Comedy|Drama|Horror\n107069,Lone Survivor (2013),Action|Drama|Thriller|War\n107081,Zatoichi on the Road (Zatôichi kenka-tabi) (Zatôichi 5) (1963),Action|Drama\n107083,Geography Club (2013),Comedy|Drama|Romance\n107141,Saving Mr. Banks (2013),Comedy|Drama\n107314,Oldboy (2013),Action|Drama|Mystery\n107348,Anchorman 2: The Legend Continues (2013),Comedy\n107382,Whoopi Goldberg Presents Moms Mabley (2013),Documentary\n107406,Snowpiercer (2013),Action|Drama|Sci-Fi\n107412,\"Kidnapping, Caucasian Style (Kavkazskaya plennitsa) (1967)\",Comedy|Romance\n107447,Wrong Cops (2013),Comedy|Crime\n107516,Punk's Dead: SLC Punk! 2 (2014),Comedy\n107555,Fireworks Wednesday (Chaharshanbe-soori) (2006),Drama|Mystery|Romance\n107559,Am Ende eiens viel zu kurzen Tages (Death of a superhero) (2011),Animation|Drama\n107636,Springsteen & I (2013),Documentary\n107649,Borgman (2013),Thriller\n107702,Grudge Match (2013),Comedy\n107769,Paranormal Activity: The Marked Ones (2014),Horror|Thriller\n107771,Only Lovers Left Alive (2013),Drama|Horror|Romance\n107910,I Know That Voice (2013),Documentary\n107945,Bad Karma (2012),Thriller\n107953,Dragon Ball Z: Battle of Gods (2013),Action|Animation|Fantasy|IMAX\n107978,\"Like Father, Like Son (Soshite chichi ni naru) (2013)\",Drama\n107999,Dragon ball Z 04: Lord Slug (1991),Animation|Children\n108076,\"Other Shore, The (2013)\",Adventure|Documentary\n108090,Dragon Ball: The Path to Power (Doragon bôru: Saikyô e no michi) (1996),Action|Adventure|Animation|Children\n108156,Ride Along (2014),Action|Comedy\n108188,Jack Ryan: Shadow Recruit (2014),Action|Drama|Thriller|IMAX\n108190,Divergent (2014),Adventure|Romance|Sci-Fi|IMAX\n108192,Hotel Chevalier (Part 1 of 'The Darjeeling Limited') (2007),Drama\n108447,Atrocious (2010),Horror|Thriller\n108506,Dark Touch (2013),Horror\n108514,Yeh Jawaani Hai Deewani (2013),Comedy|Drama|Musical|Romance\n108548,\"Big Bang Theory, The (2007-)\",Comedy\n108551,\"String, The (Le fil) (2009)\",Drama\n108583,Fawlty Towers (1975-1979),Comedy\n108601,Drift (2013),Drama\n108689,\"I, Frankenstein (2014)\",Action|Fantasy|Sci-Fi|IMAX\n108709,Generation Kill (2008),Drama|War\n108715,Better Living Through Chemistry (2014),Comedy|Drama\n108727,Nymphomaniac: Volume I (2013),Drama\n108729,Enemy (2013),Mystery|Thriller\n108795,Wonder Woman (2009),Action|Adventure|Animation|Fantasy\n108873,\"Same Love, Same Rain (El mismo amor, la misma lluvia) (1999)\",Comedy|Drama|Romance\n108928,\"Monuments Men, The (2014)\",Action|Drama|War\n108932,The Lego Movie (2014),Action|Adventure|Animation|Children|Comedy|Fantasy\n108945,RoboCop (2014),Action|Crime|Sci-Fi|IMAX\n108949,\"Art of the Steal, The (2013)\",Crime\n108979,Cowboy Bebop (1998),Action|Adventure|Animation|Crime|Sci-Fi\n108981,Nymphomaniac: Volume II (2013),Drama|Mystery\n109042,Knights of Badassdom (2013),Adventure|Comedy|Fantasy\n109074,\"Four, The (Si da ming bu) (2012)\",Action|Crime|Fantasy\n109161,Venus in Fur (La Vénus à la fourrure) (2013),Drama\n109183,Date and Switch (2014),Comedy\n109187,\"Zero Theorem, The (2013)\",Drama|Fantasy|Sci-Fi\n109191,Winter's Tale (2014),Drama|Fantasy|Mystery\n109205,No Nukes (1980),Documentary|Musical\n109249,\"Journey, The (El viaje) (1992)\",Drama\n109295,Cold Comes the Night (2013),Crime|Drama|Thriller\n109317,Someone Marry Barry (2014),Comedy\n109359,Gerontophilia (2013),Comedy|Romance\n109372,About Last Night (2014),Comedy|Romance\n109374,\"Grand Budapest Hotel, The (2014)\",Comedy|Drama\n109483,That Awkward Moment (2014),Comedy|Romance\n109487,Interstellar (2014),Sci-Fi|IMAX\n109576,Welcome to the Jungle (2013),Comedy\n109578,Non-Stop (2014),Action|Mystery|Thriller\n109673,300: Rise of an Empire (2014),Action|Drama|War|IMAX\n109687,Particle Fever (2013),Documentary\n109740,Obvious Child (2014),Comedy|Romance\n109742,Cheap Thrills (2013),Comedy|Thriller\n109846,Mr. Peabody & Sherman (2014),Adventure|Animation|Comedy\n109848,Under the Skin (2013),Horror|Sci-Fi|Thriller\n109850,Need for Speed (2014),Action|Crime|Drama|IMAX\n109853,Barefoot (2014),Comedy|Drama|Romance\n109864,Veronica Mars (2014),Comedy|Crime|Drama\n109895,Bad Words (2013),Comedy\n110058,Broderskab (Brotherhood) (2009),Drama\n110102,Captain America: The Winter Soldier (2014),Action|Adventure|Sci-Fi|IMAX\n110110,Starred Up (2013),Drama\n110127,Noah (2014),Adventure|Drama|IMAX\n110194,Mistaken for Strangers (2013),Comedy|Documentary\n110297,Muppets Most Wanted (2014),Adventure|Comedy|Crime\n110348,Wetlands (Feuchtgebiete) (2013),Comedy|Drama\n110352,Survival Island (Three) (2005),Adventure|Drama|Horror\n110453,Draft Day (2014),Drama\n110461,We Are the Best! (Vi är bäst!) (2013),Children|Comedy|Drama\n110501,The Raid 2: Berandal (2014),Action|Crime|Thriller\n110553,The Amazing Spider-Man 2 (2014),Action|Sci-Fi|IMAX\n110586,Calvary (2014),Comedy|Drama\n110591,Oculus (2013),Horror\n110611,Cold in July (2014),Drama|Thriller\n110645,\"Witching and Bitching (Brujas de Zugarramurdi, Las) (2014)\",Comedy|Fantasy\n110655,Rio 2 (2014),Adventure|Animation|Children|Comedy\n110730,Transcendence (2014),Drama|Sci-Fi|IMAX\n110748,Wake Wood (2010) ,Drama|Horror|Mystery\n110752,Mondo Hollywood (1967),Documentary\n110771,\"Other Woman, The (2014)\",Comedy|Romance\n110781,Mulan II (2004),Action|Animation|Children|Comedy|Musical\n110826,Brick Mansions (2014),Action|Crime|Drama\n110858,Firstborn (1984),Drama|Thriller\n110871,\"Rocket, The (2013)\",Drama\n110873,\"Centenarian Who Climbed Out the Window and Vanished, The (Hundraåringen som klev ut genom fönstret och försvann) (2013)\",Adventure|Comedy|Drama\n110882,Locke (2013),Drama\n111113,Neighbors (2014),Comedy\n111228,\"Fragile Trust: Plagiarism, Power, and Jayson Blair at the New York Times, A (2013)\",Documentary\n111235,Jodorowsky's Dune (2013),Documentary|Sci-Fi\n111249,Belle (2013),Drama\n111251,\"Immigrant, The (2013)\",Drama|Romance\n111360,Lucy (2014),Action|Sci-Fi\n111362,X-Men: Days of Future Past (2014),Action|Adventure|Sci-Fi\n111364,Godzilla (2014),Action|Adventure|Sci-Fi|IMAX\n111384,Blue Ruin (2013),Thriller\n111443,Chef (2014),Comedy\n111486,Lesson of the Evil (Aku no kyôten) (2012),Thriller\n111505,\"Love God?, The (1969)\",Comedy\n111529,\"Normal Heart, The (2014)\",Drama\n111617,Blended (2014),Comedy\n111622,Begin Again (2013),Comedy|Romance\n111624,Kelly & Cal (2014),Comedy|Drama\n111659,Maleficent (2014),Action|Adventure|Children|IMAX\n111663,Zombeavers (2014),Action|Comedy|Horror\n111680,At Middleton (2013),Comedy|Romance\n111743,A Million Ways to Die in the West (2014),Comedy|Western\n111759,Edge of Tomorrow (2014),Action|Sci-Fi|IMAX\n111781,Mission: Impossible - Rogue Nation (2015),Action|Adventure|Thriller\n111795,Million Dollar Arm (2014),Comedy|Drama\n111913,Lilting (2014),Drama\n111921,The Fault in Our Stars (2014),Drama|Romance\n111931,Raze (2013),Action|Horror\n112006,Tangled Ever After (2012),Action|Animation|Children\n112062,Camille Claudel 1915 (2013),Drama\n112070,Maps to the Stars (2014),Drama\n112112,Back in the Day (2014),Comedy\n112138,22 Jump Street (2014),Action|Comedy|Crime\n112171,\"Equalizer, The (2014)\",Action|Crime|Thriller\n112175,How to Train Your Dragon 2 (2014),Action|Adventure|Animation\n112183,Birdman: Or (The Unexpected Virtue of Ignorance) (2014),Comedy|Drama\n112277,Haunt (2013),Horror|Mystery\n112290,Boyhood (2014),Drama\n112303,Think Like a Man Too (2014),Comedy|Romance\n112334,\"Internet's Own Boy: The Story of Aaron Swartz, The (2014)\",Documentary\n112370,Transformers: Age of Extinction (2014),Action|Adventure|Sci-Fi\n112399,Finding Vivian Maier (2013),Documentary\n112421,Frank (2014),Comedy|Drama|Mystery\n112450,They Came Together (2014),Comedy|Romance\n112460,Planes: Fire & Rescue (2014),Adventure|Animation|Comedy\n112497,Tammy (2014),Comedy\n112515,\"Babadook, The (2014)\",Drama|Horror|Thriller\n112550,White God (Fehér isten) (2014),Drama\n112552,Whiplash (2014),Drama\n112556,Gone Girl (2014),Drama|Thriller\n112577,Willie & Phil (1980),Comedy|Drama|Romance\n112582,Life Itself (2014),Documentary\n112623,Dawn of the Planet of the Apes (2014),Sci-Fi\n112653,\"Battered Bastards of Baseball, The (2014)\",Documentary\n112655,No One Lives (2012),Horror|Thriller\n112689,Miss Violence (2013),Drama|Mystery\n112735,Charlie's Country (2013),Drama\n112749,And So It Goes (2014),Comedy|Drama|Romance\n112767,Premature (2014),Comedy\n112788,Sex Tape (2014),Comedy\n112804,I Origins (2014),Drama|Sci-Fi\n112818,\"Purge: Anarchy, The (2014)\",Action|Horror|Thriller\n112850,Words and Pictures (2013),Comedy|Drama|Romance\n112852,Guardians of the Galaxy (2014),Action|Adventure|Sci-Fi\n112897,The Expendables 3 (2014),Action|Adventure\n112911,Hercules (2014),Action|Adventure\n112921,Once My Mother (2014),Documentary\n112940,A Most Wanted Man (2014),Thriller\n113064,\"Trip to Italy, The (2014)\",Comedy|Drama\n113186,Felony (2013),Thriller\n113207,Get on Up (2014),Drama|Musical\n113220,\"Dog, The (2013)\",Documentary\n113225,Magic in the Moonlight (2014),Comedy|Drama|Romance\n113252,Housebound (2014),Comedy|Horror|Thriller\n113275,The Hundred-Foot Journey (2014),Comedy|Drama\n113345,Jupiter Ascending (2015),Action|Adventure|Sci-Fi\n113348,Teenage Mutant Ninja Turtles (2014),Action|Adventure|Comedy\n113378,\"Giver, The (2014)\",Drama|Sci-Fi\n113416,Revenge of the Green Dragons (2014),Action|Crime|Drama\n113453,Let's Be Cops (2014),Comedy|Crime\n113532,\"Inbetweeners 2, The (2014)\",Comedy\n113565,\"Sacrament, The (2013)\",Horror|Thriller\n113573,Sin City: A Dame to Kill For (2014),Action|Crime|Thriller\n113640,\"Canal, The (2014)\",Horror|Thriller\n113705,\"Two Days, One Night (Deux jours, une nuit) (2014)\",Drama\n113741,Coherence (2013),Drama|Mystery|Sci-Fi|Thriller\n113780,\"As Above, So Below (2014)\",Horror|Thriller\n113829,\"One I Love, The (2014)\",Comedy|Drama|Romance\n113862,\"Guest, The (2014)\",Thriller\n113938,Nixon by Nixon: In His Own Words (2014),Documentary\n114028,Pride (2014),Comedy|Drama\n114044,Honeymoon (2014),Horror\n114060,The Drop (2014),Crime|Drama|Thriller\n114074,The Skeleton Twins (2014),Drama\n114082,Bambi Meets Godzilla (1969),Animation|Comedy\n114122,Dim Sum: A Little Bit of Heart (1985),Comedy\n114180,\"Maze Runner, The (2014)\",Action|Mystery|Sci-Fi\n114254,1971 (2014),Documentary\n114265,Laggies (2014),Comedy|Romance\n114342,Force Majeure (Turist) (2014),Drama\n114459,White Bird in a Blizzard (2014),Drama|Romance|Thriller\n114464,Helter Skelter (1976),Crime|Drama|Thriller\n114552,\"Boxtrolls, The (2014)\",Adventure|Animation|Children|Comedy|Fantasy\n114601,This Is Where I Leave You (2014),Comedy|Drama\n114635,\"Look of Silence, The (2014)\",Documentary\n114662,American Sniper (2014),Action|War\n114670,Tusk (2014),Comedy|Drama|Horror\n114707,Horns (2014),Horror|Mystery\n114762,Two Night Stand (2014),Comedy|Romance\n114766,SS Experiment Love Camp (Lager SSadis Kastrat Kommandantur) (1976),Horror|War\n114795,Dracula Untold (2014),Action|Drama|Fantasy\n114818,Stretch (2014),Action|Comedy|Crime\n114925,\"Captive, The (2014)\",Crime|Drama|Thriller\n114935,Predestination (2014),Action|Mystery|Sci-Fi|Thriller\n115122,What We Do in the Shadows (2014),Comedy|Horror\n115139,Challenge to Lassie (1949),Children|Drama\n115147,The Best of Me (2014),Drama|Romance\n115149,John Wick (2014),Action|Thriller\n115151,Plastic (2014),Action|Crime\n115170,\"Judge, The (2014)\",Drama\n115174,Love Is Strange (2014),Drama\n115210,Fury (2014),Action|Drama|War\n115216,\"Salvation, The (2014)\",Drama|Western\n115231,St. Vincent (2014),Comedy\n115502,\"Rewrite, The (2014)\",Comedy|Romance\n115534,Ouija (2014),Horror\n115569,Nightcrawler (2014),Crime|Drama|Thriller\n115617,Big Hero 6 (2014),Action|Animation|Comedy\n115624,Dream Home (Wai dor lei ah yut ho) (2010),Horror\n115664,The Book of Life (2014),Adventure|Animation|Romance\n115680,Time Lapse (2014),Crime|Drama|Sci-Fi|Thriller\n115713,Ex Machina (2015),Drama|Sci-Fi|Thriller\n115877,\"Simpsons: The Longest Daycare, The (2012)\",Animation|Comedy\n115881,9 (2005),Animation|Fantasy\n115927,Doctor Strange (2007),Action|Animation|Children|Fantasy|Sci-Fi\n116012,The Young Savages (1961),Crime|Drama\n116136,Olive Kitteridge (2014),Drama\n116161,Foxcatcher (2014),Drama\n116207,Zulu (2013),Crime|Drama|Thriller\n116397,Stonehearst Asylum (2014),Thriller\n116413,Life Partners (2014),Comedy|Romance\n116419,Drive Hard (2014),Action|Comedy|Crime\n116503,The Possession of Michael King (2014),Horror\n116660,Free Fall (2013),Drama\n116797,The Imitation Game (2014),Drama|Thriller|War\n116799,Inherent Vice (2014),Comedy|Crime|Drama|Mystery|Romance\n116823,The Hunger Games: Mockingjay - Part 1 (2014),Adventure|Sci-Fi|Thriller\n116849,Sex Ed (2014),Comedy|Romance\n116855,The Way He Looks (2014),Drama|Romance\n116887,Exodus: Gods and Kings (2014),Action|Adventure|Drama\n116897,Wild Tales (2014),Comedy|Drama|Thriller\n116939,Werner - Beinhart! (1990),Action|Animation|Comedy\n116977,Dumb and Dumber To (2014),Comedy\n116985,The Longest Week (2014),Comedy|Drama\n117107,Miss Meadows (2014),Drama\n117121,Dorothy Mills (2008),Drama|Horror|Mystery|Thriller\n117123,Dear White People (2014),Comedy|Drama\n117176,The Theory of Everything (2014),Drama|Romance\n117192,Doctor Who: The Time of the Doctor (2013),(no genres listed)\n117434,Starry Eyes (2014),Horror\n117444,Song of the Sea (2014),Animation|Children|Fantasy\n117456,Beyond the Lights (2014),Drama\n117511,Hello Ladies: The Movie (2014),Comedy\n117529,Jurassic World (2015),Action|Adventure|Drama|Sci-Fi|Thriller\n117533,Citizenfour (2014),Documentary\n117590,Horrible Bosses 2 (2014),Comedy|Crime\n117851,Penguins of Madagascar (2014),Adventure|Animation|Children|Comedy\n117871,\"Water Diviner, The (2014)\",Action|Drama|War\n117895,Maze Runner: Scorch Trials (2015),Action|Thriller\n118082,The Voices (2014),Comedy|Crime|Thriller\n118105,Trailer Park Boys: Live at the North Pole (2014),Comedy\n118248,Dying of the Light (2014),Drama|Thriller\n118260,The Borderlands (2013),Horror|Mystery\n118326,By the Gun (2014),Crime|Drama|Thriller\n118334,Omen IV: The Awakening (1991),Horror|Mystery|Thriller\n118354,Kill the Messenger (2014),Crime|Drama|Mystery|Thriller\n118468,Mei and the Kittenbus (2002),Animation|Fantasy\n118696,The Hobbit: The Battle of the Five Armies (2014),Adventure|Fantasy\n118700,Selma (2014),Drama\n118702,Unbroken (2014),Drama|War\n118814,Playing It Cool (2014),Comedy|Romance\n118880,\"Girl Walks Home Alone at Night, A (2014)\",Horror|Romance|Thriller\n118890,Bill Hicks: Relentless (1992),Comedy\n118898,A Most Violent Year (2014),Action|Crime|Drama|Thriller\n118900,Wild (2014),Drama\n118924,Top Five (2014),Comedy\n118985,Big Eyes (2014),Drama\n118997,Into the Woods (2014),Children|Comedy|Fantasy|Musical\n119068,\"Men, Women & Children (2014)\",Comedy|Drama\n119141,The Interview (2014),Action|Comedy\n119145,Kingsman: The Secret Service (2015),Action|Adventure|Comedy|Crime\n119155,Night at the Museum: Secret of the Tomb (2014),Adventure|Children|Comedy|Fantasy\n119655,Seventh Son (2014),Adventure|Children|Fantasy\n120392,Comet (2014),Comedy|Drama|Romance|Sci-Fi\n120466,Chappie (2015),Action|Thriller\n120635,Taken 3 (2015),Action|Crime|Thriller\n120637,Blackhat (2015),Action|Crime|Drama|Mystery|Thriller\n120783,Son of a Gun (2014),Action|Crime|Drama\n120799,Terminator Genisys (2015),Action|Adventure|Sci-Fi|Thriller\n120805,Robin Williams: Weapons of Self Destruction (2009),Comedy\n120821,The War at Home (1979),Documentary|War\n121113,Shriek If You Know What I Did Last Friday the Thirteenth (2000),Comedy|Horror\n121126,The Car (1977),Horror|Mystery|Thriller\n121171,Red Army (2014),Documentary\n121231,It Follows (2014),Horror\n121491,Off Beat (2004),Drama|Romance\n121618,The Great Gatsby (1926),Drama\n122490,Wicked Blood (2014),Action|Drama|Thriller\n122882,Mad Max: Fury Road (2015),Action|Adventure|Sci-Fi|Thriller\n122886,Star Wars: Episode VII - The Force Awakens (2015),Action|Adventure|Fantasy|Sci-Fi|IMAX\n122888,Ben-hur (2016),(no genres listed)\n122890,Warcraft (2016),Action|Adventure|Fantasy\n122892,Avengers: Age of Ultron (2015),Action|Adventure|Sci-Fi\n122900,Ant-Man (2015),Action|Adventure|Sci-Fi\n122902,Fantastic Four (2015),Action|Adventure|Fantasy|Sci-Fi\n122904,Deadpool (2016),Action|Adventure|Comedy|Sci-Fi\n122920,Captain America: Civil War (2016),Action|Sci-Fi|Thriller\n122924,X-Men: Apocalypse (2016),Action|Adventure|Fantasy|Sci-Fi\n122932,Elsa & Fred (2014),Children|Comedy|Romance\n123663,The Passionate Plumber (1932),Comedy\n123695,The Story on Page One (1959),Drama\n123947,Cake (2014),Drama\n124859,The Gambler (2014),Crime|Drama|Thriller\n125916,Fifty Shades of Grey (2015),Drama|Romance\n126006,Rudolph the Red-Nosed Reindeer (1948),Animation|Children|Fantasy\n126106,Beastie Boys: Sabotage (1994),(no genres listed)\n126420,American Heist (2015),Action\n126430,The Pacific (2010),Action|Adventure|Drama|War\n126548,The DUFF (2015),Comedy\n127052,Operation 'Y' & Other Shurik's Adventures (1965),Comedy|Crime|Romance\n127096,Project Almanac (2015),Sci-Fi|Thriller\n127098,Louis C.K.: Live at The Comedy Store (2015),Comedy\n127108,Brooklyn (2015),Drama|Romance\n127114,The End of the Tour (2015),Drama\n127124,I'll See You in My Dreams (2015),Comedy|Drama\n127136,True Story (2015),Drama|Mystery|Thriller\n127144,Drunk Stoned Brilliant Dead: The Story of the National Lampoon (2015),Comedy|Documentary\n127152,Going Clear: Scientology and the Prison of Belief (2015),Documentary\n127158,Tig (2015),Documentary\n127164,\"What Happened, Miss Simone? (2015)\",Documentary\n127178,99 Homes (2014),Drama\n127194,The D Train (2015),Comedy\n127198,Dope (2015),Comedy|Drama\n127202,Me and Earl and the Dying Girl (2015),Drama\n127204,The Overnight (2015),Comedy\n127206,\"People, Places, Things (2015)\",Comedy\n127212,The Stanford Prison Experiment (2015),Drama|Thriller\n127319,The Loft (2014),Thriller\n127728,Back Soon (2007),Drama|Romance\n128235,Stormy Weather (1943),Comedy|Documentary|Drama\n128360,The Hateful Eight (2015),Western\n128512,Paper Towns (2015),Drama|Mystery|Romance\n128520,The Wedding Ringer (2015),Comedy\n128592,The Boy Next Door (2015),Mystery|Thriller\n128606,45 Years (2015),Drama\n128616,As We Were Dreaming (2015),(no genres listed)\n128620,Victoria (2015),(no genres listed)\n128846,An Evening with Robin Williams (1982),Comedy\n129009,\"Getting Go, the Go Doc Project (2013)\",Drama\n129191,The Clowns (1970),Comedy|Drama|Fantasy|Sci-Fi\n129250,Superfast! (2015),(no genres listed)\n129313,Reality (2014),Comedy\n129354,Focus (2015),Comedy|Crime|Drama|Romance\n129364,Every Thing Will Be Fine (2015),Drama\n129428,The Second Best Exotic Marigold Hotel (2015),Comedy|Drama\n129514,George Carlin: It's Bad for Ya! (2008),Comedy\n129653,Ismael (2013),Drama\n129657,Tracers (2015),Action\n129659,\"McFarland, USA (2015)\",Drama\n129737,Unfinished Business (2015),Comedy\n129937,Run All Night (2015),Action|Crime|Drama|Thriller\n130073,Cinderella (2015),Children|Drama|Fantasy|Romance\n130083,Kidnapping Mr. Heineken (2015),Action|Crime|Drama|Thriller\n130087,The Cobbler (2015),Comedy|Drama|Fantasy\n130351,The Wrecking Crew (2008),Documentary\n130448,Poltergeist (2015),Horror|Thriller\n130450,Pan (2015),Adventure|Children|Fantasy\n130452,While We're Young (2014),Comedy|Drama\n130490,Insurgent (2015),Action|Sci-Fi|Thriller\n130520,Home (2015),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi\n130522,The Brave Little Toaster Goes to Mars (1998),Animation|Children\n130576,Midnight Special (2015),Drama|Sci-Fi\n130580,The Disappearance of Eleanor Rigby: Her (2013),Drama\n130628,Boys (2014),Drama\n130634,Furious 7 (2015),Action|Crime|Thriller\n130642,Backcountry (2014),Drama|Horror|Thriller\n130682,Muck (2015),Horror\n130960,The Conrad Boys (2006),Drama\n130970,George Carlin: Life Is Worth Losing (2005),Comedy\n130980,The Day That Lasted 21 Years (2012),Documentary\n131013,Get Hard (2015),Comedy|Crime\n131168,Phoenix (2014),Drama\n131451,The Atticus Institute (2015),Horror\n131714,Last Knights (2015),Action|Adventure\n131724,The Jinx: The Life and Deaths of Robert Durst (2015),Documentary\n131796,Woman in Gold (2015),Drama\n131830,Samba (2014),Comedy|Drama\n132046,Tomorrowland (2015),Action|Adventure|Children|Mystery|Sci-Fi\n132074,No No: A Dockumentary (2014),Documentary\n132146,The Harvest (2013),Drama|Thriller\n132157,Paul Blart: Mall Cop 2 (2015),Action|Comedy|Crime\n132333,Seve (2014),Documentary|Drama\n132458,Monkey Kingdom (2015),Documentary\n132462,Sword of Vengeance (2014),Action|Adventure|Drama\n132480,The Age of Adaline (2015),Drama|Fantasy|Romance\n132488,Lovesick (2014),Comedy|Romance\n132496,Danny Collins (2015),Comedy|Drama\n132547,A Girl Like Her (2015),Drama\n132549,Grandma (2015),(no genres listed)\n132618,Kite (2014),Action|Crime|Drama|Mystery|Thriller\n132796,San Andreas (2015),Action|Drama|Thriller\n132800,Welcome to Me (2014),Comedy|Drama\n132888,Comedy Central Roast of James Franco (2013),Comedy\n132952,Sarfarosh (1999),(no genres listed)\n132961,Far from the Madding Crowd (2015),Drama\n133195,Hitman: Agent 47 (2015),Action|Crime|Thriller\n133281,Ricki and the Flash (2015),Comedy|Drama\n133295,Cocaine Cowboys: Reloaded (2014),Documentary\n133365,Partisan (2015),Drama|Thriller\n133377,Infini (2015),Horror|Sci-Fi|Thriller\n133419,Pitch Perfect 2 (2015),Comedy\n133545,Just Before I Go (2014),Comedy|Drama\n133645,Carol (2015),Drama|Romance\n133771,The Lobster (2015),Comedy|Romance|Sci-Fi\n133782,Maggie (2015),Drama|Horror|Thriller\n133798,Hot Pursuit (2015),Action|Comedy\n133824,The Human Centipede III (Final Sequence) (2015),Horror\n134025,Open Secret (2013),(no genres listed)\n134130,The Martian (2015),Adventure|Drama|Sci-Fi\n134158,Return to Sender (2015),Thriller\n134170,Kung Fury (2015),Action|Comedy|Fantasy|Sci-Fi\n134246,Survivor (2015),Action|Thriller\n134368,Spy (2015),Action|Comedy|Crime\n134393,Trainwreck (2015),Comedy|Romance\n134528,Aloha (2015),Comedy|Drama|Romance\n134569,She's Funny That Way (2015),Comedy\n134783,Entourage (2015),Comedy\n134853,Inside Out (2015),Adventure|Animation|Children|Comedy|Drama|Fantasy\n134859,The Wolfpack (2015),Documentary\n134881,Love & Mercy (2014),Drama\n135133,The Hunger Games: Mockingjay - Part 2 (2015),Adventure|Sci-Fi\n135137,Pixels (2015),Action|Comedy|Sci-Fi\n135264,Zenon: Girl of the 21st Century (1999),Adventure|Children|Comedy\n135266,Zenon: The Zequel (2001),Adventure|Children|Comedy|Sci-Fi\n135268,Zenon: Z3 (2004),Adventure|Children|Comedy\n135436,The Secret Life of Pets (2016),Animation|Comedy\n135508,A Deadly Adoption (2015),Comedy|Thriller\n135518,Self/less (2015),Action|Mystery|Sci-Fi|Thriller\n135532,The Last Witch Hunter (2015),Action|Adventure|Fantasy\n135536,Suicide Squad (2016),Action|Crime|Sci-Fi\n135567,Independence Day: Resurgence (2016),Action|Adventure|Sci-Fi\n135569,Star Trek 3 (2016),Action|Adventure|Sci-Fi\n135861,Ted 2 (2015),Comedy\n135887,Minions (2015),Adventure|Animation|Children|Comedy\n136016,The Good Dinosaur (2015),Adventure|Animation|Children|Comedy|Fantasy\n136018,Black Mass (2015),Crime|Drama\n136020,Spectre (2015),Action|Adventure|Crime\n136305,Sharknado 3: Oh Hell No! (2015),Horror|Sci-Fi\n136445,George Carlin: Back in Town (1996),Comedy\n136447,George Carlin: You Are All Diseased (1999),Comedy\n136449,Ghost in the Shell 2.0 (2008),Action|Animation|Sci-Fi\n136562,Steve Jobs (2015),Drama\n136592,Freaky Friday (1995),(no genres listed)\n136598,Vacation (2015),Adventure|Comedy\n136602,Creep (2014),Horror|Thriller\n136654,The Face of an Angel (2015),Drama\n136666,Search Party (2014),Comedy\n136800,Robot Overlords (2014),Action|Adventure|Sci-Fi\n136816,Bad Asses on the Bayou (2015),Action|Comedy\n136864,Batman v Superman: Dawn of Justice (2016),Action|Adventure|Fantasy|Sci-Fi\n137337,Amy (2015),Documentary\n137403,Swimming Upstream (2002),Drama\n137595,Magic Mike XXL (2015),Comedy|Drama\n137857,The Jungle Book (2016),Adventure|Drama|Fantasy\n138036,The Man from U.N.C.L.E. (2015),Action|Adventure|Comedy\n138204,7 Days in Hell (2015),Comedy\n138208,The Walk (2015),Adventure|Drama|Thriller\n138258,Nasty Baby (2015),Drama\n138546,The Opposite Sex (2014),Comedy\n138610,The Gallows (2015),Horror|Thriller\n138696,Hands in the Air (2010),Comedy|Drama|Romance\n138698,El vals de los inútiles (2014),Documentary\n139116,Requiem For The Big East (2014),Documentary\n139130,Afro Samurai (2007),Action|Adventure|Animation|Drama|Fantasy\n139385,The Revenant (2015),Adventure|Drama\n139415,Irrational Man (2015),Crime|Drama\n139620,Everything's Gonna Be Great (1998),Adventure|Children|Comedy|Drama\n139642,Southpaw (2015),Action|Drama\n139644,Sicario (2015),Crime|Drama|Mystery\n139757,Best of Enemies (2015),Documentary\n139855,Anomalisa (2015),Animation|Comedy|Fantasy\n139915,How to Make Love Like an Englishman (2014),Comedy|Romance\n140110,The Intern (2015),Comedy\n140152,Dreamcatcher (2015),Children|Crime|Documentary\n140174,Room (2015),Drama\n140237,The Runner (2015),Drama\n140247,The Gift (2015),Drama|Horror\n140265,George Carlin: Jammin' in New York (1992),Comedy\n140267,The Witch (2015),Horror\n140523,\"Visit, The (2015)\",Comedy|Horror\n140711,American Ultra (2015),Action|Comedy|Sci-Fi|Thriller\n140715,Straight Outta Compton (2015),Drama\n140725,Cop Car (2015),Crime|Thriller\n140739,Eighteen (2005),Drama\n140741,Get Your Stuff (2000),Drama|Romance\n140743,The Man I Love (1997),Drama\n140745,10 Attitudes (2001),Comedy|Drama|Romance\n140747,16 Wishes (2010),Children|Drama|Fantasy\n140749,29th and Gay (2005),Comedy\n140751,Almost Normal (2005),Comedy|Drama|Sci-Fi\n140753,The Men Next Door (2012),(no genres listed)\n140755,Long-Term Relationship (2006),Comedy|Romance\n140757,3-Day Weekend (2008),Drama\n140759,The Big Gay Musical (2009),Comedy|Drama|Romance\n140761,The Biggest Fan (2002),Comedy|Romance\n140763,Boy Crazy (2009),(no genres listed)\n140816,Tangerine (2015),Comedy|Drama\n140880,Fashion Victims (2007),Comedy\n140928,Joy (2015),Comedy|Drama\n141124,FAQs (2005),Drama\n141422,Suffragette (2015),Drama\n141668,War Room (2015),Drama\n141688,Legend (2015),Crime|Thriller\n141718,Deathgasm (2015),Comedy|Horror\n141749,The Danish Girl (2015),Drama\n141866,Green Room (2015),(no genres listed)\n141886,The Dress (1996),Comedy|Drama\n141890,Beasts of No Nation (2015),Drama|War\n141956,Contracted: Phase II (2015),Drama|Horror|Thriller\n142068,Tiger Orange (2014),Drama\n142192,Female on the Beach (1955),Crime|Drama|Mystery|Romance|Thriller\n142240,Romeos (2011),Drama\n142258,Listen to Me Marlon (2015),Documentary\n142422,The Night Before (2015),Comedy\n142448,Everest (2015),Adventure|Drama|Thriller\n142488,Spotlight (2015),Thriller\n142507,Pawn Sacrifice (2015),Drama\n142536,Burnt (2015),Drama\n142997,Hotel Transylvania 2 (2015),Animation|Comedy\n143255,Narcopolis (2014),Mystery|Sci-Fi|Thriller\n143257,Ashby (2015),Comedy|Drama\n143377,Glen Campbell: I'll Be Me (2014),Documentary|Drama\n143385,Bridge of Spies (2015),Drama|Thriller\n143410,Hyena Road,(no genres listed)\n143472,Into the Grizzly Maze (2015),Action|Horror|Thriller\n143657,The Invitation (2015),Horror|Thriller\n143859,\"Hail, Caesar! (2016)\",Comedy\n144172,February (2015),Horror\n144620,Goosebumps (2015),Adventure|Comedy|Horror\n144714,The Perfect Guy (2015),Drama|Thriller\n144976,Bone Tomahawk (2015),Horror|Western\n145150,The Dressmaker (2015),Comedy|Drama|Thriller\n145307,Strictly Business (1991),Comedy|Romance\n145775,Rubble Kings (2015),Documentary\n145839,Concussion (2015),Drama\n145935,\"Peanuts Movie, The (2015)\",Adventure|Animation|Children|Comedy\n146309,The Boy and the Beast (2015),Action|Adventure|Animation\n146443,Plan B (2009),Comedy|Drama|Romance\n146501,Land of Storms (2014),Drama\n146604,Naomi and Ely's No Kiss List (2015),Comedy|Drama|Romance\n146656,Creed (2015),Drama\n146682,Twinsters (2015),Documentary\n146688,Solace (2015),Fantasy|Mystery|Thriller\n147006,Bana Masal Anlatma (2015),Comedy|Drama\n147010,Thou Gild'st the Even (2013),Drama|Fantasy|Romance\n147037,Straight-Jacket (2004),Comedy\n147426,İtirazım Var (2014),Action|Crime|Drama\n147845,Manson Family Vacation (2015),Comedy|Drama|Thriller\n148168,Pek Yakında (2014),Action|Comedy|Drama\n148238,A Very Murray Christmas (2015),Comedy\n148372,Schneider vs. Bax (2015),Comedy|Thriller\n148482,Truth (2015),Drama\n148626,\"Big Short, The (2015)\",Drama\n148652,The Ridiculous 6 (2015),Comedy|Western\n148881,World of Tomorrow (2015),Animation|Comedy\n148888,Zoolander 2 (2016),Comedy\n148956,How to Be Single (2016),Comedy|Romance\n149352,Daddy's Home (2015),Comedy\n149354,Sisters (2015),Children|Comedy\n149406,Kung Fu Panda 3 (2016),Action|Adventure|Animation\n149532,Marco Polo: One Hundred Eyes (2015),(no genres listed)\n149572,A.R.O.G. (2008),Comedy|Fantasy\n149590,Standoff (2016),Thriller\n149606,Bajirao Mastani (2015),Romance|War\n149612,Swelter (2014),Action|Drama|Thriller\n149830,Pride and Prejudice and Zombies (2016),Comedy|Horror|Romance|Thriller\n150401,Close Range (2015),Action|Crime\n150548,Sherlock: The Abominable Bride (2016),Action|Crime|Drama|Mystery|Thriller\n150856,Making a Murderer (2015),Documentary\n151307,The Lovers and the Despot,(no genres listed)\n151639,The Boy (2016),Horror|Thriller\n152017,Me Before You (2016),Drama|Romance\n152025,SOMM: Into the Bottle (2016),Documentary\n152057,Miles Ahead (2016),Drama\n152077,10 Cloverfield Lane (2016),Thriller\n152079,London Has Fallen (2016),Action|Crime|Thriller\n152081,Zootopia (2016),Action|Adventure|Animation|Children|Comedy\n152091,The Brothers Grimsby (2016),Comedy\n152173,Michael Jackson's Thriller (1983),Horror\n152844,Demons (1971),Horror\n153584,The Last Days of Emma Blank (2009),Comedy\n155064,The Neon Demon (2016),Drama|Horror|Mystery\n155392,\"Hello, My Name Is Doris (2016)\",Drama\n155611,Life Is Sacred (2014),Documentary\n155820,Keanu (2016),Comedy\n156025,Ice Age: The Great Egg-Scapade (2016),Adventure|Animation|Children|Comedy\n156387,Sing Street (2016),Drama\n156607,The Huntsman Winter's War (2016),Action|Adventure|Drama|Fantasy\n156609,Neighbors 2: Sorority Rising (2016),Comedy\n156726,Hush (2016),Thriller\n157200,Money Monster (2016),Drama|Thriller\n157296,Finding Dory (2016),Adventure|Animation|Comedy\n157407,I Am Wrath (2016),Action|Crime|Drama|Thriller\n157667,Mother's Day (2016),Comedy\n158238,The Nice Guys (2016),Crime|Mystery|Thriller\n158314,Daniel Tosh: Completely Serious (2007),Comedy\n158528,The Shallows (2016),Drama|Thriller\n158783,The Handmaiden (2016),Drama|Romance|Thriller\n158956,Kill Command (2016),Action|Horror|Sci-Fi\n159093,Now You See Me 2 (2016),Action|Comedy|Thriller\n159462,The Video Dead (1987),Horror\n159690,Teenage Mutant Ninja Turtles: Out of the Shadows (2016),Action|Adventure|Comedy\n159755,Popstar: Never Stop Never Stopping (2016),Comedy\n159858,The Conjuring 2 (2016),Horror\n159972,Approaching the Unknown (2016),Drama|Sci-Fi|Thriller\n160080,Ghostbusters (2016),Action|Comedy|Horror|Sci-Fi\n160271,Central Intelligence (2016),Action|Comedy\n160438,Jason Bourne (2016),Action\n160440,The Maid's Room (2014),Thriller\n160563,The Legend of Tarzan (2016),Action|Adventure\n160565,The Purge: Election Year (2016),Action|Horror|Sci-Fi\n160567,Mike & Dave Need Wedding Dates (2016),Comedy\n160590,Survive and Advance (2013),(no genres listed)\n160656,Tallulah (2016),Drama\n160718,Piper (2016),Animation\n160954,Nerve (2016),Drama|Thriller\n161084,My Friend Rockefeller (2015),Documentary\n161155,Sunspring (2016),Sci-Fi\n161336,Author: The JT LeRoy Story (2016),Documentary\n161582,Hell or High Water (2016),Crime|Drama\n161594,Kingsglaive: Final Fantasy XV (2016),Action|Adventure|Animation|Drama|Fantasy|Sci-Fi\n161830,Body (2015),Drama|Horror|Thriller\n161918,Sharknado 4: The 4th Awakens (2016),Action|Adventure|Horror|Sci-Fi\n161944,The Last Brickmaker in America (2001),Drama\n162376,Stranger Things,Drama\n162542,Rustom (2016),Romance|Thriller\n162672,Mohenjo Daro (2016),Adventure|Drama|Romance\n163056,Shin Godzilla (2016),Action|Adventure|Fantasy|Sci-Fi\n163949,The Beatles: Eight Days a Week - The Touring Years (2016),Documentary\n164977,The Gay Desperado (1936),Comedy\n164979,\"Women of '69, Unboxed\",Documentary\n"
  },
  {
    "path": "基于矩阵分解的协同过滤的电影推荐系统/ml-latest-small/ratings.csv",
    "content": "userId,movieId,rating,timestamp\n1,31,2.5,1260759144\n1,1029,3.0,1260759179\n1,1061,3.0,1260759182\n1,1129,2.0,1260759185\n1,1172,4.0,1260759205\n1,1263,2.0,1260759151\n1,1287,2.0,1260759187\n1,1293,2.0,1260759148\n1,1339,3.5,1260759125\n1,1343,2.0,1260759131\n1,1371,2.5,1260759135\n1,1405,1.0,1260759203\n1,1953,4.0,1260759191\n1,2105,4.0,1260759139\n1,2150,3.0,1260759194\n1,2193,2.0,1260759198\n1,2294,2.0,1260759108\n1,2455,2.5,1260759113\n1,2968,1.0,1260759200\n1,3671,3.0,1260759117\n2,10,4.0,835355493\n2,17,5.0,835355681\n2,39,5.0,835355604\n2,47,4.0,835355552\n2,50,4.0,835355586\n2,52,3.0,835356031\n2,62,3.0,835355749\n2,110,4.0,835355532\n2,144,3.0,835356016\n2,150,5.0,835355395\n2,153,4.0,835355441\n2,161,3.0,835355493\n2,165,3.0,835355441\n2,168,3.0,835355710\n2,185,3.0,835355511\n2,186,3.0,835355664\n2,208,3.0,835355511\n2,222,5.0,835355840\n2,223,1.0,835355749\n2,225,3.0,835355552\n2,235,3.0,835355664\n2,248,3.0,835355896\n2,253,4.0,835355511\n2,261,4.0,835355681\n2,265,5.0,835355697\n2,266,5.0,835355586\n2,272,3.0,835355767\n2,273,4.0,835355779\n2,292,3.0,835355492\n2,296,4.0,835355395\n2,300,3.0,835355532\n2,314,4.0,835356044\n2,317,2.0,835355551\n2,319,1.0,835355918\n2,339,3.0,835355492\n2,349,4.0,835355441\n2,350,4.0,835355697\n2,356,3.0,835355628\n2,357,3.0,835355749\n2,364,3.0,835355604\n2,367,3.0,835355619\n2,370,2.0,835355932\n2,371,3.0,835355968\n2,372,3.0,835356094\n2,377,3.0,835355710\n2,382,3.0,835356165\n2,405,2.0,835356246\n2,410,3.0,835355532\n2,454,4.0,835355604\n2,457,3.0,835355511\n2,468,4.0,835355790\n2,474,2.0,835355828\n2,480,4.0,835355643\n2,485,3.0,835355918\n2,497,3.0,835355880\n2,500,4.0,835355731\n2,508,4.0,835355860\n2,509,4.0,835355719\n2,515,4.0,835355817\n2,527,4.0,835355731\n2,537,4.0,835356199\n2,539,3.0,835355767\n2,550,3.0,835356109\n2,551,5.0,835355767\n2,552,3.0,835355860\n2,585,5.0,835355817\n2,586,3.0,835355790\n2,587,3.0,835355779\n2,588,3.0,835355441\n2,589,5.0,835355697\n2,590,5.0,835355395\n2,592,5.0,835355395\n2,593,3.0,835355511\n2,616,3.0,835355932\n2,661,4.0,835356141\n2,720,4.0,835355978\n3,60,3.0,1298861675\n3,110,4.0,1298922049\n3,247,3.5,1298861637\n3,267,3.0,1298861761\n3,296,4.5,1298862418\n3,318,5.0,1298862121\n3,355,2.5,1298861589\n3,356,5.0,1298862167\n3,377,2.5,1298923242\n3,527,3.0,1298862528\n3,588,3.0,1298922100\n3,592,3.0,1298923247\n3,593,3.0,1298921840\n3,595,2.0,1298923260\n3,736,3.5,1298932787\n3,778,4.0,1298863157\n3,866,3.0,1298861687\n3,1197,5.0,1298932770\n3,1210,3.0,1298921795\n3,1235,4.0,1298861628\n3,1271,3.0,1298861605\n3,1378,4.0,1298861658\n3,1580,3.5,1298922089\n3,1721,4.5,1298923236\n3,1884,4.0,1298863143\n3,2028,4.0,1298921862\n3,2318,4.0,1298861753\n3,2513,3.0,1298861789\n3,2694,3.0,1298862710\n3,2702,3.5,1298861796\n3,2716,3.0,1298924017\n3,2762,3.5,1298922057\n3,2841,4.0,1298861733\n3,2858,4.0,1298921825\n3,2959,5.0,1298862874\n3,3243,3.0,1298861968\n3,3510,4.0,1298861633\n3,3949,5.0,1298863174\n3,5349,3.0,1298923266\n3,5669,3.5,1298862672\n3,6377,3.0,1298922080\n3,7153,2.5,1298921787\n3,7361,3.0,1298922065\n3,8622,3.5,1298861650\n3,8636,3.0,1298932766\n3,27369,3.5,1298862555\n3,44191,3.5,1298932740\n3,48783,4.5,1298862361\n3,50068,4.5,1298862467\n3,58559,3.0,1298922071\n3,84236,4.0,1298922130\n4,10,4.0,949810645\n4,34,5.0,949919556\n4,112,5.0,949810582\n4,141,5.0,949919681\n4,153,4.0,949811346\n4,173,3.0,949811346\n4,185,3.0,949920047\n4,260,5.0,949779042\n4,289,4.0,949778802\n4,296,5.0,949895708\n4,329,3.0,949810618\n4,349,5.0,949810582\n4,356,5.0,949919763\n4,357,5.0,949919681\n4,364,5.0,949949538\n4,367,4.0,949895887\n4,380,3.0,949810534\n4,410,3.0,949919883\n4,431,3.0,949895772\n4,434,4.0,949810688\n4,435,1.0,949920135\n4,440,4.0,949919802\n4,442,4.0,949920028\n4,464,4.0,949811315\n4,480,5.0,949810582\n4,541,5.0,949779091\n4,588,5.0,949949486\n4,589,5.0,949919938\n4,590,3.0,949810534\n4,594,5.0,949949538\n4,596,5.0,949949638\n4,610,4.0,949982238\n4,616,5.0,949949444\n4,858,5.0,949779022\n4,903,5.0,949919189\n4,910,4.0,949919306\n4,913,5.0,949919247\n4,919,5.0,949949396\n4,1011,4.0,949919454\n4,1016,4.0,949919322\n4,1022,5.0,949949638\n4,1028,5.0,949949638\n4,1030,5.0,949896377\n4,1031,5.0,949896377\n4,1032,5.0,949949538\n4,1033,5.0,949949638\n4,1036,5.0,949896244\n4,1073,5.0,949919372\n4,1079,5.0,949811523\n4,1089,5.0,949895732\n4,1097,5.0,949778771\n4,1125,5.0,949919399\n4,1127,5.0,949896275\n4,1136,5.0,949919372\n4,1194,5.0,949919419\n4,1196,5.0,949779173\n4,1197,5.0,949811490\n4,1198,5.0,949779173\n4,1200,5.0,949896244\n4,1206,5.0,949896159\n4,1208,5.0,949779173\n4,1210,5.0,949778714\n4,1213,5.0,949895708\n4,1214,5.0,949810261\n4,1219,5.0,949779173\n4,1220,5.0,949811523\n4,1222,5.0,949918693\n4,1225,5.0,949779173\n4,1230,5.0,949919372\n4,1240,5.0,949896244\n4,1243,5.0,949919519\n4,1257,5.0,949811602\n4,1258,5.0,949918743\n4,1259,4.0,949811559\n4,1265,5.0,949919591\n4,1270,5.0,949811523\n4,1278,5.0,949919372\n4,1282,5.0,949949396\n4,1285,4.0,949811559\n4,1288,5.0,949811490\n4,1291,5.0,949918743\n4,1298,4.0,949918927\n4,1307,4.0,949811602\n4,1332,4.0,949896275\n4,1334,5.0,949982274\n4,1344,5.0,949919247\n4,1356,4.0,949810582\n4,1371,4.0,949810302\n4,1372,3.0,949920004\n4,1374,4.0,949918787\n4,1376,3.0,949918904\n4,1377,3.0,949810688\n4,1380,5.0,949896377\n4,1387,5.0,949810261\n4,1388,4.0,949810302\n4,1396,5.0,949895772\n4,1544,3.0,949811230\n4,1580,5.0,949919978\n4,1663,4.0,949811559\n4,1674,5.0,949896244\n4,1805,1.0,949895864\n4,1858,5.0,949919738\n4,1917,4.0,949810688\n4,1918,2.0,949895956\n4,1953,5.0,949810261\n4,1954,5.0,949810261\n4,1961,5.0,949918743\n4,1967,3.0,949949538\n4,1968,5.0,949811559\n4,1994,5.0,949896309\n4,2000,5.0,949811602\n4,2002,3.0,949895907\n4,2003,2.0,949918970\n4,2005,5.0,949896070\n4,2014,4.0,949919454\n4,2018,5.0,949778771\n4,2020,4.0,949811738\n4,2021,4.0,949896114\n4,2033,4.0,949982239\n4,2034,4.0,949896183\n4,2046,5.0,949810618\n4,2054,3.0,949896114\n4,2064,5.0,949918648\n4,2078,5.0,949949444\n4,2080,5.0,949919306\n4,2081,4.0,949982239\n4,2085,5.0,949949444\n4,2086,5.0,949896114\n4,2087,5.0,949949638\n4,2091,5.0,949896183\n4,2094,4.0,949920028\n4,2096,5.0,949949538\n4,2100,5.0,949896114\n4,2102,5.0,949949396\n4,2105,4.0,949896114\n4,2109,5.0,949919399\n4,2110,3.0,949896309\n4,2114,5.0,949918927\n4,2115,5.0,949918994\n4,2124,4.0,949919763\n4,2140,5.0,949896070\n4,2141,4.0,949982239\n4,2143,4.0,949896114\n4,2144,5.0,949811603\n4,2161,5.0,949896070\n4,2174,5.0,949896070\n4,2193,3.0,949896070\n4,2194,5.0,949918764\n4,2248,4.0,949811559\n4,2263,3.0,949896309\n4,2268,5.0,949895772\n4,2289,5.0,949919556\n4,2348,4.0,949918927\n4,2371,4.0,949811603\n4,2403,4.0,949918994\n4,2406,5.0,949918994\n4,2409,4.0,949810302\n4,2454,5.0,949982274\n4,2467,5.0,949918875\n4,2551,4.0,949896275\n4,2616,1.0,949895993\n4,2628,5.0,949810582\n4,2640,5.0,949810261\n4,2659,3.0,949918671\n4,2683,4.0,949896497\n4,2699,4.0,949896497\n4,2716,5.0,949811523\n4,2723,5.0,949810582\n4,2734,4.0,949778714\n4,2770,1.0,949896521\n4,2788,5.0,949919399\n4,2791,5.0,949811490\n4,2795,4.0,949811603\n4,2797,5.0,949896070\n4,2804,5.0,949811738\n4,2822,3.0,949811230\n4,2867,3.0,949918875\n4,2872,5.0,949896114\n4,2877,5.0,949896377\n4,2902,2.0,949896309\n4,2903,1.0,949896309\n4,2916,4.0,949810534\n4,2918,5.0,949811559\n4,2968,5.0,949896070\n4,2986,3.0,949896015\n4,2987,5.0,949918807\n4,2991,5.0,949810261\n4,3016,3.0,949896543\n4,3034,5.0,949949444\n4,3039,4.0,949811559\n4,3040,5.0,949919419\n4,3060,5.0,949919656\n4,3071,4.0,949918715\n4,3101,4.0,949896275\n4,3104,4.0,949811603\n4,3108,5.0,949919738\n4,3169,4.0,949918904\n4,3208,2.0,949778946\n4,3210,4.0,949811523\n4,3251,5.0,949918970\n4,3255,4.0,949919738\n4,3263,3.0,949919845\n4,3265,5.0,949895732\n4,4006,2.0,949982238\n5,3,4.0,1163374957\n5,39,4.0,1163374952\n5,104,4.0,1163374639\n5,141,4.0,1163374242\n5,150,4.0,1163374404\n5,231,3.5,1163373762\n5,277,4.5,1163373208\n5,344,3.5,1163373636\n5,356,4.0,1163374152\n5,364,4.0,1163373752\n5,367,4.0,1163373755\n5,377,4.0,1163373610\n5,440,4.0,1163374477\n5,500,4.5,1163373718\n5,586,4.0,1163374392\n5,588,3.5,1163373551\n5,595,4.0,1163374190\n5,597,5.0,1163373711\n5,788,3.5,1163374993\n5,858,2.5,1163373651\n5,903,3.5,1163373135\n5,919,4.0,1163374286\n5,1022,4.0,1163373316\n5,1035,5.0,1163373103\n5,1193,3.0,1163374173\n5,1221,2.5,1163374239\n5,1247,4.0,1163374582\n5,1307,4.0,1163374495\n5,1380,5.0,1163373044\n5,1393,3.5,1163374165\n5,1485,4.5,1163374608\n5,1544,3.5,1163374562\n5,1682,4.0,1163374214\n5,1721,4.0,1163373744\n5,1777,4.0,1163374601\n5,1784,4.5,1163374251\n5,1923,4.5,1163373726\n5,1961,4.0,1163373675\n5,1968,4.0,1163374324\n5,1997,3.5,1163374593\n5,2023,1.5,1163373188\n5,2081,5.0,1163373109\n5,2273,4.0,1163373276\n5,2294,4.0,1163373251\n5,2355,3.5,1163374184\n5,2424,4.0,1163373193\n5,2502,3.5,1163374290\n5,2683,4.0,1163373679\n5,2694,4.5,1163373293\n5,2706,4.0,1163374246\n5,2762,3.5,1163373743\n5,2770,3.5,1163374947\n5,2918,3.5,1163374278\n5,2997,3.5,1163374127\n5,3114,3.5,1163374263\n5,3176,3.5,1163374408\n5,3408,4.0,1163374137\n5,3753,3.5,1163373148\n5,3897,4.5,1163374235\n5,3948,3.5,1163374198\n5,4014,4.0,1163373273\n5,4018,4.0,1163375025\n5,4022,3.5,1163373696\n5,4025,4.5,1163375145\n5,4306,3.5,1163374103\n5,4308,3.5,1163374354\n5,4447,4.5,1163375033\n5,4718,3.5,1163375131\n5,4963,3.0,1163373548\n5,4995,4.5,1163373616\n5,5266,3.5,1163374995\n5,5299,4.5,1163373299\n5,5349,4.5,1163373606\n5,5464,4.0,1163374443\n5,5669,3.5,1163374206\n5,5679,4.5,1163374389\n5,5816,3.0,1163373688\n5,5995,4.0,1163374533\n5,6218,3.5,1163374491\n5,6373,4.0,1163374572\n5,6377,4.0,1163373626\n5,6502,4.0,1163374455\n5,6711,2.5,1163373238\n5,6942,4.0,1163374511\n5,8376,4.0,1163374742\n5,8464,4.0,1163374381\n5,8622,3.5,1163374118\n5,8636,4.5,1163373593\n5,8644,4.0,1163374426\n5,30707,4.5,1163374340\n5,30749,4.5,1163374702\n5,30793,3.5,1163374177\n5,33166,5.0,1163374211\n5,33679,4.0,1163374517\n5,34162,4.5,1163374227\n5,35836,4.0,1163374275\n5,40819,4.5,1163374283\n5,41566,4.0,1163374144\n5,41569,4.0,1163374167\n5,48385,4.5,1163374357\n6,111,4.0,1109258212\n6,158,2.0,1108134263\n6,173,2.0,1109258228\n6,293,5.0,1108134539\n6,596,4.0,1108134269\n6,903,4.0,1108134299\n6,1204,5.0,1108134266\n6,1250,4.5,1108134284\n6,1259,4.5,1109258196\n6,1276,4.5,1108134309\n6,1285,4.5,1108134339\n6,1358,2.0,1109258181\n6,1639,2.0,1109258179\n6,1687,2.0,1109258281\n6,1747,2.0,1109258194\n6,1876,0.5,1108134334\n6,1909,3.0,1108134344\n6,2001,3.0,1108134289\n6,2019,4.0,1109258270\n6,2072,4.0,1109258285\n6,2174,4.0,1109258175\n6,2502,3.5,1108134291\n6,2528,3.0,1109258245\n6,2529,4.0,1108134293\n6,2571,1.0,1109258202\n6,2657,2.0,1108134271\n6,2692,4.0,1108134274\n6,2723,3.0,1109258257\n6,2761,4.5,1108134545\n6,2890,3.0,1109258199\n6,3052,1.0,1108134337\n6,3114,4.0,1109258183\n6,3300,3.5,1109258250\n6,3751,1.5,1109258190\n6,4641,1.5,1109258217\n6,4975,1.5,1109258226\n6,5952,5.0,1108134311\n6,7090,3.0,1108134534\n6,7153,5.0,1108134519\n6,7361,4.0,1108134524\n6,8368,3.5,1108134526\n6,8636,4.0,1108134537\n6,8784,3.0,1108134531\n6,8874,4.5,1108134521\n7,1,3.0,851866703\n7,10,3.0,851869035\n7,21,3.0,851867289\n7,31,3.0,851868750\n7,34,4.0,851867861\n7,40,4.0,851866901\n7,104,3.0,851866744\n7,110,5.0,851868188\n7,112,4.0,851866720\n7,141,4.0,851866704\n7,151,4.0,851868206\n7,198,2.0,851868704\n7,207,3.0,851868705\n7,260,5.0,851869062\n7,272,3.0,851868188\n7,316,2.0,851869161\n7,318,5.0,851868187\n7,329,3.0,851868524\n7,333,3.0,851867345\n7,345,3.0,851867621\n7,355,3.0,851867941\n7,356,3.0,851868188\n7,357,3.0,851867436\n7,364,3.0,851868020\n7,367,3.0,851867790\n7,377,3.0,851869291\n7,380,4.0,851869291\n7,480,4.0,851869161\n7,500,3.0,851867669\n7,534,4.0,851868246\n7,539,3.0,851867688\n7,541,4.0,851869035\n7,551,4.0,851868019\n7,588,4.0,851868044\n7,589,3.0,851869140\n7,590,4.0,851868186\n7,592,3.0,851868863\n7,594,4.0,851868020\n7,595,3.0,851868044\n7,610,3.0,851868074\n7,671,4.0,851866806\n7,708,3.0,851866744\n7,720,5.0,851868019\n7,724,2.0,851866784\n7,736,1.0,851866704\n7,737,1.0,851866763\n7,745,5.0,851868020\n7,780,3.0,851866703\n7,786,2.0,851866744\n7,924,4.0,851868289\n7,1036,3.0,851869102\n7,1073,3.0,851866744\n7,1079,4.0,851867320\n7,1080,4.0,851867289\n7,1097,3.0,851868308\n7,1125,3.0,851867553\n7,1129,3.0,851869103\n7,1136,4.0,851867289\n7,1148,5.0,851868019\n7,1196,5.0,851869034\n7,1197,3.0,851867289\n7,1198,5.0,851869035\n7,1210,5.0,851869034\n7,1220,4.0,851867379\n7,1223,5.0,851868044\n7,1225,5.0,851868246\n7,1231,4.0,851868321\n7,1240,4.0,851869062\n7,1242,5.0,851868289\n7,1270,3.0,851867436\n7,1275,4.0,851869080\n7,1278,3.0,851867436\n7,1287,4.0,851868332\n7,1288,4.0,851867401\n7,1291,3.0,851867320\n7,1298,3.0,851868471\n7,1302,4.0,851868471\n7,1307,3.0,851867401\n7,1353,3.0,851866935\n7,1371,3.0,851869160\n7,1372,3.0,851869102\n7,1373,2.0,851869230\n7,1374,4.0,851869035\n7,1375,3.0,851869140\n7,1376,3.0,851869062\n7,1394,3.0,851867688\n7,1405,5.0,851866978\n7,1408,1.0,851869140\n8,32,5.0,1154465405\n8,45,2.5,1154389572\n8,47,5.0,1154464836\n8,50,5.0,1154400173\n8,110,4.0,1154473268\n8,260,3.5,1154464829\n8,282,2.0,1154389420\n8,296,4.0,1154465380\n8,318,5.0,1154464714\n8,356,4.0,1154400390\n8,457,4.5,1154400475\n8,520,3.5,1154389356\n8,524,2.0,1154400357\n8,527,5.0,1154400170\n8,543,5.0,1154389386\n8,589,4.0,1154464853\n8,593,4.5,1154464833\n8,628,4.0,1154400284\n8,805,3.5,1154389432\n8,858,5.0,1154400181\n8,1196,3.5,1154464841\n8,1197,4.0,1154464887\n8,1198,4.0,1154464730\n8,1210,4.0,1154464769\n8,1219,4.0,1154465573\n8,1225,4.0,1154465394\n8,1258,4.0,1154465555\n8,1259,4.0,1154464811\n8,1265,3.0,1154465230\n8,1270,4.0,1154464747\n8,1291,4.0,1154464720\n8,1302,3.5,1154400465\n8,1358,0.5,1154474527\n8,1387,4.0,1154465285\n8,1393,3.0,1154400324\n8,1500,4.0,1154465235\n8,1552,3.0,1154389408\n8,1617,3.5,1154464990\n8,1625,5.0,1154389385\n8,1674,4.0,1154389491\n8,1704,4.0,1154473252\n8,1754,3.0,1154400308\n8,1777,5.0,1154400458\n8,1876,3.5,1154389528\n8,1961,5.0,1154473322\n8,2028,4.0,1154473259\n8,2100,3.0,1154389460\n8,2139,3.0,1154465222\n8,2194,4.5,1154464735\n8,2302,4.5,1154400414\n8,2324,4.0,1154464850\n8,2329,5.0,1154473217\n8,2353,3.5,1154389340\n8,2423,3.5,1154400351\n8,2502,5.0,1154464889\n8,2571,5.0,1154464738\n8,2716,3.5,1154464944\n8,2762,4.5,1154464717\n8,2770,2.5,1154389541\n8,2791,4.5,1154465558\n8,2797,3.5,1154400340\n8,2804,3.5,1154473419\n8,2841,3.0,1154400360\n8,2858,4.5,1154464950\n8,2918,5.0,1154473364\n8,2959,4.0,1154464901\n8,3147,4.5,1154400266\n8,3578,5.0,1154400441\n8,3916,3.5,1154400198\n8,3948,4.0,1154389482\n8,3996,4.0,1154465526\n8,4011,4.5,1154464873\n8,4019,3.5,1154400245\n8,4034,4.5,1154465279\n8,4226,5.0,1154464905\n8,4262,4.0,1154464915\n8,4448,2.5,1154400334\n8,4886,3.5,1154464808\n8,4896,3.5,1154400398\n8,4963,4.5,1154400383\n8,4973,4.0,1154465373\n8,4993,3.5,1154464819\n8,4995,3.5,1154389449\n8,5064,5.0,1154400236\n8,5378,3.5,1154389552\n8,5445,4.5,1154400449\n8,5464,4.0,1154464756\n8,5630,4.0,1154400407\n8,5650,4.0,1154465399\n8,5669,3.0,1154465385\n8,5952,4.0,1154464762\n8,5989,3.5,1154400444\n8,6377,4.0,1154389474\n8,6378,3.0,1154400191\n8,6870,4.0,1154464895\n8,6874,5.0,1154465296\n8,6879,3.0,1154400253\n8,7143,3.5,1154400294\n8,7153,4.0,1154464753\n8,7361,4.0,1154465367\n8,7438,4.0,1154464994\n8,8533,2.5,1154400471\n8,8784,4.5,1154464868\n8,8873,4.0,1154465499\n8,8874,3.0,1154465548\n8,32587,3.5,1154465243\n8,33166,4.5,1154473310\n8,33493,4.5,1154400263\n8,33794,4.5,1154464726\n8,34162,3.5,1154400423\n8,40583,3.5,1154473088\n8,40819,3.5,1154473264\n8,42007,2.0,1154473042\n8,43556,3.5,1154473022\n8,43871,3.0,1154473014\n8,44004,3.0,1154473017\n9,1,4.0,938629179\n9,17,4.0,938628337\n9,26,3.0,938628655\n9,36,5.0,938629110\n9,47,3.0,938628897\n9,318,4.0,938628966\n9,497,4.0,938628777\n9,515,4.0,938628577\n9,527,5.0,938628843\n9,534,5.0,938628337\n9,593,4.0,938628843\n9,608,5.0,938628843\n9,733,2.0,938628337\n9,1059,5.0,938629250\n9,1177,3.0,938629470\n9,1357,4.0,938628655\n9,1358,4.0,938628450\n9,1411,3.0,938628655\n9,1541,2.0,938628777\n9,1584,4.0,938629341\n9,1680,4.0,938629054\n9,1682,5.0,938628690\n9,1704,4.0,938628966\n9,1721,3.0,938629470\n9,1784,5.0,938628966\n9,2028,4.0,938629341\n9,2125,4.0,938629522\n9,2140,4.0,938629747\n9,2249,4.0,938629053\n9,2268,3.0,938629053\n9,2273,3.0,938628777\n9,2278,4.0,938628897\n9,2291,4.0,938629341\n9,2294,2.0,938629250\n9,2302,4.0,938628843\n9,2391,4.0,939122916\n9,2396,4.0,938628577\n9,2427,2.0,938629681\n9,2490,3.0,938629681\n9,2501,4.0,938628966\n9,2539,2.0,938629341\n9,2571,5.0,938628450\n9,2628,3.0,938628843\n9,2762,4.0,938627748\n9,2857,4.0,938629681\n10,50,5.0,942766420\n10,152,4.0,942766793\n10,318,4.0,942766515\n10,344,3.0,942766603\n10,345,4.0,942766603\n10,592,3.0,942767328\n10,735,4.0,942766974\n10,1036,3.0,942767258\n10,1089,3.0,942766420\n10,1101,2.0,942767328\n10,1127,4.0,942767328\n10,1196,4.0,942767258\n10,1197,4.0,942767258\n10,1198,4.0,942767258\n10,1200,4.0,942767258\n10,1210,4.0,942767258\n10,1220,3.0,942767328\n10,1240,4.0,942767258\n10,1291,4.0,942767258\n10,1358,5.0,942766420\n10,1423,4.0,942766420\n10,1459,3.0,942766725\n10,1499,3.0,942766845\n10,1611,5.0,942767029\n10,1690,3.0,942766679\n10,1704,4.0,942766472\n10,1719,5.0,942766472\n10,1887,2.0,942766845\n10,1923,5.0,942766515\n10,2108,3.0,942766472\n10,2344,5.0,942766991\n10,2406,4.0,942767328\n10,2410,2.0,942767328\n10,2539,4.0,942766845\n10,2571,5.0,942766515\n10,2826,5.0,942766109\n10,2827,3.0,942766251\n10,2840,3.0,942766213\n10,2841,4.0,942766029\n10,2881,3.0,942766164\n10,2890,4.0,942765978\n10,2907,2.0,942766213\n10,2926,5.0,942767121\n10,2995,2.0,942766251\n10,3005,3.0,942766059\n10,3019,4.0,942767571\n11,50,5.0,1391658537\n11,70,1.0,1391656827\n11,126,4.0,1391657561\n11,169,3.0,1391657297\n11,296,5.0,1391658423\n11,778,4.5,1391658505\n11,785,3.5,1391656845\n11,923,5.0,1391658556\n11,1027,4.5,1391658634\n11,1201,5.0,1391658440\n11,1408,5.0,1391658667\n11,1918,3.0,1391657062\n11,2042,3.5,1391657376\n11,2596,4.5,1391657543\n11,2762,3.0,1391658583\n11,3424,3.0,1391657112\n11,5669,3.0,1391658601\n11,6598,5.0,1391657861\n11,26614,5.0,1391658574\n11,48516,5.0,1391658450\n11,51084,4.0,1391657605\n11,58295,4.5,1391657459\n11,71211,3.5,1391657720\n11,77455,4.5,1391658141\n11,79132,4.0,1391658115\n11,80489,4.5,1391658399\n11,80906,3.0,1391658137\n11,81158,4.0,1391658210\n11,81562,3.5,1391658218\n11,88129,4.0,1391658385\n11,91500,4.5,1391658311\n11,91529,4.5,1391658125\n11,91548,4.0,1391658270\n11,96079,4.0,1391658186\n11,96861,4.0,1391657924\n11,97938,4.0,1391657610\n11,104841,5.0,1391658157\n11,106487,5.0,1391657798\n12,253,3.0,968045587\n12,529,1.0,968045407\n12,538,3.0,968045438\n12,608,2.0,968045353\n12,673,1.0,968045732\n12,736,4.0,968045680\n12,737,3.0,968045764\n12,1028,1.0,968045500\n12,1032,2.0,968045561\n12,1077,3.0,968045500\n12,1197,1.0,955407153\n12,1215,5.0,968045353\n12,1220,5.0,955407153\n12,1230,2.0,968045354\n12,1235,5.0,968045354\n12,1295,1.0,955407153\n12,1374,1.0,968045475\n12,1387,4.0,968045475\n12,1639,2.0,968045438\n12,1732,3.0,968045529\n12,2259,2.0,955407153\n12,2355,2.0,968045475\n12,2460,4.0,968045680\n12,2529,1.0,968045475\n12,2668,2.0,968045764\n12,2959,4.0,968045407\n12,3146,2.0,968045732\n12,3148,1.0,968045379\n12,3176,3.0,968045649\n12,3179,2.0,968045354\n12,3298,4.0,968045529\n12,3324,1.0,968045732\n12,3408,4.0,968045379\n12,3474,4.0,955407153\n12,3770,3.0,968045619\n12,3773,2.0,968045680\n12,3780,2.0,968045619\n12,3791,1.0,968045232\n12,3793,5.0,968045232\n12,3794,3.0,968045232\n12,3798,4.0,968045232\n12,3799,1.0,968045198\n12,3801,3.0,968045198\n12,3809,3.0,968045172\n12,3825,5.0,968045142\n12,3827,2.0,968045142\n12,3829,2.0,968045106\n12,3831,4.0,968045106\n12,3841,2.0,968045074\n12,3844,1.0,968045074\n12,3861,3.0,968045015\n12,3863,5.0,968045015\n12,3864,3.0,968045015\n12,3865,5.0,968045015\n12,3869,2.0,968044981\n12,3871,2.0,968044981\n12,3873,3.0,968044981\n12,3879,5.0,968044949\n12,3885,3.0,968044949\n12,3886,2.0,968044949\n12,6184,4.0,968045173\n13,1,5.0,1331380058\n13,47,2.5,1331380914\n13,110,4.0,1331380038\n13,277,4.0,1331379348\n13,296,3.5,1331380895\n13,318,4.5,1331380029\n13,356,5.0,1331380018\n13,362,4.5,1331379479\n13,480,3.0,1331380025\n13,524,3.5,1331379485\n13,527,4.0,1331380901\n13,531,4.0,1331379483\n13,587,3.0,1331380851\n13,590,4.0,1331380062\n13,914,4.0,1331379366\n13,919,3.5,1331380871\n13,1027,3.0,1331379520\n13,1259,4.0,1331380814\n13,1265,2.5,1331380845\n13,1918,3.0,1331379386\n13,1961,4.0,1331380745\n13,2355,4.0,1331380741\n13,2571,3.0,1331380888\n13,2572,3.5,1331379777\n13,2761,4.0,1331379470\n13,2762,3.0,1331380765\n13,2804,3.0,1331380731\n13,2908,3.0,1331379494\n13,2918,3.0,1331380761\n13,3114,3.0,1331380738\n13,3147,4.0,1331380752\n13,3255,3.5,1331379342\n13,3396,3.5,1331379599\n13,3624,3.0,1331379574\n13,4306,4.0,1331380721\n13,4310,4.5,1331379506\n13,4321,2.5,1331379589\n13,4718,3.5,1331379530\n13,4878,4.5,1331380145\n13,4886,3.5,1331380834\n13,4993,4.5,1331380883\n13,5989,4.0,1331380785\n13,6377,4.5,1331380734\n13,7361,4.0,1331380159\n13,7502,4.5,1331380306\n13,54286,3.5,1331380782\n13,58559,4.5,1331380873\n13,64614,4.5,1331380830\n13,69757,4.0,1331379748\n13,78499,4.0,1331380725\n13,81834,4.5,1331380387\n13,88125,4.5,1331380390\n13,93363,3.0,1331379985\n14,594,1.0,976243997\n14,1196,4.0,976243997\n14,1721,3.0,976243912\n14,2038,3.0,976244179\n14,2355,2.0,976244179\n14,2394,3.0,976244471\n14,2628,3.0,976243933\n14,2683,2.0,976244131\n14,2716,3.0,976244313\n14,2720,2.0,976244367\n14,2724,3.0,976244524\n14,2861,2.0,976244287\n14,3114,4.0,976244591\n14,3157,2.0,976244564\n14,3175,5.0,976244313\n14,3354,3.0,976243997\n14,3623,3.0,976244423\n14,3751,4.0,976244205\n14,3986,3.0,976244107\n14,3988,4.0,976244343\n15,1,2.0,997938310\n15,2,2.0,1134521380\n15,5,4.5,1093070098\n15,6,4.0,1040205753\n15,10,3.0,1093028290\n15,11,2.5,1093028381\n15,14,2.5,1166586286\n15,16,3.5,1093070150\n15,17,3.0,997939404\n15,19,1.0,1093028409\n15,21,4.5,1058249528\n15,22,2.5,1093070415\n15,25,3.0,1033345172\n15,32,4.0,997938466\n15,34,3.0,997938310\n15,36,1.0,1033345287\n15,39,2.5,1093028334\n15,44,3.0,1122576665\n15,47,5.0,1054449816\n15,50,5.0,997938500\n15,52,2.5,1093070271\n15,62,2.0,1093028336\n15,70,0.5,1093070467\n15,82,5.0,1044220302\n15,94,3.0,1166587063\n15,95,1.5,1093028331\n15,101,4.0,1134522072\n15,104,1.0,1093070113\n15,107,2.0,1166586594\n15,110,3.0,1040205792\n15,111,5.0,997938500\n15,112,2.5,1093070156\n15,123,4.0,997938358\n15,125,3.5,1245362506\n15,145,3.5,1134521543\n15,149,5.0,1075142933\n15,150,3.0,997939380\n15,153,1.0,1128274517\n15,157,2.0,1052896975\n15,160,0.5,1093028411\n15,161,3.0,1093028319\n15,162,4.0,997938676\n15,163,2.0,1166586021\n15,164,4.0,997938413\n15,165,3.0,1093028183\n15,170,2.5,1166586376\n15,172,1.0,1093070329\n15,175,4.0,1166587180\n15,176,4.0,1046209579\n15,180,3.0,1166586276\n15,185,2.0,1052896916\n15,193,1.0,1193435347\n15,196,2.0,1093070170\n15,198,1.5,1134521967\n15,208,1.5,1193435482\n15,214,2.0,1033345241\n15,215,4.5,1054449903\n15,216,1.0,1349622582\n15,223,4.0,997939415\n15,225,1.0,1134521432\n15,230,1.0,1033345068\n15,231,3.5,1093028308\n15,232,4.0,1033345227\n15,233,4.0,1033344772\n15,235,4.0,997939415\n15,237,3.5,1166586251\n15,246,5.0,997938656\n15,247,2.0,997938567\n15,252,2.0,1093070318\n15,253,2.0,1093028328\n15,260,5.0,997938437\n15,265,1.0,1058250479\n15,288,2.0,1093028372\n15,292,1.0,1093028298\n15,293,5.0,997938567\n15,296,5.0,997938771\n15,300,4.0,1054449869\n15,306,5.0,997938737\n15,307,4.0,997938894\n15,308,4.0,1052897100\n15,316,3.0,1052896866\n15,317,1.0,1093028399\n15,318,2.0,997938727\n15,322,2.5,1120209787\n15,329,1.5,1093028255\n15,335,2.0,997938391\n15,339,2.5,1122576622\n15,342,3.0,1058250589\n15,344,2.0,1093028220\n15,349,3.0,997939193\n15,353,3.0,1093070088\n15,355,0.5,1122576667\n15,356,1.0,1058250631\n15,357,3.5,1058250490\n15,364,4.0,997939065\n15,367,2.0,1374637824\n15,370,3.5,1122576670\n15,371,2.0,1443385370\n15,372,3.0,1465793100\n15,373,3.5,1054449871\n15,377,4.0,1033344267\n15,380,4.0,997939179\n15,382,3.5,1166586661\n15,429,1.0,1465955324\n15,431,4.0,1132469126\n15,434,3.0,1093028320\n15,435,1.0,1093070102\n15,440,2.5,1058250627\n15,441,4.0,997938322\n15,442,1.0,1193435522\n15,454,3.0,1093028323\n15,457,5.0,997938567\n15,466,2.5,1134521456\n15,471,3.0,1166586067\n15,474,3.0,1093028384\n15,480,3.0,997939193\n15,481,3.0,1166586748\n15,483,1.0,997938905\n15,485,0.5,1093070332\n15,494,4.0,1093028414\n15,500,3.0,1035258747\n15,508,1.5,1093028394\n15,509,2.0,1093028389\n15,520,3.5,1443384915\n15,524,2.5,1166586387\n15,527,4.0,997937239\n15,535,3.0,1033345148\n15,539,2.0,1093028325\n15,540,1.5,1240203835\n15,541,5.0,997938438\n15,543,3.0,1093070381\n15,549,5.0,997938676\n15,551,2.0,997939055\n15,555,4.0,1033344257\n15,556,3.5,1361078504\n15,562,3.0,1166586512\n15,574,3.0,1141391972\n15,586,2.0,1093028377\n15,587,1.0,1093028322\n15,588,0.5,1093028161\n15,589,4.0,997938451\n15,590,3.0,1093028142\n15,592,4.0,997939162\n15,593,5.0,997938500\n15,594,2.5,1245021392\n15,597,2.5,1093028267\n15,608,5.0,997938500\n15,610,3.0,1052896916\n15,628,2.5,1093070326\n15,647,1.5,1134521628\n15,648,4.0,1093028231\n15,663,2.0,1035258608\n15,665,3.0,997939348\n15,674,3.0,1052896916\n15,680,2.0,1052896867\n15,708,3.0,1093028406\n15,720,3.0,1033345122\n15,724,2.0,1166586237\n15,733,3.5,1093028260\n15,736,1.0,1093028237\n15,745,3.0,997938288\n15,748,2.5,1166586565\n15,750,4.0,997938438\n15,762,2.0,1093070454\n15,778,4.0,1054450167\n15,780,2.5,1093028151\n15,784,2.5,1093070207\n15,785,3.0,1033344834\n15,786,0.5,1093028395\n15,788,1.5,1134521382\n15,799,3.0,1136904835\n15,800,5.0,997938391\n15,802,1.0,1128274713\n15,803,4.5,1054450008\n15,804,3.5,1134522085\n15,832,1.0,1166586002\n15,836,2.0,1166586995\n15,851,4.0,1035258747\n15,858,5.0,997938703\n15,866,4.0,997938567\n15,899,5.0,1058250570\n15,903,5.0,997938346\n15,904,5.0,997938346\n15,908,5.0,997938500\n15,909,4.0,997939604\n15,910,2.5,1122576681\n15,911,4.0,1058250459\n15,912,5.0,997938140\n15,913,4.0,1416119525\n15,914,1.5,1058250501\n15,916,1.0,1128274460\n15,919,3.0,997938737\n15,920,3.5,1093070090\n15,922,1.0,1040205624\n15,923,5.0,997938727\n15,924,5.0,997938358\n15,926,3.0,1044219825\n15,931,1.0,1058250466\n15,953,3.0,997938800\n15,994,4.0,997939453\n15,1020,2.0,1166586619\n15,1035,2.0,1034544304\n15,1036,4.0,997938528\n15,1041,5.0,997938905\n15,1047,2.5,1348976598\n15,1059,1.5,1166586136\n15,1060,4.0,1054450184\n15,1073,3.0,997938603\n15,1079,4.0,997937239\n15,1084,3.0,997938787\n15,1088,2.0,1122576683\n15,1089,4.0,997938528\n15,1092,2.5,1193436089\n15,1093,2.0,1166586415\n15,1094,4.0,1033345199\n15,1095,4.0,1040205624\n15,1097,4.0,997938466\n15,1100,2.5,1458506296\n15,1101,3.0,1093070163\n15,1120,1.0,1055439464\n15,1127,4.0,997939162\n15,1131,2.5,1345397949\n15,1136,2.5,1128274586\n15,1147,3.5,1386368101\n15,1148,3.0,997938288\n15,1171,4.0,1054449673\n15,1173,3.0,1193435335\n15,1176,4.0,997938862\n15,1178,3.0,997938771\n15,1179,4.0,1033344257\n15,1183,2.0,1443384910\n15,1186,4.5,1166586456\n15,1189,3.5,1361078481\n15,1193,5.0,997938760\n15,1196,5.0,997938438\n15,1197,1.0,1040205753\n15,1198,4.0,997939111\n15,1199,1.0,1093070386\n15,1200,4.0,997938528\n15,1201,3.5,1345398232\n15,1203,4.0,997938784\n15,1204,2.0,997939111\n15,1206,5.0,997938438\n15,1207,3.0,1044347743\n15,1208,5.0,997938822\n15,1209,4.5,1345398245\n15,1210,5.0,997938466\n15,1211,1.5,1058250487\n15,1212,3.0,1166586696\n15,1213,3.0,997938749\n15,1214,4.0,997938203\n15,1215,1.5,1054271469\n15,1217,2.0,1055439440\n15,1218,4.0,997939207\n15,1219,3.0,997938203\n15,1220,1.0,1093070109\n15,1221,5.0,997938712\n15,1222,4.0,997939614\n15,1223,4.0,997938288\n15,1225,4.0,1034544304\n15,1228,4.0,997938800\n15,1230,3.0,1044347881\n15,1231,4.0,1054450216\n15,1233,3.0,997938727\n15,1234,4.0,1054450238\n15,1235,3.5,1166586368\n15,1240,3.0,997938451\n15,1243,2.0,1033345172\n15,1244,5.0,997938151\n15,1246,1.0,1093070174\n15,1247,5.0,997938171\n15,1248,3.0,997938509\n15,1249,3.0,997938500\n15,1250,4.0,997938760\n15,1251,3.0,997938749\n15,1252,5.0,997938346\n15,1254,3.5,1345398347\n15,1258,4.0,997938219\n15,1259,3.0,997938917\n15,1260,3.0,997938981\n15,1262,1.5,1134521651\n15,1263,4.0,1120208625\n15,1264,3.0,997938162\n15,1265,4.0,997938171\n15,1266,4.0,997939360\n15,1267,5.0,997938500\n15,1270,5.0,997938451\n15,1272,3.5,1054450246\n15,1276,2.5,1054450208\n15,1280,3.0,997938941\n15,1281,1.0,1063565335\n15,1283,3.0,1416120074\n15,1284,3.0,1345397986\n15,1287,2.0,1033345087\n15,1288,4.0,1163876491\n15,1289,4.0,1465793922\n15,1290,3.0,1035258608\n15,1291,4.0,997939144\n15,1293,4.0,997938894\n15,1297,4.0,1166587005\n15,1302,3.0,1093070459\n15,1303,2.0,1054450251\n15,1304,3.0,1040205753\n15,1307,5.0,997938162\n15,1320,3.0,1134521497\n15,1333,2.0,997938219\n15,1334,2.0,1052896916\n15,1339,2.0,1134521654\n15,1342,2.0,1033345050\n15,1356,2.0,1052896819\n15,1358,1.0,997938500\n15,1361,3.5,1361078494\n15,1370,3.0,1093070198\n15,1377,3.0,1093070479\n15,1380,2.5,1166586012\n15,1385,3.0,1458506268\n15,1387,4.0,1040205754\n15,1391,0.5,1093070145\n15,1393,3.5,1058250612\n15,1394,4.0,997939021\n15,1396,4.0,1055439459\n15,1405,3.0,1052897043\n15,1407,5.0,997938219\n15,1449,4.0,997939358\n15,1464,4.0,997938391\n15,1466,4.0,997939439\n15,1476,3.0,1134522057\n15,1479,1.5,1338699256\n15,1483,3.0,1193435343\n15,1484,3.0,997938358\n15,1485,3.0,1093070397\n15,1500,3.0,1093070210\n15,1502,1.5,1425876701\n15,1503,1.0,1035258747\n15,1513,2.0,1033344937\n15,1517,3.0,997939453\n15,1527,1.0,1052896819\n15,1529,3.0,997939393\n15,1544,1.0,1093070319\n15,1546,4.0,997938322\n15,1552,1.5,1134521507\n15,1556,2.5,1166587010\n15,1562,1.5,1166586212\n15,1569,3.5,1134521624\n15,1573,4.0,997938476\n15,1580,4.0,997939179\n15,1584,4.0,1052896685\n15,1589,2.0,1093028013\n15,1597,2.0,1134521585\n15,1608,1.0,1093070221\n15,1610,3.0,1040205754\n15,1615,3.0,997939193\n15,1616,3.0,1166587214\n15,1617,5.0,997938346\n15,1625,4.0,997938391\n15,1635,4.0,1033345134\n15,1639,4.0,1054449877\n15,1644,1.5,1166586517\n15,1645,3.0,997938413\n15,1649,2.0,997938647\n15,1653,3.0,1052896685\n15,1663,3.0,1058250115\n15,1673,3.0,1033345299\n15,1676,4.0,1052896916\n15,1680,3.0,1166586583\n15,1682,2.0,997939424\n15,1689,4.5,1465880892\n15,1690,1.0,1134521603\n15,1694,3.0,997938879\n15,1704,4.0,1033345148\n15,1717,4.0,1166586533\n15,1719,4.0,997938931\n15,1721,1.5,1093028339\n15,1722,3.5,1134521534\n15,1729,1.0,1033344286\n15,1732,3.5,1054449676\n15,1735,0.5,1166981862\n15,1747,3.5,1134521589\n15,1748,4.0,997938451\n15,1752,3.5,1469330699\n15,1753,1.0,1349622617\n15,1754,3.5,1460076717\n15,1777,2.0,1134521514\n15,1779,1.0,1166586707\n15,1784,3.0,1033345287\n15,1792,3.0,1458506454\n15,1805,3.0,997938391\n15,1807,1.5,1093028022\n15,1810,2.5,1166587162\n15,1816,2.5,1465881179\n15,1827,4.0,997938676\n15,1831,2.0,1166586439\n15,1834,3.5,1058250734\n15,1836,2.0,1469330727\n15,1845,4.0,1052897012\n15,1859,5.0,997938834\n15,1860,4.0,997939439\n15,1862,2.0,1469330647\n15,1876,2.0,1134521539\n15,1882,1.5,1166586478\n15,1883,4.0,1052897043\n15,1889,3.0,1054449827\n15,1895,2.5,1469330584\n15,1897,1.5,1054450597\n15,1904,3.5,1075142949\n15,1909,2.0,1052896819\n15,1912,5.0,1033345241\n15,1914,3.5,1054449899\n15,1917,2.0,1052896916\n15,1921,4.0,1052896819\n15,1923,4.5,1054449908\n15,1945,4.0,997938954\n15,1950,3.0,1058249502\n15,1952,3.0,997938810\n15,1953,3.0,997938528\n15,1954,3.0,1040205792\n15,1955,4.5,1338698424\n15,1956,4.0,1166587036\n15,1961,3.5,1093028404\n15,1962,3.0,1033345068\n15,1964,3.0,997938372\n15,1968,4.0,1052897128\n15,1994,2.5,1166586228\n15,1997,5.0,997938255\n15,2000,3.0,1052896975\n15,2003,3.0,1034544351\n15,2005,4.0,997938630\n15,2006,4.0,1035258747\n15,2010,3.0,1052896685\n15,2011,3.0,1044219825\n15,2012,1.0,1046209705\n15,2018,2.0,1044347881\n15,2019,4.5,1134521638\n15,2020,2.5,1379040745\n15,2025,2.0,1465881239\n15,2028,3.0,997938784\n15,2041,2.0,1033344732\n15,2054,2.0,997938630\n15,2058,2.5,1166586203\n15,2060,2.0,1052896975\n15,2064,4.5,1338698431\n15,2076,3.0,997938413\n15,2100,2.0,997938603\n15,2105,4.0,1052896867\n15,2108,4.5,1058250482\n15,2115,4.0,1193435562\n15,2124,2.0,1033345050\n15,2126,1.0,1166587068\n15,2133,3.5,1166587080\n15,2134,3.5,1122576686\n15,2140,3.0,1052896819\n15,2145,2.0,1034544351\n15,2150,3.0,997937311\n15,2160,3.0,1166586521\n15,2161,3.0,997938630\n15,2167,3.0,997939162\n15,2174,4.0,997938603\n15,2186,3.0,997938528\n15,2194,4.0,1040205754\n15,2231,3.0,1052897043\n15,2232,4.0,997938466\n15,2243,4.5,1128274472\n15,2248,3.5,1054449665\n15,2268,1.0,1093070270\n15,2269,2.5,1465881227\n15,2273,2.5,1166586189\n15,2278,2.5,1134521675\n15,2282,0.5,1469330645\n15,2288,3.0,1052896740\n15,2289,4.0,997938322\n15,2291,3.0,997939439\n15,2294,2.0,1052897012\n15,2302,3.5,1093070399\n15,2303,3.0,997938931\n15,2311,2.0,1052896916\n15,2313,3.5,1345397769\n15,2318,4.5,1054449678\n15,2321,3.5,1122576690\n15,2324,2.0,997939328\n15,2329,1.0,1054450149\n15,2333,3.0,1033344795\n15,2334,3.0,1469330601\n15,2336,2.0,1033344772\n15,2340,2.0,1134522028\n15,2351,1.0,1044347881\n15,2353,0.5,1134521484\n15,2355,2.0,997939055\n15,2357,3.0,997938834\n15,2360,2.0,997937311\n15,2366,3.0,1040205792\n15,2369,1.0,1033344752\n15,2371,3.5,1166586655\n15,2378,3.0,997937311\n15,2387,3.5,1465880711\n15,2391,3.0,997938567\n15,2395,5.0,997939404\n15,2396,2.0,997938162\n15,2405,3.0,1052897012\n15,2406,3.5,1458506447\n15,2407,3.0,1052896819\n15,2413,4.5,1425875796\n15,2424,1.5,1134521618\n15,2427,3.0,1040205754\n15,2428,1.0,1033344782\n15,2439,2.0,997939328\n15,2447,2.5,1122576697\n15,2455,3.5,1166586146\n15,2467,1.0,997938413\n15,2478,4.0,1122576699\n15,2490,1.0,1033344906\n15,2501,3.0,997938760\n15,2502,5.0,1033344897\n15,2505,0.5,1122576701\n15,2528,2.0,1347937598\n15,2539,2.5,1465880194\n15,2541,1.0,1033344732\n15,2542,1.0,997939415\n15,2560,3.0,1033344917\n15,2568,0.5,1469330735\n15,2571,5.0,997938438\n15,2572,5.0,1033344641\n15,2574,1.0,1033344897\n15,2575,3.0,1033344772\n15,2579,2.5,1054449822\n15,2580,3.0,997939393\n15,2581,1.0,1033344897\n15,2585,1.0,1033344865\n15,2594,4.0,997938466\n15,2598,1.5,1166587193\n15,2599,3.0,997939021\n15,2600,3.0,1033344995\n15,2605,1.0,1033344772\n15,2617,1.0,1093070339\n15,2624,3.0,997939255\n15,2628,2.5,1093028374\n15,2640,4.0,997939179\n15,2648,3.0,997938219\n15,2657,2.0,1052896819\n15,2671,4.0,997939653\n15,2678,1.0,1033344752\n15,2683,1.0,1033344657\n15,2686,3.0,997938372\n15,2692,3.0,997938151\n15,2699,3.0,1033345068\n15,2700,3.0,1033344958\n15,2701,1.0,1245361903\n15,2702,1.5,1122576707\n15,2706,3.0,1033344657\n15,2707,3.0,1033344663\n15,2709,1.0,1033344878\n15,2710,1.0,1033344702\n15,2712,4.0,997939623\n15,2713,1.0,1033344834\n15,2716,4.0,997938219\n15,2717,3.5,1465793437\n15,2718,1.5,1469330590\n15,2722,2.0,1033344732\n15,2723,1.0,1033344897\n15,2726,2.5,1054450195\n15,2729,3.0,997939653\n15,2759,1.0,1033344752\n15,2761,2.0,997939037\n15,2762,1.0,997938500\n15,2763,1.0,1033344970\n15,2769,2.0,997937762\n15,2770,4.0,1033344702\n15,2791,4.0,997939008\n15,2795,3.5,1065197456\n15,2797,4.0,997938603\n15,2803,1.5,1166587203\n15,2819,3.0,997938567\n15,2840,1.0,1033344958\n15,2841,2.0,1033344958\n15,2858,4.0,997938310\n15,2871,4.0,997939144\n15,2881,1.0,1033344752\n15,2890,4.0,1054450160\n15,2905,4.0,1040205754\n15,2908,1.0,997938879\n15,2912,4.0,1040205754\n15,2915,1.5,1345397822\n15,2916,4.0,997938466\n15,2918,4.0,1054449710\n15,2925,4.0,1166585692\n15,2947,5.0,1040205655\n15,2949,4.0,1040205655\n15,2952,1.0,1054449851\n15,2959,5.0,997938894\n15,2973,4.0,997939623\n15,2976,2.0,1469330578\n15,2983,4.0,997938576\n15,2985,3.0,1052896740\n15,2987,4.0,997939144\n15,2990,3.5,1345398317\n15,2993,4.0,1345381197\n15,2997,5.0,997938310\n15,3000,4.0,997939086\n15,3004,1.0,1033344685\n15,3005,1.0,1033344702\n15,3006,5.0,997938800\n15,3007,2.5,1361078485\n15,3008,2.0,1033344865\n15,3010,4.0,997938727\n15,3019,3.0,997938954\n15,3020,3.0,1166586681\n15,3030,4.0,997939021\n15,3033,4.0,1052896867\n15,3039,4.0,1033344267\n15,3044,3.0,1058250603\n15,3052,3.0,997939653\n15,3060,4.0,1052896975\n15,3077,3.0,1033345241\n15,3081,1.0,1033344958\n15,3082,3.0,1166586269\n15,3083,5.0,997938310\n15,3089,3.0,997938895\n15,3101,4.0,997937311\n15,3104,4.0,1040205792\n15,3107,3.0,1316395917\n15,3108,4.0,997939453\n15,3113,2.0,1166587025\n15,3114,1.0,1033344983\n15,3128,4.0,997938931\n15,3129,3.5,1054449917\n15,3134,1.0,1044347881\n15,3146,1.5,1460076724\n15,3147,1.0,997939415\n15,3148,1.0,1134521933\n15,3150,3.0,1245361773\n15,3152,3.0,997938931\n15,3157,1.0,1033344970\n15,3160,3.0,997938941\n15,3168,2.5,1338698402\n15,3173,2.5,1122576723\n15,3174,1.0,1033344865\n15,3175,4.0,997939162\n15,3176,2.0,997938413\n15,3181,1.0,997939393\n15,3182,2.0,997937726\n15,3185,2.0,1033344958\n15,3210,5.0,1054449670\n15,3219,2.0,1033344897\n15,3225,1.0,997938046\n15,3246,4.0,1033345148\n15,3250,2.0,1034544351\n15,3253,3.0,997939639\n15,3255,2.0,1134521644\n15,3256,2.0,1361831567\n15,3261,4.0,1058250521\n15,3262,1.0,997938391\n15,3265,4.0,1345397753\n15,3266,5.0,1034544304\n15,3267,3.0,1063565307\n15,3272,2.0,1033345227\n15,3273,1.0,997937890\n15,3275,0.5,1347936677\n15,3285,2.0,1416119608\n15,3286,3.0,997937999\n15,3298,4.0,1033344702\n15,3300,5.0,997937876\n15,3301,4.0,1044348420\n15,3307,3.0,1082220247\n15,3316,1.5,1416119948\n15,3317,5.0,997937786\n15,3318,3.0,997937986\n15,3320,5.0,1040205943\n15,3328,4.0,997937748\n15,3358,2.5,1096005300\n15,3361,3.0,1054449689\n15,3362,3.5,1120209453\n15,3386,3.0,997938391\n15,3390,1.0,997937239\n15,3408,2.0,1033344772\n15,3409,4.0,997937902\n15,3418,1.0,1040205754\n15,3421,1.5,1063565279\n15,3429,3.0,997938310\n15,3435,2.5,1054450188\n15,3448,2.5,1193436085\n15,3461,3.0,997939144\n15,3462,1.5,1063565329\n15,3471,4.0,1034544304\n15,3476,4.5,1465881233\n15,3477,3.0,1093028035\n15,3481,5.0,997937748\n15,3484,0.5,1465880417\n15,3489,2.0,1166586405\n15,3499,3.0,997938242\n15,3504,4.0,997938810\n15,3505,4.0,1134521930\n15,3510,2.0,1033344795\n15,3512,3.0,997937926\n15,3527,3.0,1052896819\n15,3534,1.0,997937935\n15,3535,1.0,997937822\n15,3536,4.0,997937808\n15,3538,1.5,1096005190\n15,3543,2.0,1033344752\n15,3552,2.0,1465880183\n15,3555,1.0,1166586553\n15,3556,3.0,997937786\n15,3566,3.0,997937902\n15,3569,4.0,997937682\n15,3571,4.0,997937848\n15,3577,3.5,1465954636\n15,3578,2.0,1033344795\n15,3598,3.0,997937762\n15,3617,4.0,997937822\n15,3618,2.0,997937876\n15,3623,1.0,1033344878\n15,3624,2.0,1122576735\n15,3626,3.0,997937961\n15,3633,4.0,1345381200\n15,3634,2.0,1044347881\n15,3635,3.5,1345397811\n15,3638,3.5,1345398289\n15,3639,2.0,1345397721\n15,3671,2.0,1166586157\n15,3683,4.0,997938800\n15,3707,5.0,1465881231\n15,3717,1.0,1163876415\n15,3728,4.0,1443385280\n15,3730,5.0,997938346\n15,3735,2.0,997938822\n15,3742,2.5,1082220261\n15,3745,1.0,997937836\n15,3747,2.0,997937700\n15,3751,1.0,997937726\n15,3752,1.0,997937971\n15,3755,1.5,1416119541\n15,3763,2.0,1122576740\n15,3783,2.0,997937700\n15,3785,4.0,997937822\n15,3786,2.0,1033344712\n15,3787,3.0,997937795\n15,3788,3.0,997938391\n15,3793,2.0,997937808\n15,3794,4.0,997937914\n15,3798,2.0,997937999\n15,3800,2.0,1039243666\n15,3801,3.0,997938372\n15,3823,2.0,997937726\n15,3825,1.0,997938015\n15,3826,1.0,997938035\n15,3827,2.5,1134522068\n15,3852,3.0,1044348420\n15,3854,3.0,1240203682\n15,3861,3.0,1044348492\n15,3863,2.0,997937860\n15,3868,4.0,1134521920\n15,3882,4.0,997937890\n15,3892,1.0,1039243705\n15,3893,1.0,997937860\n15,3896,3.0,997937890\n15,3897,3.0,997937700\n15,3910,2.0,997937848\n15,3911,2.0,997937427\n15,3915,5.0,997937700\n15,3943,3.0,997937860\n15,3948,5.0,1044348382\n15,3949,5.0,997937413\n15,3952,4.0,997937890\n15,3956,1.0,997937986\n15,3967,1.0,997937762\n15,3968,2.5,1425876021\n15,3969,1.0,997937459\n15,3977,3.0,997937848\n15,3979,1.0,997938035\n15,3981,1.0,1033344924\n15,3983,5.0,997937413\n15,3984,4.0,1338698406\n15,3986,1.0,997937926\n15,3987,4.0,997937961\n15,3988,1.0,1166587057\n15,3989,3.0,997937700\n15,3990,1.0,997937999\n15,3993,1.0,997937902\n15,3994,4.0,997937442\n15,3996,5.0,997937413\n15,3998,1.0,997937614\n15,3999,3.0,997937459\n15,4005,3.5,1345398275\n15,4006,3.0,1052896916\n15,4007,3.5,1426110367\n15,4010,2.0,1033345087\n15,4011,1.0,997937606\n15,4014,2.0,1044348492\n15,4015,5.0,997937442\n15,4017,4.0,997937413\n15,4018,1.0,1044348492\n15,4019,2.0,1416119589\n15,4020,3.0,997937442\n15,4021,3.0,997937427\n15,4022,3.0,997937413\n15,4023,2.0,997937442\n15,4025,1.0,1044348492\n15,4027,3.0,997937606\n15,4029,4.0,1033343955\n15,4030,2.0,997937459\n15,4033,4.0,1084489330\n15,4034,4.0,997937413\n15,4036,1.0,997937427\n15,4037,3.0,997938372\n15,4052,1.0,997937442\n15,4055,1.0,1033344023\n15,4056,5.0,997937442\n15,4066,4.0,997938994\n15,4079,4.0,1052896685\n15,4082,1.0,1034544351\n15,4085,3.0,1345398332\n15,4121,3.0,1033344307\n15,4144,4.0,997937700\n15,4148,1.0,997938035\n15,4149,1.0,1349622626\n15,4158,2.0,997937459\n15,4161,3.0,997937914\n15,4167,1.0,997937986\n15,4168,3.0,1040205943\n15,4210,4.5,1061496845\n15,4223,1.0,997937775\n15,4225,1.0,997937762\n15,4226,5.0,997937682\n15,4232,3.0,997939162\n15,4235,4.0,997937713\n15,4238,3.0,997937986\n15,4239,1.0,997937808\n15,4246,2.0,997937713\n15,4247,1.0,1349622526\n15,4262,3.0,1120209753\n15,4270,1.5,1166586578\n15,4271,4.0,997937762\n15,4299,2.5,1374637769\n15,4302,5.0,997937808\n15,4306,1.0,1033343955\n15,4308,2.0,1033343955\n15,4310,3.0,997937366\n15,4321,2.0,997939193\n15,4322,4.0,1345397847\n15,4343,1.0,997937949\n15,4344,2.0,997937334\n15,4351,3.0,1349048073\n15,4361,5.0,997938151\n15,4367,1.0,997937374\n15,4369,3.0,997937366\n15,4370,1.0,997937822\n15,4372,3.0,1039243666\n15,4378,3.0,1033343955\n15,4380,2.0,1033345068\n15,4381,2.0,997937346\n15,4383,3.0,997937775\n15,4386,1.0,997937384\n15,4388,3.0,1416119736\n15,4410,3.0,997939653\n15,4446,4.0,997937334\n15,4447,1.5,1096005216\n15,4448,1.0,997937822\n15,4450,2.0,1054774846\n15,4451,2.5,1075143282\n15,4489,4.5,1345397842\n15,4546,3.0,997938203\n15,4571,3.0,997938617\n15,4621,3.0,997937575\n15,4623,4.0,997937575\n15,4638,1.0,997937346\n15,4639,1.0,1033344625\n15,4641,3.0,1033343955\n15,4642,1.5,1469330631\n15,4643,3.0,997937346\n15,4654,1.0,997937551\n15,4658,2.0,997937544\n15,4666,1.0,997937539\n15,4675,2.0,997937530\n15,4678,4.0,997937519\n15,4679,3.0,997937519\n15,4700,2.0,997937366\n15,4701,3.0,997937366\n15,4713,4.0,997937494\n15,4718,4.0,1044348492\n15,4719,2.0,1374637779\n15,4720,2.0,1039243705\n15,4723,3.5,1054449465\n15,4727,3.0,1052896975\n15,4728,4.0,1044348492\n15,4731,5.0,1033344023\n15,4734,1.0,1044348420\n15,4738,3.5,1075143297\n15,4744,1.0,1039243705\n15,4776,2.5,1054449369\n15,4816,3.0,1166586875\n15,4823,2.5,1416119762\n15,4844,2.0,1044348492\n15,4848,2.0,1054449351\n15,4873,5.0,1040206368\n15,4878,4.0,1039243666\n15,4881,1.5,1054449340\n15,4886,5.0,1033344055\n15,4888,3.0,1054449355\n15,4890,3.0,1033343866\n15,4896,1.0,1040206325\n15,4901,4.0,1054449484\n15,4902,2.0,1033343828\n15,4903,5.0,1033939395\n15,4914,4.0,1465880321\n15,4958,1.0,1469330599\n15,4963,4.0,1044348382\n15,4973,2.0,1033343815\n15,4974,2.0,1349622574\n15,4975,1.0,1040205965\n15,4979,5.0,1033343841\n15,4992,1.5,1425876112\n15,4993,5.0,1033343815\n15,4995,1.0,1033343815\n15,5000,3.5,1443385401\n15,5008,3.5,1120209745\n15,5010,4.5,1054449333\n15,5013,2.0,1033343815\n15,5015,1.0,1033344055\n15,5026,2.0,1041532617\n15,5060,1.5,1054450221\n15,5066,3.0,1033343866\n15,5071,5.0,1044348382\n15,5074,1.0,1096005077\n15,5075,4.0,1033344006\n15,5110,1.5,1416119882\n15,5120,3.0,1345397962\n15,5128,1.0,1033343934\n15,5135,4.0,1044348382\n15,5170,2.0,1033343901\n15,5171,0.5,1416119747\n15,5218,1.0,1033344044\n15,5219,1.0,1033343934\n15,5220,3.0,1033343919\n15,5222,2.0,1122925555\n15,5225,1.5,1075143288\n15,5254,1.0,1033343866\n15,5266,1.0,1033344286\n15,5269,4.5,1240203827\n15,5279,0.5,1054449705\n15,5283,3.0,1033343934\n15,5291,3.5,1416120007\n15,5293,3.0,1033343841\n15,5296,1.5,1465880704\n15,5298,2.5,1367800223\n15,5299,0.5,1416119542\n15,5308,2.5,1465794274\n15,5313,1.0,1033343919\n15,5319,3.5,1054449455\n15,5339,3.5,1345397799\n15,5346,3.5,1465954627\n15,5349,1.0,1039243048\n15,5363,1.0,1033343901\n15,5364,2.5,1465881201\n15,5377,4.0,1096005096\n15,5378,3.0,1039243048\n15,5388,2.0,1166586831\n15,5391,2.5,1367800228\n15,5400,3.0,1039243048\n15,5410,2.0,1052896740\n15,5416,1.5,1096005195\n15,5418,2.0,1033344065\n15,5419,1.0,1039243069\n15,5444,1.0,1040205624\n15,5445,5.0,1033344034\n15,5449,2.0,1033344188\n15,5458,1.0,1033344374\n15,5459,1.0,1033344188\n15,5463,1.0,1033344188\n15,5464,0.5,1166586482\n15,5477,5.0,1033344357\n15,5478,2.0,1052896819\n15,5481,2.0,1033344374\n15,5500,4.0,1033344296\n15,5502,1.0,1033344129\n15,5504,2.0,1033344119\n15,5507,1.0,1033344145\n15,5508,3.0,1054503542\n15,5515,4.0,1033344401\n15,5524,1.0,1033344137\n15,5528,1.0,1033344334\n15,5541,3.0,1035258747\n15,5553,2.0,1035258747\n15,5568,3.0,1035258747\n15,5577,2.5,1054513297\n15,5617,3.5,1222576379\n15,5618,1.5,1084489317\n15,5620,0.5,1425876082\n15,5630,1.5,1055439475\n15,5650,3.0,1034544351\n15,5662,4.0,1035258564\n15,5669,4.0,1046209630\n15,5673,3.5,1075142963\n15,5679,4.0,1035258362\n15,5791,2.0,1039242955\n15,5792,4.0,1054449327\n15,5809,3.0,1052906939\n15,5816,1.0,1416119666\n15,5872,3.0,1166587383\n15,5878,1.0,1066591270\n15,5893,5.0,1040205624\n15,5902,4.0,1044220069\n15,5903,2.0,1357110234\n15,5909,1.0,1096005087\n15,5945,1.0,1096005111\n15,5952,5.0,1040448133\n15,5954,1.0,1084489297\n15,5956,2.5,1163876422\n15,5957,4.5,1075143302\n15,5959,3.0,1443385275\n15,5968,3.0,1040205624\n15,5989,2.5,1134521661\n15,5991,1.0,1096005123\n15,5995,4.0,1120209437\n15,6003,1.5,1096005130\n15,6016,2.0,1093027992\n15,6025,3.0,1046209643\n15,6037,3.0,1465954655\n15,6059,2.0,1416119908\n15,6155,0.5,1416119753\n15,6157,0.5,1416119690\n15,6180,1.0,1046209705\n15,6188,3.5,1416119611\n15,6203,3.0,1046209705\n15,6218,0.5,1096005101\n15,6271,4.0,1052897100\n15,6281,1.0,1163876393\n15,6283,1.0,1416119893\n15,6287,0.5,1425876025\n15,6296,1.5,1096005116\n15,6299,2.5,1075142952\n15,6303,2.5,1055439424\n15,6327,4.0,1084489307\n15,6331,3.0,1120208617\n15,6333,3.0,1052896685\n15,6365,1.0,1054271424\n15,6373,2.0,1134522002\n15,6377,1.0,1061496771\n15,6378,3.0,1122576748\n15,6380,3.0,1166585438\n15,6385,1.5,1084489293\n15,6433,3.0,1465793939\n15,6440,3.5,1054449659\n15,6442,3.5,1055439392\n15,6464,2.5,1056617566\n15,6502,3.5,1058249439\n15,6503,2.5,1134521973\n15,6534,2.0,1061496778\n15,6537,2.5,1058249457\n15,6539,3.5,1061496766\n15,6547,1.0,1061496761\n15,6552,1.5,1082220233\n15,6586,3.0,1416119958\n15,6593,1.0,1096005208\n15,6620,1.5,1082220241\n15,6641,4.0,1093028561\n15,6650,3.5,1120209771\n15,6708,2.0,1082220217\n15,6711,3.5,1065197251\n15,6754,0.5,1425876028\n15,6773,1.0,1465881072\n15,6783,2.0,1082220258\n15,6787,5.0,1120209297\n15,6816,4.0,1096005320\n15,6820,2.5,1067797435\n15,6863,2.0,1082220208\n15,6867,3.5,1093981691\n15,6870,3.5,1068955127\n15,6873,1.0,1096005187\n15,6874,1.0,1067797349\n15,6875,1.0,1096005180\n15,6879,2.5,1416119807\n15,6885,1.0,1465954640\n15,6932,4.5,1075142920\n15,6934,1.5,1338699263\n15,6936,1.0,1075142924\n15,6942,3.0,1088621558\n15,6944,4.0,1465794270\n15,6947,1.0,1347936706\n15,6953,2.0,1083003232\n15,6957,4.0,1222576385\n15,6961,2.5,1240203829\n15,6975,4.0,1093028559\n15,6978,2.5,1097770851\n15,6979,3.0,1257734253\n15,6989,2.5,1348976559\n15,7003,2.0,1367800233\n15,7004,2.5,1374637760\n15,7008,3.5,1240203970\n15,7010,3.5,1465954687\n15,7028,3.5,1132469120\n15,7034,4.5,1443384409\n15,7090,3.0,1120209290\n15,7123,3.5,1347936794\n15,7132,3.0,1096005056\n15,7143,2.0,1088621554\n15,7147,1.5,1088621484\n15,7153,1.5,1075142916\n15,7156,3.0,1120209458\n15,7162,1.0,1075142909\n15,7173,0.5,1416119886\n15,7199,1.0,1096005109\n15,7254,1.0,1166587408\n15,7265,3.5,1193435338\n15,7293,1.0,1093028019\n15,7317,3.0,1082220195\n15,7323,2.0,1222576372\n15,7325,0.5,1416119755\n15,7327,1.5,1082220223\n15,7346,3.0,1465954961\n15,7348,2.0,1093028001\n15,7361,5.0,1082220175\n15,7371,1.0,1097770844\n15,7373,1.5,1134521979\n15,7438,0.5,1093981610\n15,7444,1.0,1425876074\n15,7445,1.5,1416119694\n15,7451,3.5,1416119705\n15,7458,1.5,1166587430\n15,7484,4.0,1338698422\n15,7487,1.5,1240203696\n15,7560,3.5,1093070784\n15,7569,3.5,1345397687\n15,7573,2.5,1345398305\n15,7698,3.0,1345381192\n15,7792,2.5,1345397672\n15,7925,3.0,1096005042\n15,8011,2.0,1093027976\n15,8264,4.0,1465793979\n15,8360,2.5,1134522006\n15,8361,4.0,1093027865\n15,8366,2.5,1088621517\n15,8368,1.5,1163876352\n15,8376,2.5,1166587363\n15,8464,3.0,1416119547\n15,8528,1.0,1122576284\n15,8529,1.5,1257734240\n15,8531,1.5,1465880288\n15,8581,2.5,1361078268\n15,8582,3.5,1120209740\n15,8622,3.5,1163876408\n15,8623,3.0,1096005049\n15,8636,3.0,1093027850\n15,8638,4.0,1128274489\n15,8641,3.0,1349622612\n15,8644,1.0,1163876378\n15,8645,2.0,1120210020\n15,8665,3.5,1093027853\n15,8781,0.5,1416119915\n15,8784,2.0,1134521997\n15,8798,3.0,1166586987\n15,8807,2.5,1349622634\n15,8865,1.0,1166981777\n15,8874,2.5,1122925517\n15,8910,2.5,1120210034\n15,8914,4.5,1101423864\n15,8917,4.0,1465880526\n15,8930,2.5,1166585434\n15,8948,1.0,1166981765\n15,8949,4.5,1120209300\n15,8950,2.0,1357110243\n15,8957,3.0,1134522096\n15,8958,3.5,1134522079\n15,8961,2.0,1101423869\n15,8970,2.0,1163876370\n15,8972,3.5,1374637712\n15,8974,2.5,1374637844\n15,8984,2.0,1166981834\n15,26131,5.0,1222575895\n15,26152,4.0,1134521251\n15,26587,5.0,1416120087\n15,26729,4.5,1166585398\n15,26810,2.0,1166587331\n15,27020,2.5,1240203954\n15,27478,2.5,1349622724\n15,27660,4.0,1166587397\n15,27773,1.0,1134521148\n15,27821,1.0,1348976609\n15,27846,4.0,1120209293\n15,27904,2.5,1347936774\n15,30707,1.5,1127035004\n15,30749,2.0,1120208607\n15,30810,1.5,1136904803\n15,30812,0.5,1416119604\n15,30825,1.5,1416119717\n15,31685,0.5,1361831527\n15,31696,3.5,1127035028\n15,32587,3.5,1136087271\n15,33004,0.5,1127035016\n15,33154,3.5,1338702522\n15,33166,3.5,1132469115\n15,33493,5.0,1132469077\n15,33679,3.5,1136904851\n15,33794,4.5,1120208603\n15,34048,0.5,1316395912\n15,34072,1.5,1361078474\n15,34150,1.0,1416119744\n15,34162,1.0,1141391741\n15,34319,1.0,1316395893\n15,34334,1.5,1367765144\n15,34405,0.5,1357110418\n15,34542,3.5,1141391837\n15,35836,3.0,1135737540\n15,35957,2.5,1141391844\n15,36517,1.5,1138537176\n15,36529,1.0,1416119600\n15,37386,2.0,1465954599\n15,37729,2.0,1141391812\n15,37741,2.5,1425876066\n15,38061,4.5,1222576339\n15,38886,1.5,1338698465\n15,39292,4.5,1166587434\n15,40583,2.0,1416119810\n15,40815,1.5,1416119662\n15,41997,2.5,1258259502\n15,42718,4.5,1348976510\n15,44004,1.0,1465880318\n15,44191,2.5,1240211404\n15,44195,2.0,1222576358\n15,44199,4.0,1222575879\n15,44555,1.0,1465794625\n15,44597,2.5,1316408165\n15,44665,1.0,1240211399\n15,44761,1.5,1357109999\n15,44788,4.0,1465793925\n15,45186,2.5,1316396016\n15,45447,1.0,1425876007\n15,45499,2.5,1338698829\n15,45517,0.5,1416119707\n15,45666,4.0,1374637848\n15,45672,1.5,1465794277\n15,45720,1.5,1416119790\n15,45722,2.0,1416120304\n15,45728,0.5,1416119889\n15,45950,3.0,1169616283\n15,46530,0.5,1338699292\n15,46578,1.0,1338702417\n15,46723,2.0,1367800237\n15,46970,2.0,1416119963\n15,46972,3.5,1374637631\n15,46976,3.5,1222576367\n15,47610,1.5,1245382906\n15,47999,2.5,1465793916\n15,48043,0.5,1416119898\n15,48082,1.0,1347937644\n15,48385,4.0,1257734226\n15,48394,1.5,1348976680\n15,48516,3.0,1222575856\n15,48774,4.0,1240211394\n15,48780,4.0,1222578045\n15,49272,4.0,1222578063\n15,49278,2.5,1316395906\n15,49286,2.5,1465880683\n15,50851,3.5,1443384396\n15,50872,3.5,1245361883\n15,51080,4.5,1222578101\n15,51255,1.5,1222576350\n15,51540,5.0,1222578057\n15,51662,2.0,1347936470\n15,52245,1.5,1349622540\n15,52328,1.5,1347936786\n15,52604,2.0,1443384826\n15,52722,1.5,1338699286\n15,52973,3.5,1349622826\n15,53322,3.5,1425876037\n15,53464,1.5,1443385025\n15,53894,2.5,1338702524\n15,53972,3.0,1338698806\n15,53996,4.0,1257734285\n15,54001,2.0,1416119677\n15,54272,1.0,1425875994\n15,54286,2.5,1258259468\n15,54372,4.5,1238804101\n15,54503,3.5,1338698617\n15,54881,4.5,1361078498\n15,55247,1.0,1416120041\n15,55269,1.0,1374638435\n15,55276,3.5,1222578076\n15,55442,2.5,1416119972\n15,55765,2.0,1361078252\n15,55820,2.0,1338698362\n15,55830,2.5,1443384839\n15,56174,1.0,1416119594\n15,56367,2.0,1374638451\n15,56563,4.0,1465793961\n15,56775,3.0,1443385030\n15,56782,1.0,1416119686\n15,57368,1.5,1425876060\n15,57640,4.0,1216576560\n15,57669,1.5,1338702423\n15,58025,1.0,1338698854\n15,58295,1.5,1347936713\n15,58559,4.5,1222024895\n15,58998,1.5,1240203919\n15,59126,4.0,1465793918\n15,59315,4.5,1216576545\n15,59369,2.5,1347936669\n15,59519,3.5,1216576555\n15,59615,1.0,1338698814\n15,59784,3.5,1357110059\n15,59900,1.5,1349622715\n15,60037,0.5,1216576611\n15,60040,3.0,1216576596\n15,60069,4.5,1216576570\n15,60072,1.0,1316396154\n15,60074,1.0,1416119795\n15,60126,1.0,1361831545\n15,60295,3.5,1316395628\n15,60684,4.0,1238801478\n15,60766,3.5,1240211388\n15,61024,1.0,1357110065\n15,61132,2.0,1222024906\n15,61323,1.0,1257734243\n15,61394,2.0,1349622731\n15,62374,3.5,1367764780\n15,62434,3.5,1443384812\n15,62511,4.5,1367800217\n15,63082,0.5,1357110411\n15,63113,3.5,1245309336\n15,63131,2.0,1338698608\n15,63859,3.0,1348976367\n15,64620,2.0,1245021120\n15,64839,1.0,1416119731\n15,64957,1.5,1416119711\n15,65642,4.5,1357110430\n15,65802,0.5,1465880993\n15,66097,3.0,1238804089\n15,66130,1.5,1240202854\n15,66203,1.0,1465880257\n15,66596,1.5,1465880651\n15,66665,3.0,1257733143\n15,66934,0.5,1338698623\n15,67087,1.5,1426110601\n15,67193,1.5,1257733150\n15,67665,3.5,1245021164\n15,67734,1.5,1374638441\n15,67997,4.0,1338702402\n15,68157,3.0,1338698899\n15,68159,4.0,1245021148\n15,68237,3.5,1338698337\n15,68319,2.0,1316396161\n15,68324,1.0,1465954712\n15,68358,4.5,1245021136\n15,68791,4.0,1316396225\n15,68793,3.0,1374637633\n15,68954,2.0,1338698886\n15,69122,1.0,1338702414\n15,69306,2.0,1389440855\n15,69406,1.0,1361831532\n15,69436,0.5,1465880996\n15,69481,4.5,1338698471\n15,69524,4.0,1458506351\n15,69526,3.0,1257733119\n15,70286,5.0,1257734187\n15,70293,3.5,1261945002\n15,70336,4.5,1316395878\n15,70697,2.5,1374637773\n15,70862,2.5,1465793997\n15,71211,3.5,1257734180\n15,71264,1.5,1465794388\n15,71282,2.5,1465793912\n15,71462,3.0,1465793920\n15,71464,2.0,1257735545\n15,71535,1.0,1425876002\n15,71838,2.0,1465880969\n15,72011,2.5,1338702430\n15,72226,1.5,1338698882\n15,72378,1.0,1357110070\n15,72998,4.0,1261944230\n15,73017,1.0,1273090173\n15,73344,3.5,1316395633\n15,74458,0.5,1338698316\n15,74649,4.0,1338702442\n15,74795,1.5,1367764758\n15,74851,0.5,1361831555\n15,76077,2.0,1458506610\n15,76093,4.0,1273090169\n15,76251,3.0,1273090163\n15,76293,3.0,1361831522\n15,76738,2.5,1379040852\n15,77364,2.5,1367765175\n15,77455,4.0,1367801385\n15,77561,1.0,1316395588\n15,78209,3.0,1458506646\n15,78469,3.0,1316395983\n15,78499,2.0,1338698896\n15,78574,4.5,1443384445\n15,79057,2.5,1367765128\n15,79132,5.0,1316395554\n15,79185,2.5,1458506381\n15,79242,2.5,1465880302\n15,79293,1.5,1349048062\n15,79428,1.0,1349622587\n15,79695,0.5,1367765181\n15,79702,1.5,1338698870\n15,80126,1.0,1465794431\n15,80185,3.0,1374638009\n15,80463,2.0,1361078260\n15,80489,4.0,1316395567\n15,80862,2.5,1465793930\n15,80906,4.0,1361078281\n15,81158,3.0,1367801466\n15,81191,3.0,1374638035\n15,81229,3.5,1348976539\n15,81591,1.0,1338698369\n15,81782,3.0,1316395900\n15,81834,2.0,1458506571\n15,81845,3.0,1367801474\n15,81847,1.0,1338698918\n15,81932,3.0,1338698461\n15,82461,3.0,1316396252\n15,82854,0.5,1465880518\n15,83270,1.0,1361078285\n15,83293,3.5,1367801456\n15,83349,1.0,1316396136\n15,83613,0.5,1367765123\n15,83827,4.0,1425875865\n15,84152,3.0,1345381190\n15,84374,2.5,1465880243\n15,84392,2.5,1367801369\n15,84954,1.0,1347936749\n15,85414,4.0,1316395607\n15,85774,4.0,1367801387\n15,86190,1.5,1348976211\n15,86332,1.0,1316395573\n15,86644,1.5,1338698824\n15,86781,5.0,1316395597\n15,86833,4.0,1458506593\n15,86882,2.5,1458506580\n15,86898,3.5,1458507263\n15,86911,0.5,1458505901\n15,87222,4.0,1458506624\n15,87232,1.5,1316395580\n15,87304,0.5,1374638031\n15,87306,1.0,1347936763\n15,87430,0.5,1338698810\n15,87485,1.0,1458507259\n15,87520,4.5,1316396021\n15,87869,2.5,1458506136\n15,87930,2.0,1443385461\n15,88125,3.0,1416120053\n15,88129,2.5,1338698356\n15,88140,1.0,1348976202\n15,88163,3.5,1386367929\n15,88356,1.5,1316408269\n15,88744,4.5,1316395487\n15,88950,0.5,1316395783\n15,89090,1.5,1367801460\n15,89337,3.0,1374638024\n15,89470,1.5,1458506641\n15,89492,5.0,1361078138\n15,89745,3.0,1338697857\n15,89840,1.0,1349048081\n15,90249,3.5,1338698848\n15,90266,2.5,1367801470\n15,90428,4.5,1348977157\n15,90439,0.5,1361078276\n15,90531,4.0,1338698144\n15,90600,3.5,1367801363\n15,90603,2.5,1348976195\n15,90647,3.0,1374637765\n15,90746,1.5,1338698014\n15,90866,1.0,1338698247\n15,90870,0.5,1465880427\n15,91500,0.5,1338697915\n15,91505,1.0,1347936860\n15,91529,3.0,1345350956\n15,91535,2.0,1348979143\n15,91542,1.0,1348976183\n15,91630,2.5,1338698134\n15,91653,4.5,1338698154\n15,91658,4.0,1338698344\n15,91842,3.0,1338698158\n15,91869,3.0,1338697924\n15,92420,1.5,1465880962\n15,92507,2.5,1338698152\n15,93326,1.0,1361831455\n15,93363,1.0,1338699137\n15,93510,3.0,1338697920\n15,93721,2.0,1458507291\n15,93831,2.5,1338697984\n15,93840,3.5,1338697905\n15,94015,1.0,1338697996\n15,94018,1.0,1338698001\n15,94478,1.0,1338698006\n15,94677,4.0,1338697991\n15,94777,2.5,1338697968\n15,94780,1.5,1345351002\n15,94833,1.5,1338697964\n15,94864,1.5,1345350968\n15,94959,1.0,1374638428\n15,95105,1.0,1345350979\n15,95167,1.0,1345350959\n15,95199,0.5,1465880715\n15,95311,1.5,1347937652\n15,95443,0.5,1357109952\n15,95510,3.5,1345350961\n15,95558,1.0,1357109941\n15,95875,1.5,1345350995\n15,96079,3.0,1361831420\n15,96150,2.0,1345350973\n15,96488,3.5,1361076608\n15,96610,1.5,1374637996\n15,96667,2.5,1357109969\n15,96737,2.5,1458506349\n15,97304,2.5,1367764836\n15,97393,3.5,1386368013\n15,97866,3.5,1361076604\n15,97913,2.5,1426110392\n15,97923,3.0,1386367936\n15,97938,2.5,1389482906\n15,98122,0.5,1465793928\n15,98154,0.5,1425876388\n15,98809,0.5,1416119923\n15,98961,3.0,1367764716\n15,99007,1.0,1465880234\n15,99112,3.5,1458506339\n15,99114,1.5,1425876390\n15,99149,1.0,1357109923\n15,99468,2.5,1386368031\n15,99811,4.0,1361831110\n15,100032,2.0,1361076617\n15,100083,0.5,1465880648\n15,100365,2.5,1361831156\n15,100383,1.0,1400818425\n15,100517,3.0,1381534422\n15,100556,4.0,1374638046\n15,100581,1.5,1465793952\n15,100714,3.0,1386367955\n15,100745,1.0,1367764695\n15,101076,3.0,1367764864\n15,101112,0.5,1465880292\n15,101362,3.0,1465880371\n15,101864,3.5,1400818444\n15,101895,1.0,1386367999\n15,102123,1.5,1458506656\n15,102125,2.0,1389482894\n15,102445,3.0,1386367981\n15,102800,2.5,1386367968\n15,102880,0.5,1400818394\n15,102903,1.0,1458506599\n15,103042,2.5,1386367923\n15,103228,5.0,1379040901\n15,103249,0.5,1465794267\n15,103253,1.0,1465954520\n15,103372,1.0,1465880282\n15,103810,1.5,1465880264\n15,104211,3.5,1458506673\n15,104241,1.0,1458506703\n15,104272,3.0,1425875562\n15,104726,3.0,1381534394\n15,104841,3.5,1386367735\n15,104879,4.0,1381534447\n15,105504,3.5,1425875553\n15,106072,2.0,1443384429\n15,106111,1.0,1386367830\n15,106332,3.5,1386367813\n15,106489,2.0,1389440765\n15,106782,3.5,1416120264\n15,106916,1.5,1416120141\n15,106920,4.5,1416119571\n15,107348,0.5,1465881258\n15,107406,4.0,1425875579\n15,107910,4.5,1426110023\n15,108188,2.0,1416120159\n15,108190,0.5,1458506323\n15,108689,0.5,1465954590\n15,108729,1.0,1465954969\n15,108932,1.5,1407125286\n15,108945,1.0,1458506369\n15,109187,0.5,1465794437\n15,109374,1.0,1416119568\n15,109487,3.5,1425875392\n15,109673,1.5,1416120169\n15,109687,2.5,1465793948\n15,109848,3.0,1425875503\n15,110102,4.0,1416120131\n15,110127,0.5,1416120162\n15,110553,0.5,1416120149\n15,110730,1.0,1416120159\n15,110771,2.0,1465880696\n15,111228,2.5,1443385454\n15,111360,1.0,1425875482\n15,111362,3.5,1416120099\n15,111364,4.0,1400818348\n15,111443,4.0,1407125275\n15,111622,4.5,1425875435\n15,111759,4.5,1416120100\n15,111781,4.5,1443384269\n15,112138,3.5,1407125270\n15,112171,2.5,1425875460\n15,112183,2.0,1426110071\n15,112370,3.5,1416120171\n15,112552,1.5,1443384078\n15,112556,4.5,1425875403\n15,112623,4.0,1407125273\n15,112788,1.0,1465880699\n15,112852,4.5,1416119564\n15,112940,1.5,1425875476\n15,113345,0.5,1465794105\n15,113348,2.0,1425875488\n15,113378,0.5,1425875497\n15,113741,1.0,1425875574\n15,114180,1.0,1465793290\n15,114635,4.0,1416120202\n15,115149,4.0,1425875463\n15,115502,3.5,1443384500\n15,115569,5.0,1425875406\n15,115617,1.5,1425875413\n15,115713,3.5,1443384091\n15,116161,1.0,1425875458\n15,116797,0.5,1425875401\n15,116799,0.5,1465794406\n15,116823,0.5,1425875449\n15,116897,4.5,1443384373\n15,117176,1.0,1425875426\n15,117529,4.0,1443384296\n15,117533,3.5,1443384084\n15,118696,1.5,1443384307\n15,119141,2.0,1443384336\n15,119145,1.5,1425875443\n15,120466,1.5,1443384294\n15,120799,3.0,1443384317\n15,121171,3.0,1465793971\n15,121231,4.5,1458507341\n15,122882,1.0,1443384389\n15,122886,3.5,1458505928\n15,122890,3.0,1466051442\n15,122892,3.0,1443384000\n15,122900,3.0,1443384283\n15,122902,0.5,1443384352\n15,122904,1.0,1458505916\n15,122920,3.0,1465793115\n15,122924,2.5,1465793601\n15,127136,1.0,1443385387\n15,128360,2.5,1458505982\n15,129937,1.5,1443384322\n15,130452,2.0,1458506093\n15,130490,0.5,1465794100\n15,130576,2.0,1465793706\n15,130634,2.0,1458506081\n15,131013,3.0,1443384337\n15,132046,0.5,1465794103\n15,132480,3.0,1458506026\n15,132796,3.0,1443384330\n15,132961,3.0,1458507347\n15,134130,3.5,1458505912\n15,134368,4.5,1443384275\n15,134393,4.0,1458506097\n15,134853,1.0,1458505921\n15,135133,0.5,1465794150\n15,135436,1.0,1469330276\n15,135567,3.0,1467259301\n15,135569,3.0,1469330245\n15,136020,3.0,1458506089\n15,136562,1.5,1458506078\n15,136864,3.0,1465793719\n15,137337,3.5,1458505989\n15,137857,3.0,1465793116\n15,138036,1.0,1443384531\n15,139385,2.5,1458505973\n15,139644,3.0,1458505986\n15,139757,3.5,1465793975\n15,139855,2.0,1458506009\n15,140110,2.5,1465956541\n15,140174,4.0,1458505917\n15,140267,4.0,1465793185\n15,140711,2.5,1443384516\n15,140928,0.5,1465793205\n15,142488,3.5,1458505911\n15,142507,3.0,1465793179\n15,143385,2.5,1458506017\n15,145839,1.0,1465793183\n15,145935,3.0,1465793201\n15,146656,3.5,1458506016\n15,148626,3.5,1458505924\n15,149352,3.0,1465793208\n15,149354,3.5,1458506107\n15,149406,4.0,1465793192\n15,152057,0.5,1465793700\n15,152077,2.0,1465793170\n15,152079,1.5,1465880375\n15,152081,3.0,1460076733\n15,155820,1.0,1465793639\n15,156607,0.5,1465793691\n15,156609,3.5,1465793621\n15,157200,1.5,1465793612\n15,157296,2.0,1467259316\n15,157667,1.5,1465793630\n15,158238,3.5,1465794051\n15,158528,3.5,1467259294\n15,159093,1.0,1465793091\n15,159690,2.0,1465880080\n15,159755,1.0,1465793093\n15,159858,4.0,1466802910\n15,159972,0.5,1469330481\n15,160080,1.0,1469330238\n15,160271,2.5,1466802905\n15,160563,1.0,1469330270\n15,160565,2.0,1469330266\n15,160567,4.0,1469330242\n15,161155,0.5,1469330307\n16,50,4.5,1178364904\n16,318,4.0,1178364881\n16,337,4.0,1137577638\n16,527,4.0,1178364921\n16,750,4.0,1137577630\n16,1653,5.0,1137577694\n16,1704,5.0,1178363907\n16,1961,3.5,1178364916\n16,2012,4.0,1137577687\n16,2278,3.5,1137577912\n16,2539,4.0,1137577918\n16,2706,5.0,1137577616\n16,2797,3.0,1137577645\n16,2858,4.0,1148214528\n16,3623,4.0,1137577753\n16,4014,3.5,1137577979\n16,4231,4.5,1148214227\n16,4246,4.0,1137577889\n16,4718,4.5,1148214543\n16,4738,4.5,1148214272\n16,4772,5.0,1148214289\n16,4823,4.0,1148214251\n16,4995,4.5,1178364909\n16,5349,3.0,1137577776\n16,5445,4.5,1137577730\n16,6016,4.0,1178364961\n16,6711,4.5,1137578034\n16,6874,3.5,1137577905\n16,7346,4.0,1148214661\n17,6,4.5,1127469542\n17,25,4.5,1127469531\n17,29,4.5,1127470880\n17,32,4.5,1127469436\n17,36,4.5,1127469535\n17,47,5.0,1127469246\n17,50,5.0,1127469450\n17,111,5.0,1127469023\n17,170,4.0,1127470242\n17,172,3.5,1127468646\n17,185,3.0,1127469509\n17,194,4.0,1127470280\n17,198,5.0,1127468896\n17,223,2.5,1127469577\n17,235,5.0,1127469684\n17,247,2.0,1127471027\n17,260,3.5,1127474688\n17,288,2.0,1127469552\n17,293,4.0,1127469604\n17,296,5.0,1127469297\n17,307,3.5,1127471192\n17,318,5.0,1127469420\n17,348,3.5,1127470013\n17,356,2.5,1127469401\n17,377,0.5,1127469444\n17,431,4.5,1127471468\n17,480,0.5,1127469407\n17,482,0.5,1127475344\n17,492,5.0,1127472949\n17,527,4.0,1127469434\n17,541,5.0,1127469561\n17,555,4.0,1127469779\n17,590,3.0,1127469416\n17,593,4.5,1127469396\n17,608,3.5,1127469440\n17,680,4.5,1127472555\n17,714,4.5,1127473893\n17,736,2.5,1127469466\n17,778,4.5,1127469230\n17,858,5.0,1127469000\n17,866,4.5,1127470263\n17,903,5.0,1127468839\n17,904,4.5,1127468627\n17,908,5.0,1127468595\n17,910,3.5,1127470036\n17,912,4.5,1127471471\n17,913,5.0,1127468808\n17,922,5.0,1127468822\n17,923,4.5,1127469756\n17,924,4.5,1127469594\n17,928,4.5,1127471079\n17,930,3.5,1127472146\n17,931,4.5,1127474822\n17,942,3.5,1127470622\n17,965,3.5,1127470607\n17,1036,2.5,1127473110\n17,1077,4.0,1127473686\n17,1079,2.5,1127469628\n17,1089,5.0,1127469308\n17,1092,4.0,1127469973\n17,1095,2.0,1127471148\n17,1104,3.5,1127470400\n17,1136,5.0,1127469568\n17,1173,1.0,1127472932\n17,1175,4.5,1127470987\n17,1193,4.5,1127469556\n17,1199,4.5,1127469923\n17,1206,5.0,1127469650\n17,1210,3.5,1127473503\n17,1212,5.0,1127468800\n17,1213,5.0,1127469622\n17,1218,4.0,1127474633\n17,1220,4.0,1127469667\n17,1221,5.0,1127469002\n17,1230,5.0,1127469749\n17,1232,5.0,1127471445\n17,1235,5.0,1127470230\n17,1237,5.0,1127469169\n17,1240,3.0,1127474779\n17,1241,0.5,1127472490\n17,1244,4.0,1127470206\n17,1245,4.0,1127470820\n17,1246,5.0,1127469721\n17,1248,5.0,1127468791\n17,1249,2.5,1127470114\n17,1251,3.5,1127470489\n17,1252,5.0,1127468638\n17,1255,2.0,1127472442\n17,1258,3.5,1127469694\n17,1263,4.5,1127470072\n17,1265,4.5,1127469234\n17,1267,5.0,1127470095\n17,1270,4.5,1127469473\n17,1298,4.5,1127473670\n17,1333,2.0,1127470062\n17,1348,5.0,1127470930\n17,1396,3.0,1127468688\n17,1411,5.0,1127473298\n17,1464,5.0,1127468930\n17,1466,4.5,1127469223\n17,1517,3.0,1127469661\n17,1570,2.5,1127475516\n17,1580,2.5,1127469521\n17,1597,2.5,1127469976\n17,1617,4.5,1127469527\n17,1625,5.0,1127469905\n17,1627,4.0,1127471602\n17,1645,3.5,1127469988\n17,1653,5.0,1127468587\n17,1673,4.5,1127469912\n17,1674,4.5,1127474863\n17,1704,4.0,1127469601\n17,1721,0.5,1127472770\n17,1729,2.5,1127470069\n17,1732,4.0,1127468617\n17,1748,4.5,1127470043\n17,1809,3.0,1127469129\n17,1834,4.5,1127471258\n17,1884,5.0,1127472570\n17,1921,5.0,1127470262\n17,1923,3.0,1127469612\n17,1997,4.0,1127469217\n17,2010,5.0,1127470918\n17,2011,4.0,1127469773\n17,2012,4.0,1127469738\n17,2021,3.5,1127473090\n17,2023,4.0,1127469006\n17,2028,3.5,1127469494\n17,2066,5.0,1127468880\n17,2067,4.5,1127470656\n17,2076,5.0,1127468938\n17,2110,3.5,1127475491\n17,2117,4.5,1127474890\n17,2118,4.0,1127472523\n17,2159,2.5,1127473955\n17,2160,4.5,1127469357\n17,2167,2.0,1127470030\n17,2204,4.5,1127474873\n17,2232,4.5,1127474381\n17,2278,3.5,1127470130\n17,2324,4.5,1127469815\n17,2329,4.0,1127469961\n17,2353,3.5,1127468671\n17,2396,4.5,1127469563\n17,2455,4.0,1127470079\n17,2467,5.0,1127469379\n17,2490,4.0,1127470158\n17,2502,1.0,1127469848\n17,2539,2.5,1127470166\n17,2551,5.0,1127472530\n17,2571,5.0,1127469486\n17,2579,5.0,1127470677\n17,2594,5.0,1127470875\n17,2600,5.0,1127468906\n17,2606,3.0,1127472715\n17,2657,3.0,1127469890\n17,2672,3.5,1127473623\n17,2677,4.0,1127473860\n17,2683,3.0,1127469619\n17,2692,4.5,1127469870\n17,2707,3.5,1127473627\n17,2710,3.5,1127469711\n17,2712,3.0,1127469824\n17,2726,4.5,1127474088\n17,2762,4.5,1127469504\n17,2791,2.0,1127469746\n17,2858,4.5,1127469479\n17,2892,3.5,1127469374\n17,2916,4.0,1127469652\n17,2918,3.0,1127469690\n17,2952,2.5,1127472212\n17,2959,5.0,1127469609\n17,2973,5.0,1127471286\n17,2997,5.0,1127469583\n17,3018,4.0,1127476640\n17,3134,5.0,1127471284\n17,3147,4.0,1127469868\n17,3160,2.5,1127470023\n17,3253,2.0,1127469202\n17,3262,4.5,1127472389\n17,3267,4.0,1127474810\n17,3328,4.0,1127469266\n17,3386,4.0,1127473609\n17,3408,2.5,1127469817\n17,3435,5.0,1127468813\n17,3476,4.5,1127473589\n17,3503,4.5,1127471452\n17,3504,3.5,1127470537\n17,3535,4.5,1127470423\n17,3578,4.0,1127469591\n17,3598,4.0,1127473228\n17,3676,5.0,1127472406\n17,3730,3.0,1127472085\n17,3735,4.0,1127470532\n17,3742,4.0,1127468949\n17,3785,3.5,1127470327\n17,3788,4.5,1127470461\n17,3863,3.5,1127470285\n17,3949,4.0,1127470334\n17,3977,1.0,1127468701\n17,3994,4.0,1127469984\n17,3996,4.5,1127469664\n17,4027,1.5,1127469852\n17,4034,4.0,1127468683\n17,4037,4.5,1127471074\n17,4210,3.0,1127475013\n17,4226,5.0,1127469783\n17,4239,3.5,1127470473\n17,4246,0.5,1127470119\n17,4262,5.0,1127470830\n17,4306,3.5,1127471221\n17,4404,5.0,1127471153\n17,4437,5.0,1127469334\n17,4546,4.5,1127470728\n17,4552,4.0,1127474968\n17,4645,4.5,1127474815\n17,4725,4.5,1127475151\n17,4848,5.0,1127468922\n17,4878,4.0,1127470287\n17,4886,3.5,1127473495\n17,4896,0.5,1127470004\n17,4914,5.0,1127471176\n17,4963,4.0,1127469940\n17,4973,4.5,1127470007\n17,4975,4.0,1127475485\n17,4993,4.5,1127469643\n17,4995,3.0,1127473364\n17,5015,4.0,1127473564\n17,5017,5.0,1127470960\n17,5054,4.0,1127475207\n17,5060,0.5,1127469827\n17,5062,5.0,1127472353\n17,5072,2.5,1127474324\n17,5105,5.0,1127475000\n17,5137,4.5,1127471041\n17,5254,2.5,1127473845\n17,5266,3.0,1127475457\n17,5299,0.5,1127470247\n17,5316,1.5,1127475188\n17,5349,1.5,1127469195\n17,5388,4.0,1127473818\n17,5418,3.5,1127470134\n17,5445,4.5,1127468673\n17,5464,4.0,1127471240\n17,5502,0.5,1127470299\n17,5574,2.0,1127473010\n17,5608,4.5,1127470799\n17,5630,4.0,1127475183\n17,5669,4.5,1127470238\n17,5679,4.0,1127472858\n17,5686,2.5,1127475440\n17,5782,4.5,1127470685\n17,5809,2.0,1127473119\n17,5853,3.0,1127472423\n17,5867,4.0,1127471265\n17,5881,4.0,1127471454\n17,5893,2.0,1127471062\n17,5903,3.5,1127475067\n17,5949,4.5,1127474818\n17,5952,4.5,1127469753\n17,6016,5.0,1127470498\n17,6059,3.5,1127474362\n17,6140,4.0,1127474765\n17,6197,4.5,1127475051\n17,6214,3.0,1127474841\n17,6242,4.0,1127472872\n17,6281,3.5,1127475334\n17,6287,1.0,1127472991\n17,6294,0.5,1127472976\n17,6322,2.0,1127475308\n17,6323,2.0,1127473829\n17,6365,2.0,1127470144\n17,6378,2.0,1127472896\n17,6383,0.5,1127472979\n17,6385,4.0,1127470895\n17,6502,3.0,1127469259\n17,6503,0.5,1127473548\n17,6530,5.0,1127474791\n17,6538,4.0,1127474916\n17,6584,3.5,1127475452\n17,6643,4.5,1127468985\n17,6666,4.5,1127474277\n17,6708,3.5,1127471196\n17,6711,1.5,1127470254\n17,6757,4.0,1127473461\n17,6774,4.0,1127472413\n17,6777,4.0,1127472303\n17,6790,3.5,1127475092\n17,6858,2.0,1127471327\n17,6874,4.5,1127470187\n17,6971,5.0,1127471166\n17,6975,3.5,1127475055\n17,6979,3.5,1127473832\n17,6987,5.0,1127470752\n17,6993,4.0,1127471083\n17,7003,4.0,1127475101\n17,7013,2.5,1127470546\n17,7022,4.5,1127470734\n17,7044,2.5,1127474852\n17,7068,4.5,1127474908\n17,7069,4.5,1127470872\n17,7084,3.5,1127471213\n17,7090,4.0,1127472094\n17,7115,4.5,1127469062\n17,7116,4.5,1127470554\n17,7123,5.0,1127474398\n17,7135,4.5,1127471109\n17,7153,4.5,1127470693\n17,7163,2.0,1127473904\n17,7223,4.0,1127470592\n17,7254,4.0,1127473557\n17,7361,4.5,1127470361\n17,7371,5.0,1127473913\n17,7438,4.5,1127470380\n17,7445,1.0,1127475148\n17,7587,5.0,1127470520\n17,7700,5.0,1127469051\n17,7728,4.5,1127471038\n17,7771,5.0,1127473707\n17,7792,4.0,1127472156\n17,7827,4.0,1127474420\n17,7981,5.0,1127470503\n17,7982,3.5,1127471336\n17,7991,0.5,1127475448\n17,8195,3.0,1127474877\n17,8228,5.0,1127470713\n17,8360,3.0,1127472844\n17,8370,3.0,1127470866\n17,8477,4.5,1127474727\n17,8600,4.0,1127472266\n17,8620,3.5,1127471100\n17,8622,3.0,1127473138\n17,8644,2.0,1127473808\n17,8665,3.5,1127472829\n17,8690,3.0,1127471144\n17,8781,2.0,1127473772\n17,8783,0.5,1127473349\n17,8798,4.5,1127472292\n17,8865,0.5,1127475524\n17,8874,3.5,1127470706\n17,8914,4.5,1127470716\n17,8928,3.0,1127475246\n17,8950,5.0,1127470724\n17,8957,3.0,1127471549\n17,8958,5.0,1127470911\n17,8973,3.5,1127470788\n17,8983,2.5,1127471208\n17,27266,3.5,1127468773\n17,27317,5.0,1127471031\n17,27604,3.0,1127475110\n17,27721,4.0,1127470792\n17,27773,5.0,1127469035\n17,27788,3.0,1127475574\n17,27834,4.5,1127471248\n17,31410,5.0,1127469049\n17,31878,3.0,1127472057\n17,31952,4.5,1127474893\n17,32587,5.0,1127470680\n17,33004,2.5,1127475161\n17,33615,1.0,1127473991\n17,33683,2.0,1127475261\n17,34048,3.0,1127475175\n17,34437,5.0,1127470435\n18,5,3.0,856006982\n18,6,4.0,856006982\n18,7,3.0,856006982\n18,9,3.0,856007219\n18,14,2.0,856007147\n18,17,4.0,856006886\n18,18,3.0,856007359\n18,25,5.0,856006886\n18,32,5.0,856006885\n18,36,3.0,856006982\n18,52,3.0,856007075\n18,62,4.0,856006886\n18,74,2.0,856007279\n18,76,3.0,856007359\n18,79,2.0,856007147\n18,81,3.0,856007495\n18,85,4.0,856007495\n18,86,4.0,856007409\n18,92,3.0,856007409\n18,95,3.0,856006886\n18,100,4.0,856007279\n18,140,3.0,856007147\n18,141,4.0,856006885\n18,260,3.0,856007075\n18,376,3.0,856007075\n18,494,3.0,856006982\n18,608,4.0,856006982\n18,628,4.0,856007147\n18,640,3.0,856007359\n18,648,3.0,856006886\n18,653,4.0,856007075\n18,707,3.0,856007279\n18,708,4.0,856007075\n18,719,3.0,856007219\n18,733,4.0,856006982\n18,736,2.0,856006885\n18,743,3.0,856007219\n18,748,3.0,856007359\n18,762,1.0,856007147\n18,765,2.0,856007587\n18,780,3.0,856006885\n18,785,4.0,856007495\n18,786,4.0,856006982\n18,788,3.0,856007075\n18,802,4.0,856007219\n18,805,4.0,856007147\n18,818,3.0,856092135\n18,832,3.0,856007219\n18,849,4.0,856007587\n18,852,3.0,856007279\n18,880,1.0,856007587\n19,1,3.0,855190091\n19,2,3.0,855194773\n19,3,3.0,855194718\n19,4,3.0,855192868\n19,6,3.0,855190128\n19,7,3.0,855190128\n19,9,3.0,855190232\n19,10,3.0,855192496\n19,11,3.0,855192773\n19,14,5.0,855190167\n19,16,5.0,855191930\n19,21,3.0,855193244\n19,22,3.0,855192868\n19,23,1.0,855194301\n19,25,3.0,855190091\n19,29,3.0,855190349\n19,32,3.0,855190091\n19,34,4.0,855191622\n19,35,3.0,855192496\n19,36,3.0,855190954\n19,39,3.0,855193076\n19,42,3.0,855192210\n19,45,3.0,855191478\n19,47,5.0,855191517\n19,48,3.0,855193488\n19,50,4.0,855192835\n19,52,3.0,855190167\n19,57,3.0,855192717\n19,58,3.0,855190167\n19,63,3.0,855190349\n19,64,2.0,855193770\n19,70,4.0,855191324\n19,74,3.0,855190261\n19,89,3.0,855193220\n19,94,3.0,855190290\n19,95,3.0,855190091\n19,97,4.0,855190550\n19,101,3.0,855190531\n19,105,3.0,855192656\n19,110,3.0,855193530\n19,111,5.0,855191324\n19,112,3.0,855190128\n19,122,3.0,855194378\n19,125,3.0,855191429\n19,141,3.0,855190091\n19,145,4.0,855193720\n19,150,3.0,855191289\n19,153,3.0,855193751\n19,154,4.0,855191383\n19,159,4.0,855191775\n19,160,4.0,855194718\n19,162,5.0,855191226\n19,165,3.0,855191227\n19,166,2.0,855194264\n19,172,1.0,855194345\n19,176,4.0,855191383\n19,177,2.0,855192496\n19,179,2.0,855193865\n19,180,3.0,855192957\n19,194,4.0,855191383\n19,196,3.0,855193806\n19,198,3.0,855191478\n19,202,3.0,855193054\n19,206,3.0,855192120\n19,208,3.0,855194790\n19,209,2.0,855193510\n19,215,3.0,855191324\n19,223,4.0,855191622\n19,229,4.0,855191701\n19,230,5.0,855192308\n19,231,3.0,855194087\n19,235,3.0,855191324\n19,246,4.0,855191478\n19,247,4.0,855191430\n19,249,3.0,855193530\n19,253,3.0,855191430\n19,260,4.0,855190199\n19,261,4.0,855194216\n19,262,5.0,855193220\n19,266,1.0,855194773\n19,269,3.0,855191882\n19,276,1.0,855194605\n19,281,3.0,855192982\n19,283,3.0,855192910\n19,288,5.0,855191383\n19,292,4.0,855193465\n19,293,4.0,855194693\n19,296,5.0,855191226\n19,300,3.0,855193220\n19,306,5.0,855191584\n19,307,5.0,855191622\n19,308,5.0,855191654\n19,316,3.0,855194824\n19,318,4.0,855195189\n19,326,5.0,855191383\n19,328,4.0,855192210\n19,329,3.0,855192814\n19,332,3.0,855193274\n19,333,3.0,855194773\n19,334,4.0,855191846\n19,337,3.0,855193643\n19,339,4.0,855193599\n19,340,3.0,855193404\n19,344,3.0,855194560\n19,345,3.0,855191289\n19,346,3.0,855192910\n19,348,4.0,855191622\n19,349,3.0,855193558\n19,350,3.0,855193864\n19,353,3.0,855192868\n19,354,3.0,855192178\n19,356,5.0,855192120\n19,357,5.0,855193770\n19,361,4.0,855193330\n19,364,3.0,855195078\n19,365,3.0,855192385\n19,366,3.0,855192254\n19,367,3.0,855194531\n19,369,3.0,855192636\n19,371,3.0,855193244\n19,372,1.0,855192254\n19,373,4.0,855191816\n19,376,3.0,855190166\n19,377,3.0,855191289\n19,379,3.0,855193845\n19,380,3.0,855191228\n19,382,3.0,855192120\n19,383,3.0,855193914\n19,407,3.0,855193558\n19,412,3.0,855192605\n19,423,3.0,855193488\n19,428,3.0,855191701\n19,429,4.0,855194419\n19,431,4.0,855192210\n19,434,3.0,855194301\n19,440,3.0,855193330\n19,441,3.0,855192455\n19,445,3.0,855193404\n19,448,3.0,855192001\n19,450,3.0,855194345\n19,451,3.0,855193700\n19,454,3.0,855193599\n19,456,4.0,855192910\n19,457,4.0,855192385\n19,464,4.0,855193488\n19,465,5.0,855193892\n19,468,4.0,855194397\n19,471,3.0,855192558\n19,474,3.0,855192419\n19,475,3.0,855191654\n19,479,2.0,855193806\n19,480,4.0,855192279\n19,481,1.0,855192308\n19,482,2.0,855192940\n19,485,1.0,855193330\n19,491,3.0,855193449\n19,493,4.0,855191517\n19,494,3.0,855190128\n19,500,3.0,855194264\n19,501,5.0,855191228\n19,504,3.0,855193845\n19,507,3.0,855192558\n19,508,3.0,855192061\n19,509,4.0,855194216\n19,513,1.0,855193700\n19,515,5.0,855193012\n19,517,2.0,855193301\n19,519,1.0,855194590\n19,520,3.0,855193449\n19,522,3.0,855193301\n19,527,4.0,855191478\n19,529,3.0,855192717\n19,531,5.0,855193358\n19,534,5.0,855192910\n19,535,4.0,855191324\n19,537,3.0,855192688\n19,541,4.0,855191622\n19,547,4.0,855194419\n19,550,3.0,855192254\n19,551,4.0,855192419\n19,555,3.0,855192033\n19,562,3.0,855190447\n19,580,1.0,855194052\n19,586,3.0,855194743\n19,588,3.0,855195077\n19,589,3.0,855191383\n19,590,3.0,855191289\n19,592,4.0,855191964\n19,593,3.0,855191229\n19,594,4.0,855191383\n19,595,5.0,855195077\n19,596,5.0,855191553\n19,597,3.0,855193530\n19,599,4.0,855192636\n19,608,5.0,855190128\n19,610,4.0,855192688\n19,612,3.0,855190427\n19,628,3.0,855190199\n19,648,3.0,855190091\n19,653,3.0,855190167\n19,661,4.0,855190199\n19,662,3.0,855190382\n19,663,4.0,855190349\n19,674,4.0,855194072\n19,703,3.0,855190606\n19,724,3.0,855193404\n19,733,3.0,855190128\n19,736,3.0,855190091\n19,748,3.0,855190290\n19,750,5.0,855191289\n19,780,3.0,855190091\n19,784,3.0,855190167\n19,785,3.0,855190349\n19,786,3.0,855191702\n19,788,3.0,855190167\n19,799,3.0,855190382\n19,800,3.0,855191324\n19,802,3.0,855190232\n19,805,3.0,855190199\n19,858,5.0,855191478\n19,880,2.0,855190382\n19,891,3.0,855194072\n19,898,5.0,855192178\n19,902,3.0,855192496\n19,903,4.0,855191622\n19,904,5.0,855191430\n19,908,4.0,855191553\n19,911,5.0,855192582\n19,912,3.0,855191552\n19,913,5.0,855191654\n19,914,3.0,855193012\n19,915,4.0,855192740\n19,916,5.0,855192773\n19,917,4.0,855193358\n19,920,4.0,855192717\n19,923,5.0,855191517\n19,924,4.0,855191289\n19,928,5.0,855192419\n19,929,4.0,855193274\n19,930,4.0,855192210\n19,931,3.0,855192814\n19,933,3.0,855192582\n19,940,4.0,855192033\n19,950,4.0,855192419\n19,951,5.0,855192279\n19,953,5.0,855192178\n19,954,4.0,855192385\n19,955,4.0,855192090\n19,965,4.0,855192061\n19,966,4.0,855194498\n19,968,5.0,855192582\n19,969,5.0,855192254\n19,982,4.0,855193628\n19,1013,3.0,855193700\n19,1019,4.0,855192120\n19,1022,4.0,855195136\n19,1023,4.0,855192347\n19,1028,3.0,855192347\n19,1029,5.0,855192033\n19,1035,4.0,855193194\n19,1036,4.0,855191324\n19,1041,5.0,855190467\n19,1042,3.0,855192178\n19,1060,5.0,855190606\n19,1061,3.0,855190382\n19,1073,4.0,855190128\n19,1077,3.0,855191775\n19,1079,4.0,855191701\n19,1080,3.0,855191289\n19,1082,3.0,855195268\n19,1084,4.0,855191324\n19,1086,4.0,855191517\n19,1088,3.0,855193599\n19,1089,4.0,855191228\n19,1090,4.0,855191584\n19,1091,3.0,855194052\n19,1092,1.0,855192773\n19,1093,3.0,855192910\n19,1094,4.0,855191816\n19,1095,5.0,855192001\n19,1097,5.0,855191517\n19,1101,3.0,855193194\n19,1103,4.0,855191882\n19,1104,4.0,855191584\n19,1124,3.0,855192940\n19,1126,3.0,855194282\n19,1127,3.0,855195373\n19,1128,4.0,855193275\n19,1129,3.0,855192347\n19,1130,4.0,855192910\n19,1136,5.0,855191430\n19,1148,4.0,855191228\n19,1161,3.0,855192254\n19,1171,3.0,855192740\n19,1175,3.0,855191882\n19,1176,4.0,855193194\n19,1178,5.0,855192496\n19,1179,5.0,855192717\n19,1183,3.0,855190427\n19,1185,4.0,855192496\n19,1193,4.0,855191478\n19,1196,5.0,855191622\n19,1197,3.0,855191701\n19,1198,4.0,855191430\n19,1199,4.0,855191701\n19,1200,4.0,855191553\n19,1201,4.0,855191654\n19,1203,4.0,855191702\n19,1204,4.0,855191964\n19,1206,4.0,855191478\n19,1207,5.0,855191775\n19,1208,5.0,855191478\n19,1210,4.0,855191882\n19,1211,5.0,855192454\n19,1212,4.0,855191740\n19,1213,5.0,855191553\n19,1214,4.0,855191584\n19,1215,4.0,855192419\n19,1216,2.0,855192814\n19,1217,5.0,855192090\n19,1218,4.0,855192385\n19,1219,5.0,855191517\n19,1220,5.0,855192558\n19,1221,5.0,855191584\n19,1222,5.0,855191740\n19,1225,5.0,855191846\n19,1227,3.0,855192517\n19,1228,5.0,855191882\n19,1230,4.0,855191622\n19,1231,5.0,855192061\n19,1233,4.0,855191740\n19,1237,4.0,855192419\n19,1238,5.0,855192347\n19,1240,4.0,855191383\n19,1242,5.0,855191882\n19,1244,4.0,855192001\n19,1246,3.0,855192868\n19,1247,3.0,855191702\n19,1248,4.0,855192347\n19,1249,4.0,855191816\n19,1250,4.0,855191882\n19,1252,4.0,855191816\n19,1253,4.0,855191930\n19,1254,5.0,855192033\n19,1257,5.0,855192279\n19,1258,5.0,855192033\n19,1259,3.0,855192061\n19,1260,5.0,855192001\n19,1261,5.0,855192347\n19,1262,4.0,855191930\n19,1263,4.0,855191775\n19,1265,4.0,855192773\n19,1266,4.0,855191930\n19,1267,4.0,855191740\n19,1268,3.0,855192688\n19,1269,4.0,855192033\n19,1270,5.0,855192178\n19,1271,3.0,855192455\n19,1272,3.0,855191964\n19,1274,4.0,855192636\n19,1275,3.0,855192605\n19,1276,4.0,855191930\n19,1278,4.0,855191654\n19,1282,4.0,855191846\n19,1283,4.0,855192120\n19,1284,4.0,855191930\n19,1285,3.0,855191846\n19,1286,4.0,855193358\n19,1287,4.0,855192517\n19,1288,5.0,855191816\n19,1290,3.0,855193035\n19,1291,3.0,855192090\n19,1292,4.0,855192255\n19,1297,4.0,855192717\n19,1298,1.0,855192455\n19,1299,4.0,855192308\n19,1302,3.0,855192210\n19,1304,3.0,855192120\n19,1306,3.0,855193274\n19,1307,3.0,855192558\n19,1320,3.0,855193628\n19,1321,3.0,855192308\n19,1327,3.0,855193806\n19,1332,2.0,855193932\n19,1333,4.0,855192090\n19,1334,3.0,855193599\n19,1336,3.0,855194641\n19,1339,3.0,855192773\n19,1342,3.0,855193358\n19,1343,4.0,855192558\n19,1344,5.0,855192636\n19,1345,4.0,855192605\n19,1347,3.0,855192835\n19,1348,5.0,855192496\n19,1350,3.0,855192814\n19,1354,5.0,855190606\n19,1356,3.0,855190199\n19,1357,4.0,855190571\n19,1370,4.0,855192636\n19,1371,4.0,855193404\n19,1372,2.0,855193035\n19,1373,3.0,855193845\n19,1374,3.0,855192496\n19,1375,4.0,855193244\n19,1376,3.0,855192740\n19,1377,3.0,855193700\n19,1378,2.0,855193244\n19,1380,3.0,855193194\n19,1381,3.0,855194670\n19,1382,1.0,855194188\n19,1385,3.0,855193076\n19,1387,5.0,855192033\n19,1388,1.0,855193946\n19,1389,1.0,855194693\n19,1391,2.0,855190404\n19,1393,3.0,855190404\n19,1394,5.0,855192061\n19,1396,3.0,855193012\n19,1405,3.0,855190404\n19,1408,3.0,855192910\n19,1441,3.0,855192982\n19,2019,3.0,855192254\n19,4970,4.0,855193274\n20,1,3.5,1238729767\n20,32,2.5,1238729782\n20,34,3.5,1238729861\n20,107,3.5,1224042765\n20,110,2.0,1238729747\n20,150,3.0,1238729755\n20,153,4.0,1238729818\n20,207,2.5,1224042795\n20,231,1.0,1238729849\n20,260,1.5,1224043057\n20,296,0.5,1238729735\n20,316,3.5,1238729834\n20,318,4.5,1224043037\n20,344,1.0,1238729802\n20,356,2.0,1238729739\n20,364,3.5,1238729826\n20,367,1.0,1238729854\n20,380,4.0,1238729779\n20,457,4.5,1238729750\n20,480,3.0,1238729744\n20,497,5.0,1238731010\n20,500,3.0,1238729842\n20,527,2.5,1224043054\n20,588,3.5,1238729785\n20,590,2.0,1238729764\n20,592,4.0,1238729759\n20,593,0.5,1238729741\n20,595,4.0,1238729816\n20,597,4.0,1238729844\n20,608,2.0,1238729789\n20,671,4.0,1224042769\n20,720,5.0,1224043166\n20,736,3.5,1238729831\n20,745,5.0,1224043160\n20,750,4.0,1224043081\n20,780,5.0,1238729772\n20,858,2.0,1238729822\n20,904,3.0,1224043134\n20,905,3.5,1238729311\n20,912,2.0,1224043067\n20,1019,3.0,1224042752\n20,1097,1.5,1238729863\n20,1103,4.0,1224042813\n20,1136,4.5,1224043119\n20,1148,5.0,1224043170\n20,1196,2.0,1238729793\n20,1198,4.5,1238729807\n20,1204,4.5,1238729342\n20,1207,4.0,1224043156\n20,1210,3.0,1238729777\n20,1247,1.0,1238730775\n20,1269,4.0,1238730754\n20,1270,3.5,1238729811\n20,1293,3.5,1238730771\n20,1378,3.0,1224042777\n20,1441,2.5,1224042802\n20,1580,5.0,1238729865\n20,1680,5.0,1224042771\n20,1907,4.0,1224042740\n20,1960,4.0,1224042737\n20,2013,3.0,1224042811\n20,2405,4.5,1224042788\n20,2571,4.5,1238729799\n20,2690,5.0,1238731025\n20,2762,3.5,1238729839\n20,2908,0.5,1238731034\n20,2959,0.5,1224043052\n20,3148,0.5,1224042755\n20,3196,0.5,1238729331\n20,3406,4.5,1238731020\n20,3555,2.0,1224042780\n20,3809,2.0,1224042827\n20,4993,4.0,1224043029\n20,5380,4.0,1238729247\n20,5618,3.5,1224043145\n20,5747,4.0,1238729389\n20,6201,4.5,1224043219\n20,6385,4.5,1238730960\n20,6516,4.0,1224043284\n20,6753,4.0,1224043266\n20,7153,4.0,1224043033\n20,7212,5.0,1224043242\n20,7841,1.0,1224043213\n20,8191,4.0,1224043180\n20,8493,3.5,1224043257\n20,8611,1.5,1224043185\n20,8970,2.5,1224043294\n20,26111,4.0,1238729255\n20,31116,5.0,1224043273\n20,32469,4.0,1224043282\n20,38038,4.5,1238730751\n20,47721,1.0,1238729405\n20,51471,5.0,1224043232\n20,54259,4.0,1238730925\n20,58047,4.0,1224043238\n20,58299,3.5,1224043018\n20,59784,4.0,1238731039\n20,64285,5.0,1238731016\n21,10,3.0,853846478\n21,21,3.0,853846669\n21,32,4.0,853157476\n21,34,4.0,853846442\n21,36,3.0,853157544\n21,44,3.0,853846547\n21,47,4.0,853846400\n21,95,3.0,853157476\n21,112,4.0,853157544\n21,151,4.0,853846547\n21,181,2.0,853846288\n21,196,3.0,853847536\n21,208,2.0,853846511\n21,260,3.0,853846669\n21,266,3.0,853846207\n21,273,3.0,853847723\n21,288,3.0,853857742\n21,296,3.0,853846400\n21,316,3.0,853847574\n21,329,3.0,853846400\n21,333,3.0,853846752\n21,344,3.0,853847612\n21,356,4.0,853846443\n21,377,4.0,853846511\n21,379,3.0,853852608\n21,380,3.0,853846783\n21,393,3.0,853856221\n21,442,3.0,853846579\n21,457,3.0,853846443\n21,466,3.0,853846873\n21,480,3.0,853846511\n21,485,3.0,853847574\n21,509,4.0,853846612\n21,527,5.0,853846400\n21,541,3.0,853846813\n21,543,3.0,853847688\n21,551,3.0,853846443\n21,553,3.0,853846547\n21,586,3.0,853847813\n21,589,5.0,853846400\n21,590,4.0,853846443\n21,592,3.0,853846639\n21,593,4.0,853846400\n21,594,3.0,853846612\n21,595,3.0,853846511\n21,597,3.0,853846723\n21,610,2.0,853846511\n21,648,3.0,853157476\n21,733,3.0,853157544\n21,750,5.0,853848506\n21,780,3.0,853157476\n21,849,3.0,853845946\n21,858,4.0,853850728\n21,899,3.0,853850791\n21,908,3.0,853850699\n21,910,3.0,853850791\n21,912,5.0,853848342\n21,913,4.0,853850728\n21,914,5.0,853850835\n21,918,4.0,853852058\n21,919,4.0,853850874\n21,920,4.0,853851052\n21,921,4.0,853849142\n21,923,5.0,853850699\n21,924,4.0,853848314\n21,945,3.0,853851841\n21,948,3.0,853851861\n21,952,3.0,853851892\n21,953,5.0,853850752\n21,954,4.0,853850874\n21,969,5.0,853850728\n21,1012,3.0,853849003\n21,1019,3.0,853848034\n21,1022,3.0,853851203\n21,1028,3.0,853848062\n21,1031,3.0,853852140\n21,1032,3.0,853848342\n21,1035,4.0,853848002\n21,1036,4.0,853846443\n21,1079,3.0,853846752\n21,1080,3.0,853846723\n21,1088,2.0,853853701\n21,1089,3.0,853847910\n21,1090,4.0,853848134\n21,1091,3.0,853853956\n21,1097,3.0,853847780\n21,1103,3.0,853847910\n21,1124,4.0,853852079\n21,1125,4.0,853851156\n21,1127,3.0,853851608\n21,1129,3.0,853848738\n21,1135,3.0,853852316\n21,1136,5.0,853847612\n21,1148,5.0,853846639\n21,1173,5.0,853852208\n21,1175,4.0,853851089\n21,1193,3.0,853850791\n21,1196,4.0,853847910\n21,1198,5.0,853847813\n21,1199,4.0,853848156\n21,1200,4.0,853848507\n21,1203,4.0,853850791\n21,1206,5.0,853851732\n21,1208,4.0,853851052\n21,1210,4.0,853848134\n21,1214,4.0,853849211\n21,1217,5.0,853851024\n21,1221,3.0,853850905\n21,1222,3.0,853851222\n21,1224,5.0,853850791\n21,1225,5.0,853850728\n21,1228,4.0,853851024\n21,1231,3.0,853850752\n21,1234,3.0,853850874\n21,1240,5.0,853848082\n21,1246,4.0,853852020\n21,1250,4.0,853850728\n21,1252,3.0,853850835\n21,1253,3.0,853850835\n21,1254,5.0,853850835\n21,1256,3.0,853850968\n21,1259,4.0,853851113\n21,1263,4.0,853851203\n21,1265,3.0,853851052\n21,1266,3.0,853850874\n21,1270,4.0,853849003\n21,1275,2.0,853848737\n21,1281,4.0,853850997\n21,1282,3.0,853850933\n21,1283,4.0,853850874\n21,1287,5.0,853850791\n21,1288,4.0,853850835\n21,1291,4.0,853848558\n21,1292,4.0,853851174\n21,1295,3.0,853852020\n21,1296,4.0,853851089\n21,1297,3.0,853851203\n21,1298,3.0,853852097\n21,1301,3.0,853850968\n21,1302,4.0,853851113\n21,1303,5.0,853850997\n21,1320,3.0,853853496\n21,1321,4.0,853851156\n21,1327,3.0,853853725\n21,1334,3.0,853852524\n21,1345,3.0,853852058\n21,1346,3.0,853853473\n21,1350,3.0,853852140\n21,1370,3.0,853851257\n21,1371,3.0,853852263\n21,1372,3.0,853851257\n21,1373,3.0,853853545\n21,1374,4.0,853849676\n21,1375,3.0,853851841\n21,1376,3.0,853850905\n21,1380,3.0,853852501\n21,1387,3.0,853850968\n21,1388,3.0,853854148\n21,1394,4.0,853851089\n21,1395,3.0,853853593\n21,1427,3.0,854522908\n21,5060,3.0,853850933\n22,32,4.5,1131662086\n22,44,2.0,1131662481\n22,47,3.5,1131662466\n22,48,2.0,1131661907\n22,70,3.0,1131661969\n22,153,3.0,1131662452\n22,158,1.0,1131661890\n22,163,4.5,1131664404\n22,173,1.5,1131662930\n22,208,2.0,1131664520\n22,231,2.5,1131662440\n22,235,2.0,1131662423\n22,253,4.5,1131662653\n22,260,4.0,1131663354\n22,267,2.0,1131663069\n22,296,5.0,1131664320\n22,315,3.0,1131662435\n22,355,2.0,1131753358\n22,356,3.5,1131663409\n22,442,2.5,1131662387\n22,457,4.5,1131662090\n22,480,4.5,1131662100\n22,485,2.5,1131753373\n22,541,4.5,1131664363\n22,551,5.0,1131663387\n22,552,3.0,1131661923\n22,555,4.0,1131663369\n22,586,1.0,1131664533\n22,588,2.0,1131662084\n22,589,5.0,1131663268\n22,592,4.5,1131663223\n22,593,4.5,1131723291\n22,648,5.0,1131663139\n22,784,1.5,1131662400\n22,785,2.5,1131662414\n22,858,4.0,1131662354\n22,1080,3.5,1131662357\n22,1089,4.0,1131662364\n22,1097,2.5,1131723086\n22,1101,2.0,1131662346\n22,1148,2.0,1131661960\n22,1196,4.5,1131663322\n22,1198,5.0,1131663397\n22,1200,5.0,1131663177\n22,1201,2.5,1131662370\n22,1208,3.5,1131662293\n22,1210,5.0,1131662093\n22,1214,3.5,1131663188\n22,1215,4.0,1131753179\n22,1240,4.0,1131662287\n22,1255,4.0,1131663479\n22,1263,3.0,1131753381\n22,1270,4.0,1131663366\n22,1291,5.0,1131663232\n22,1320,3.5,1131661937\n22,1339,4.5,1131663305\n22,1356,4.0,1131662309\n22,1371,2.0,1131662302\n22,1372,4.0,1131662635\n22,1374,3.5,1131662312\n22,1375,4.0,1131662317\n22,1376,4.0,1131661918\n22,1377,4.0,1131662328\n22,1387,4.0,1131662323\n22,1391,3.5,1131662334\n22,1527,4.5,1131663284\n22,1544,3.0,1131663044\n22,1580,4.0,1131664393\n22,1608,2.5,1131662271\n22,1625,2.0,1131663328\n22,1641,2.0,1131662659\n22,1645,2.5,1131662268\n22,1682,2.5,1131663443\n22,1693,2.0,1131664773\n22,1721,3.0,1131662252\n22,1722,3.5,1131662000\n22,1769,2.5,1131723166\n22,1799,4.0,1131663219\n22,1876,2.0,1131661994\n22,1884,4.5,1131663032\n22,1909,3.0,1131663020\n22,1917,2.5,1131664489\n22,1923,2.5,1131662243\n22,1997,3.0,1131662014\n22,2006,2.5,1131661978\n22,2011,3.5,1131723076\n22,2023,3.5,1131662226\n22,2081,2.5,1131661945\n22,2115,3.5,1131662232\n22,2174,4.0,1131662911\n22,2232,3.5,1131663357\n22,2288,4.0,1131664741\n22,2291,4.5,1131663683\n22,2301,3.5,1131664754\n22,2340,2.5,1131664719\n22,2402,3.0,1131723151\n22,2431,2.0,1131663013\n22,2459,4.0,1131664733\n22,2502,1.5,1131663552\n22,2542,4.5,1131664217\n22,2571,4.5,1131662900\n22,2605,2.0,1131723146\n22,2616,2.5,1131664710\n22,2617,2.5,1131723065\n22,2657,2.0,1131661911\n22,2672,2.0,1131664699\n22,2683,2.5,1131662202\n22,2700,2.0,1131662216\n22,2701,2.0,1131662209\n22,2710,2.0,1131662220\n22,2712,4.5,1131664480\n22,2716,3.0,1131662152\n22,2717,3.0,1131662710\n22,2723,2.0,1131663006\n22,2762,4.0,1131663393\n22,2763,1.5,1131662185\n22,2858,4.0,1131662179\n22,2881,2.0,1131664676\n22,2953,1.0,1131664687\n22,2959,4.0,1131663892\n22,2985,2.0,1131662174\n22,2987,4.0,1131662150\n22,2990,3.0,1131662717\n22,3033,4.0,1131664474\n22,3052,2.5,1131663311\n22,3081,5.0,1131662155\n22,3082,3.5,1131723124\n22,3147,2.5,1131662169\n22,3176,2.5,1131662162\n22,3213,4.0,1131664330\n22,3253,1.5,1131662194\n22,3285,2.0,1131723135\n22,3300,3.0,1131662989\n22,3354,2.5,1131662687\n22,3355,4.5,1131662678\n22,3408,1.5,1131662190\n22,3438,3.0,1131664651\n22,3527,4.0,1131753186\n22,3535,4.5,1131662694\n22,3578,3.0,1131663515\n22,3623,2.5,1131661897\n22,3697,2.5,1131664627\n22,3751,2.0,1131662894\n22,3793,4.5,1131663506\n22,3809,2.0,1131662700\n22,3826,2.0,1131723113\n22,3868,4.0,1131664598\n22,3977,2.5,1131753363\n22,3994,3.0,1131663359\n22,3996,2.0,1131662121\n22,3999,2.0,1131664612\n22,4011,4.5,1131663886\n22,4015,2.0,1131664618\n22,4027,2.0,1131723071\n22,4105,4.0,1131662565\n22,4226,5.0,1131662110\n22,4239,2.0,1131664374\n22,4262,3.5,1131663472\n22,4306,4.5,1131664226\n22,4370,3.5,1131664587\n22,4383,3.5,1131663565\n22,4643,2.5,1131663696\n22,4701,4.0,1131662966\n22,4720,2.5,1131663383\n22,4776,3.0,1131663420\n22,4886,4.0,1131661901\n22,4896,3.5,1131662103\n22,4963,2.5,1131662107\n22,4975,4.5,1131662960\n22,4993,5.0,1131662640\n22,5010,2.5,1131662670\n22,5026,4.0,1131663341\n22,5219,3.0,1131662525\n22,5266,2.5,1131664572\n22,5349,5.0,1131662096\n22,5400,2.5,1131664567\n22,5445,4.5,1131662075\n22,5459,3.5,1131662534\n22,5464,2.5,1131663373\n22,5630,4.5,1131663277\n22,5679,4.0,1131663330\n22,5816,3.5,1131663263\n22,5872,3.5,1131662504\n22,5903,4.0,1131663118\n22,5952,4.5,1131662637\n22,5989,3.5,1131663453\n22,6286,4.5,1131662846\n22,6333,4.5,1131663238\n22,6365,2.5,1131663156\n22,6373,2.0,1131662491\n22,6502,3.0,1131662517\n22,6539,4.0,1131663881\n22,6541,2.5,1131662684\n22,6754,2.5,1131723215\n22,6874,4.0,1131663918\n22,6893,2.0,1131664302\n22,6934,2.0,1131663158\n22,7143,4.0,1131663528\n22,7147,4.0,1131663431\n22,7153,4.0,1131662007\n22,7360,3.5,1131663298\n22,7373,3.0,1131662518\n22,7438,4.5,1131663403\n22,7454,3.0,1131663081\n22,7482,4.0,1131664239\n22,8360,3.5,1131662473\n22,8368,3.5,1131662938\n22,8636,4.5,1131663248\n22,8798,3.0,1131663440\n22,8947,3.0,1131663094\n22,8950,4.0,1131663467\n22,8957,4.5,1131663282\n22,8961,3.5,1131663378\n22,30793,4.0,1131663273\n22,31184,4.5,1131753070\n22,31696,4.0,1131663089\n22,32587,4.5,1131663293\n22,33493,2.5,1131663228\n22,33794,3.0,1131662462\n22,37729,5.0,1131663664\n23,1,3.0,1148729853\n23,6,3.5,1148730128\n23,11,3.5,1166728170\n23,16,4.0,1148672550\n23,19,2.0,1148669114\n23,20,1.5,1148720884\n23,24,3.5,1148673467\n23,32,4.0,1148730400\n23,34,3.5,1166728173\n23,47,4.5,1148669590\n23,50,4.0,1148670466\n23,58,3.5,1148672099\n23,62,4.0,1166728220\n23,89,4.0,1148669357\n23,104,3.5,1148730116\n23,110,3.5,1148669588\n23,111,5.0,1148671365\n23,150,3.5,1148672933\n23,153,3.0,1148720873\n23,154,4.0,1148672842\n23,172,2.5,1148386188\n23,185,3.5,1148778581\n23,224,4.0,1148729797\n23,235,4.0,1148729698\n23,236,4.5,1148386155\n23,246,4.5,1148729570\n23,247,4.0,1148673304\n23,252,4.0,1148669102\n23,253,3.5,1148668973\n23,260,4.5,1148668970\n23,262,4.0,1148728957\n23,265,3.5,1148673465\n23,292,2.5,1148720795\n23,293,4.0,1148672319\n23,296,4.5,1148671517\n23,300,4.0,1149868544\n23,306,3.5,1148777951\n23,307,2.5,1148777966\n23,316,3.5,1148668967\n23,318,5.0,1148668964\n23,319,4.5,1148669351\n23,337,4.5,1148672736\n23,344,2.0,1148668961\n23,345,4.0,1148673085\n23,356,4.5,1148728785\n23,380,4.0,1148673420\n23,425,3.5,1148669891\n23,431,3.5,1148730048\n23,442,3.5,1148720861\n23,457,3.5,1148673418\n23,465,3.5,1148669887\n23,471,3.5,1148730134\n23,480,3.5,1148729018\n23,485,3.0,1148720907\n23,492,4.5,1148669346\n23,497,4.5,1148669881\n23,508,4.5,1148669092\n23,509,4.5,1148672198\n23,527,3.5,1148729022\n23,532,3.5,1148720627\n23,535,4.5,1166036040\n23,539,2.5,1148729848\n23,541,3.0,1148668958\n23,586,3.5,1166728142\n23,588,4.0,1166728178\n23,589,3.5,1149868397\n23,590,2.5,1148728787\n23,592,3.5,1148670328\n23,593,4.5,1148671818\n23,595,4.5,1148672375\n23,597,3.0,1149868548\n23,605,4.0,1148669338\n23,608,4.5,1148669574\n23,648,4.5,1148672950\n23,653,2.5,1148669090\n23,668,4.5,1148669877\n23,670,4.5,1166035850\n23,745,4.5,1148669873\n23,750,4.5,1148670499\n23,778,4.5,1148669858\n23,780,3.5,1148673415\n23,788,2.0,1148669865\n23,802,3.5,1148669863\n23,805,3.5,1148669087\n23,841,4.0,1148729708\n23,858,5.0,1148670263\n23,898,4.5,1148671970\n23,899,4.5,1148671949\n23,900,2.5,1148728764\n23,903,3.5,1148671779\n23,904,4.5,1148729610\n23,905,4.0,1148728730\n23,908,5.0,1148669850\n23,909,3.5,1148730009\n23,910,4.5,1148777884\n23,911,4.0,1148671953\n23,912,5.0,1148669852\n23,913,4.0,1148670548\n23,914,3.0,1148673452\n23,920,3.5,1148778793\n23,922,4.5,1148671777\n23,923,5.0,1148669082\n23,924,3.5,1148729982\n23,926,4.0,1148729661\n23,928,4.5,1148671884\n23,930,4.0,1148671832\n23,931,4.5,1148672493\n23,933,3.5,1148671931\n23,942,4.0,1148669571\n23,948,3.5,1148721097\n23,949,3.5,1148721092\n23,952,3.5,1148728814\n23,953,4.5,1148670154\n23,954,5.0,1148669329\n23,955,3.5,1148669327\n23,965,3.5,1148729987\n23,969,3.5,1148669080\n23,971,3.5,1148721086\n23,1035,2.5,1148728784\n23,1036,3.0,1148668956\n23,1041,4.0,1148672085\n23,1059,4.5,1148672402\n23,1061,3.5,1148673456\n23,1077,4.0,1148669318\n23,1078,4.0,1148778808\n23,1080,4.0,1166728186\n23,1084,4.0,1148729677\n23,1089,3.5,1148671525\n23,1090,4.0,1148669833\n23,1096,2.5,1148669302\n23,1097,5.0,1148671542\n23,1101,3.0,1148673102\n23,1103,4.5,1148721090\n23,1104,4.0,1148721053\n23,1136,4.0,1148672286\n23,1172,5.0,1148670101\n23,1175,3.5,1148669299\n23,1176,3.0,1148670388\n23,1178,4.0,1148671770\n23,1183,4.0,1148728807\n23,1185,3.0,1149868223\n23,1188,4.0,1148669075\n23,1193,4.5,1148670482\n23,1196,4.5,1148670884\n23,1197,5.0,1148670172\n23,1198,4.5,1148670494\n23,1199,3.5,1148730030\n23,1201,4.0,1148669828\n23,1202,4.5,1148671384\n23,1203,4.5,1148669826\n23,1204,5.0,1148669072\n23,1206,4.5,1148669820\n23,1207,3.5,1148670496\n23,1208,5.0,1148670275\n23,1210,4.0,1148670888\n23,1211,3.5,1148670960\n23,1212,3.5,1148671412\n23,1213,5.0,1148669055\n23,1217,4.5,1148672270\n23,1218,3.5,1148672325\n23,1219,5.0,1148669822\n23,1221,4.5,1148670266\n23,1222,3.5,1148671596\n23,1225,4.5,1148671816\n23,1227,3.5,1149868188\n23,1228,4.0,1148671814\n23,1230,4.0,1148673449\n23,1231,4.0,1166036046\n23,1232,4.0,1166035984\n23,1233,3.5,1148778850\n23,1234,3.5,1148386185\n23,1235,1.5,1148669296\n23,1237,4.5,1148729642\n23,1240,3.5,1148730410\n23,1241,2.5,1148720563\n23,1243,3.5,1148672048\n23,1244,3.5,1148671992\n23,1246,4.0,1166036059\n23,1247,4.0,1148671859\n23,1248,4.5,1148671856\n23,1250,4.0,1148671782\n23,1251,5.0,1148671642\n23,1252,4.5,1148386150\n23,1254,3.5,1148777838\n23,1256,3.5,1148730086\n23,1258,3.5,1148671587\n23,1260,4.0,1148671822\n23,1262,4.0,1148778812\n23,1263,3.0,1148778787\n23,1265,4.0,1148730406\n23,1266,3.5,1148728732\n23,1267,5.0,1148671808\n23,1269,4.0,1148669291\n23,1270,4.5,1148729820\n23,1272,2.0,1148670285\n23,1277,3.5,1148720736\n23,1280,5.0,1148670134\n23,1281,3.0,1148777902\n23,1284,4.0,1148671835\n23,1287,4.0,1148669816\n23,1288,3.5,1148386142\n23,1291,3.5,1148730139\n23,1293,5.0,1148728738\n23,1304,4.0,1148728856\n23,1305,4.5,1148670953\n23,1307,4.0,1148669057\n23,1333,3.5,1148672025\n23,1343,4.0,1148672530\n23,1348,2.5,1148777918\n23,1354,4.5,1148669286\n23,1356,3.0,1148669063\n23,1377,2.5,1148670340\n23,1380,2.5,1166728237\n23,1387,3.5,1148669051\n23,1391,3.5,1148730168\n23,1393,4.0,1148729341\n23,1394,4.0,1148669808\n23,1408,3.5,1148720760\n23,1411,3.5,1148669282\n23,1438,3.0,1148720878\n23,1464,2.0,1149868079\n23,1499,1.5,1148720958\n23,1500,4.5,1148386128\n23,1515,3.0,1148720919\n23,1527,3.5,1166728241\n23,1544,2.0,1148720846\n23,1552,3.0,1148669048\n23,1556,0.5,1148778558\n23,1562,1.0,1148670343\n23,1580,3.5,1148668953\n23,1584,4.0,1148669800\n23,1608,2.5,1148669045\n23,1617,4.0,1148670522\n23,1625,4.5,1148671498\n23,1673,4.0,1148671436\n23,1682,5.0,1148670981\n23,1693,4.0,1148669270\n23,1704,3.5,1148729054\n23,1721,5.0,1148670121\n23,1722,3.0,1148669792\n23,1732,4.0,1148669789\n23,1735,4.5,1148728970\n23,1748,5.0,1148669787\n23,1792,3.5,1148669267\n23,1797,3.5,1148728611\n23,1835,3.5,1148670970\n23,1860,5.0,1148671375\n23,1873,3.0,1148730178\n23,1876,3.0,1148673442\n23,1900,3.5,1148730066\n23,1907,3.5,1148669265\n23,1917,2.0,1148720837\n23,1927,3.0,1148728727\n23,1931,4.0,1148669541\n23,1932,1.5,1148728810\n23,1935,4.0,1148672116\n23,1941,3.5,1148728751\n23,1944,4.0,1148721075\n23,1945,4.5,1148672322\n23,1946,4.0,1148669538\n23,1947,4.0,1148728761\n23,1949,3.5,1148730162\n23,1950,4.5,1148728725\n23,1951,3.0,1148728794\n23,1952,4.0,1148673306\n23,1953,3.0,1148671908\n23,1954,3.0,1148728778\n23,1955,4.0,1148728759\n23,1956,1.0,1148728746\n23,1957,3.5,1148728769\n23,1958,3.5,1148728790\n23,1959,2.5,1148728802\n23,1960,1.5,1148728736\n23,1961,4.0,1148728753\n23,1962,3.5,1148728767\n23,1997,3.5,1148728429\n23,2002,3.5,1148669764\n23,2010,3.5,1148669261\n23,2011,4.0,1148729668\n23,2012,4.5,1148673438\n23,2019,4.0,1148669760\n23,2022,4.0,1148672527\n23,2023,3.0,1148669036\n23,2027,3.5,1148669531\n23,2028,4.0,1148671551\n23,2067,2.5,1148728867\n23,2068,5.0,1148671632\n23,2115,4.0,1148670901\n23,2126,2.0,1148720894\n23,2132,4.0,1148729968\n23,2143,1.5,1148669258\n23,2174,3.5,1166728231\n23,2176,5.0,1148672486\n23,2178,3.0,1148730098\n23,2181,4.0,1148672510\n23,2183,3.5,1148672500\n23,2186,5.0,1148671801\n23,2194,3.5,1148386163\n23,2203,4.0,1148671878\n23,2205,3.5,1148672515\n23,2231,3.5,1148669228\n23,2248,3.5,1148729360\n23,2273,3.5,1148669739\n23,2278,4.0,1148669751\n23,2289,4.0,1148671976\n23,2291,4.0,1148672768\n23,2313,3.5,1148673578\n23,2321,5.0,1148669024\n23,2324,3.5,1148730155\n23,2329,2.5,1148669021\n23,2333,3.5,1148669225\n23,2334,2.5,1148669239\n23,2336,3.0,1148671939\n23,2351,5.0,1148671652\n23,2353,3.0,1148386176\n23,2357,4.0,1148729689\n23,2360,3.5,1148730053\n23,2361,4.0,1148720603\n23,2394,3.5,1148778590\n23,2396,4.5,1148728756\n23,2406,4.0,1148669018\n23,2424,3.0,1148729858\n23,2467,4.0,1149868383\n23,2474,2.5,1148669219\n23,2501,4.0,1148669215\n23,2502,4.0,1149868257\n23,2539,2.0,1149868567\n23,2542,3.5,1149868269\n23,2571,4.0,1149868185\n23,2575,3.0,1148672184\n23,2580,3.5,1148669719\n23,2599,3.5,1148730088\n23,2600,4.0,1148729974\n23,2617,3.5,1166728248\n23,2628,2.5,1148670873\n23,2640,4.5,1148669716\n23,2644,3.5,1148671340\n23,2648,4.5,1148671324\n23,2657,3.0,1148669012\n23,2692,5.0,1148670082\n23,2699,1.5,1148386172\n23,2702,4.0,1148669210\n23,2712,4.5,1148669709\n23,2716,3.0,1166036066\n23,2721,3.5,1148673094\n23,2724,2.0,1148669714\n23,2726,4.5,1148671845\n23,2728,4.0,1148728854\n23,2729,3.5,1149868713\n23,2730,4.0,1148671606\n23,2731,5.0,1148672620\n23,2739,4.0,1148729011\n23,2746,2.0,1149867815\n23,2762,4.0,1149868231\n23,2805,2.5,1148669200\n23,2858,3.5,1148669501\n23,2871,3.5,1148672034\n23,2890,4.0,1148729102\n23,2905,4.0,1148672294\n23,2908,3.5,1148673075\n23,2918,4.0,1148671999\n23,2932,4.0,1148672683\n23,2947,3.5,1148669008\n23,2952,3.5,1148730113\n23,2953,3.5,1148669191\n23,2959,3.5,1148778865\n23,2970,4.0,1148729713\n23,2976,4.5,1148672556\n23,2987,3.5,1149868562\n23,2997,4.5,1148671474\n23,3006,4.5,1148670519\n23,3019,3.5,1148778622\n23,3020,2.5,1148720744\n23,3052,3.5,1148669706\n23,3053,2.0,1148669188\n23,3067,5.0,1148673055\n23,3081,3.0,1148672778\n23,3082,2.5,1148720826\n23,3083,5.0,1148670143\n23,3088,2.5,1148671916\n23,3089,4.5,1148671881\n23,3095,3.0,1148673280\n23,3100,3.5,1148728895\n23,3114,3.5,1148669703\n23,3147,3.0,1148729851\n23,3152,2.0,1148728701\n23,3155,2.5,1148669181\n23,3159,4.0,1148728602\n23,3160,4.5,1148669695\n23,3168,4.0,1148672142\n23,3176,5.0,1148672449\n23,3201,3.5,1148672101\n23,3245,4.5,1148671428\n23,3246,4.5,1148671904\n23,3248,3.0,1148669488\n23,3252,4.5,1148729808\n23,3267,3.5,1148730163\n23,3307,4.0,1148670551\n23,3310,5.0,1148671686\n23,3317,4.0,1148671963\n23,3365,2.5,1148721061\n23,3371,3.5,1148728891\n23,3386,5.0,1148728875\n23,3405,3.5,1148721102\n23,3408,4.5,1148386153\n23,3415,1.5,1166035912\n23,3424,4.0,1148673292\n23,3435,4.5,1148670554\n23,3448,4.0,1149868559\n23,3462,4.5,1148669482\n23,3468,3.0,1148669175\n23,3471,4.5,1148669004\n23,3475,3.5,1148721082\n23,3481,3.5,1148729373\n23,3489,3.5,1148671696\n23,3498,4.5,1148671997\n23,3503,3.5,1148669480\n23,3504,3.0,1148669173\n23,3510,3.5,1148730416\n23,3535,4.0,1148670362\n23,3546,4.0,1148669470\n23,3559,2.0,1148721157\n23,3569,1.0,1148669685\n23,3578,4.0,1148728779\n23,3618,3.0,1148669465\n23,3623,2.0,1148386159\n23,3629,4.0,1148672311\n23,3668,3.0,1148669458\n23,3671,3.5,1149868554\n23,3681,3.5,1148669165\n23,3730,3.5,1148730072\n23,3736,4.0,1148671793\n23,3741,2.5,1148777893\n23,3751,4.0,1148386124\n23,3753,2.0,1148669688\n23,3788,4.0,1148729675\n23,3801,2.0,1148671784\n23,3844,3.0,1148669156\n23,3871,3.0,1148721105\n23,3897,4.5,1148669002\n23,3910,4.5,1148672113\n23,3949,5.0,1148673043\n23,3983,4.5,1148671887\n23,3989,4.0,1148777876\n23,3992,3.5,1148729496\n23,3994,4.0,1148669000\n23,3996,4.0,1148670535\n23,4007,4.0,1148670060\n23,4008,4.0,1166036125\n23,4011,4.5,1149868172\n23,4014,3.5,1148672776\n23,4022,2.0,1148729830\n23,4027,3.5,1148728652\n23,4034,3.5,1148386146\n23,4037,3.5,1148669449\n23,4103,3.5,1148671975\n23,4148,1.0,1149868599\n23,4167,3.0,1148669447\n23,4223,2.0,1148670048\n23,4225,4.0,1148669443\n23,4226,4.5,1148670464\n23,4235,4.0,1148671013\n23,4267,4.0,1148778637\n23,4278,3.5,1148670046\n23,4282,2.0,1148670035\n23,4297,3.5,1148672150\n23,4308,4.5,1148672412\n23,4310,1.5,1148778542\n23,4312,3.5,1148670033\n23,4343,3.0,1148670029\n23,4344,0.5,1148669153\n23,4359,2.0,1148672030\n23,4370,3.0,1148672429\n23,4378,4.0,1148672167\n23,4432,3.5,1148672010\n23,4447,3.5,1148669150\n23,4458,3.0,1148730000\n23,4564,1.5,1148729027\n23,4571,3.5,1148670025\n23,4641,4.0,1148671968\n23,4720,4.0,1148673475\n23,4816,3.0,1148670015\n23,4823,4.0,1148669432\n23,4848,4.0,1149868082\n23,4857,3.5,1148669430\n23,4865,3.5,1148669145\n23,4878,3.5,1148730080\n23,4881,3.5,1148669142\n23,4886,3.5,1148730186\n23,4896,3.5,1148673770\n23,4901,3.0,1148670011\n23,4914,5.0,1148669659\n23,4963,5.0,1148673020\n23,4967,5.0,1148673264\n23,4973,5.0,1148668997\n23,4975,2.0,1148729348\n23,4976,3.0,1148730142\n23,4978,4.5,1148730339\n23,4979,4.0,1148672064\n23,4993,4.0,1148670407\n23,4995,4.5,1148668988\n23,5013,4.5,1148671395\n23,5014,1.0,1148669423\n23,5015,3.5,1148671310\n23,5060,3.0,1148668984\n23,5073,3.0,1149868375\n23,5096,3.0,1148670003\n23,5114,4.0,1148672017\n23,5135,4.0,1148669420\n23,5147,4.0,1148721046\n23,5177,4.5,1148669995\n23,5222,4.0,1149868484\n23,5225,5.0,1148671005\n23,5266,4.0,1148669126\n23,5291,4.0,1148669408\n23,5299,2.5,1166728155\n23,5304,3.5,1148777819\n23,5348,3.5,1148669987\n23,5349,2.0,1148670299\n23,5367,4.0,1148673117\n23,5373,3.5,1148721129\n23,5377,3.5,1148729991\n23,5378,0.5,1148668981\n23,5385,3.5,1148669651\n23,5388,3.5,1148730375\n23,5445,3.0,1148671569\n23,5446,4.0,1148671806\n23,5463,2.5,1148669404\n23,5464,2.0,1148728872\n23,5470,3.0,1148669643\n23,5489,3.0,1148729764\n23,5502,4.0,1166728165\n23,5599,3.5,1148728844\n23,5618,3.5,1148670503\n23,5633,4.5,1148670377\n23,5669,4.0,1148729681\n23,5673,4.5,1148729615\n23,5679,3.5,1148728452\n23,5682,3.5,1148672044\n23,5810,4.0,1148669981\n23,5816,2.5,1148668978\n23,5878,4.0,1148671891\n23,5881,4.0,1148778680\n23,5882,1.5,1148728632\n23,5902,5.0,1148671465\n23,5940,4.0,1148728401\n23,5949,4.0,1148730381\n23,5952,4.0,1148670412\n23,5954,3.5,1148729985\n23,5956,3.5,1148672553\n23,5971,4.5,1148728488\n23,5989,5.0,1148669635\n23,5991,2.5,1148728773\n23,5992,5.0,1148671728\n23,5995,4.5,1148670480\n23,6001,4.5,1148671984\n23,6008,3.0,1166035845\n23,6016,5.0,1148670462\n23,6162,2.5,1148673567\n23,6197,2.5,1149868386\n23,6214,3.5,1148730363\n23,6218,4.0,1148673695\n23,6235,4.0,1148671914\n23,6281,4.0,1148669973\n23,6323,3.5,1149868589\n23,6333,3.5,1148673429\n23,6365,4.5,1148729589\n23,6377,3.5,1148670511\n23,6404,3.5,1148777788\n23,6415,1.5,1148671670\n23,6440,3.5,1148728655\n23,6537,3.0,1148730486\n23,6539,4.5,1148729602\n23,6552,3.5,1148730325\n23,6591,4.0,1148729489\n23,6599,3.5,1166728191\n23,6611,4.5,1148672103\n23,6620,3.5,1148777833\n23,6641,2.5,1149868022\n23,6643,4.5,1148673277\n23,6666,3.0,1148672862\n23,6669,4.0,1148669957\n23,6708,3.5,1148672069\n23,6709,1.5,1148669388\n23,6711,3.0,1148672708\n23,6783,4.0,1148671403\n23,6787,4.0,1148670473\n23,6796,3.5,1148777887\n23,6807,3.0,1148669120\n23,6867,3.5,1148670540\n23,6870,3.5,1148671873\n23,6873,4.0,1148728657\n23,6874,5.0,1148673160\n23,6881,4.5,1148729597\n23,6890,4.0,1148729704\n23,6918,5.0,1148721147\n23,6932,4.0,1148673289\n23,6934,3.0,1148669952\n23,6944,3.0,1149867788\n23,6947,2.5,1148669950\n23,6953,3.5,1148673142\n23,6954,3.0,1148777906\n23,6975,4.5,1149868005\n23,6981,2.5,1148721109\n23,6982,2.0,1148721080\n23,6985,4.0,1148669947\n23,6987,4.0,1148669620\n23,6993,3.5,1148671989\n23,7004,2.0,1148720869\n23,7008,1.5,1148673512\n23,7013,4.0,1148721066\n23,7038,4.0,1148778107\n23,7042,2.5,1148672120\n23,7063,4.5,1148729768\n23,7070,4.5,1148672289\n23,7072,4.5,1148729652\n23,7088,4.0,1148721133\n23,7090,4.5,1148729574\n23,7104,2.0,1148729032\n23,7132,3.5,1148671849\n23,7136,5.0,1148672629\n23,7139,3.5,1148672333\n23,7147,4.0,1166728160\n23,7153,4.5,1148386181\n23,7160,3.0,1148671300\n23,7161,2.0,1149867747\n23,7162,2.0,1148669384\n23,7234,4.0,1148669943\n23,7265,4.0,1148673554\n23,7323,4.0,1148777881\n23,7347,3.0,1148669381\n23,7361,4.5,1148670469\n23,7371,4.5,1148730359\n23,7419,3.5,1148671745\n23,7438,3.5,1148673159\n23,7458,2.0,1148673729\n23,7569,3.5,1166036074\n23,7587,4.0,1148672248\n23,7713,3.5,1148671356\n23,7748,3.5,1148672143\n23,7759,1.0,1166035969\n23,7766,4.0,1148670517\n23,7771,4.0,1148728880\n23,7942,3.0,1148729504\n23,8019,3.5,1148728467\n23,8042,4.5,1148669605\n23,8125,4.0,1148728849\n23,8154,3.5,1148673274\n23,8195,3.0,1148672148\n23,8239,3.5,1148672825\n23,8338,3.5,1148728858\n23,8368,4.0,1148673762\n23,8376,4.5,1148673478\n23,8464,3.5,1148671852\n23,8507,3.5,1148777848\n23,8529,2.0,1148729024\n23,8636,3.5,1148670303\n23,8656,2.5,1148777970\n23,8873,4.5,1148669373\n23,8910,4.0,1148778304\n23,8949,3.5,1148673283\n23,8955,5.0,1148671738\n23,8958,4.5,1148671289\n23,8966,3.5,1148730147\n23,8970,4.5,1148672765\n23,8973,4.0,1148673065\n23,8984,3.0,1148673032\n23,25753,3.5,1148730109\n23,25769,4.5,1148672235\n23,25805,2.5,1148777777\n23,26052,4.0,1148672082\n23,26131,4.0,1148670559\n23,26242,5.0,1148672259\n23,26729,4.5,1166035835\n23,27266,3.0,1148669930\n23,27317,3.0,1148730354\n23,27721,3.0,1148672301\n23,27803,4.5,1148672274\n23,30707,3.5,1148672278\n23,30749,4.5,1148670456\n23,30793,3.5,1148730062\n23,30812,3.5,1148669374\n23,30820,4.0,1148669926\n23,31101,4.0,1149867880\n23,31658,3.5,1148728505\n23,32587,3.5,1149868226\n23,32892,4.0,1166035981\n23,33162,2.5,1148673735\n23,33166,5.0,1148728740\n23,33493,4.0,1148670866\n23,33794,3.5,1148730017\n23,33903,3.5,1148673299\n23,34048,3.0,1148671579\n23,34143,2.5,1148728469\n23,34326,4.0,1148673587\n23,34437,3.0,1148672716\n23,36517,3.5,1148730328\n23,36529,3.5,1148730343\n23,36535,4.5,1148728385\n23,37733,3.5,1148730331\n23,37736,3.0,1148670189\n23,37741,4.0,1148670454\n23,38038,4.0,1148670525\n23,39183,4.5,1148671229\n23,39231,4.0,1148673719\n23,39292,4.5,1148670458\n23,39869,4.0,1149867915\n23,40278,3.5,1148671243\n23,40583,4.0,1148729077\n23,40629,4.0,1148671251\n23,40815,3.0,1148673758\n23,40819,3.0,1148671278\n23,41285,4.5,1148729584\n23,41569,2.0,1148720535\n23,41571,2.5,1148728902\n23,41863,3.5,1148777867\n23,41997,4.0,1148671219\n23,42004,4.0,1149867706\n23,42418,3.5,1148671236\n23,42734,3.0,1148778653\n23,44191,4.5,1148669596\n23,44204,4.0,1148670935\n23,45186,3.5,1148672962\n23,45447,1.5,1149867891\n23,45722,2.5,1166728253\n23,48385,3.5,1166728226\n24,6,5.0,849321588\n24,36,3.0,849321616\n24,81,4.0,849321769\n24,95,3.0,849321588\n24,150,3.0,849282414\n24,165,4.0,849282506\n24,296,5.0,849282414\n24,316,3.0,849282540\n24,356,4.0,849282540\n24,380,4.0,849282414\n24,457,4.0,849282507\n24,588,3.0,849282506\n24,590,4.0,849282414\n24,592,3.0,849282414\n24,610,3.0,849321669\n24,648,4.0,849321569\n24,736,3.0,849321569\n24,780,4.0,849282720\n24,786,4.0,849321569\n24,1034,3.0,849321955\n24,1161,4.0,849321826\n25,3,3.0,859625254\n25,32,4.0,859625180\n25,78,3.0,859625874\n25,104,4.0,859625336\n25,260,4.0,859625336\n25,494,3.0,859625254\n25,608,3.0,859625254\n25,653,2.0,859625336\n25,663,2.0,859625772\n25,707,3.0,859625553\n25,778,4.0,859625495\n25,780,4.0,859625180\n25,784,3.0,859625336\n25,786,3.0,859625254\n25,788,2.0,859625336\n25,802,5.0,859625442\n25,832,3.0,859625495\n25,842,2.0,859625824\n25,1073,5.0,859625254\n25,1354,1.0,859625931\n25,1356,3.0,859625442\n25,1358,5.0,859625974\n25,1391,2.0,859625669\n25,1405,3.0,859625669\n25,1409,2.0,859625845\n25,1483,3.0,859626258\n26,1,5.0,1360087980\n26,32,4.5,1354313537\n26,47,4.5,1360088070\n26,50,4.5,1360088047\n26,63,0.5,1351544773\n26,69,4.5,1351544454\n26,153,3.5,1360088114\n26,165,2.5,1360088108\n26,260,3.0,1360087975\n26,296,3.5,1360087955\n26,316,0.5,1360088129\n26,318,4.0,1360087964\n26,344,0.5,1360088074\n26,356,4.5,1352058551\n26,367,2.0,1360088133\n26,377,3.0,1360088079\n26,380,3.0,1360088041\n26,457,3.5,1360088007\n26,480,2.5,1360087958\n26,500,1.0,1360088125\n26,555,3.5,1352636797\n26,589,4.0,1360088014\n26,593,3.5,1354752756\n26,608,3.5,1360088060\n26,648,2.5,1360088081\n26,720,3.0,1351544331\n26,733,3.0,1360088143\n26,778,4.5,1354313990\n26,780,3.5,1360088024\n26,858,4.0,1360088089\n26,1036,3.5,1352058567\n26,1089,3.5,1371811577\n26,1196,3.5,1360088053\n26,1198,4.0,1360088064\n26,1210,3.5,1352058572\n26,1405,1.5,1351544316\n26,1527,4.0,1352636822\n26,1580,3.5,1360088119\n26,1653,3.5,1371811514\n26,1687,3.5,1351544445\n26,1732,4.0,1354752882\n26,1753,3.0,1351544792\n26,1831,3.0,1351544355\n26,1884,4.0,1352636799\n26,2028,3.0,1352058527\n26,2329,4.0,1371811575\n26,2355,4.0,1363376250\n26,2542,5.0,1352058619\n26,2571,5.0,1354752806\n26,2692,4.5,1354752751\n26,2858,4.0,1360088058\n26,2959,4.0,1354752886\n26,3108,2.0,1351544362\n26,3114,4.5,1371811559\n26,3147,3.0,1352058543\n26,3275,4.0,1352597810\n26,3481,2.5,1353708984\n26,3578,2.5,1352058529\n26,3744,4.0,1351544464\n26,4011,5.0,1351545050\n26,4019,4.0,1351544397\n26,4027,3.0,1351545093\n26,4161,3.5,1351544451\n26,4226,4.0,1353708990\n26,4262,2.5,1354752813\n26,4306,4.0,1351545101\n26,4776,4.0,1352058758\n26,4844,2.0,1351544780\n26,4865,4.5,1351544467\n26,4963,1.5,1352058557\n26,4973,3.5,1351545042\n26,4979,4.0,1353344972\n26,4995,3.0,1352058609\n26,5010,3.5,1352597808\n26,5110,4.0,1353345028\n26,5218,4.0,1353344992\n26,5418,4.0,1352058538\n26,5608,4.0,1364420293\n26,5617,2.0,1353708976\n26,5903,2.5,1352058766\n26,5952,4.0,1360088161\n26,5954,3.0,1352058603\n26,5989,2.0,1352921335\n26,6016,5.0,1352597728\n26,6333,0.5,1357253672\n26,6539,1.5,1357253678\n26,6708,3.5,1353344968\n26,6867,4.0,1351545056\n26,6870,3.0,1352921346\n26,6874,4.5,1352597710\n26,7323,4.0,1363810269\n26,7361,3.5,1365194619\n26,7438,3.5,1352838248\n26,7445,4.5,1352058756\n26,8368,3.0,1352058778\n26,8665,4.0,1352058548\n26,8784,2.0,1351545109\n26,8798,5.0,1352058660\n26,8874,1.5,1351545104\n26,8961,4.0,1351545119\n26,27376,0.5,1357253708\n26,27831,5.0,1351544753\n26,30810,3.0,1353708965\n26,31410,2.0,1352838206\n26,31878,4.0,1353344939\n26,32587,4.0,1352058784\n26,33794,4.0,1352921319\n26,34437,3.0,1353344981\n26,36529,4.0,1352058516\n26,37731,3.0,1357253700\n26,37741,3.5,1352921338\n26,38038,3.0,1361215024\n26,38061,4.5,1351545085\n26,41997,4.0,1352597707\n26,44191,5.0,1353708699\n26,44195,5.0,1351545082\n26,44199,4.5,1352058510\n26,44665,3.5,1352058533\n26,46976,4.0,1351545138\n26,47610,4.5,1352058666\n26,48516,4.5,1352921298\n26,48774,3.0,1353797039\n26,48780,4.5,1352921315\n26,49272,4.0,1352597697\n26,49278,3.0,1353962805\n26,49530,4.0,1352058503\n26,50851,3.5,1353868066\n26,50872,5.0,1352597714\n26,51255,3.5,1351545097\n26,51662,4.0,1352838254\n26,52604,4.0,1352920880\n26,52952,4.0,1353709027\n26,53129,4.5,1365194986\n26,53972,3.0,1352058770\n26,54286,5.0,1352058561\n26,54503,2.5,1353344881\n26,55118,2.5,1352921375\n26,55167,0.5,1357253685\n26,55247,4.0,1352838245\n26,55276,3.5,1352838242\n26,55280,3.5,1361215017\n26,55765,2.5,1352058524\n26,55820,3.0,1353708936\n26,56782,3.5,1351544480\n26,57669,3.5,1351545114\n26,58559,5.0,1352597791\n26,59315,3.5,1352597733\n26,59369,5.0,1352058657\n26,59387,3.0,1353868028\n26,59784,5.0,1352597790\n26,60069,3.0,1352838257\n26,60684,5.0,1352920912\n26,61024,3.0,1353345002\n26,61323,3.5,1353345011\n26,62849,4.5,1357253777\n26,63082,3.0,1352838237\n26,65514,5.0,1352597777\n26,67997,3.5,1353709018\n26,68157,3.5,1352597735\n26,68358,2.0,1353797029\n26,68954,3.5,1351545047\n26,69122,3.5,1352838229\n26,70533,0.5,1357253681\n26,71464,2.0,1353345007\n26,72998,3.5,1352597807\n26,73017,3.5,1352597692\n26,73587,4.5,1353344976\n26,79132,3.5,1354313972\n26,80489,2.0,1354313516\n26,82459,4.0,1351544798\n26,91542,3.5,1351545019\n26,92259,4.5,1354313566\n27,50,4.0,939077258\n27,73,5.0,939079553\n27,111,4.0,939076893\n27,296,4.0,939077164\n27,527,5.0,939079002\n27,593,4.0,939076893\n27,1213,4.0,939080935\n27,1343,4.0,939078921\n27,1584,4.0,939079553\n27,1610,4.0,939080148\n27,1639,4.0,939079118\n27,1704,5.0,939080090\n27,1721,3.0,939079855\n27,1892,4.0,939079553\n27,2356,2.0,939082326\n27,2391,3.0,939078921\n27,2396,2.0,939077258\n27,2501,4.0,939079779\n27,2502,4.0,939082276\n27,2710,1.0,939076569\n27,2712,4.0,939076677\n27,2762,5.0,939076519\n27,2858,5.0,939076519\n28,21,5.0,938942396\n28,58,5.0,938944078\n28,110,4.0,938944407\n28,345,5.0,938944923\n28,898,5.0,938944407\n28,899,5.0,938944744\n28,902,5.0,938944550\n28,903,3.0,938944636\n28,904,4.0,938942682\n28,908,5.0,938944975\n28,909,4.0,938944975\n28,913,4.0,938943150\n28,920,5.0,938942682\n28,924,4.0,938942755\n28,926,5.0,938942821\n28,933,4.0,938944683\n28,953,2.0,938944139\n28,1059,5.0,938944408\n28,1079,5.0,938943028\n28,1094,4.0,938942614\n28,1203,5.0,938943524\n28,1206,4.0,938944744\n28,1219,5.0,938943150\n28,1225,5.0,938944457\n28,1250,5.0,938943202\n28,1252,5.0,938944923\n28,1267,5.0,938943028\n28,1296,5.0,938944505\n28,1300,4.0,938944139\n28,1366,5.0,938944636\n28,1610,4.0,938943245\n28,1617,5.0,938942458\n28,1674,4.0,938944683\n28,1831,1.0,938942755\n28,1883,4.0,938944505\n28,1945,5.0,938943202\n28,1956,4.0,938944407\n28,1962,3.0,938943150\n28,2019,2.0,938942821\n28,2028,3.0,938942529\n28,2109,5.0,938944457\n28,2202,5.0,938943408\n28,2291,4.0,938943524\n28,2300,4.0,938944975\n28,2324,5.0,938944237\n28,2406,2.0,938944923\n28,2470,4.0,938943150\n28,2571,5.0,938944505\n28,2583,5.0,938943879\n28,2662,4.0,938943976\n29,778,5.0,1313927169\n29,1569,2.0,1313925564\n29,1681,0.5,1313925259\n29,1717,3.0,1313925074\n29,2065,0.5,1313925699\n29,2367,0.5,1313925185\n29,2384,1.5,1313925639\n29,2459,3.5,1313924474\n29,2513,3.0,1313924446\n29,2571,5.0,1313927206\n29,2713,3.0,1313925688\n29,2717,2.5,1313925589\n29,2942,0.5,1313925693\n29,3720,4.0,1313924856\n29,5065,2.0,1313925220\n29,6365,2.5,1313927224\n29,6502,5.0,1313927249\n29,6934,2.5,1313927226\n29,27822,4.0,1313925421\n29,51662,4.5,1313927193\n29,58559,5.0,1313927309\n29,73268,3.0,1313924902\n30,1,4.0,944943070\n30,2,2.0,945277634\n30,6,4.0,945276746\n30,8,4.0,968786809\n30,11,4.0,948141296\n30,14,4.0,945276564\n30,16,5.0,945115684\n30,18,2.0,945277971\n30,21,5.0,945276705\n30,23,4.0,945278756\n30,25,4.0,945115684\n30,32,2.0,945122277\n30,34,4.0,1039067883\n30,42,3.0,945278415\n30,45,3.0,1060795346\n30,47,4.0,986745716\n30,50,5.0,945113887\n30,52,5.0,945122740\n30,60,2.0,945277094\n30,70,4.0,1007352836\n30,78,2.0,945706968\n30,100,4.0,945277812\n30,110,5.0,945122218\n30,111,4.0,945113485\n30,118,3.0,994458116\n30,141,4.0,951010161\n30,150,5.0,945122277\n30,158,3.0,945277588\n30,161,5.0,948166619\n30,162,1.0,945113597\n30,165,4.0,948141601\n30,170,4.0,994458393\n30,196,2.0,999626484\n30,203,3.0,994458432\n30,208,2.0,945278527\n30,209,2.0,945277654\n30,224,4.0,996057525\n30,227,2.0,945279013\n30,228,2.0,986009538\n30,235,4.0,945114746\n30,253,4.0,948141681\n30,254,3.0,945276587\n30,260,4.0,948167472\n30,261,4.0,951008613\n30,272,4.0,996883776\n30,281,4.0,945115182\n30,282,5.0,964459362\n30,288,1.0,952884892\n30,296,5.0,994439589\n30,300,5.0,945122065\n30,317,4.0,945277330\n30,318,5.0,945112993\n30,337,5.0,945121922\n30,344,2.0,994458003\n30,348,5.0,945114800\n30,349,5.0,945277064\n30,350,4.0,960819270\n30,356,5.0,945122709\n30,357,4.0,945122526\n30,364,3.0,945276685\n30,368,4.0,945277588\n30,369,3.0,945277422\n30,371,4.0,945277277\n30,377,4.0,945276660\n30,380,4.0,945277224\n30,382,4.0,945277520\n30,410,4.0,948165514\n30,412,5.0,945114031\n30,413,2.0,995228802\n30,419,2.0,945278777\n30,424,4.0,946161737\n30,425,4.0,945114071\n30,426,2.0,945277698\n30,428,5.0,945115767\n30,432,3.0,954818652\n30,434,4.0,945277634\n30,440,4.0,945122305\n30,445,4.0,986009342\n30,451,4.0,945277919\n30,454,5.0,945276439\n30,457,5.0,945122219\n30,459,4.0,944943155\n30,463,4.0,945277405\n30,471,4.0,945112993\n30,472,4.0,945278328\n30,474,5.0,945115411\n30,477,4.0,945114453\n30,480,4.0,948140634\n30,485,4.0,945278179\n30,492,4.0,945276493\n30,500,4.0,945277277\n30,507,4.0,968786739\n30,508,5.0,945122127\n30,509,5.0,945122648\n30,515,5.0,945114031\n30,517,4.0,945278094\n30,518,2.0,945277535\n30,523,2.0,945116219\n30,527,5.0,945121654\n30,531,3.0,945122884\n30,532,2.0,945277742\n30,534,4.0,946161937\n30,535,4.0,945115684\n30,538,4.0,945115018\n30,539,3.0,945276726\n30,540,4.0,960820031\n30,541,4.0,948166511\n30,553,4.0,948140535\n30,555,5.0,945115684\n30,556,4.0,945113656\n30,581,3.0,945276726\n30,586,4.0,945278021\n30,587,2.0,945277405\n30,588,5.0,945276393\n30,589,4.0,948140376\n30,590,5.0,945115727\n30,592,4.0,945294508\n30,593,4.0,945114031\n30,594,3.0,945116219\n30,595,5.0,945122884\n30,596,4.0,960918653\n30,597,4.0,945122819\n30,608,5.0,945121703\n30,628,5.0,946162223\n30,640,3.0,951009961\n30,647,5.0,945276778\n30,661,2.0,945277181\n30,707,3.0,945278043\n30,733,4.0,945277145\n30,736,4.0,945277919\n30,750,3.0,945112993\n30,762,3.0,945278328\n30,765,3.0,951009383\n30,767,4.0,990239999\n30,780,4.0,945277224\n30,782,3.0,945276900\n30,800,4.0,945115105\n30,805,5.0,945277026\n30,806,1.0,945278630\n30,832,4.0,945276918\n30,858,5.0,945113250\n30,869,2.0,960819972\n30,898,5.0,945123379\n30,899,4.0,945280609\n30,903,4.0,948167638\n30,904,4.0,948167359\n30,908,4.0,948167200\n30,912,5.0,945113329\n30,913,5.0,945113429\n30,914,4.0,945115727\n30,919,4.0,952885624\n30,920,5.0,945114843\n30,921,5.0,945115217\n30,922,5.0,945280543\n30,923,5.0,945123035\n30,924,4.0,945114984\n30,928,5.0,945123334\n30,947,4.0,945114585\n30,950,4.0,961353806\n30,953,4.0,945123629\n30,954,4.0,945115133\n30,969,4.0,948166413\n30,971,4.0,945116296\n30,996,3.0,986009052\n30,1006,4.0,960819546\n30,1010,3.0,945295766\n30,1012,3.0,945295955\n30,1013,4.0,945295766\n30,1017,2.0,945295766\n30,1018,3.0,945295766\n30,1025,4.0,945295766\n30,1027,3.0,945278498\n30,1028,4.0,945295702\n30,1035,4.0,968785945\n30,1036,4.0,945115767\n30,1042,4.0,945116137\n30,1061,3.0,946162006\n30,1073,3.0,945295466\n30,1078,2.0,945114585\n30,1079,5.0,945294292\n30,1081,4.0,945294437\n30,1082,4.0,945114495\n30,1084,4.0,945113844\n30,1086,4.0,948166679\n30,1088,4.0,945294811\n30,1089,5.0,948167359\n30,1090,4.0,945294381\n30,1091,1.0,945295052\n30,1092,4.0,948141124\n30,1093,1.0,945115105\n30,1094,5.0,945121755\n30,1095,5.0,945113694\n30,1096,5.0,945294381\n30,1097,4.0,945115628\n30,1101,4.0,960917771\n30,1104,4.0,952885531\n30,1114,3.0,1039068134\n30,1120,4.0,945116296\n30,1124,4.0,945115411\n30,1126,2.0,960819766\n30,1129,3.0,945294508\n30,1135,3.0,945294700\n30,1171,3.0,945122605\n30,1179,5.0,945114819\n30,1181,4.0,968786007\n30,1186,4.0,945294437\n30,1189,3.0,945114638\n30,1193,4.0,944943070\n30,1196,4.0,945123680\n30,1197,3.0,945114495\n30,1198,5.0,945294292\n30,1200,3.0,948166414\n30,1206,2.0,945114673\n30,1207,5.0,945113377\n30,1208,5.0,945123246\n30,1210,4.0,945294508\n30,1212,3.0,951007847\n30,1213,5.0,945114231\n30,1214,4.0,945295323\n30,1219,4.0,952884971\n30,1220,5.0,945294381\n30,1221,5.0,945123035\n30,1222,4.0,945115684\n30,1225,5.0,948166414\n30,1226,4.0,945296019\n30,1227,5.0,945294292\n30,1228,5.0,945123065\n30,1231,5.0,945114800\n30,1234,5.0,945123522\n30,1235,2.0,945114453\n30,1240,4.0,945116137\n30,1242,5.0,945114495\n30,1244,4.0,945114271\n30,1245,4.0,945122127\n30,1246,4.0,945294508\n30,1247,4.0,952885104\n30,1250,5.0,945123210\n30,1252,5.0,945123065\n30,1258,4.0,945114365\n30,1259,4.0,945123827\n30,1263,5.0,945114843\n30,1265,4.0,945121960\n30,1266,5.0,945115218\n30,1267,5.0,945112993\n30,1270,5.0,951010688\n30,1271,4.0,945115293\n30,1272,5.0,945123246\n30,1276,5.0,945114271\n30,1277,5.0,945122526\n30,1278,3.0,945113844\n30,1283,4.0,948166855\n30,1285,4.0,945880277\n30,1286,3.0,945294811\n30,1291,4.0,945294509\n30,1292,5.0,945123170\n30,1302,4.0,945115684\n30,1303,4.0,945115218\n30,1304,4.0,944943155\n30,1307,4.0,952885624\n30,1320,3.0,951009284\n30,1321,4.0,945294509\n30,1327,4.0,945295543\n30,1332,4.0,960917865\n30,1333,5.0,945295702\n30,1334,4.0,945296019\n30,1339,4.0,945121560\n30,1343,5.0,945122846\n30,1345,3.0,945115456\n30,1346,4.0,945295052\n30,1350,4.0,945115807\n30,1352,4.0,945879533\n30,1358,5.0,945113981\n30,1366,5.0,945277990\n30,1370,4.0,945277207\n30,1377,3.0,945277674\n30,1378,4.0,945295052\n30,1380,4.0,945295543\n30,1385,3.0,945277556\n30,1387,4.0,945280937\n30,1388,3.0,960918255\n30,1390,3.0,945278359\n30,1393,4.0,994439147\n30,1394,5.0,945114495\n30,1395,5.0,945294509\n30,1396,4.0,945277002\n30,1399,3.0,945115018\n30,1422,4.0,945278156\n30,1438,3.0,945277760\n30,1440,3.0,960819894\n30,1459,4.0,948142097\n30,1461,4.0,945278857\n30,1466,5.0,945114724\n30,1485,4.0,945277520\n30,1488,4.0,945278415\n30,1508,4.0,945277797\n30,1517,3.0,1011327941\n30,1523,4.0,980135256\n30,1552,4.0,945278003\n30,1562,3.0,945278893\n30,1566,4.0,948165379\n30,1580,4.0,945880463\n30,1584,5.0,946162247\n30,1588,2.0,945277026\n30,1589,3.0,945122819\n30,1598,4.0,945277971\n30,1608,5.0,945276984\n30,1610,5.0,945276587\n30,1611,2.0,945123592\n30,1614,3.0,945276660\n30,1617,5.0,945113887\n30,1620,4.0,968786680\n30,1624,4.0,948140224\n30,1625,3.0,945276960\n30,1645,5.0,945116175\n30,1672,4.0,945276439\n30,1673,4.0,945122330\n30,1674,5.0,945123741\n30,1682,5.0,946162223\n30,1686,4.0,946161879\n30,1690,3.0,948142097\n30,1694,5.0,945114071\n30,1701,4.0,945115767\n30,1704,5.0,945121832\n30,1711,5.0,945277361\n30,1721,4.0,945277460\n30,1726,2.0,945122710\n30,1729,5.0,945116296\n30,1732,3.0,945122710\n30,1747,4.0,945115933\n30,1783,4.0,994439516\n30,1784,5.0,951010688\n30,1785,4.0,986008828\n30,1791,4.0,945278540\n30,1798,3.0,945279033\n30,1805,4.0,948141222\n30,1810,3.0,945276705\n30,1834,4.0,949977510\n30,1864,3.0,945279097\n30,1873,5.0,945122010\n30,1876,4.0,948141904\n30,1882,2.0,1030334513\n30,1884,1.0,948165859\n30,1892,5.0,945122605\n30,1912,4.0,945276249\n30,1917,4.0,945278278\n30,1923,4.0,945115864\n30,1943,3.0,945296041\n30,1945,4.0,945114192\n30,1947,4.0,945123854\n30,1951,4.0,945113057\n30,1952,4.0,948167081\n30,1953,4.0,952885034\n30,1954,5.0,945114883\n30,1955,4.0,945114961\n30,1956,4.0,945113844\n30,1957,4.0,945123497\n30,1958,3.0,945115767\n30,1960,5.0,945114800\n30,1961,5.0,945294381\n30,1962,5.0,945114883\n30,1965,4.0,986738498\n30,1968,4.0,945294381\n30,1982,3.0,945116252\n30,1994,4.0,945294641\n30,1997,5.0,945123317\n30,2000,4.0,945294641\n30,2001,4.0,945294764\n30,2002,3.0,945278278\n30,2003,3.0,994457962\n30,2009,3.0,948167472\n30,2011,4.0,945294811\n30,2012,3.0,945278244\n30,2013,3.0,948167277\n30,2015,3.0,952884997\n30,2023,5.0,1039070774\n30,2024,1.0,945115480\n30,2025,4.0,945115548\n30,2028,5.0,945113656\n30,2054,1.0,944943070\n30,2064,4.0,945113775\n30,2065,5.0,945294381\n30,2070,4.0,945123718\n30,2076,4.0,951008775\n30,2078,3.0,948166931\n30,2081,4.0,986735779\n30,2082,2.0,945277311\n30,2083,4.0,960818505\n30,2088,3.0,945295156\n30,2094,4.0,945277405\n30,2105,2.0,994439964\n30,2108,4.0,945276856\n30,2109,3.0,945295466\n30,2112,3.0,945276493\n30,2114,4.0,945294437\n30,2115,4.0,945294811\n30,2116,3.0,952744480\n30,2117,3.0,945294641\n30,2118,4.0,948166679\n30,2120,4.0,948141369\n30,2121,2.0,968788273\n30,2122,2.0,945295156\n30,2124,4.0,945276960\n30,2126,4.0,945116219\n30,2136,3.0,945295766\n30,2144,3.0,945116220\n30,2145,3.0,945294700\n30,2146,4.0,945295052\n30,2148,1.0,945294872\n30,2159,2.0,945113656\n30,2160,5.0,945280501\n30,2166,4.0,946162071\n30,2174,4.0,945294381\n30,2183,4.0,952743252\n30,2184,4.0,945295955\n30,2188,3.0,968787840\n30,2193,3.0,945294700\n30,2194,5.0,945114961\n30,2231,5.0,945276882\n30,2236,3.0,945276439\n30,2240,4.0,945294641\n30,2243,5.0,945115900\n30,2245,4.0,948167638\n30,2247,4.0,945294764\n30,2249,4.0,945276685\n30,2252,4.0,951009217\n30,2253,3.0,945277634\n30,2255,2.0,960917865\n30,2259,3.0,948165999\n30,2263,2.0,945294858\n30,2264,2.0,945295069\n30,2267,4.0,945277094\n30,2268,5.0,1037583956\n30,2269,5.0,945278188\n30,2278,3.0,945277113\n30,2286,1.0,945295214\n30,2289,5.0,945114406\n30,2291,5.0,945122526\n30,2296,2.0,945278963\n30,2300,5.0,945115512\n30,2301,4.0,945294509\n30,2302,4.0,945276393\n30,2307,4.0,948069839\n30,2311,3.0,945294811\n30,2313,4.0,945114453\n30,2320,4.0,945277718\n30,2321,5.0,945122794\n30,2329,3.0,945115512\n30,2334,3.0,945277654\n30,2336,5.0,945115270\n30,2346,3.0,960918218\n30,2347,3.0,945295543\n30,2352,4.0,948070285\n30,2353,5.0,945276439\n30,2355,5.0,948166591\n30,2367,2.0,945295588\n30,2369,4.0,945294811\n30,2371,3.0,945294509\n30,2374,3.0,945880314\n30,2376,4.0,945295052\n30,2389,3.0,945117801\n30,2391,5.0,948167472\n30,2396,5.0,945117110\n30,2398,4.0,945296110\n30,2402,3.0,954818726\n30,2403,3.0,948141433\n30,2407,4.0,945294700\n30,2409,4.0,945295588\n30,2410,4.0,945295156\n30,2411,4.0,945295214\n30,2412,4.0,945278718\n30,2417,3.0,945880314\n30,2418,3.0,945294912\n30,2420,2.0,945294912\n30,2424,4.0,945277094\n30,2427,1.0,945116330\n30,2432,4.0,945122740\n30,2433,4.0,946161981\n30,2435,2.0,945122356\n30,2454,4.0,945296019\n30,2457,4.0,945294437\n30,2463,4.0,945294641\n30,2468,2.0,945295214\n30,2470,4.0,945294764\n30,2474,5.0,945294381\n30,2490,5.0,945115345\n30,2505,3.0,945117685\n30,2513,1.0,945295052\n30,2517,2.0,945294858\n30,2518,3.0,945294764\n30,2520,4.0,945295543\n30,2521,3.0,968788273\n30,2523,3.0,945295466\n30,2524,4.0,945295543\n30,2528,3.0,945295543\n30,2529,4.0,945295703\n30,2530,2.0,945295588\n30,2531,2.0,945295543\n30,2532,3.0,945295543\n30,2533,2.0,994438963\n30,2535,4.0,945295543\n30,2539,4.0,945117600\n30,2551,2.0,945294641\n30,2561,4.0,945117751\n30,2571,3.0,945117284\n30,2574,3.0,945117855\n30,2577,3.0,986009301\n30,2598,4.0,945118444\n30,2599,5.0,945113775\n30,2605,4.0,945118833\n30,2611,5.0,949984748\n30,2616,3.0,945278292\n30,2617,3.0,1012830681\n30,2639,4.0,945294641\n30,2640,4.0,948167578\n30,2641,4.0,945294764\n30,2642,1.0,945295156\n30,2664,3.0,945115326\n30,2671,4.0,946161135\n30,2687,5.0,945118470\n30,2688,4.0,945118833\n30,2701,2.0,945117855\n30,2702,2.0,945114316\n30,2707,3.0,945117685\n30,2712,4.0,945118444\n30,2716,4.0,945294437\n30,2729,5.0,945114961\n30,2730,4.0,945295323\n30,2738,3.0,945116067\n30,2739,5.0,948166619\n30,2741,4.0,945294976\n30,2746,4.0,948141418\n30,2749,4.0,960917771\n30,2750,4.0,986738419\n30,2757,2.0,945294700\n30,2762,5.0,945118236\n30,2763,5.0,945118516\n30,2770,3.0,945118400\n30,2782,4.0,1002769837\n30,2787,4.0,945294764\n30,2790,3.0,945113125\n30,2791,2.0,945113981\n30,2793,3.0,945278645\n30,2794,3.0,945295156\n30,2795,4.0,945294437\n30,2797,5.0,951010736\n30,2802,4.0,945294912\n30,2803,4.0,945277046\n30,2804,4.0,945117941\n30,2805,4.0,947306097\n30,2819,4.0,948140044\n30,2829,4.0,945118685\n30,2841,4.0,945118578\n30,2851,2.0,945295588\n30,2852,5.0,945115018\n30,2856,4.0,945295797\n30,2858,5.0,945118093\n30,2861,4.0,961265714\n30,2871,4.0,945114365\n30,2875,4.0,945277277\n30,2881,4.0,945118754\n30,2883,4.0,945115242\n30,2890,4.0,945277046\n30,2908,4.0,960715669\n30,2912,4.0,1010373507\n30,2916,4.0,945116175\n30,2917,5.0,945113844\n30,2918,5.0,945115548\n30,2929,5.0,945123854\n30,2942,3.0,945295052\n30,2944,5.0,945295703\n30,2947,4.0,948140634\n30,2950,3.0,951162572\n30,2952,5.0,945115628\n30,2956,4.0,945294811\n30,2959,4.0,945118444\n30,2966,4.0,960658881\n30,2967,4.0,945296019\n30,2971,4.0,945115990\n30,2973,5.0,945123170\n30,2976,3.0,945118516\n30,2977,2.0,945118906\n30,2985,4.0,945294641\n30,2987,5.0,945294641\n30,2989,4.0,945294858\n30,2991,4.0,945295466\n30,3006,5.0,945113775\n30,3015,3.0,945295466\n30,3019,3.0,945123497\n30,3020,4.0,951008850\n30,3032,4.0,945295466\n30,3035,4.0,952885177\n30,3038,5.0,1014613565\n30,3039,4.0,945115864\n30,3044,3.0,945276778\n30,3053,4.0,948167081\n30,3063,2.0,945277311\n30,3068,5.0,945113694\n30,3071,4.0,954815132\n30,3072,4.0,948167200\n30,3074,4.0,948141681\n30,3081,3.0,945118516\n30,3082,3.0,1033398031\n30,3087,2.0,945294811\n30,3095,3.0,945113597\n30,3098,4.0,951008931\n30,3101,5.0,945115727\n30,3102,5.0,945294641\n30,3104,4.0,945115767\n30,3105,4.0,948140431\n30,3107,4.0,1039070693\n30,3108,2.0,945116137\n30,3111,5.0,945113057\n30,3114,5.0,948069950\n30,3120,4.0,951009217\n30,3130,3.0,945278929\n30,3138,3.0,986738761\n30,3141,4.0,952885578\n30,3144,3.0,945295766\n30,3147,4.0,946590784\n30,3152,4.0,945115767\n30,3156,4.0,968785158\n30,3160,5.0,949713340\n30,3167,4.0,960918160\n30,3169,3.0,945117941\n30,3173,3.0,948595947\n30,3174,4.0,996708747\n30,3176,4.0,949275887\n30,3185,3.0,950389052\n30,3197,4.0,951162481\n30,3198,5.0,948070040\n30,3204,4.0,951010161\n30,3206,4.0,951162533\n30,3210,4.0,951008022\n30,3218,1.0,952744452\n30,3219,4.0,948142236\n30,3244,4.0,948165577\n30,3246,5.0,948164324\n30,3247,3.0,951009046\n30,3249,4.0,948141904\n30,3252,4.0,952059599\n30,3253,4.0,948070151\n30,3255,4.0,948140634\n30,3256,4.0,952884934\n30,3257,3.0,960819766\n30,3258,3.0,960819374\n30,3263,4.0,948070151\n30,3269,3.0,951009046\n30,3274,4.0,951009251\n30,3286,2.0,952224346\n30,3296,4.0,954816853\n30,3298,5.0,951007880\n30,3308,4.0,951009217\n30,3316,2.0,994439603\n30,3334,4.0,960918606\n30,3354,4.0,953426082\n30,3358,5.0,986008589\n30,3359,4.0,954814831\n30,3360,5.0,952743252\n30,3361,4.0,952743110\n30,3362,5.0,952742834\n30,3363,4.0,952743008\n30,3370,4.0,960917657\n30,3385,2.0,954818846\n30,3386,4.0,952059512\n30,3391,3.0,968788547\n30,3394,3.0,954818365\n30,3395,4.0,986748223\n30,3418,4.0,952742981\n30,3420,4.0,960918160\n30,3421,4.0,1039070693\n30,3426,4.0,954816853\n30,3428,4.0,952744582\n30,3441,2.0,960917865\n30,3445,3.0,954818149\n30,3448,4.0,954816853\n30,3451,4.0,960918381\n30,3468,5.0,960918333\n30,3476,2.0,960819182\n30,3478,4.0,954816963\n30,3483,3.0,955926108\n30,3489,4.0,960819851\n30,3494,3.0,960918425\n30,3498,4.0,954816242\n30,3499,4.0,960818935\n30,3500,4.0,954818244\n30,3504,4.0,954814782\n30,3505,4.0,954815298\n30,3506,3.0,960918218\n30,3507,4.0,954816963\n30,3513,5.0,956970748\n30,3524,3.0,960917702\n30,3526,4.0,960917609\n30,3528,2.0,960819512\n30,3529,4.0,954818365\n30,3535,3.0,957052972\n30,3536,4.0,986011269\n30,3537,4.0,957566237\n30,3543,5.0,954814639\n30,3545,4.0,960918106\n30,3546,4.0,954815680\n30,3548,4.0,960918499\n30,3549,4.0,954815132\n30,3551,4.0,960918106\n30,3556,4.0,994279619\n30,3557,4.0,960819972\n30,3566,2.0,986008334\n30,3578,4.0,976597909\n30,3608,4.0,960917528\n30,3613,4.0,986738498\n30,3614,4.0,960819270\n30,3618,4.0,994279649\n30,3638,4.0,960918218\n30,3649,4.0,960917771\n30,3671,4.0,960918106\n30,3683,5.0,960917558\n30,3684,4.0,960917609\n30,3685,4.0,960917609\n30,3686,4.0,968787368\n30,3688,2.0,960917865\n30,3701,3.0,960917657\n30,3702,4.0,960918106\n30,3704,3.0,960917771\n30,3712,4.0,960818505\n30,3713,5.0,960818373\n30,3724,4.0,960918160\n30,3734,4.0,960917609\n30,3735,5.0,986739028\n30,3751,4.0,986008260\n30,3753,5.0,963756658\n30,3763,3.0,986745621\n30,3783,4.0,996418263\n30,3791,4.0,968787421\n30,3804,2.0,968788764\n30,3812,3.0,1039065693\n30,3826,4.0,965514373\n30,3834,4.0,986738865\n30,3844,4.0,968787159\n30,3852,4.0,994457359\n30,3859,4.0,994455829\n30,3873,4.0,968786587\n30,3897,4.0,1055788141\n30,3927,4.0,986739319\n30,3948,4.0,986008295\n30,3952,5.0,986008260\n30,3957,2.0,994438640\n30,3983,4.0,997488960\n30,3994,4.0,995850415\n30,3996,4.0,994279539\n30,4002,4.0,986738419\n30,4007,5.0,986738498\n30,4008,5.0,994457943\n30,4009,4.0,986738419\n30,4011,4.0,996950355\n30,4012,2.0,1015714238\n30,4014,5.0,1001961206\n30,4018,4.0,1017012514\n30,4022,4.0,1055788174\n30,4025,3.0,1009341085\n30,4027,5.0,994439405\n30,4029,4.0,994279539\n30,4033,5.0,980135286\n30,4034,5.0,980818214\n30,4037,5.0,986735749\n30,4039,3.0,986738661\n30,4041,4.0,986738559\n30,4055,4.0,994289229\n30,4060,4.0,986008739\n30,4062,4.0,986738559\n30,4063,3.0,994459012\n30,4085,4.0,986738419\n30,4086,4.0,986738419\n30,4088,5.0,1002769931\n30,4090,3.0,986738661\n30,4102,4.0,986738559\n30,4111,4.0,985829845\n30,4122,4.0,1039066670\n30,4126,4.0,986738613\n30,4128,4.0,986738559\n30,4132,2.0,986738761\n30,4146,1.0,1039070344\n30,4148,5.0,994457943\n30,4167,3.0,986008184\n30,4190,4.0,986739319\n30,4211,5.0,986008618\n30,4214,3.0,986738613\n30,4226,3.0,1055785445\n30,4228,3.0,986008121\n30,4239,5.0,990924261\n30,4246,4.0,993305342\n30,4262,4.0,994456359\n30,4263,5.0,994456480\n30,4276,4.0,994457484\n30,4280,4.0,994456957\n30,4291,3.0,994457827\n30,4292,4.0,990239709\n30,4306,5.0,1006149047\n30,4308,5.0,993305296\n30,4310,4.0,990924190\n30,4316,3.0,994458606\n30,4318,4.0,994458330\n30,4321,4.0,994457641\n30,4322,4.0,1039066094\n30,4326,5.0,990239742\n30,4333,3.0,1039066739\n30,4344,4.0,993305401\n30,4345,4.0,998109431\n30,4352,3.0,1039067403\n30,4354,4.0,1039069100\n30,4361,4.0,994456359\n30,4370,4.0,995253235\n30,4378,3.0,999310004\n30,4396,2.0,1039067528\n30,4406,5.0,994474005\n30,4409,2.0,1039069165\n30,4410,4.0,1039066447\n30,4447,4.0,1000003813\n30,4464,4.0,994458116\n30,4465,5.0,994456957\n30,4474,3.0,994457142\n30,4482,4.0,1039067222\n30,4486,4.0,994457417\n30,4487,3.0,1039067434\n30,4488,3.0,994440115\n30,4489,4.0,1039066779\n30,4491,2.0,1039066699\n30,4495,3.0,994457641\n30,4496,4.0,1002770429\n30,4498,4.0,1039066447\n30,4499,4.0,1009340636\n30,4503,4.0,1039066670\n30,4522,5.0,994456213\n30,4524,4.0,994458764\n30,4526,3.0,1039067528\n30,4528,2.0,1002770641\n30,4557,5.0,994457057\n30,4564,4.0,1039066538\n30,4570,4.0,1039066094\n30,4573,4.0,1039067284\n30,4608,4.0,994458546\n30,4615,1.0,994458003\n30,4617,5.0,994456213\n30,4621,3.0,994457962\n30,4627,2.0,996950674\n30,4628,5.0,994456636\n30,4629,2.0,996950674\n30,4639,4.0,997064028\n30,4643,4.0,996939545\n30,4661,4.0,996950608\n30,4681,3.0,996950542\n30,4700,4.0,1009339092\n30,4709,4.0,996950542\n30,4710,4.0,996950542\n30,4713,3.0,996950542\n30,4714,2.0,996950542\n30,4728,3.0,1014533110\n30,4733,4.0,1021348160\n30,4751,4.0,1039066923\n30,4776,4.0,1039070065\n30,4787,5.0,1002769606\n30,4803,4.0,1002769606\n30,4815,4.0,1001732228\n30,4830,4.0,1003621148\n30,4832,3.0,1002769561\n30,4835,5.0,1002769561\n30,4881,4.0,1030333611\n30,4886,4.0,1004923866\n30,4889,4.0,1006148969\n30,4890,3.0,1006492881\n30,4896,4.0,1009935138\n30,4898,4.0,1055788107\n30,4929,3.0,1006492955\n30,4932,4.0,1006492955\n30,4941,2.0,1006492955\n30,4951,3.0,1009340636\n30,4954,4.0,1008086617\n30,4960,4.0,1020575100\n30,4963,5.0,1009695904\n30,4971,4.0,1009340636\n30,4978,5.0,1017556925\n30,4979,4.0,1012097954\n30,4993,3.0,1010289168\n30,4995,5.0,1019362987\n30,5015,4.0,1015738983\n30,5027,3.0,1011328056\n30,5043,3.0,1009937419\n30,5049,4.0,1011328004\n30,5060,3.0,945114153\n30,5061,3.0,1011328004\n30,5064,5.0,1012169711\n30,5111,4.0,1014004783\n30,5120,4.0,1055791286\n30,5122,4.0,1014004783\n30,5125,2.0,1012830712\n30,5127,3.0,1016419671\n30,5152,5.0,1020056483\n30,5161,4.0,1014004730\n30,5172,4.0,1030933052\n30,5187,4.0,1015205545\n30,5193,3.0,1014613681\n30,5198,4.0,1014613681\n30,5208,4.0,1014613681\n30,5214,3.0,1039065866\n30,5237,4.0,1015713629\n30,5247,3.0,1015205474\n30,5250,4.0,1015205474\n30,5269,1.0,1036123436\n30,5276,4.0,1019363280\n30,5277,2.0,1019363280\n30,5293,5.0,1033397995\n30,5297,4.0,1037686951\n30,5299,5.0,1031799237\n30,5303,3.0,1019363219\n30,5307,3.0,1019363219\n30,5308,4.0,1020056776\n30,5309,3.0,1020056776\n30,5334,4.0,1019363168\n30,5335,2.0,1019363168\n30,5344,4.0,1019363168\n30,5359,4.0,1020056711\n30,5364,4.0,1060013900\n30,5366,1.0,1020056711\n30,5382,2.0,1021348305\n30,5388,4.0,1022478671\n30,5391,4.0,1029558644\n30,5400,4.0,1023517288\n30,5445,4.0,1024891611\n30,5452,2.0,1024891677\n30,5464,5.0,1027051203\n30,5471,3.0,1027051268\n30,5502,3.0,1046105730\n30,5506,4.0,1030232314\n30,5534,4.0,1029516219\n30,5544,4.0,1029516219\n30,5548,4.0,1029516219\n30,5561,4.0,1030232487\n30,5564,3.0,1035175467\n30,5581,3.0,1031799315\n30,5620,4.0,1033944353\n30,5630,5.0,1033879863\n30,5655,3.0,1039067403\n30,5670,4.0,1060013921\n30,5679,1.0,1036367646\n30,5680,4.0,1036984289\n30,5689,4.0,1033880299\n30,5694,2.0,1033880299\n30,5696,4.0,1033880299\n30,5699,4.0,1033880299\n30,5703,3.0,1033880263\n30,5705,4.0,1033880263\n30,5707,4.0,1033880263\n30,5712,4.0,1039066538\n30,5723,4.0,1033880263\n30,5729,3.0,1039067617\n30,5732,4.0,1033880263\n30,5742,4.0,1033880263\n30,5745,4.0,1033879938\n30,5773,3.0,1035175594\n30,5812,5.0,1042494862\n30,5843,4.0,1036367914\n30,5846,4.0,1036367914\n30,5847,5.0,1036367914\n30,5854,4.0,1039070904\n30,5857,1.0,1036367914\n30,5859,2.0,1036367914\n30,5869,4.0,1036367914\n30,5900,3.5,1060013944\n30,5902,4.0,1045502600\n30,5923,3.0,1038203534\n30,5926,3.0,1038203534\n30,5927,4.0,1038203534\n30,5933,4.0,1038203534\n30,5938,4.0,1038203534\n30,5940,3.0,1039066739\n30,5945,4.0,1046106724\n30,5956,5.0,1041284839\n30,5959,3.0,1060736279\n30,5960,5.0,1040659215\n30,5961,4.0,1041284839\n30,5962,3.0,1040659215\n30,5968,4.0,1041284839\n30,5989,5.0,1041284703\n30,5991,5.0,1043686934\n30,6001,5.0,1040659119\n30,6027,4.0,1042495022\n30,6084,3.0,1043687080\n30,6096,3.0,1043687080\n30,6101,2.0,1043687080\n30,6103,2.0,1043687080\n30,6115,3.0,1043687014\n30,6127,4.0,1043687015\n30,6180,3.0,1055798065\n30,6186,2.0,1046106675\n30,6212,3.0,1049142071\n30,6233,3.0,1048704049\n30,6234,3.0,1048704049\n30,6237,4.0,1055798009\n30,6238,4.0,1049142167\n30,6240,3.0,1049142157\n30,6263,3.0,1049142105\n30,6281,4.0,1049749056\n30,6308,4.0,1049749117\n30,6318,3.0,1049749117\n30,6345,4.0,1055797910\n30,6413,3.5,1055797818\n30,6419,5.0,1055788249\n30,6422,4.0,1055797845\n30,6436,5.0,1055788276\n30,6440,4.0,1055797723\n30,6452,5.0,1055788246\n30,6473,4.0,1055797789\n30,6565,4.5,1060013871\n31,31,4.0,1273541953\n31,32,4.5,1273720546\n31,50,3.5,1273633559\n31,111,4.5,1273714533\n31,260,4.0,1273720416\n31,296,4.5,1273714417\n31,318,4.0,1273542992\n31,372,3.5,1273541973\n31,379,4.0,1273542073\n31,527,5.0,1273543009\n31,541,4.0,1273720299\n31,778,3.5,1273720368\n31,858,4.5,1273720163\n31,904,4.0,1273714421\n31,1089,4.5,1273714480\n31,1091,3.0,1273542081\n31,1186,2.0,1273542019\n31,1197,4.5,1273542870\n31,1206,4.5,1273720435\n31,1208,4.5,1273542817\n31,1221,4.5,1273714380\n31,1234,4.5,1273714490\n31,1299,4.0,1273542012\n31,1378,4.0,1273542028\n31,1416,3.0,1273542066\n31,1957,4.5,1273542033\n31,1967,4.5,1273541999\n31,2028,4.5,1273542882\n31,2248,4.0,1273541967\n31,2329,4.5,1273542808\n31,2502,4.0,1273720582\n31,2571,4.5,1273720348\n31,2692,4.5,1273542879\n31,2959,5.0,1273542969\n31,2997,4.5,1273720551\n31,3072,3.0,1273541964\n31,3087,3.5,1273542085\n31,3698,4.5,1273542046\n31,3755,4.0,1273541939\n31,3897,4.0,1274150193\n31,3911,4.0,1273541943\n31,4886,4.0,1274150314\n31,4979,3.5,1274150321\n31,4993,4.5,1273720397\n31,5418,4.5,1274150200\n31,5952,4.5,1274149537\n31,5995,3.5,1273553986\n31,6539,3.5,1274150289\n31,6711,4.5,1274150179\n31,7153,4.5,1273720461\n31,7361,5.0,1273542961\n31,8961,4.0,1274150085\n31,33154,4.0,1274149939\n31,33794,4.5,1274149910\n31,44191,4.0,1274150249\n31,44195,4.0,1273720591\n31,48394,4.5,1274149580\n31,50872,4.5,1274150130\n31,54503,4.0,1274157016\n31,55280,4.5,1274150341\n31,55820,4.0,1273720255\n31,58559,5.0,1273542984\n31,59315,5.0,1274150005\n31,64614,4.5,1273720384\n31,72226,4.0,1273720329\n31,72998,4.0,1274150047\n31,74789,4.5,1273542596\n31,76093,3.5,1273720454\n31,76251,5.0,1273897820\n32,2,4.0,834828285\n32,19,3.0,834828185\n32,31,4.0,834828440\n32,44,3.0,834828337\n32,110,5.0,834828155\n32,150,5.0,834828059\n32,153,4.0,834828085\n32,158,3.0,834828318\n32,165,4.0,834828085\n32,168,3.0,834828318\n32,173,3.0,834828227\n32,204,4.0,834828285\n32,208,4.0,834828137\n32,225,2.0,834828168\n32,231,5.0,834828108\n32,252,3.0,834828268\n32,261,4.0,834828302\n32,266,3.0,834828185\n32,292,5.0,834828123\n32,296,2.0,834828059\n32,300,3.0,834828155\n32,316,3.0,834828108\n32,317,3.0,834828168\n32,333,3.0,834828337\n32,337,4.0,834828248\n32,344,4.0,834828085\n32,349,5.0,834828084\n32,350,3.0,834828337\n32,356,5.0,834828248\n32,364,3.0,834828227\n32,367,4.0,834828248\n32,377,4.0,834828361\n32,380,3.0,834828059\n32,410,3.0,834828155\n32,420,2.0,834828185\n32,428,3.0,834828632\n32,432,3.0,834828199\n32,434,3.0,834828123\n32,440,4.0,834828302\n32,442,4.0,834828361\n32,457,5.0,834828155\n32,480,5.0,834828286\n32,553,5.0,834828248\n32,588,3.0,834828085\n32,589,5.0,834828337\n32,590,5.0,834828059\n32,592,4.0,834828059\n32,595,2.0,834828108\n33,19,3.0,1032769612\n33,88,3.0,1032678367\n33,157,1.0,1033543456\n33,231,3.0,1032769595\n33,344,4.0,1032769612\n33,377,2.0,1032676906\n33,532,4.0,1032768899\n33,562,4.0,1032859878\n33,832,4.0,1033604138\n33,851,1.0,1032678174\n33,908,4.0,1032676906\n33,1060,4.0,1032859767\n33,1091,4.0,1032772901\n33,1120,4.0,1032766375\n33,1186,5.0,1032679370\n33,1196,2.0,1032679359\n33,1197,4.0,1032679865\n33,1198,4.0,1032679359\n33,1230,4.0,1032676887\n33,1258,5.0,1032679331\n33,1259,4.0,1032679449\n33,1285,4.0,1032679577\n33,1291,4.0,1032679682\n33,1347,2.0,1032679990\n33,1359,3.0,1032859220\n33,1394,2.0,1032679469\n33,1407,4.0,1032769282\n33,1717,3.0,1032769282\n33,1760,1.0,1032859270\n33,1784,4.0,1033604541\n33,1967,2.0,1032679534\n33,1974,3.0,1032680083\n33,1982,4.0,1032766234\n33,1983,4.0,1032766234\n33,1984,1.0,1032766234\n33,1994,5.0,1032679707\n33,2005,4.0,1032679843\n33,2006,4.0,1032678268\n33,2060,3.0,1032860971\n33,2064,5.0,1032679359\n33,2088,2.0,1032680420\n33,2107,2.0,1032676887\n33,2145,4.0,1032678268\n33,2170,2.0,1032860951\n33,2193,2.0,1032680004\n33,2329,4.0,1032766347\n33,2371,4.0,1032679978\n33,2395,3.0,1033192223\n33,2470,4.0,1032680420\n33,2502,5.0,1032858907\n33,2507,1.0,1032766463\n33,2541,4.0,1032766168\n33,2599,4.0,1032859343\n33,2617,2.0,1032859504\n33,2689,1.0,1032766852\n33,2706,3.0,1032858995\n33,2787,4.0,1032680233\n33,2793,2.0,1032768775\n33,2795,4.0,1032859847\n33,2888,2.0,1032859012\n33,2891,1.0,1032859119\n33,2917,4.0,1032679534\n33,2918,4.0,1032679449\n33,2926,3.0,1032679887\n33,2959,4.0,1032678153\n33,2997,4.0,1033604225\n33,3007,5.0,1032859587\n33,3157,2.0,1032859389\n33,3273,2.0,1032769282\n33,3298,4.0,1032677550\n33,3317,2.0,1032859878\n33,3408,3.0,1032677405\n33,3481,3.0,1032769523\n33,3552,3.0,1032769002\n33,3566,2.0,1032677594\n33,3568,3.0,1032677740\n33,3608,4.0,1032679682\n33,3617,4.0,1034930027\n33,3747,2.0,1032677346\n33,3752,2.0,1034930090\n33,3785,3.0,1032769237\n33,3794,4.0,1032677485\n33,3852,4.0,1032859750\n33,3858,3.0,1032859050\n33,3865,2.0,1032766929\n33,3868,4.0,1032860933\n33,3893,2.0,1032769543\n33,3897,3.0,1032859587\n33,3910,2.0,1032677362\n33,3911,5.0,1032769506\n33,4016,4.0,1032769543\n33,4017,4.0,1032677266\n33,4027,2.0,1032676888\n33,4214,4.0,1032680097\n33,4247,3.0,1034930190\n33,4248,1.0,1032859254\n33,4251,4.0,1032677507\n33,4333,4.0,1032679936\n33,4340,4.0,1034930133\n33,4378,3.0,1032677333\n33,4388,2.0,1032769250\n33,4447,2.0,1033604248\n33,4450,5.0,1032677313\n33,4452,2.0,1034929996\n33,4483,5.0,1032676888\n33,4488,2.0,1032679865\n33,4502,2.0,1032678282\n33,4509,4.0,1032680097\n33,4558,3.0,1032680212\n33,4621,4.0,1032680375\n33,4622,3.0,1032767204\n33,4641,3.0,1033604322\n33,4643,2.0,1032677637\n33,4649,4.0,1032859151\n33,4652,4.0,1032676792\n33,4662,4.0,1032676888\n33,4678,3.0,1032678352\n33,4679,5.0,1032679978\n33,4718,4.0,1032768802\n33,4728,3.0,1034930125\n33,4809,3.0,1032679488\n33,4878,4.0,1032677282\n33,4890,4.0,1032678268\n33,4898,4.0,1034930060\n33,4929,4.0,1032680332\n33,4956,3.0,1032858930\n33,4963,3.0,1032769523\n33,4974,3.0,1032858979\n33,4975,4.0,1032677541\n33,4988,3.0,1032859878\n33,5015,4.0,1032676999\n33,5074,4.0,1032677012\n33,5106,2.0,1032678432\n33,5282,4.0,1032678324\n33,5339,4.0,1035340620\n33,5483,4.0,1032677082\n33,5669,4.0,1037009003\n33,5673,5.0,1037008981\n34,6,3.0,973747402\n34,21,4.0,973748254\n34,32,5.0,973747284\n34,39,3.0,973747340\n34,47,5.0,973747188\n34,50,5.0,973748491\n34,70,4.0,973746231\n34,110,4.0,973747427\n34,150,4.0,973746527\n34,198,3.0,973747709\n34,253,4.0,973747949\n34,260,4.0,973747559\n34,288,4.0,973746243\n34,293,4.0,973748543\n34,296,5.0,973746450\n34,316,4.0,973747797\n34,337,5.0,973746864\n34,377,3.0,973748307\n34,407,3.0,973747985\n34,442,3.0,973747797\n34,482,5.0,973747271\n34,527,4.0,973746450\n34,541,4.0,973747459\n34,555,5.0,973746273\n34,556,4.0,973747188\n34,562,4.0,973747258\n34,581,4.0,973747385\n34,589,5.0,973747591\n34,593,4.0,973746494\n34,595,4.0,973746365\n34,599,3.0,973748336\n34,608,4.0,973746527\n34,610,4.0,973747740\n34,678,5.0,973746450\n34,724,4.0,973747985\n34,750,4.0,973746814\n34,858,4.0,973746463\n34,912,5.0,973746569\n34,913,5.0,973747459\n34,919,3.0,973748587\n34,923,5.0,973748034\n34,924,5.0,973747559\n34,940,5.0,973748614\n34,969,4.0,973748413\n34,1036,4.0,973748196\n34,1059,5.0,973747315\n34,1089,4.0,973748508\n34,1090,4.0,973746543\n34,1092,4.0,973749001\n34,1097,3.0,973747591\n34,1103,4.0,973748111\n34,1104,4.0,973746681\n34,1120,3.0,973747156\n34,1129,4.0,973747643\n34,1130,3.0,973747911\n34,1147,4.0,973747105\n34,1178,5.0,973746655\n34,1179,1.0,973747354\n34,1193,4.0,973746231\n34,1196,3.0,973748587\n34,1198,4.0,973748163\n34,1200,4.0,973748196\n34,1201,4.0,973748228\n34,1204,5.0,973748401\n34,1206,5.0,973747591\n34,1207,5.0,973746527\n34,1208,5.0,973748045\n34,1213,5.0,973747188\n34,1214,5.0,973747848\n34,1215,3.0,973747591\n34,1219,5.0,973747848\n34,1220,3.0,973748787\n34,1221,4.0,973748676\n34,1222,5.0,973748069\n34,1231,4.0,973746476\n34,1234,3.0,973747017\n34,1240,5.0,973747559\n34,1247,5.0,973748112\n34,1250,4.0,973746543\n34,1252,4.0,973747459\n34,1253,4.0,973746707\n34,1254,5.0,973748587\n34,1258,4.0,973747877\n34,1259,4.0,973746961\n34,1262,4.0,973748587\n34,1263,4.0,973748427\n34,1267,5.0,973747459\n34,1270,3.0,973747017\n34,1272,4.0,973748427\n34,1276,5.0,973746569\n34,1287,5.0,973748228\n34,1298,3.0,973748443\n34,1299,4.0,973746569\n34,1320,3.0,973747797\n34,1321,4.0,973747895\n34,1339,4.0,973747964\n34,1340,3.0,973747877\n34,1358,5.0,973746613\n34,1387,3.0,973748196\n34,1396,4.0,973747658\n34,1407,4.0,973747924\n34,1464,1.0,973748964\n34,1527,3.0,973747685\n34,1580,3.0,973747621\n34,1589,4.0,973748979\n34,1597,3.0,973749013\n34,1610,4.0,973748228\n34,1617,4.0,973746214\n34,1645,3.0,973748979\n34,1653,4.0,973747685\n34,1676,3.0,973747777\n34,1690,3.0,973747797\n34,1754,3.0,973749026\n34,1923,4.0,973747327\n34,1931,5.0,973748614\n34,1952,2.0,973746627\n34,1954,3.0,973748277\n34,1965,3.0,973747591\n34,1997,5.0,973747911\n34,2009,4.0,973747643\n34,2028,4.0,973746494\n34,2064,5.0,973746961\n34,2076,5.0,973748919\n34,2105,4.0,973747765\n34,2288,5.0,973747609\n34,2289,5.0,973746929\n34,2311,4.0,973747752\n34,2338,2.0,973749049\n34,2353,3.0,973748307\n34,2366,4.0,973747877\n34,2396,4.0,973747245\n34,2407,3.0,973747685\n34,2527,4.0,973747697\n34,2528,3.0,973747723\n34,2529,4.0,973747643\n34,2553,3.0,973747609\n34,2571,5.0,973747559\n34,2599,4.0,973746995\n34,2644,4.0,973747877\n34,2648,4.0,973747848\n34,2657,4.0,973747723\n34,2662,4.0,973747591\n34,2716,2.0,973747877\n34,2762,4.0,973748508\n34,2793,3.0,973747985\n34,2797,3.0,973748713\n34,2858,4.0,973746365\n34,2863,4.0,973748787\n34,2871,4.0,973748523\n34,2901,4.0,973747740\n34,2908,5.0,973746655\n34,2916,4.0,973747658\n34,2921,4.0,973748350\n34,2944,3.0,973748196\n34,2949,3.0,973748228\n34,2951,4.0,973748254\n34,2971,4.0,973748809\n34,2985,3.0,973747643\n34,2987,4.0,973748598\n34,3032,4.0,973747740\n34,3035,5.0,973746668\n34,3062,4.0,973748228\n34,3066,3.0,973746214\n34,3074,4.0,973748361\n34,3168,4.0,973748614\n34,3196,5.0,973746655\n34,3256,3.0,973747385\n34,3286,1.0,973746896\n34,3361,4.0,973746974\n34,3386,4.0,973748941\n34,3418,3.0,973748196\n34,3467,4.0,973748336\n34,3468,4.0,973746707\n34,3471,4.0,973747591\n34,3504,5.0,973746668\n34,3508,4.0,973748350\n34,3527,4.0,973747658\n34,3551,4.0,973748523\n34,3634,5.0,973746734\n34,3702,5.0,973747591\n34,3703,4.0,973747539\n34,3706,4.0,973747482\n34,3727,4.0,973746760\n34,3811,5.0,973746597\n34,3917,4.0,973747938\n34,3927,4.0,973747685\n34,5060,3.0,973747017\n35,24,2.5,1174450075\n35,230,1.5,1174450069\n35,247,3.0,1174450074\n35,468,4.0,1174450073\n35,724,2.0,1174450068\n35,838,4.0,1174450072\n35,914,1.5,1174450057\n35,1029,1.5,1174450070\n35,1047,1.5,1174450053\n35,1188,0.5,1174450079\n35,1231,1.5,1174450076\n35,1249,2.5,1174450052\n35,1267,1.0,1174450054\n35,2105,3.5,1174450064\n35,2278,4.0,1174450063\n35,2289,3.5,1174450061\n35,2336,2.0,1174450051\n35,2968,0.5,1174450080\n35,3072,5.0,1174450056\n35,3755,2.5,1174450059\n36,6,3.0,847057147\n36,16,3.0,847057223\n36,18,4.0,847058210\n36,21,3.0,847056854\n36,25,4.0,847057119\n36,31,3.0,847057202\n36,32,5.0,847056901\n36,36,4.0,853005249\n36,41,3.0,847057696\n36,45,4.0,847057256\n36,50,4.0,847056901\n36,52,3.0,847057520\n36,55,4.0,853005393\n36,57,4.0,847057727\n36,58,5.0,847057363\n36,68,4.0,847058235\n36,111,4.0,847057202\n36,144,4.0,847057626\n36,145,3.0,847057301\n36,147,3.0,847057765\n36,151,3.0,847058110\n36,165,3.0,847056547\n36,216,3.0,847057385\n36,223,5.0,847057223\n36,232,5.0,847057504\n36,236,3.0,847057018\n36,242,4.0,847058186\n36,246,4.0,847057256\n36,248,2.0,847057444\n36,249,4.0,847057471\n36,252,3.0,847057061\n36,253,4.0,847056783\n36,256,3.0,847057136\n36,260,5.0,847057564\n36,261,4.0,847057120\n36,265,5.0,847057136\n36,272,4.0,847057240\n36,273,3.0,847057240\n36,277,3.0,847057202\n36,282,3.0,847056984\n36,288,4.0,847056803\n36,293,5.0,847057094\n36,296,4.0,847056510\n36,300,4.0,847056819\n36,306,5.0,847057482\n36,307,5.0,847057520\n36,308,5.0,847057594\n36,312,3.0,847057827\n36,315,5.0,847056984\n36,318,4.0,847056636\n36,321,5.0,847058110\n36,334,4.0,847058173\n36,345,4.0,847057385\n36,348,3.0,847057278\n36,350,3.0,847056948\n36,356,3.0,847056636\n36,357,4.0,847056901\n36,362,4.0,847057314\n36,368,3.0,847057119\n36,372,3.0,847057444\n36,381,3.0,847057328\n36,382,3.0,847057520\n36,412,5.0,847057626\n36,420,3.0,847056926\n36,431,4.0,847057363\n36,432,3.0,847056948\n36,434,3.0,847056636\n36,440,3.0,847056926\n36,454,3.0,847056783\n36,457,3.0,847056547\n36,469,4.0,847058159\n36,475,4.0,847057363\n36,480,3.0,847056636\n36,481,4.0,847057626\n36,491,3.0,847057385\n36,508,4.0,847057047\n36,509,4.0,847057018\n36,515,3.0,847057179\n36,521,4.0,847057776\n36,524,3.0,847057575\n36,527,5.0,847056901\n36,531,4.0,847057444\n36,532,3.0,847057415\n36,534,4.0,847057552\n36,539,3.0,847056854\n36,540,3.0,847057363\n36,543,3.0,847057328\n36,551,3.0,847057094\n36,586,2.0,847056854\n36,587,3.0,847056854\n36,588,3.0,847056547\n36,590,3.0,847056510\n36,592,3.0,847056510\n36,593,4.0,847056670\n36,597,3.0,847056819\n36,640,3.0,853005492\n36,720,4.0,847057827\n36,778,5.0,847058362\n36,788,2.0,853005800\n36,838,4.0,847058174\n36,1036,3.0,847057696\n36,1150,3.0,847057928\n36,1356,4.0,853005393\n36,1367,3.0,853005621\n37,1,4.0,981308121\n37,364,5.0,981308154\n37,595,5.0,981308140\n37,902,2.0,981308246\n37,912,5.0,981308213\n37,920,5.0,981308224\n37,940,3.0,981308294\n37,1193,5.0,981304357\n37,1196,3.0,981308309\n37,1246,5.0,981304357\n37,1307,5.0,981308234\n37,1907,5.0,981308177\n37,2028,4.0,981304316\n37,2081,5.0,981308154\n37,2085,4.0,981308140\n37,2273,3.0,981304291\n37,2858,4.0,981308009\n37,3357,4.0,981304887\n37,3481,4.0,981307942\n37,3538,4.0,981307942\n37,3564,4.0,981304357\n37,3751,3.0,981307942\n37,3948,4.0,981307968\n37,3977,3.0,981307838\n37,3996,5.0,981304524\n37,4011,3.0,981304524\n37,4014,4.0,981304557\n37,4015,3.0,981304635\n37,4018,5.0,981304606\n37,4034,5.0,981307823\n37,4054,3.0,981307823\n37,4069,4.0,981304524\n38,16,4.5,1389771630\n38,47,4.0,1416075134\n38,110,4.0,1390332781\n38,293,4.5,1389806635\n38,296,5.0,1389730389\n38,306,4.5,1389721577\n38,318,4.5,1389722765\n38,356,4.5,1390465407\n38,364,4.0,1389806534\n38,365,4.5,1389721943\n38,367,3.0,1416075151\n38,527,4.5,1392361524\n38,588,4.0,1389806512\n38,590,3.5,1389806500\n38,593,4.5,1392361495\n38,778,4.0,1389806694\n38,838,4.5,1389721548\n38,858,4.5,1389722583\n38,926,4.5,1416074954\n38,1078,4.5,1389721750\n38,1080,4.0,1389806738\n38,1136,4.0,1389722713\n38,1172,4.5,1389867840\n38,1213,4.0,1416075195\n38,1221,4.5,1389722598\n38,1244,4.0,1389721555\n38,1289,4.5,1389723752\n38,1682,4.0,1416075214\n38,1704,3.5,1416075186\n38,2000,3.0,1416075336\n38,2025,3.0,1389721837\n38,2068,5.0,1389722661\n38,2075,4.5,1389722398\n38,2092,3.5,1389721935\n38,2131,4.5,1389771994\n38,2194,3.0,1416075365\n38,2324,4.5,1389723398\n38,2571,4.0,1416075122\n38,2641,4.0,1389721528\n38,2686,4.0,1389721611\n38,2750,4.0,1389721880\n38,2858,4.0,1389722718\n38,2959,4.0,1389722656\n38,3328,5.0,1389721692\n38,3578,4.5,1416075166\n38,3677,5.0,1389723727\n38,4114,5.0,1389772593\n38,4226,4.5,1389722696\n38,4422,4.5,1389727818\n38,4862,3.5,1390248633\n38,4936,3.5,1389722066\n38,4973,4.0,1389722650\n38,4993,4.0,1389806551\n38,4995,4.5,1416075239\n38,5349,4.0,1416075232\n38,5418,4.5,1416075296\n38,5952,4.5,1416075161\n38,6107,5.0,1389772624\n38,6365,3.0,1416075350\n38,6539,4.0,1416075210\n38,6870,4.5,1389771156\n38,6874,4.0,1416075281\n38,6953,4.5,1390248823\n38,7063,4.5,1389724072\n38,7089,5.0,1389722376\n38,7153,4.5,1389722731\n38,7234,4.0,1416074901\n38,7327,4.5,1389727905\n38,7396,4.5,1389771972\n38,7438,3.5,1416075321\n38,7936,4.5,1389727866\n38,7941,5.0,1389727843\n38,8154,4.0,1416074904\n38,8197,4.5,1389727922\n38,8239,4.5,1389727802\n38,8656,4.5,1389770804\n38,26587,4.5,1389722725\n38,33794,4.0,1416075331\n38,44555,4.5,1389722602\n38,48682,5.0,1389723788\n38,49530,4.0,1449693140\n38,55118,4.5,1389771542\n38,55247,3.5,1449693163\n38,58559,4.5,1389722628\n38,59447,5.0,1389772590\n38,60069,4.0,1389721498\n38,64614,4.5,1449693148\n38,69761,5.0,1389723595\n38,71180,5.0,1389772585\n38,73344,4.5,1389727890\n38,76111,5.0,1389723643\n38,79132,4.0,1389722704\n38,86781,4.5,1390248771\n38,89759,5.0,1389723529\n38,96829,4.0,1404126075\n38,97826,5.0,1389723592\n38,98587,5.0,1389772588\n38,100843,4.5,1390150283\n38,101070,3.0,1416074797\n38,102753,5.0,1389723691\n38,103980,4.0,1390151672\n38,105197,4.5,1416074943\n38,105355,4.5,1404126065\n38,105769,4.5,1394397488\n38,106487,4.5,1392238405\n38,106782,4.0,1392124587\n38,107555,5.0,1389723664\n38,109374,4.0,1416074859\n38,110102,4.0,1413132672\n38,110586,4.5,1413132591\n38,134130,4.5,1445451791\n39,6,4.0,832523607\n39,10,5.0,832523129\n39,16,5.0,832525129\n39,21,3.0,833532967\n39,22,4.0,832523361\n39,31,3.0,832525157\n39,47,4.0,832523229\n39,50,3.0,832523307\n39,69,3.0,832523276\n39,70,5.0,832523201\n39,73,3.0,833532967\n39,76,3.0,832523411\n39,110,5.0,832523550\n39,145,3.0,832523738\n39,150,4.0,832523013\n39,153,3.0,832523045\n39,160,3.0,832523339\n39,162,5.0,832525181\n39,165,5.0,832523045\n39,168,3.0,832525093\n39,170,3.0,832525181\n39,175,3.0,833534728\n39,177,4.0,832523386\n39,180,5.0,832523276\n39,188,2.0,832523411\n39,198,5.0,832523229\n39,220,4.0,832523478\n39,223,4.0,832523276\n39,231,4.0,832523082\n39,253,4.0,832523151\n39,273,3.0,832523340\n39,285,4.0,832523436\n39,288,4.0,832523339\n39,293,4.0,832523276\n39,296,5.0,832523013\n39,315,4.0,832525157\n39,316,4.0,832523082\n39,328,5.0,832523229\n39,330,2.0,832523386\n39,332,3.0,832523386\n39,333,3.0,832523307\n39,338,3.0,832525157\n39,344,4.0,832523045\n39,353,5.0,832523201\n39,366,3.0,832523411\n39,380,5.0,832523013\n39,426,3.0,832523386\n39,434,4.0,832523129\n39,457,4.0,832523550\n39,553,4.0,832525093\n39,555,4.0,832525157\n39,588,3.0,832523045\n39,590,3.0,832523013\n39,592,3.0,832523013\n39,593,3.0,832523340\n39,595,3.0,832523082\n39,606,4.0,832523411\n39,611,5.0,832523386\n39,648,4.0,833532966\n39,662,5.0,833534266\n39,663,4.0,833534728\n39,743,4.0,833533335\n40,50,4.5,1466993349\n40,260,4.5,1466993118\n40,1136,5.0,1466993530\n40,1196,4.5,1466993354\n40,1197,5.0,1466993529\n40,1198,4.5,1466993346\n40,2959,4.0,1466993115\n40,4226,5.0,1466993204\n40,4993,4.5,1466993344\n40,7153,4.5,1466993342\n40,7361,4.5,1466993378\n40,8874,4.5,1466993229\n40,8961,4.5,1466993276\n40,33794,4.0,1466993488\n40,38061,5.0,1466993335\n40,44191,4.5,1466993481\n40,48516,5.0,1466993384\n40,48774,5.0,1466993158\n40,48780,5.0,1466993190\n40,49272,4.5,1466993355\n40,51255,5.0,1466993234\n40,51540,4.5,1466993333\n40,55820,4.5,1466993372\n40,58559,4.5,1466993341\n40,68157,4.0,1466993490\n40,68237,4.5,1466993381\n40,68954,4.5,1466993409\n40,70286,4.5,1466993382\n40,74458,3.5,1466993111\n40,79132,4.5,1466993067\n40,79702,4.5,1466993225\n40,99114,4.0,1466993108\n40,106920,5.0,1466993170\n40,109487,4.5,1466993210\n40,112556,4.0,1466993109\n40,116797,4.0,1466993120\n40,122882,4.5,1466993261\n40,122886,4.5,1466993084\n40,122904,4.5,1466993083\n40,127202,5.0,1466993138\n40,134130,4.0,1466993078\n40,152077,5.0,1466993247\n40,152081,4.0,1466993080\n41,2,3.5,1093888283\n41,29,4.0,1109812071\n41,110,4.0,1107100653\n41,130,4.5,1093889645\n41,165,4.0,1093889934\n41,172,3.5,1093886586\n41,173,4.0,1093887939\n41,196,3.0,1107100488\n41,208,4.0,1093889464\n41,233,4.0,1093889445\n41,253,4.0,1093889592\n41,260,4.0,1093886942\n41,262,4.5,1093888245\n41,316,3.5,1093887342\n41,327,4.0,1093887872\n41,329,4.0,1093887332\n41,332,4.0,1093887890\n41,353,4.0,1093889723\n41,356,3.5,1109811944\n41,377,4.5,1093889928\n41,380,4.0,1093889918\n41,426,3.0,1093887714\n41,435,4.0,1107100407\n41,442,3.5,1093887565\n41,457,4.0,1109812244\n41,541,5.0,1093886954\n41,592,4.0,1109816473\n41,610,3.0,1093886809\n41,648,4.0,1093889939\n41,674,4.0,1093886816\n41,736,4.0,1093889943\n41,748,3.5,1093889745\n41,780,4.0,1093889923\n41,849,4.0,1093887933\n41,917,4.0,1093888232\n41,919,4.0,1093888563\n41,924,5.0,1093886949\n41,986,3.5,1093888257\n41,1037,3.5,1093887515\n41,1073,4.0,1093888221\n41,1077,4.0,1093886957\n41,1097,4.0,1093887808\n41,1127,3.5,1093887255\n41,1129,4.5,1093887235\n41,1196,4.0,1093886850\n41,1200,4.0,1093887592\n41,1206,3.5,1093886864\n41,1210,4.0,1109812957\n41,1214,4.0,1093886842\n41,1220,5.0,1093888517\n41,1222,4.0,1109812135\n41,1240,4.0,1093886838\n41,1270,4.0,1093887801\n41,1298,5.0,1097643542\n41,1302,3.0,1093886607\n41,1320,4.0,1093886800\n41,1333,2.5,1093886688\n41,1356,4.0,1093887320\n41,1371,3.5,1093886662\n41,1372,4.0,1093887228\n41,1373,4.0,1093887305\n41,1374,4.5,1093887459\n41,1375,4.0,1093886628\n41,1376,4.0,1093887310\n41,1437,4.0,1093888850\n41,1527,4.0,1093887546\n41,1545,4.5,1093889656\n41,1552,3.5,1109816599\n41,1580,4.0,1093887797\n41,1591,4.0,1109817081\n41,1676,4.0,1107100370\n41,1690,4.0,1093886682\n41,1719,4.0,1093889432\n41,1747,3.0,1093886675\n41,1748,4.0,1093886696\n41,1772,4.0,1093888605\n41,1779,3.5,1109816608\n41,1876,3.5,1093887570\n41,1880,4.0,1093889528\n41,1917,4.0,1093887494\n41,1965,3.0,1093887748\n41,1997,4.0,1093886646\n41,2001,3.0,1093886639\n41,2003,2.5,1093886710\n41,2009,4.5,1093887358\n41,2011,4.0,1093886978\n41,2012,3.5,1093887247\n41,2025,5.0,1093888806\n41,2105,5.0,1093886731\n41,2117,5.0,1093887657\n41,2174,4.0,1093889070\n41,2232,3.5,1093887225\n41,2311,4.0,1093887270\n41,2322,3.5,1093887900\n41,2454,3.0,1093887778\n41,2455,3.0,1093886717\n41,2520,3.0,1093889767\n41,2521,3.5,1093889882\n41,2522,4.0,1093889880\n41,2528,4.0,1093886794\n41,2529,4.0,1093887555\n41,2530,3.0,1093887368\n41,2531,3.0,1093887455\n41,2532,3.0,1093887370\n41,2536,2.5,1093889776\n41,2553,4.0,1093887787\n41,2571,5.0,1093886846\n41,2600,3.5,1093887446\n41,2640,4.0,1093887000\n41,2641,3.5,1093886996\n41,2642,3.5,1093887641\n41,2729,3.5,1093888808\n41,2746,3.5,1093888619\n41,2808,4.0,1109813581\n41,2858,4.5,1093889955\n41,2877,4.0,1093888474\n41,2916,3.5,1093887350\n41,2918,4.0,1107100646\n41,2950,4.0,1093889376\n41,3033,4.0,1093886735\n41,3156,4.0,1093887653\n41,3175,4.0,1107100458\n41,3253,3.0,1093886668\n41,3300,4.0,1109812788\n41,3354,3.5,1107102322\n41,3471,4.0,1093887804\n41,3479,4.0,1093889047\n41,3556,4.0,1093889492\n41,3593,4.0,1093888032\n41,3638,3.5,1093887254\n41,3698,3.5,1093887241\n41,3699,3.5,1109816504\n41,3702,4.0,1093887379\n41,3703,4.0,1093887539\n41,3704,4.0,1093887217\n41,3745,3.5,1093886835\n41,3793,4.0,1109812900\n41,3802,3.5,1093887961\n41,3863,3.5,1093886804\n41,3910,4.0,1093888544\n41,3937,3.0,1093887835\n41,3986,3.5,1107100521\n41,4039,4.0,1093888299\n41,4232,4.0,1109815125\n41,4306,4.0,1093888109\n41,4370,4.0,1093887385\n41,4443,3.5,1109812764\n41,4446,4.0,1093886811\n41,4553,4.5,1107100717\n41,4625,3.5,1109814401\n41,4678,4.0,1097643815\n41,4691,2.5,1107100577\n41,4789,5.0,1093888629\n41,4811,4.0,1093888505\n41,4874,3.5,1093887686\n41,4936,4.0,1093888656\n41,5219,4.0,1109814362\n41,5349,3.5,1107100440\n41,5445,4.0,1093887670\n41,5459,3.5,1093887634\n41,5463,3.5,1093887667\n41,5490,3.5,1093889755\n41,5518,4.5,1093888754\n41,5522,4.0,1093887626\n41,5618,4.0,1093889018\n41,5694,3.5,1093888602\n41,5705,4.0,1093888574\n41,5881,3.0,1107100419\n41,5903,4.5,1093887315\n41,5981,4.0,1093887680\n41,6116,4.5,1107100678\n41,6157,4.0,1109816658\n41,6264,3.5,1093887841\n41,6303,4.0,1093887726\n41,6316,4.5,1093889299\n41,6333,4.0,1109812953\n41,6365,4.0,1093887300\n41,6385,4.5,1093889479\n41,6502,3.5,1109813193\n41,6537,3.5,1093887324\n41,6541,4.0,1107100382\n41,6645,4.0,1093887757\n41,6678,3.0,1093887605\n41,6725,5.0,1107100700\n41,6863,4.0,1093889696\n41,6934,4.0,1093887354\n41,6951,4.0,1093888293\n41,6979,4.5,1093887507\n41,7001,4.0,1093887733\n41,7060,4.5,1093888481\n41,7164,4.5,1109814931\n41,7373,4.0,1107100536\n41,7817,3.0,1093887692\n41,7991,4.0,1093887208\n41,8371,4.0,1107101191\n41,8499,4.0,1093888986\n41,8633,4.0,1093886983\n41,8644,4.5,1109816462\n41,8861,4.0,1109814414\n42,110,4.0,1473258241\n42,165,3.5,1473258327\n42,260,4.5,1473258165\n42,296,5.0,1473258343\n42,318,5.0,1473258147\n42,349,4.0,1473258352\n42,356,4.5,1473258274\n42,380,3.5,1473258331\n42,457,5.0,1473258276\n42,480,5.0,1473258322\n42,508,3.5,1473258311\n42,527,4.5,1473258231\n42,588,4.0,1473258320\n42,589,5.0,1473258239\n42,648,4.0,1473258424\n42,733,3.5,1473258305\n42,780,4.5,1473258392\n42,1036,5.0,1473258238\n42,1097,5.0,1473258304\n42,1196,5.0,1473258161\n42,1198,5.0,1473258167\n42,1200,5.0,1473258283\n42,1210,4.0,1473258220\n42,1291,4.5,1473258209\n42,1320,1.5,1473258445\n42,1370,3.5,1473258346\n42,1527,4.0,1473258360\n42,1573,3.0,1473258409\n42,1704,4.5,1473258315\n42,1721,4.0,1473258371\n42,2028,4.0,1473258242\n42,2571,3.5,1473258169\n42,2916,4.0,1473258329\n42,2985,4.0,1473258309\n42,3793,3.5,1473258388\n42,3996,2.5,1473258340\n42,4886,4.0,1473258318\n42,4993,5.0,1473258228\n42,5349,4.0,1473258373\n42,5952,4.5,1473258214\n42,7153,4.0,1473258181\n42,7502,5.0,1473258230\n42,8636,4.0,1473258386\n42,8961,4.0,1473258362\n42,33794,3.5,1473258269\n42,40815,3.5,1473258378\n42,44191,4.0,1473258374\n42,48394,4.0,1473258404\n42,48516,4.5,1473258313\n42,58559,4.5,1473258226\n42,59315,4.0,1473258244\n42,63082,3.0,1473258337\n42,68358,3.5,1473258248\n42,69844,4.5,1473258403\n42,70286,4.5,1473258440\n42,73017,4.0,1473258450\n42,74458,3.5,1473258356\n42,76093,4.5,1473258438\n42,79132,4.5,1473258272\n42,87232,4.0,1473258436\n42,89745,4.0,1473258396\n42,91529,3.5,1473258383\n42,98809,3.0,1473258427\n42,106489,2.0,1473258421\n42,106782,4.5,1473258369\n42,109487,4.0,1473258348\n42,111759,3.0,1473258291\n42,112852,3.5,1473258281\n42,122886,4.5,1473258287\n42,134853,2.0,1473258334\n43,1,4.0,974768260\n43,34,4.0,974768402\n43,39,4.0,974768903\n43,70,2.0,974767953\n43,104,2.0,974769666\n43,110,5.0,974767808\n43,216,1.0,974770180\n43,223,3.0,974768430\n43,231,3.0,974769902\n43,339,4.0,974769935\n43,356,5.0,974768654\n43,480,4.0,974767808\n43,500,3.0,974769730\n43,524,3.0,974767845\n43,527,5.0,974756704\n43,585,2.0,974770079\n43,588,3.0,974768798\n43,589,3.0,974767746\n43,608,5.0,974770589\n43,837,4.0,974769370\n43,838,4.0,974768872\n43,1035,4.0,974767808\n43,1210,3.0,974756766\n43,1380,3.0,974770180\n43,1457,3.0,974770325\n43,1476,4.0,974769818\n43,1513,4.0,974770137\n43,1517,1.0,974769125\n43,1544,2.0,974768022\n43,1569,5.0,974769863\n43,1580,4.0,974767917\n43,1612,4.0,974769312\n43,1673,3.0,974767879\n43,1726,1.0,974770474\n43,1777,3.0,974769125\n43,1806,1.0,974769482\n43,1821,3.0,974769561\n43,1883,3.0,974768903\n43,1895,2.0,974769902\n43,1907,3.0,974756766\n43,1958,4.0,974769253\n43,1968,3.0,974768604\n43,1997,5.0,974770536\n43,2000,2.0,974768471\n43,2003,2.0,974769658\n43,2004,1.0,974770180\n43,2054,2.0,974770079\n43,2081,4.0,974768965\n43,2082,2.0,974770281\n43,2109,3.0,974770104\n43,2144,3.0,974768999\n43,2150,3.0,974769207\n43,2160,1.0,974767879\n43,2291,3.0,974767845\n43,2321,4.0,974768632\n43,2355,4.0,974768632\n43,2384,4.0,974768872\n43,2390,3.0,974768285\n43,2395,3.0,974768834\n43,2396,4.0,974768225\n43,2447,3.0,974769843\n43,2454,3.0,974767917\n43,2455,3.0,974767845\n43,2496,2.0,974769730\n43,2539,2.0,974769659\n43,2622,2.0,974770360\n43,2671,4.0,974769586\n43,2683,2.0,974770325\n43,2688,3.0,974756704\n43,2690,4.0,974769370\n43,2700,2.0,974768402\n43,2706,4.0,974768903\n43,2723,3.0,974770104\n43,2770,3.0,974769963\n43,2791,2.0,974767746\n43,2804,4.0,974768367\n43,2836,3.0,974769659\n43,2858,5.0,974768349\n43,2879,4.0,974769561\n43,2978,2.0,974770180\n43,2997,4.0,974768604\n43,3005,2.0,974756766\n43,3052,3.0,974769253\n43,3114,4.0,974768260\n43,3156,2.0,974770248\n43,3160,4.0,974756976\n43,3173,3.0,974767983\n43,3189,4.0,974769843\n43,3247,3.0,974769963\n43,3254,2.0,974770007\n43,3255,3.0,974769034\n43,3286,2.0,974767808\n43,3301,2.0,974770281\n43,3409,4.0,974757072\n43,3450,2.0,974767953\n43,3481,2.0,974756976\n43,3510,4.0,974756976\n43,3515,4.0,974756976\n43,3525,3.0,974769561\n43,3535,1.0,974757072\n43,3555,2.0,974757005\n43,3624,3.0,974757005\n43,3712,2.0,974769818\n43,3753,4.0,974756976\n43,3773,2.0,974770227\n43,3868,1.0,974768834\n43,3869,1.0,974769902\n43,3917,2.0,974767809\n43,3948,2.0,974768798\n43,3969,4.0,974768104\n44,1,4.0,858707138\n44,3,5.0,858707194\n44,5,3.0,858707194\n44,6,3.0,858707194\n44,17,2.0,858707139\n44,25,3.0,858707139\n44,32,3.0,858707138\n44,62,5.0,858707138\n44,95,3.0,858707138\n44,104,4.0,858707248\n44,135,4.0,858707310\n44,141,2.0,858707138\n44,260,3.0,858707247\n44,494,3.0,858707194\n44,628,3.0,858707310\n44,637,2.0,858707310\n44,648,3.0,858707138\n44,733,4.0,858707194\n44,736,4.0,858707138\n44,780,5.0,858707138\n44,786,3.0,858707194\n44,788,3.0,858707248\n44,802,3.0,858707310\n44,805,4.0,858707310\n44,1047,3.0,858707464\n45,520,3.5,1140202251\n45,899,4.0,1140202396\n45,903,5.0,1140202299\n45,1199,4.0,1140202319\n45,1333,4.5,1140202390\n45,1639,3.0,1140202266\n45,1673,4.5,1140202294\n45,1748,4.5,1140202371\n45,2572,2.5,1140202408\n45,2692,4.5,1140202246\n45,2699,2.5,1140202271\n45,3052,2.5,1140202307\n45,3160,4.5,1140202374\n45,3307,4.5,1140202850\n45,3753,0.5,1140202339\n45,4235,4.0,1140202705\n45,4246,1.0,1140202402\n45,4995,2.5,1140202334\n45,5878,4.0,1140202838\n45,7064,5.0,1140202700\n45,26151,5.0,1140202636\n46,73,5.0,1366389910\n46,355,5.0,1366392410\n46,724,5.0,1366389683\n46,1270,5.0,1366392989\n46,1359,4.5,1366389877\n46,1515,5.0,1366389853\n46,1707,5.0,1366392466\n46,1965,5.0,1366389759\n46,2153,5.0,1366390158\n46,2379,5.0,1366389889\n46,2381,5.0,1366390952\n46,2383,5.0,1366390956\n46,2398,5.0,1366389797\n46,2539,5.0,1366389671\n46,2541,5.0,1366389694\n46,2605,5.0,1366389699\n46,2804,5.0,1366391610\n46,3157,4.5,1366389806\n46,3247,4.0,1366389728\n46,3868,5.0,1366389737\n46,4993,5.0,1366390915\n46,5952,5.0,1366391137\n46,7004,5.0,1366389915\n46,7153,5.0,1366390910\n46,8387,5.0,1366390963\n46,26614,5.0,1366391584\n46,33615,5.0,1366389926\n46,33794,5.0,1366392529\n46,49530,5.0,1366393248\n46,50872,5.0,1366393308\n46,58559,5.0,1366390187\n46,59018,5.0,1366393234\n46,79132,5.0,1366390899\n46,80463,5.0,1366393535\n46,81834,5.0,1366393591\n46,88125,5.0,1366392165\n46,89745,5.0,1366391603\n46,91529,5.0,1366391663\n46,98124,5.0,1366390127\n47,1,5.0,832228931\n47,2,5.0,832229657\n47,10,4.0,832228931\n47,32,4.0,832229007\n47,39,3.0,832229039\n47,50,4.0,832229039\n47,95,3.0,832229161\n47,110,5.0,832228979\n47,150,4.0,832228796\n47,153,4.0,832228859\n47,160,3.0,832229039\n47,161,5.0,832228931\n47,165,4.0,832228859\n47,173,5.0,832229561\n47,208,3.0,832228958\n47,231,3.0,832228906\n47,236,4.0,832229068\n47,253,3.0,832228958\n47,266,3.0,832229007\n47,288,4.0,832228979\n47,292,5.0,832228958\n47,296,4.0,832228796\n47,300,3.0,832228958\n47,315,4.0,832229068\n47,316,5.0,832228906\n47,329,4.0,832228906\n47,344,3.0,832228859\n47,349,4.0,832228859\n47,380,4.0,832228796\n47,410,3.0,832228979\n47,420,3.0,832229068\n47,434,4.0,832228931\n47,442,3.0,832229985\n47,457,5.0,832229879\n47,588,4.0,832228859\n47,592,3.0,832228796\n47,593,5.0,832229879\n47,595,3.0,832228906\n48,1,4.0,1318796720\n48,2,3.5,1322169967\n48,34,3.0,1322169717\n48,110,4.0,1319746142\n48,111,3.0,1439687078\n48,158,3.0,1322170542\n48,163,3.5,1322170475\n48,223,2.5,1322169932\n48,231,3.5,1322169695\n48,288,3.5,1319744320\n48,293,5.0,1305605384\n48,296,4.5,1410971707\n48,344,3.5,1322169641\n48,356,4.0,1319744507\n48,364,4.0,1319745852\n48,367,3.5,1322169697\n48,480,3.5,1322167325\n48,501,3.5,1367466511\n48,527,4.5,1305604773\n48,541,4.0,1322719227\n48,562,3.5,1368072767\n48,593,3.5,1322169588\n48,595,3.5,1322169669\n48,648,3.5,1322169653\n48,673,3.0,1322170930\n48,741,4.0,1414562221\n48,778,4.5,1305605614\n48,784,2.5,1419495810\n48,858,4.0,1367729182\n48,924,4.5,1425959805\n48,1097,3.5,1322169711\n48,1127,3.5,1319745467\n48,1148,3.5,1318721589\n48,1175,4.0,1305602381\n48,1185,4.0,1303371127\n48,1206,3.5,1316496812\n48,1214,3.5,1322169763\n48,1222,3.5,1322167612\n48,1240,3.5,1410971787\n48,1258,4.0,1322169973\n48,1270,3.5,1322169645\n48,1274,3.5,1318721485\n48,1293,4.0,1412452845\n48,1407,2.5,1412457717\n48,1485,3.5,1322170149\n48,1499,2.5,1412471587\n48,1527,3.5,1322169801\n48,1544,3.5,1322167341\n48,1580,3.5,1322167292\n48,1591,3.0,1322171839\n48,1676,3.0,1419495799\n48,1682,3.5,1322169947\n48,1721,4.0,1322169693\n48,1732,3.5,1318725610\n48,1784,4.5,1305604618\n48,1882,3.0,1322171335\n48,1884,4.5,1305605225\n48,1917,3.5,1322169954\n48,1921,4.0,1305604875\n48,1923,3.5,1319744666\n48,1997,3.5,1322167149\n48,2006,3.0,1322170564\n48,2167,3.5,1322170785\n48,2232,3.5,1415258524\n48,2288,3.5,1412321963\n48,2291,4.0,1322170045\n48,2294,3.0,1322170922\n48,2318,3.5,1324101279\n48,2324,4.5,1319746801\n48,2329,4.5,1305605468\n48,2355,3.5,1318835468\n48,2455,2.5,1412471207\n48,2542,3.5,1322170518\n48,2571,4.5,1322167116\n48,2617,3.5,1322167802\n48,2692,3.0,1322170331\n48,2700,3.5,1322170196\n48,2706,3.5,1322169924\n48,2710,3.0,1322170066\n48,2722,2.5,1412470814\n48,2762,3.5,1367729581\n48,2840,3.0,1412471725\n48,2959,5.0,1305604734\n48,2987,3.5,1318835841\n48,2997,3.0,1319744255\n48,3000,5.0,1305605572\n48,3114,3.5,1318797469\n48,3147,4.0,1319746199\n48,3527,3.0,1322170644\n48,3578,5.0,1305605670\n48,3677,4.5,1367466490\n48,3717,3.0,1322171045\n48,3745,3.5,1322173362\n48,3751,3.0,1316922546\n48,3793,3.5,1410971832\n48,3949,4.5,1305604501\n48,3968,3.0,1319748211\n48,4011,4.0,1318725545\n48,4016,3.5,1318835610\n48,4022,3.5,1322167231\n48,4226,3.5,1405181557\n48,4270,3.0,1322167807\n48,4306,4.0,1305604576\n48,4369,3.5,1303371101\n48,4446,3.5,1322171604\n48,4720,3.0,1319745406\n48,4878,4.5,1305605359\n48,4886,3.5,1318796382\n48,4902,3.5,1425960044\n48,4973,5.0,1305605431\n48,4975,3.5,1305602329\n48,4993,4.5,1319748409\n48,4995,4.0,1322168606\n48,5010,4.0,1322170988\n48,5146,4.0,1318724175\n48,5218,4.0,1317417327\n48,5225,3.0,1322169255\n48,5349,3.5,1322167657\n48,5459,3.0,1322167294\n48,5502,3.5,1322167764\n48,5570,3.5,1322167056\n48,5618,4.5,1316394238\n48,5669,4.0,1318694896\n48,5679,3.5,1322167180\n48,5690,4.5,1305605593\n48,5902,4.0,1317612908\n48,5903,3.5,1320820975\n48,5952,4.0,1319748416\n48,5971,4.0,1305606854\n48,5995,4.0,1316535850\n48,6016,4.5,1305606326\n48,6214,3.5,1319744880\n48,6223,3.5,1320505613\n48,6242,3.0,1412478838\n48,6283,3.5,1317277244\n48,6291,3.0,1367774627\n48,6350,4.0,1316394075\n48,6365,3.5,1322167119\n48,6373,4.0,1319744628\n48,6377,4.0,1317413795\n48,6539,4.0,1319745991\n48,6711,3.0,1317612608\n48,6857,3.5,1318796409\n48,6890,3.0,1322871160\n48,6934,3.0,1322167122\n48,6953,3.5,1322174318\n48,7099,4.0,1318721568\n48,7147,3.5,1322170898\n48,7153,4.0,1319748414\n48,7235,3.0,1368072937\n48,7254,4.0,1319744413\n48,7256,4.5,1412154802\n48,7360,2.5,1414562338\n48,7361,4.5,1305605332\n48,7373,3.5,1322167707\n48,7382,3.0,1368060971\n48,7982,4.0,1320701272\n48,8132,5.0,1356760541\n48,8157,2.5,1333323786\n48,8360,3.0,1317417331\n48,8376,3.5,1322171670\n48,8582,4.0,1405650065\n48,8636,4.0,1322167658\n48,8645,3.0,1341268936\n48,8784,4.5,1305604460\n48,8807,4.0,1319746322\n48,8874,4.5,1305605527\n48,8906,2.5,1319744919\n48,8907,2.5,1339446902\n48,8950,4.5,1305605199\n48,8957,3.0,1367968341\n48,8961,3.5,1317413816\n48,8965,3.0,1339447083\n48,26662,4.0,1318721824\n48,26776,4.0,1316409175\n48,27156,4.0,1414850854\n48,27523,3.5,1319743664\n48,27660,3.5,1425960095\n48,27713,4.0,1319744848\n48,27722,2.5,1325534468\n48,27731,4.0,1318750105\n48,27773,3.5,1316416730\n48,27800,3.5,1318796541\n48,27801,3.0,1341268726\n48,27838,3.0,1367794617\n48,27846,4.5,1305603014\n48,27850,3.5,1320128368\n48,27878,4.0,1316537666\n48,30793,3.5,1319744696\n48,30867,4.0,1369722162\n48,31410,4.5,1322719969\n48,31435,5.0,1305603880\n48,31658,4.5,1316416643\n48,31878,3.0,1341268857\n48,32031,3.0,1339446959\n48,32554,3.0,1319743714\n48,32562,4.0,1316535636\n48,32587,4.5,1305605408\n48,33154,4.0,1316536060\n48,33166,3.5,1322167635\n48,33615,3.5,1322167363\n48,33679,3.5,1319744759\n48,34323,3.0,1414562300\n48,34405,3.5,1319745276\n48,36276,2.5,1414561763\n48,36535,3.5,1317613176\n48,37729,3.0,1333324895\n48,37830,3.5,1317417268\n48,38038,3.5,1303371215\n48,40629,4.5,1305604971\n48,41569,3.5,1322174118\n48,41769,3.0,1320505644\n48,42723,3.0,1367968282\n48,44022,3.0,1322167429\n48,44191,3.5,1319745902\n48,44397,2.5,1367968590\n48,44555,4.5,1305604909\n48,44633,4.0,1316491569\n48,44828,3.0,1414561107\n48,44974,3.5,1319745453\n48,45431,4.0,1317417313\n48,45517,4.0,1317417295\n48,45720,3.0,1322168181\n48,45950,4.0,1367729197\n48,46578,3.5,1317612663\n48,46948,3.5,1317415599\n48,46976,3.0,1415388297\n48,47099,3.5,1322168130\n48,47124,3.0,1339447216\n48,47404,4.0,1316922590\n48,47610,4.0,1319745108\n48,47999,4.0,1322167913\n48,48043,3.5,1322167725\n48,48082,4.0,1305605032\n48,48385,3.5,1319745148\n48,48394,4.0,1316495346\n48,48414,3.0,1339447153\n48,48774,3.0,1322171427\n48,48780,3.5,1322171197\n48,48982,3.5,1317415398\n48,48997,4.0,1322167204\n48,49278,3.5,1322167397\n48,50583,3.0,1369722178\n48,50601,4.0,1305605741\n48,50872,3.5,1309052092\n48,51255,3.5,1317612601\n48,51540,3.0,1319745336\n48,51662,4.0,1322171094\n48,52281,3.5,1371359811\n48,52287,3.0,1339446347\n48,52319,4.0,1319745882\n48,52328,2.5,1415388549\n48,52458,3.0,1322167257\n48,52722,3.0,1322167662\n48,53121,2.5,1339447162\n48,53326,2.0,1414561720\n48,53460,3.0,1333325498\n48,53519,3.0,1428727629\n48,53883,4.0,1322169136\n48,53894,4.0,1305602945\n48,53996,3.5,1322167586\n48,54272,2.5,1317417320\n48,54503,3.5,1319746126\n48,54995,4.0,1412478977\n48,55247,4.5,1305604999\n48,55280,4.0,1305604648\n48,55442,4.5,1305605708\n48,55444,4.5,1305605690\n48,55768,3.0,1339447164\n48,55814,4.0,1316494426\n48,55908,3.5,1319745424\n48,55995,3.0,1339447168\n48,56069,2.5,1414561470\n48,56095,3.0,1322967502\n48,56145,3.5,1319743116\n48,56174,3.0,1412471624\n48,56339,4.0,1319747802\n48,56367,3.5,1320709035\n48,56607,4.0,1319748038\n48,56757,3.0,1412457389\n48,56782,3.5,1319747076\n48,56908,4.0,1319746579\n48,57274,3.5,1405916134\n48,57368,4.5,1305605784\n48,57453,3.5,1319743302\n48,57504,4.0,1317413827\n48,57640,3.0,1322167708\n48,57669,4.0,1322719278\n48,57980,3.0,1322165598\n48,58299,3.5,1319746873\n48,58347,3.5,1319744824\n48,58554,3.5,1317621831\n48,58559,4.0,1316536208\n48,59118,4.5,1305605159\n48,59141,3.5,1369880284\n48,59315,4.0,1322167983\n48,59387,4.0,1322276523\n48,59684,5.0,1305605115\n48,59784,3.5,1318796568\n48,60069,4.0,1316496606\n48,60126,3.0,1305603027\n48,60161,3.5,1317414089\n48,60291,4.0,1367774333\n48,60684,3.5,1322167566\n48,60763,3.5,1371359903\n48,61240,4.5,1305605640\n48,61323,3.5,1319744734\n48,62203,4.5,1305605093\n48,62250,3.0,1322966900\n48,62956,3.5,1305603309\n48,62999,3.5,1322167367\n48,63082,3.5,1322167677\n48,63131,2.5,1368412407\n48,63808,3.5,1322719467\n48,63859,3.5,1305603082\n48,64575,4.0,1319746554\n48,64716,4.0,1319747765\n48,64957,3.5,1319746373\n48,64969,3.0,1322168337\n48,64983,3.5,1305603272\n48,64993,4.0,1317405562\n48,65037,5.0,1305603894\n48,65261,3.5,1316539661\n48,65514,4.0,1305603793\n48,66097,3.5,1317405737\n48,66371,3.5,1316494407\n48,67197,3.5,1322167931\n48,67255,4.0,1305605077\n48,67408,3.0,1339446804\n48,67734,3.0,1322167961\n48,68157,4.0,1305605254\n48,68237,4.0,1316495274\n48,68358,3.0,1414850769\n48,68945,3.5,1405650223\n48,68954,4.0,1316537546\n48,69122,4.5,1305605932\n48,69526,3.0,1305603095\n48,69644,3.5,1322167425\n48,69712,3.5,1319748155\n48,69757,4.5,1305605276\n48,70159,4.0,1319746947\n48,70286,4.5,1305605762\n48,70533,4.0,1318721876\n48,70567,4.0,1305603934\n48,71033,4.0,1316493344\n48,71057,3.5,1317417335\n48,71264,3.5,1317414139\n48,71282,3.0,1371530476\n48,71379,4.0,1305605834\n48,71462,4.0,1316416612\n48,71468,3.0,1322167866\n48,71520,3.5,1305603492\n48,71535,3.5,1319746905\n48,71579,3.5,1319745128\n48,71899,5.0,1305605866\n48,72104,3.0,1414850946\n48,72209,3.0,1339446991\n48,72393,3.5,1319745750\n48,72731,3.0,1414562131\n48,72741,3.5,1324101310\n48,72998,4.5,1305605907\n48,73017,4.0,1319745634\n48,73268,3.0,1305603556\n48,73321,3.0,1319745660\n48,73392,3.5,1316539530\n48,73664,3.0,1317415585\n48,73881,4.0,1317277178\n48,74228,3.5,1428726464\n48,74677,4.0,1320128370\n48,74789,3.5,1319745518\n48,76093,4.0,1305604944\n48,76173,5.0,1368249994\n48,76251,3.5,1319744484\n48,77307,4.0,1319745178\n48,77427,1.5,1341268695\n48,77561,3.5,1322167990\n48,77837,4.5,1305604806\n48,78499,4.0,1318721995\n48,79029,4.0,1318694932\n48,79091,4.0,1319743447\n48,79132,4.0,1305604858\n48,79357,3.5,1320700986\n48,79702,4.0,1309051349\n48,79868,3.5,1319745212\n48,80463,4.5,1305604694\n48,80586,3.5,1368483486\n48,80831,2.5,1412309172\n48,80862,3.5,1321425442\n48,80906,4.0,1316416681\n48,81018,3.5,1318796373\n48,81562,3.5,1322167089\n48,81564,3.5,1318742711\n48,81591,4.0,1367475412\n48,81845,3.5,1415388786\n48,81847,3.5,1318796556\n48,82461,3.5,1305603954\n48,82667,3.5,1341268645\n48,83132,3.5,1368499219\n48,83134,3.5,1368250070\n48,83803,3.0,1414850824\n48,84152,4.0,1341268624\n48,84187,4.5,1367774277\n48,84772,2.5,1414851036\n48,84944,4.0,1318796696\n48,84952,4.0,1320907274\n48,85412,3.5,1319744151\n48,85414,4.0,1317277376\n48,85510,3.0,1319743782\n48,85736,4.5,1305606322\n48,85774,4.0,1367724708\n48,85788,3.5,1319743415\n48,85796,3.0,1369722191\n48,86298,4.0,1319744439\n48,86332,3.5,1317277357\n48,86347,3.5,1322169386\n48,86721,3.0,1368499410\n48,87222,4.0,1318721576\n48,87232,4.0,1319744187\n48,87306,2.5,1415388667\n48,87430,3.0,1317277197\n48,87520,3.0,1317277220\n48,88140,2.5,1410972161\n48,88744,3.5,1316907766\n48,89745,3.0,1414851073\n48,89837,2.5,1414849679\n48,90469,3.0,1329101733\n48,90531,2.5,1368483363\n48,90647,3.5,1368249365\n48,90746,3.5,1331430993\n48,91414,3.0,1368499298\n48,91529,3.5,1371530093\n48,91542,3.5,1371360050\n48,92058,2.0,1341268688\n48,92420,2.5,1415388593\n48,93272,2.5,1341268657\n48,93838,3.0,1414562176\n48,93840,2.5,1414562366\n48,95167,5.0,1368499305\n48,95311,4.0,1367774366\n48,95375,3.0,1414850934\n48,95510,3.0,1410972137\n48,95543,3.0,1368499835\n48,95858,4.0,1412494161\n48,95875,3.0,1356760463\n48,96281,3.0,1368499321\n48,96606,3.0,1415388917\n48,96610,3.0,1371530088\n48,96737,4.0,1356760430\n48,96821,4.0,1355724506\n48,97188,2.5,1410972337\n48,97225,3.5,1367725555\n48,97752,4.5,1356760414\n48,97913,3.5,1368483794\n48,97921,3.5,1367725590\n48,97938,3.5,1367786421\n48,97957,4.0,1414839828\n48,98056,3.0,1371530237\n48,98243,2.5,1412497730\n48,98809,4.0,1367728315\n48,99114,4.0,1405916092\n48,99145,4.0,1367725833\n48,100556,4.0,1410972561\n48,101142,3.5,1368499380\n48,102125,2.5,1428726967\n48,102445,4.0,1414562096\n48,103042,3.5,1410972280\n48,103228,2.0,1412570841\n48,103249,2.5,1412570882\n48,103253,2.0,1412570808\n48,103299,3.5,1414561040\n48,103335,3.0,1414850862\n48,103688,3.0,1410972358\n48,104841,2.5,1415388310\n48,106002,2.5,1412554038\n48,106072,2.5,1412561078\n48,106204,3.0,1405181551\n48,106489,4.0,1404110083\n48,106696,3.5,1410972517\n48,107406,2.5,1412570817\n48,107769,2.5,1410972202\n48,107953,2.5,1412583710\n48,108190,3.0,1410972239\n48,108945,2.5,1410972320\n48,109487,3.5,1425960344\n48,109578,3.0,1412553084\n48,109673,2.5,1410972264\n48,109846,3.0,1412553201\n48,109848,2.5,1428726440\n48,109850,2.5,1412553055\n48,110102,3.5,1410972164\n48,110127,3.0,1410972074\n48,110501,3.0,1419495256\n48,110553,3.0,1410972132\n48,110591,2.5,1405181398\n48,110655,2.5,1412553003\n48,110730,3.5,1410972058\n48,111362,3.5,1405649924\n48,111364,2.5,1410972102\n48,111659,2.5,1412552876\n48,111759,4.0,1410972752\n48,112175,3.5,1412552728\n48,112370,2.5,1412552534\n48,112515,2.5,1428726233\n48,112623,3.5,1425960080\n48,112852,3.5,1412550699\n48,113741,3.0,1415388454\n48,114180,2.5,1428726245\n48,114935,3.0,1428726219\n48,115149,2.5,1428727019\n48,115534,2.0,1428726405\n48,115617,3.0,1428726202\n48,115624,3.0,1414562891\n48,118696,2.5,1428726241\n49,2,5.0,978040739\n49,60,3.0,978039958\n49,161,4.0,978041312\n49,173,2.0,978040891\n49,258,1.0,978040922\n49,303,3.0,978040023\n49,329,3.0,978039850\n49,356,4.0,978041224\n49,421,2.0,978039693\n49,466,4.0,978041370\n49,524,3.0,978039301\n49,590,3.0,978039629\n49,592,2.0,978039693\n49,653,4.0,978040023\n49,674,3.0,978039922\n49,688,3.0,978040871\n49,733,3.0,978039850\n49,736,4.0,978040768\n49,750,4.0,978041037\n49,780,4.0,978041342\n49,897,4.0,978041189\n49,912,5.0,978041037\n49,919,5.0,978039514\n49,920,4.0,978039263\n49,952,3.0,978039654\n49,969,5.0,978039514\n49,976,4.0,978041189\n49,1017,3.0,978039693\n49,1073,5.0,978039629\n49,1085,5.0,978039693\n49,1127,4.0,978039584\n49,1129,3.0,978039819\n49,1196,4.0,978039557\n49,1197,4.0,978039557\n49,1198,5.0,978039514\n49,1204,5.0,978039514\n49,1208,4.0,978041091\n49,1210,3.0,978039301\n49,1242,4.0,978041122\n49,1254,4.0,978039557\n49,1262,5.0,978039514\n49,1272,5.0,978041122\n49,1287,5.0,978039584\n49,1291,5.0,978039584\n49,1374,3.0,978039753\n49,1375,4.0,978039922\n49,1376,4.0,978039795\n49,1391,3.0,978041342\n49,1580,3.0,978039714\n49,1676,2.0,978041312\n49,1927,4.0,978041037\n49,2013,1.0,978039958\n49,2054,2.0,978039891\n49,2088,2.0,978040828\n49,2094,2.0,978040023\n49,2105,3.0,978039891\n49,2115,5.0,978039753\n49,2161,4.0,978039850\n49,2202,5.0,978041152\n49,2287,5.0,978041250\n49,2366,3.0,978039557\n49,2402,2.0,978041370\n49,2406,4.0,978039753\n49,2414,3.0,978039795\n49,2430,5.0,978039753\n49,2471,4.0,978040828\n49,2524,2.0,978039263\n49,2537,1.0,978040922\n49,2662,4.0,978041189\n49,2669,3.0,978041224\n49,2748,3.0,978040922\n49,2815,1.0,978041370\n49,2816,1.0,978041398\n49,2817,1.0,978041398\n49,2871,3.0,978039629\n49,2941,3.0,978041279\n49,2944,4.0,978041152\n49,2968,4.0,978039629\n49,2987,5.0,978039629\n49,3062,4.0,978041224\n49,3066,3.0,978041312\n49,3196,4.0,978041064\n49,3247,3.0,978039301\n49,3269,2.0,978039988\n49,3406,4.0,978041189\n49,3412,3.0,978039891\n49,3417,5.0,978039795\n49,3441,2.0,978041342\n49,3461,2.0,978039629\n49,3519,2.0,978041312\n49,3628,4.0,978041224\n49,3643,4.0,978041279\n49,3755,4.0,978039891\n49,3836,3.0,978041189\n49,3927,3.0,978039693\n49,3959,4.0,978039557\n49,4042,3.0,978041224\n49,4047,5.0,978041122\n49,5060,4.0,978041091\n50,10,4.0,847412607\n50,21,3.0,847412676\n50,39,2.0,847412692\n50,47,3.0,847412643\n50,95,3.0,847412837\n50,110,4.0,847412607\n50,150,3.0,847412515\n50,160,3.0,847412712\n50,161,4.0,847412607\n50,165,4.0,847412543\n50,185,3.0,847412606\n50,208,3.0,847412606\n50,231,1.0,847412567\n50,253,3.0,847412628\n50,282,3.0,847412811\n50,292,4.0,847412586\n50,296,4.0,847412515\n50,315,3.0,847412812\n50,316,3.0,847412567\n50,337,3.0,847412859\n50,339,4.0,847412628\n50,344,2.0,847412544\n50,349,3.0,847412567\n50,356,4.0,847412567\n50,357,4.0,847412692\n50,367,4.0,847412643\n50,368,4.0,847413071\n50,377,3.0,847412643\n50,380,3.0,847412515\n50,420,3.0,847412692\n50,434,3.0,847412586\n50,440,4.0,847412711\n50,442,3.0,847412812\n50,454,3.0,847412628\n50,457,3.0,847413020\n50,480,4.0,847412586\n50,509,3.0,847412812\n50,527,4.0,847412676\n50,539,3.0,847412676\n50,553,3.0,847413043\n50,587,3.0,847412659\n50,589,5.0,847412628\n50,590,3.0,847412515\n50,597,3.0,847412659\n50,780,4.0,847412879\n50,786,3.0,847413043\n51,913,4.0,974729137\n51,1636,1.0,974728763\n51,1888,3.0,974728763\n51,1948,4.0,974728763\n51,1959,4.0,974729199\n51,1968,4.0,974728763\n51,2369,3.0,974728999\n51,2396,2.0,974729270\n51,2605,5.0,974729067\n51,2670,5.0,974729270\n51,2683,4.0,974728936\n51,2688,4.0,974729067\n51,2699,4.0,974728936\n51,2701,2.0,974729345\n51,2713,5.0,974729137\n51,2722,5.0,974728999\n51,2724,2.0,974729270\n51,2734,3.0,974729165\n51,2761,5.0,974729105\n51,2763,4.0,974729315\n51,2826,5.0,974728936\n51,2827,4.0,974728936\n51,2840,3.0,974729270\n51,2841,5.0,974729270\n51,2881,5.0,974729032\n51,2987,5.0,974729315\n51,3157,5.0,974729270\n51,3175,4.0,974729067\n51,3219,5.0,974729199\n51,3510,5.0,974728763\n51,3543,4.0,974729032\n52,357,4.5,1231766465\n52,365,1.0,1231763607\n52,461,3.5,1231770596\n52,866,4.0,1231767051\n52,1088,4.0,1231766626\n52,1295,4.0,1231766951\n52,1614,4.0,1231763120\n52,1639,1.0,1231770503\n52,1735,5.0,1231766895\n52,1969,0.5,1231763493\n52,2338,1.0,1231766853\n52,2396,4.0,1231766442\n52,2408,0.5,1231763521\n52,2806,1.0,1231763632\n52,2858,4.5,1231767339\n52,3155,4.5,1231763213\n52,3255,4.0,1231766571\n52,3793,3.5,1231766114\n52,3854,5.0,1231769875\n52,3967,5.0,1231767802\n52,3987,1.0,1231763560\n52,3996,5.0,1231769199\n52,4014,5.0,1231769672\n52,4228,2.0,1231763745\n52,4246,5.0,1231769802\n52,4896,5.0,1231767951\n52,4973,5.0,1231767291\n52,5222,3.5,1231770278\n52,5296,2.0,1231763949\n52,5380,4.5,1231763660\n52,5525,4.0,1231769598\n52,5791,4.5,1231769623\n52,5812,4.5,1231769923\n52,5816,4.5,1231767944\n52,5878,4.0,1231766768\n52,5992,5.0,1231769951\n52,6058,1.0,1231763805\n52,6218,4.0,1231769685\n52,6370,4.5,1231769942\n52,6539,3.5,1231769278\n52,6776,3.5,1231769628\n52,6807,5.0,1231766495\n52,6942,4.0,1231769696\n52,7160,4.5,1231766735\n52,7615,4.0,1231767245\n52,8368,5.0,1231767956\n52,8781,3.5,1231763467\n52,8918,3.5,1231770591\n52,8966,4.0,1231767125\n52,8983,3.5,1231769937\n52,27020,5.0,1231770554\n52,27721,5.0,1231769580\n52,30825,3.5,1231766722\n52,31408,4.5,1231769751\n52,37727,2.0,1231763882\n52,38886,2.0,1231763840\n52,39183,4.5,1231769880\n52,40815,5.0,1231766690\n52,41571,3.0,1231767136\n52,43744,4.0,1231770409\n52,44555,4.5,1231767111\n52,45447,3.5,1231766676\n52,50872,3.5,1231769289\n52,51094,3.5,1231770833\n52,52545,4.0,1231770796\n52,54001,5.0,1231763293\n52,55451,4.0,1231770565\n52,60950,2.0,1231769833\n53,111,4.0,955192120\n53,165,4.0,955193387\n53,238,1.0,955192933\n53,392,1.0,955192933\n53,420,3.0,955193660\n53,421,1.0,955192933\n53,484,1.0,955192933\n53,968,4.0,955192636\n53,1193,5.0,955192140\n53,1370,3.0,955193310\n53,1580,3.0,955193387\n53,1610,5.0,955193310\n53,1772,4.0,955193660\n53,1911,2.0,955192367\n53,1917,5.0,955193078\n53,1995,2.0,955191985\n53,2002,3.0,955193468\n53,2093,1.0,955192692\n53,2336,4.0,955192388\n53,2368,3.0,955193256\n53,2394,1.0,955192663\n53,2396,4.0,955192739\n53,2412,1.0,955193574\n53,2433,5.0,955192345\n53,2470,4.0,955193224\n53,2690,4.0,955192491\n53,2699,4.0,955192282\n53,2700,1.0,955192739\n53,2709,1.0,955192603\n53,2710,3.0,955192307\n53,2716,3.0,955192417\n53,2717,3.0,955192010\n53,2720,1.0,955192491\n53,2761,1.0,955192571\n53,2762,5.0,955192739\n53,2840,2.0,955192739\n53,2912,1.0,955193387\n53,2986,4.0,955193724\n53,2987,1.0,955192779\n53,2997,1.0,955192307\n53,3107,4.0,955193337\n53,3114,1.0,955192760\n53,3160,2.0,955192571\n53,3178,4.0,955192100\n53,3274,4.0,955193433\n53,3434,4.0,955193724\n54,318,4.5,1352835937\n54,1027,4.0,1352835615\n54,1088,5.0,1352836913\n54,1201,4.5,1352835880\n54,1203,4.5,1352835987\n54,1333,2.0,1352836775\n54,1680,4.0,1352836714\n54,2150,4.0,1352835557\n54,2471,2.5,1352832722\n54,2571,3.5,1352836545\n54,2991,3.5,1352835678\n54,3258,4.0,1352832850\n54,3462,3.0,1352837063\n54,3638,4.0,1352832755\n54,3906,4.0,1352836272\n54,4467,0.5,1352832871\n54,4963,4.5,1352836371\n54,5418,4.5,1352836374\n54,6378,4.5,1352837049\n54,8533,4.5,1352836618\n54,8665,4.5,1352836376\n54,26160,3.5,1352834428\n54,26294,4.0,1352837008\n54,30749,3.5,1352836442\n54,33794,1.0,1352836450\n54,44197,4.5,1352833560\n54,44199,5.0,1352835951\n54,48516,4.5,1352836485\n54,48660,1.0,1352834067\n54,48780,5.0,1352836366\n54,48997,2.0,1352833048\n54,54286,4.5,1352836377\n54,55820,1.5,1352836517\n54,56941,5.0,1352836738\n54,58803,4.5,1352836666\n54,60069,5.0,1352836154\n54,68157,4.5,1352836322\n54,69640,3.5,1352833131\n54,71899,4.0,1352836290\n54,77846,5.0,1352835980\n54,78499,4.5,1352832825\n54,79132,2.5,1352836507\n54,91355,3.5,1352834483\n54,96655,5.0,1352834564\n55,1,3.0,855926941\n55,5,3.0,855926988\n55,6,5.0,855926988\n55,7,2.0,855926988\n55,9,3.0,855927315\n55,32,4.0,855926941\n55,65,5.0,855927315\n55,74,3.0,855927438\n55,79,3.0,855927172\n55,95,3.0,855926941\n55,100,3.0,855927437\n55,104,5.0,855927131\n55,112,3.0,855927131\n55,141,4.0,855926941\n55,260,5.0,855927131\n55,376,4.0,855927131\n55,494,3.0,855926988\n55,608,3.0,855926988\n55,609,3.0,855927438\n55,637,4.0,855927172\n55,648,5.0,855926941\n55,653,4.0,855927131\n55,707,2.0,855927438\n55,708,3.0,855927131\n55,719,4.0,855927315\n55,724,4.0,855927438\n55,733,4.0,855926988\n55,736,3.0,855926941\n55,737,3.0,855927315\n55,761,2.0,855927438\n55,780,5.0,855926941\n55,784,3.0,855927131\n55,786,4.0,855926988\n55,788,5.0,855927131\n55,802,3.0,855927315\n55,805,5.0,855927172\n55,832,5.0,855927315\n55,1073,3.0,855926988\n56,1,4.0,1467004817\n56,10,4.0,1467008381\n56,16,4.0,1467004892\n56,21,2.0,1470350794\n56,29,4.0,1467004961\n56,39,5.0,1467003294\n56,47,4.0,1467004867\n56,50,4.0,1467004833\n56,101,4.0,1467007782\n56,104,4.0,1467005618\n56,111,4.0,1467005298\n56,147,2.0,1467003504\n56,160,2.0,1467004905\n56,176,4.0,1467005072\n56,216,4.0,1467004949\n56,223,4.0,1467004879\n56,231,2.0,1470350790\n56,246,5.0,1467004938\n56,250,5.0,1467005164\n56,260,2.0,1470350831\n56,292,2.0,1467006124\n56,293,4.0,1467002990\n56,296,4.0,1467003119\n56,318,4.0,1473803992\n56,333,2.0,1470350811\n56,337,4.0,1468471074\n56,342,2.0,1467004922\n56,356,4.0,1467002971\n56,377,4.0,1473801974\n56,441,4.0,1469033808\n56,442,2.0,1470350967\n56,456,4.0,1467005160\n56,457,4.0,1467004832\n56,480,4.0,1467004830\n56,527,4.0,1467002940\n56,529,4.0,1467007127\n56,541,4.0,1467006388\n56,586,4.0,1467008357\n56,593,5.0,1467002950\n56,673,2.0,1467005800\n56,750,2.0,1467003164\n56,778,4.0,1467005324\n56,916,4.0,1467006035\n56,919,5.0,1467005569\n56,922,4.0,1467005986\n56,923,4.0,1467005564\n56,924,2.0,1467005377\n56,926,4.0,1470350981\n56,942,2.0,1470351101\n56,951,4.0,1467008836\n56,953,4.0,1467005515\n56,1036,5.0,1467003129\n56,1060,4.0,1467006650\n56,1073,4.0,1467005708\n56,1089,4.0,1467003138\n56,1094,2.0,1470351007\n56,1095,4.0,1467004984\n56,1097,4.0,1467005425\n56,1120,2.0,1470350746\n56,1136,4.0,1467005321\n56,1172,2.0,1470350810\n56,1193,4.0,1467003136\n56,1196,2.0,1470350743\n56,1197,4.0,1467002983\n56,1198,4.0,1467004101\n56,1201,4.0,1467006449\n56,1206,4.0,1467006407\n56,1207,5.0,1467003288\n56,1208,4.0,1467005413\n56,1209,5.0,1467006798\n56,1210,2.0,1467005230\n56,1213,4.0,1467003139\n56,1222,4.0,1467006447\n56,1225,5.0,1467003994\n56,1226,4.0,1467006765\n56,1228,4.0,1467005790\n56,1230,2.0,1470350796\n56,1235,5.0,1467003378\n56,1240,2.0,1467006386\n56,1244,2.0,1470350740\n56,1247,2.0,1470351006\n56,1250,4.0,1467004757\n56,1252,4.0,1467003285\n56,1256,4.0,1467009159\n56,1258,4.0,1467005320\n56,1259,4.0,1467003265\n56,1263,2.0,1470351002\n56,1265,5.0,1467004858\n56,1266,4.0,1467004906\n56,1270,4.0,1473792749\n56,1283,4.0,1467006781\n56,1285,5.0,1467003397\n56,1288,4.0,1467873409\n56,1291,4.0,1467005259\n56,1302,4.0,1467006163\n56,1304,2.0,1470350881\n56,1307,2.0,1470350949\n56,1358,4.0,1467006852\n56,1380,5.0,1467004019\n56,1387,4.0,1467005541\n56,1393,4.0,1467006556\n56,1449,5.0,1467006334\n56,1466,4.0,1467005889\n56,1608,4.0,1467094780\n56,1617,4.0,1467005534\n56,1673,4.0,1467005939\n56,1676,2.0,1470350880\n56,1682,5.0,1467003127\n56,1704,5.0,1467002948\n56,1721,4.0,1467003158\n56,1732,4.0,1470350964\n56,1784,2.0,1470350958\n56,1907,4.0,1467005607\n56,1923,4.0,1467006553\n56,1947,5.0,1467003819\n56,1952,2.0,1470350857\n56,1953,4.0,1467008994\n56,1954,4.0,1467004796\n56,1957,4.0,1467093986\n56,1958,2.0,1470350850\n56,1961,2.0,1470350848\n56,1968,5.0,1467003201\n56,2000,1.0,1469031525\n56,2005,4.0,1467005771\n56,2006,4.0,1467094778\n56,2011,2.0,1470352143\n56,2028,5.0,1467002969\n56,2042,2.0,1470350841\n56,2052,4.0,1470350988\n56,2060,4.0,1467092609\n56,2072,2.0,1470352155\n56,2082,2.0,1470350839\n56,2115,4.0,1467006461\n56,2144,4.0,1468471176\n56,2186,4.0,1467866328\n56,2194,2.0,1470350837\n56,2248,4.0,1467007881\n56,2253,1.0,1467005018\n56,2300,4.0,1467009172\n56,2321,4.0,1467003359\n56,2324,2.0,1470351704\n56,2329,4.0,1467002977\n56,2395,5.0,1467004735\n56,2420,4.0,1470350864\n56,2502,4.0,1467006343\n56,2542,4.0,1467005428\n56,2572,2.0,1475110909\n56,2599,5.0,1467008130\n56,2617,4.0,1467005498\n56,2694,4.0,1470351102\n56,2700,4.0,1469152877\n56,2716,2.0,1470351096\n56,2746,5.0,1467003490\n56,2761,4.0,1469031599\n56,2791,4.0,1467005598\n56,2797,4.0,1467005707\n56,2804,4.0,1467007025\n56,2858,5.0,1467002981\n56,2863,4.0,1467009270\n56,2918,4.0,1467006448\n56,2925,4.0,1467006816\n56,2947,2.0,1467005813\n56,2951,2.0,1470351099\n56,2953,4.0,1467004973\n56,2959,4.0,1467002942\n56,3034,4.0,1467693193\n56,3039,1.0,1467006042\n56,3072,4.0,1467009823\n56,3079,4.0,1474815098\n56,3086,4.0,1467007108\n56,3089,4.0,1467006194\n56,3098,2.0,1470350837\n56,3104,2.0,1470351801\n56,3114,4.0,1467005380\n56,3152,2.0,1470351097\n56,3160,4.0,1467005729\n56,3210,2.0,1470350982\n56,3253,4.0,1467005793\n56,3255,2.0,1470351095\n56,3268,2.0,1467005081\n56,3360,5.0,1467004784\n56,3361,2.0,1467009601\n56,3365,4.0,1467006773\n56,3421,4.0,1467006182\n56,3424,4.0,1467003514\n56,3468,2.0,1470350862\n56,3480,4.0,1467007890\n56,3489,2.0,1467005858\n56,3504,4.0,1467008829\n56,3552,2.0,1467006160\n56,3606,5.0,1467004029\n56,3608,2.0,1470351118\n56,3653,5.0,1467003934\n56,3671,4.0,1467003357\n56,3683,4.0,1467007203\n56,3751,4.0,1472582918\n56,3783,4.0,1467093364\n56,3791,4.0,1475567060\n56,3868,4.0,1470355329\n56,3897,2.0,1470350976\n56,3916,2.0,1470350951\n56,3972,2.0,1470350879\n56,3988,2.0,1470350876\n56,4016,4.0,1469152869\n56,4022,4.0,1467006603\n56,4027,4.0,1467005394\n56,4034,4.0,1467006723\n56,4054,4.0,1474700994\n56,4085,2.0,1467005824\n56,4091,4.0,1467008072\n56,4102,2.0,1470355415\n56,4226,4.0,1467005242\n56,4262,2.0,1470350975\n56,4306,4.0,1467005239\n56,4370,4.0,1467005492\n56,4406,2.0,1470351000\n56,4447,4.0,1470968633\n56,4571,4.0,1467006150\n56,4649,4.0,1473802057\n56,4771,4.0,1467004075\n56,4776,2.0,1470351001\n56,4816,2.0,1470350956\n56,4848,4.0,1467005527\n56,4878,4.0,1467003134\n56,4881,2.0,1470350834\n56,4886,4.0,1467005245\n56,4896,4.0,1467005287\n56,4973,5.0,1467002978\n56,4993,4.0,1467004098\n56,5103,4.0,1467004067\n56,5377,5.0,1467003300\n56,5401,4.0,1467092617\n56,5418,4.0,1467005258\n56,5445,4.0,1467005284\n56,5673,5.0,1467003858\n56,5785,5.0,1473794542\n56,5816,4.0,1467005307\n56,5902,4.0,1467005692\n56,5952,4.0,1467004100\n56,5970,2.0,1470350980\n56,5995,4.0,1471104320\n56,6003,2.0,1470350814\n56,6016,5.0,1467002967\n56,6188,2.0,1470350817\n56,6373,2.0,1467005360\n56,6377,4.0,1467005252\n56,6618,2.0,1470350824\n56,6732,5.0,1473791601\n56,6796,4.0,1467008087\n56,6863,5.0,1467005390\n56,6867,4.0,1467006262\n56,6870,2.0,1467003213\n56,6873,2.0,1470350961\n56,6874,4.0,1467005226\n56,6932,4.0,1467094542\n56,6936,4.0,1467006226\n56,6942,2.0,1470350791\n56,6978,2.0,1470351794\n56,7018,2.0,1470350792\n56,7022,1.0,1472530513\n56,7036,2.0,1470352323\n56,7072,4.0,1470350806\n56,7132,4.0,1467093079\n56,7147,4.0,1467003174\n56,7153,4.0,1467004099\n56,7263,4.0,1467004794\n56,7361,5.0,1467002992\n56,7438,4.0,1467006373\n56,7451,5.0,1467005463\n56,8360,4.0,1467005331\n56,8368,4.0,1467005270\n56,8376,4.0,1467005493\n56,8528,2.0,1470350829\n56,8641,4.0,1467005485\n56,8665,4.0,1467006393\n56,8784,2.0,1470350939\n56,8807,4.0,1467006247\n56,8874,5.0,1467003155\n56,8914,2.0,1469228080\n56,8917,4.0,1468470510\n56,8961,4.0,1467006577\n56,8972,2.0,1470351983\n56,26084,5.0,1467691652\n56,26471,2.0,1467009198\n56,27253,4.0,1467095130\n56,27773,5.0,1467004058\n56,32587,4.0,1469154890\n56,32598,2.0,1467009678\n56,33166,2.0,1470350835\n56,33495,4.0,1469033593\n56,33660,4.0,1467003331\n56,33794,4.0,1470350738\n56,33880,2.0,1467007232\n56,34162,4.0,1475557281\n56,34528,4.0,1467007629\n56,35836,5.0,1467005373\n56,37733,2.0,1470350809\n56,38038,4.0,1467005838\n56,38061,4.0,1467003299\n56,38886,4.0,1467006300\n56,39292,4.0,1467006253\n56,40629,5.0,1467003268\n56,40815,4.0,1467005282\n56,41566,4.0,1470350742\n56,44191,4.0,1470350803\n56,44199,2.0,1467005523\n56,46578,5.0,1467003146\n56,46948,4.0,1467693406\n56,46970,4.0,1467006275\n56,47099,2.0,1470350985\n56,48322,5.0,1469073222\n56,48516,4.0,1467005248\n56,48698,5.0,1467692413\n56,48982,4.0,1467693415\n56,49272,5.0,1467005267\n56,50514,4.0,1467007522\n56,50872,4.0,1467006583\n56,51255,5.0,1467003975\n56,51540,4.0,1467005548\n56,51662,2.0,1470351003\n56,52245,4.0,1467005933\n56,52435,4.0,1469073419\n56,53123,4.0,1470350872\n56,53125,2.0,1467005359\n56,54001,4.0,1467005323\n56,54256,5.0,1467004082\n56,54286,4.0,1467006368\n56,54503,5.0,1467003951\n56,54881,5.0,1467009669\n56,55052,2.0,1467006058\n56,55118,2.0,1470350855\n56,55247,2.0,1470350851\n56,55765,2.0,1467005604\n56,55805,4.0,1467003527\n56,55820,5.0,1471306371\n56,56174,2.0,1470350845\n56,56333,4.0,1467007605\n56,56367,5.0,1467003152\n56,56757,4.0,1475479127\n56,56782,5.0,1467003185\n56,57532,1.0,1467095936\n56,57669,5.0,1467003176\n56,58025,1.0,1467005673\n56,58559,5.0,1467004094\n56,59118,4.0,1467007569\n56,59315,2.0,1467005222\n56,59369,2.0,1467005342\n56,60684,2.0,1470350978\n56,60756,4.0,1467005703\n56,60950,4.0,1467005747\n56,61024,4.0,1467006547\n56,61132,4.0,1467865426\n56,63082,4.0,1467006376\n56,63113,2.0,1470350955\n56,63131,5.0,1467003348\n56,64969,4.0,1470350987\n56,64983,2.0,1470350986\n56,65188,5.0,1467092809\n56,67087,5.0,1467003336\n56,67734,4.0,1467004345\n56,67997,4.0,1469031507\n56,68157,4.0,1467004172\n56,68954,4.0,1467004170\n56,69122,4.0,1467004173\n56,69306,2.0,1470350866\n56,69844,4.0,1467004200\n56,70286,4.0,1467003125\n56,70293,4.0,1467003364\n56,70728,4.0,1470968850\n56,71264,5.0,1467005726\n56,71466,4.0,1467003698\n56,71535,4.0,1467005198\n56,71579,4.0,1467004387\n56,72011,4.0,1467004221\n56,72171,5.0,1467004584\n56,72226,5.0,1467004119\n56,72720,2.0,1467004435\n56,73023,4.0,1467009351\n56,74275,4.0,1467004483\n56,74416,4.0,1467004574\n56,74754,5.0,1467864303\n56,74916,4.0,1467007601\n56,76111,4.0,1467092846\n56,76251,4.0,1467004204\n56,78499,5.0,1467004183\n56,79091,4.0,1467006409\n56,79132,5.0,1467002965\n56,79592,4.0,1467004374\n56,79677,5.0,1467093107\n56,79702,5.0,1467005411\n56,80463,4.0,1467004187\n56,80549,4.0,1467004158\n56,81156,5.0,1473794395\n56,81562,4.0,1467003210\n56,81591,5.0,1467003145\n56,81834,4.0,1467004198\n56,83086,1.0,1467004629\n56,83976,4.0,1467004653\n56,84116,4.0,1469153655\n56,85414,4.0,1467005355\n56,85438,5.0,1467004005\n56,86000,5.0,1467003897\n56,86884,4.0,1469032461\n56,86911,2.0,1470350858\n56,87232,2.0,1470350948\n56,87304,4.0,1467004505\n56,87522,1.0,1473791535\n56,87869,2.0,1470350973\n56,88125,4.0,1467004197\n56,88744,4.0,1467004315\n56,88810,2.0,1470350882\n56,88812,2.0,1467004552\n56,89492,4.0,1467004122\n56,89759,4.0,1467003383\n56,90374,4.0,1467004613\n56,90376,4.0,1468910117\n56,90600,4.0,1467003420\n56,90947,4.0,1469031965\n56,91199,4.0,1467092472\n56,91529,2.0,1470350873\n56,92420,4.0,1467004382\n56,93270,1.0,1467004544\n56,93422,4.0,1467007093\n56,93443,5.0,1467004638\n56,93510,5.0,1467004161\n56,93512,4.0,1467004619\n56,93721,4.0,1467004448\n56,94896,4.0,1467004582\n56,94959,4.0,1473802027\n56,95088,4.0,1467003376\n56,95441,2.0,1470350788\n56,95510,4.0,1470350782\n56,96079,5.0,1467005316\n56,96110,1.0,1467004530\n56,96467,5.0,1467003873\n56,96728,5.0,1467003849\n56,96829,5.0,1467003292\n56,96911,4.0,1467864500\n56,97306,4.0,1467004379\n56,97836,1.0,1467092453\n56,97866,4.0,1467092369\n56,97921,2.0,1467004218\n56,97923,2.0,1470350802\n56,97938,4.0,1467004316\n56,99114,4.0,1467002988\n56,99117,2.0,1467004578\n56,99764,5.0,1467863402\n56,99917,2.0,1470350983\n56,100272,4.0,1469154665\n56,100556,5.0,1467003946\n56,101577,1.0,1467092392\n56,102123,5.0,1467005764\n56,102800,4.0,1467007575\n56,102993,4.0,1467007838\n56,103141,4.0,1470350830\n56,103279,4.0,1468546977\n56,103624,4.0,1467009440\n56,103688,2.0,1470350793\n56,104944,4.0,1467006050\n56,105197,4.0,1467007684\n56,105429,4.0,1468546294\n56,105715,2.0,1474953835\n56,105844,4.0,1467005461\n56,106062,2.0,1471306876\n56,106100,4.0,1467003177\n56,106144,4.0,1467094125\n56,106332,4.0,1469845528\n56,106438,4.0,1467003435\n56,106916,2.0,1470351005\n56,106920,5.0,1467003149\n56,107141,2.0,1470351004\n56,107348,4.0,1467006008\n56,107978,5.0,1467003921\n56,108156,2.0,1467092461\n56,108932,4.0,1467003191\n56,110461,4.0,1467003769\n56,111362,2.0,1467005297\n56,111617,1.0,1467003517\n56,112138,5.0,1467005656\n56,112183,4.0,1467006422\n56,112421,4.0,1467692116\n56,112515,5.0,1470025110\n56,112552,5.0,1467006371\n56,112556,2.0,1470350815\n56,112852,2.0,1467005244\n56,113064,4.0,1469228067\n56,113453,1.0,1470355990\n56,113705,2.0,1470350818\n56,113829,4.0,1467007253\n56,113862,4.0,1473791593\n56,114074,2.0,1470352041\n56,114342,4.0,1473804166\n56,114635,4.0,1467092891\n56,115569,4.0,1467006430\n56,116797,4.0,1467002982\n56,122882,5.0,1467004819\n56,122886,2.0,1470350977\n56,127108,5.0,1467006119\n56,127152,5.0,1467094604\n56,127198,4.0,1467006189\n56,127206,2.0,1470350833\n56,128360,4.0,1467005444\n56,128620,5.0,1467003913\n56,131168,4.0,1469228116\n56,133771,5.0,1467691835\n56,134170,2.0,1469152845\n56,134853,5.0,1472582666\n56,136864,2.0,1467005931\n56,139116,5.0,1467093091\n56,139385,4.0,1467005204\n56,139757,5.0,1467862484\n56,140715,2.0,1470350745\n56,141890,4.0,1467095329\n56,142422,4.0,1468548012\n56,142488,4.0,1467004133\n56,146656,5.0,1467005847\n56,148626,2.0,1470350805\n56,148881,5.0,1467007293\n56,152081,4.0,1474951858\n56,155392,4.0,1467008759\n56,156609,4.0,1474989255\n56,160590,5.0,1467095789\n57,11,5.0,907763065\n57,17,5.0,907763245\n57,21,4.0,907763141\n57,34,5.0,907763018\n57,110,5.0,907762500\n57,151,5.0,907763808\n57,163,4.0,907763847\n57,164,3.0,907762733\n57,260,4.0,907765902\n57,265,5.0,907763245\n57,293,5.0,907763847\n57,318,5.0,907762409\n57,337,5.0,907763101\n57,350,2.0,907762795\n57,356,3.0,907763065\n57,357,5.0,907763324\n57,380,4.0,907763283\n57,440,4.0,907763283\n57,468,4.0,907763141\n57,497,5.0,907763018\n57,509,5.0,907763283\n57,527,5.0,907762409\n57,534,5.0,907763765\n57,538,5.0,907762795\n57,555,4.0,907763283\n57,590,5.0,907762565\n57,592,3.0,907764831\n57,608,5.0,907762501\n57,635,5.0,907763101\n57,648,3.0,907762795\n57,728,5.0,907763141\n57,800,5.0,907762733\n57,858,5.0,907765902\n57,914,5.0,907765600\n57,921,4.0,907764874\n57,1007,3.0,907766060\n57,1009,4.0,907766060\n57,1028,4.0,907765600\n57,1035,5.0,907765600\n57,1036,4.0,907764507\n57,1073,4.0,907766060\n57,1079,5.0,907764779\n57,1080,4.0,907766022\n57,1081,4.0,907764935\n57,1088,4.0,907764935\n57,1091,2.0,907765142\n57,1092,2.0,907762832\n57,1094,5.0,907763847\n57,1097,5.0,907764507\n57,1101,5.0,907765008\n57,1124,4.0,907764779\n57,1125,4.0,907766060\n57,1127,5.0,907765059\n57,1128,2.0,907765142\n57,1129,3.0,907765059\n57,1130,4.0,907765142\n57,1135,4.0,907765059\n57,1136,5.0,907765978\n57,1148,5.0,907762969\n57,1185,5.0,907764470\n57,1186,4.0,907765059\n57,1193,5.0,907765902\n57,1194,4.0,907766121\n57,1196,4.0,907764507\n57,1197,5.0,907764470\n57,1198,5.0,907764431\n57,1200,3.0,907764544\n57,1208,3.0,907765939\n57,1214,3.0,907765939\n57,1220,4.0,907764779\n57,1221,5.0,907765939\n57,1222,5.0,907764625\n57,1224,5.0,907764544\n57,1225,5.0,907764310\n57,1227,4.0,907765142\n57,1234,5.0,907765939\n57,1240,3.0,907764544\n57,1242,5.0,907764470\n57,1243,5.0,907763018\n57,1246,5.0,907764779\n57,1252,5.0,907765786\n57,1258,5.0,907764723\n57,1259,4.0,907764584\n57,1263,5.0,907765939\n57,1265,4.0,907763018\n57,1270,3.0,907764584\n57,1272,3.0,907765939\n57,1275,3.0,907764723\n57,1278,5.0,907765902\n57,1286,5.0,907765008\n57,1288,3.0,907764431\n57,1291,5.0,907764507\n57,1296,5.0,907764584\n57,1299,5.0,907764470\n57,1302,4.0,907764671\n57,1307,5.0,907764723\n57,1321,5.0,907764874\n57,1323,2.0,907765422\n57,1326,1.0,907765461\n57,1327,4.0,907766121\n57,1345,5.0,907766156\n57,1346,4.0,907765059\n57,1347,4.0,907765059\n57,1350,5.0,907766022\n57,1357,5.0,907763324\n57,1358,5.0,907762565\n57,1378,4.0,907764831\n57,1380,4.0,907765656\n57,1387,5.0,907766022\n57,1393,4.0,907763324\n57,1394,5.0,907764625\n57,1408,4.0,907763283\n57,1422,3.0,907762885\n57,1459,4.0,907762885\n57,1476,4.0,907763018\n57,1587,3.0,907765059\n57,1589,5.0,907762832\n57,1597,4.0,907762832\n57,1617,4.0,907762733\n57,1625,3.0,907762795\n57,1641,5.0,907763065\n57,1645,4.0,907762795\n57,1663,4.0,907764431\n57,1674,5.0,907764723\n57,1704,5.0,907762565\n57,1719,5.0,907762409\n57,1721,3.0,907763245\n57,1732,3.0,907762733\n57,1754,3.0,907762832\n57,1784,5.0,907762565\n57,1892,5.0,907762795\n57,1909,2.0,907762795\n57,1914,5.0,907762969\n57,1917,1.0,907761833\n57,1918,3.0,907761919\n57,1923,5.0,907761833\n57,1947,5.0,907765600\n57,1951,4.0,907765600\n57,1953,5.0,907766060\n57,1954,4.0,907765939\n57,1955,4.0,907766022\n57,1956,4.0,907764507\n57,1957,5.0,907764431\n57,1958,4.0,907764779\n57,1961,5.0,907764389\n57,1962,5.0,907764431\n57,1964,5.0,907765786\n57,1967,3.0,907764389\n57,1968,4.0,907764431\n57,1974,2.0,907765223\n57,1975,2.0,907765363\n57,1977,1.0,907765329\n57,1978,1.0,907765329\n57,1979,1.0,907765422\n57,1981,1.0,907765461\n57,1982,4.0,907766156\n57,1983,3.0,907765278\n57,1984,1.0,907765422\n57,1987,2.0,907765329\n57,1994,4.0,907764671\n57,1995,3.0,907765223\n57,1996,2.0,907765329\n57,1997,4.0,907765978\n57,2000,5.0,907764625\n57,2001,4.0,907764625\n57,2003,3.0,907765223\n57,2005,3.0,907764935\n57,2006,5.0,907761877\n57,2009,3.0,907765902\n57,2013,4.0,907766121\n57,2020,5.0,907764544\n57,2027,2.0,907762001\n57,2028,5.0,907761833\n57,2037,4.0,907766121\n57,2044,3.0,907765191\n57,2054,3.0,907765191\n57,2070,4.0,907764625\n57,2088,2.0,907765363\n57,2097,3.0,907765278\n57,2100,4.0,907764625\n57,2109,4.0,907765978\n57,2110,4.0,907765008\n57,2111,3.0,907765278\n57,2114,5.0,907764584\n57,2115,4.0,907765008\n57,2118,2.0,907764584\n57,2121,3.0,907765422\n57,2122,1.0,907765461\n57,2125,4.0,907761947\n57,2130,4.0,907764584\n57,2143,3.0,907765059\n57,2144,3.0,907764544\n57,2153,1.0,907762089\n57,2161,3.0,907764470\n57,2163,2.0,907765363\n57,2174,5.0,907764671\n57,2178,4.0,907766121\n57,2193,5.0,907764431\n57,2194,5.0,907764431\n57,2240,4.0,907764874\n57,2245,4.0,907764671\n57,2268,4.0,907762409\n57,2288,4.0,907764389\n57,2291,4.0,907763245\n57,2300,3.0,907765600\n57,2301,3.0,907765142\n57,2302,5.0,907762969\n57,2313,5.0,907764831\n57,5060,4.0,907765978\n58,11,5.0,961127960\n58,19,1.0,961127638\n58,150,5.0,961128124\n58,344,1.0,961127638\n58,410,3.0,961127638\n58,415,2.0,961128086\n58,616,4.0,961128178\n58,748,4.0,961128239\n58,909,2.0,961128124\n58,924,5.0,961127522\n58,940,2.0,961127724\n58,952,2.0,961128239\n58,965,5.0,961127557\n58,969,5.0,961127724\n58,999,2.0,961127522\n58,1007,2.0,961128178\n58,1019,4.0,961127522\n58,1021,4.0,961128055\n58,1127,2.0,961127638\n58,1200,4.0,961127834\n58,1203,5.0,961127480\n58,1214,4.0,961127834\n58,1225,5.0,961127896\n58,1230,2.0,961127256\n58,1269,5.0,961128239\n58,1320,3.0,961127834\n58,1321,4.0,961127960\n58,1367,4.0,961127480\n58,1459,4.0,961127638\n58,1499,1.0,961128020\n58,1517,1.0,961128302\n58,1608,5.0,961127761\n58,1690,4.0,961127834\n58,1784,2.0,961128239\n58,1917,4.0,961128178\n58,1927,5.0,961127868\n58,2015,3.0,961127592\n58,2016,2.0,961128124\n58,2072,2.0,961127480\n58,2085,3.0,961127480\n58,2124,3.0,961127690\n58,2133,4.0,961127690\n58,2153,2.0,961128302\n58,2163,4.0,961128269\n58,2180,4.0,961127256\n58,2202,5.0,961127256\n58,2311,5.0,961127522\n58,2475,3.0,961127558\n58,2505,4.0,961127592\n58,2520,2.0,961127790\n58,2522,2.0,961127761\n58,2551,2.0,961127256\n58,2683,1.0,961128302\n58,2788,5.0,961128020\n58,2791,5.0,961127761\n58,2792,5.0,961127761\n58,2817,2.0,961127638\n58,2827,3.0,961128269\n58,2846,4.0,961127690\n58,3070,4.0,961127690\n58,3153,2.0,961127558\n58,3251,5.0,961127761\n58,3420,5.0,961127480\n58,3421,5.0,961128055\n58,3510,5.0,961127407\n58,3524,4.0,961128239\n58,3535,1.0,961127407\n58,3555,5.0,961127407\n58,3649,3.0,961127923\n58,3672,1.0,961127256\n58,3701,5.0,961127834\n58,3706,4.0,961128055\n58,3710,3.0,961127639\n59,11,2.5,1144755845\n59,32,4.5,1144756065\n59,50,5.0,1144756267\n59,111,2.5,1144755826\n59,150,4.0,1144756061\n59,223,3.5,1144755802\n59,231,2.0,1144756058\n59,292,1.0,1144756054\n59,296,4.0,1144756366\n59,300,4.5,1144755818\n59,318,2.5,1144756299\n59,367,1.5,1144756051\n59,380,0.5,1144756048\n59,410,1.5,1144755842\n59,412,4.0,1144756272\n59,480,4.5,1144756044\n59,527,4.5,1144756394\n59,541,5.0,1144756037\n59,586,0.5,1144756031\n59,590,3.5,1144756028\n59,593,3.5,1144756398\n59,720,4.5,1144756414\n59,745,5.0,1144756328\n59,858,5.0,1144756296\n59,912,4.0,1144755799\n59,919,1.5,1144755833\n59,1136,4.0,1144756017\n59,1148,5.0,1144756384\n59,1193,3.5,1144756013\n59,1213,3.5,1144755855\n59,1221,5.0,1144755814\n59,1356,0.5,1144755869\n59,1673,4.0,1144756209\n59,1722,1.5,1144756203\n59,1923,3.0,1144755873\n59,1961,3.5,1144755823\n59,1968,2.5,1144756199\n59,2028,1.5,1144756004\n59,2105,1.0,1144756192\n59,2161,0.5,1144756188\n59,2167,4.0,1144756184\n59,2193,0.5,1144756181\n59,2194,3.5,1144756178\n59,2302,3.5,1144756175\n59,2329,4.0,1144756386\n59,2396,3.5,1144755999\n59,2470,0.5,1144756164\n59,2542,2.0,1144756161\n59,2617,4.0,1144756157\n59,2640,1.0,1144756153\n59,2671,1.5,1144756141\n59,2683,1.5,1144755852\n59,2692,4.0,1144756137\n59,2716,2.0,1144755809\n59,2763,1.5,1144756134\n59,2797,3.0,1144756128\n59,2858,4.0,1144755992\n59,2959,4.0,1144755805\n59,2997,1.5,1144755795\n59,3253,4.0,1144756119\n59,3578,4.0,1144756116\n59,3623,1.0,1144756112\n59,3751,4.0,1144756109\n59,3911,3.5,1144756106\n59,3948,0.5,1144756094\n59,4306,1.5,1144755866\n59,4993,4.5,1144755863\n59,5060,3.5,1144756101\n59,5349,3.0,1144756087\n59,5952,5.0,1144756362\n59,6787,5.0,1144756343\n59,7040,4.0,1144756281\n59,7153,5.0,1144756348\n59,7361,4.0,1144756082\n59,8961,5.0,1144756336\n59,26695,3.5,1144756276\n59,33794,2.0,1144756332\n59,34153,4.0,1144756402\n60,16,4.5,1125828814\n60,21,3.0,1125829035\n60,111,4.5,1125829229\n60,163,4.0,1125828888\n60,173,3.5,1125828860\n60,235,5.0,1125829070\n60,466,4.0,1125828890\n60,541,5.0,1125829154\n60,608,4.0,1125829157\n60,653,2.5,1125828818\n60,720,4.0,1125829203\n60,745,3.5,1125829207\n60,858,5.0,1125829174\n60,1080,4.5,1125828831\n60,1090,4.0,1125828893\n60,1208,4.5,1125829194\n60,1209,4.0,1125829215\n60,1219,4.5,1125829161\n60,1221,5.0,1125829152\n60,1380,1.5,1125828900\n60,1485,2.5,1125828872\n60,1653,5.0,1125828865\n60,1673,4.5,1125829038\n60,1732,5.0,1125829088\n60,2012,4.0,1125828843\n60,2115,3.5,1125828850\n60,2174,4.0,1125828802\n60,2324,5.0,1125829168\n60,2640,4.0,1125828876\n60,2710,4.5,1125828811\n60,2797,4.0,1125828806\n60,3018,3.5,1125829108\n60,3160,3.5,1125829131\n60,3608,4.0,1125829115\n60,3726,3.0,1125829042\n60,3949,5.0,1125829144\n60,4973,4.5,1125829233\n60,5060,5.0,1125828895\n60,5618,4.0,1125829190\n60,5690,5.0,1125829218\n60,5945,4.0,1125829124\n60,5952,3.0,1125828855\n60,5959,4.5,1125829077\n60,5995,5.0,1125829169\n60,6350,5.0,1125829184\n60,6502,4.5,1125829017\n60,6957,3.0,1125829047\n60,7361,5.0,1125829192\n60,7387,4.5,1125829007\n60,8638,5.0,1125829249\n60,8981,5.0,1125829091\n60,27773,4.5,1125829180\n60,27801,3.0,1125828995\n60,27803,5.0,1125829225\n60,30749,5.0,1125829142\n61,2,3.5,1216051639\n61,34,2.0,1216050806\n61,48,2.5,1216052245\n61,50,5.0,1216050620\n61,104,4.0,1216051937\n61,158,1.5,1216486613\n61,231,4.0,1216050783\n61,317,3.5,1216052001\n61,364,3.5,1216050872\n61,500,4.0,1216050755\n61,551,1.5,1216052048\n61,585,3.5,1216487185\n61,586,3.0,1216050910\n61,587,5.0,1216050728\n61,588,3.0,1216050688\n61,592,5.0,1216050426\n61,593,3.0,1217176111\n61,594,3.5,1216051901\n61,595,2.5,1216050607\n61,596,2.0,1216486577\n61,616,1.5,1216050050\n61,661,2.5,1216487081\n61,673,2.0,1216487462\n61,801,2.5,1216050212\n61,919,3.0,1216050981\n61,953,3.5,1216052355\n61,1010,3.0,1216050143\n61,1022,3.0,1216487383\n61,1028,3.5,1216052159\n61,1029,2.5,1216487645\n61,1035,4.0,1216052131\n61,1059,3.0,1216486917\n61,1073,2.0,1216050704\n61,1097,3.5,1216050633\n61,1136,5.0,1216050881\n61,1197,5.0,1216050615\n61,1207,2.5,1217176086\n61,1220,3.5,1216051628\n61,1367,2.5,1216487574\n61,1380,3.5,1216051765\n61,1500,4.5,1216051684\n61,1580,3.5,1216050812\n61,1777,2.0,1216052066\n61,1907,4.0,1216487286\n61,1954,2.0,1216051712\n61,1968,5.0,1216050874\n61,2018,2.5,1216487345\n61,2054,2.5,1216051756\n61,2078,1.5,1216050040\n61,2080,2.5,1216052376\n61,2081,3.5,1216051647\n61,2085,2.5,1216487259\n61,2087,3.0,1216487390\n61,2123,2.5,1216050185\n61,2144,3.0,1216486970\n61,2161,2.0,1216486558\n61,2174,2.0,1216050841\n61,2273,3.0,1216486754\n61,2300,5.0,1216487561\n61,2355,3.5,1216050771\n61,2384,2.0,1216050083\n61,2502,5.0,1216050948\n61,2571,4.0,1216050434\n61,2572,4.0,1216486568\n61,2716,3.0,1216050558\n61,2761,3.0,1216487170\n61,2804,1.0,1216052021\n61,2857,4.0,1217175852\n61,2918,4.5,1216050942\n61,2953,3.0,1216487450\n61,3114,1.0,1216050711\n61,3668,2.5,1216050152\n61,3751,1.5,1216050859\n61,3988,3.0,1216487130\n61,4016,1.5,1216487195\n61,4025,2.5,1217175695\n61,4232,3.5,1217175825\n61,4246,3.5,1216051015\n61,4306,3.5,1216050580\n61,4333,5.0,1216050173\n61,4701,2.5,1216486820\n61,4886,3.0,1216050489\n61,4890,3.5,1216487437\n61,4896,3.0,1216050661\n61,4993,5.0,1217175635\n61,5299,3.5,1216051026\n61,5349,4.5,1216050540\n61,5444,1.0,1216487083\n61,5449,3.5,1217175814\n61,5459,3.0,1216051664\n61,5481,1.5,1216052029\n61,5618,5.0,1216051166\n61,5693,3.5,1216050163\n61,5816,3.0,1216050722\n61,5952,5.0,1216050467\n61,5971,5.0,1217175952\n61,6218,2.5,1217175803\n61,6350,5.0,1217175973\n61,6373,3.5,1216051752\n61,6377,3.0,1216050500\n61,6539,1.5,1216050627\n61,6743,2.5,1216050335\n61,6863,4.5,1216051105\n61,6936,3.0,1216486831\n61,7004,4.0,1216487292\n61,7153,5.0,1216050411\n61,7161,2.0,1216050274\n61,7451,4.0,1216487206\n61,8360,2.0,1216050747\n61,8368,2.5,1217175562\n61,8376,0.5,1216052075\n61,8464,3.0,1217175793\n61,8544,3.5,1216486608\n61,8961,4.0,1216050419\n61,8970,2.5,1217176199\n61,26662,5.0,1216050266\n61,27706,3.5,1216487236\n61,30793,1.5,1216051039\n61,33004,2.0,1216052080\n61,33615,2.5,1216487374\n61,33660,2.0,1217176162\n61,33679,4.0,1216051779\n61,33794,5.0,1216050438\n61,34150,2.5,1216487036\n61,34162,4.0,1216051096\n61,40629,3.0,1216487165\n61,40815,4.0,1216050749\n61,41566,2.5,1216051161\n61,44191,5.0,1216050506\n61,44195,4.5,1216051092\n61,45431,1.0,1216050246\n61,45517,2.5,1216052363\n61,45720,4.0,1216486888\n61,45722,3.5,1216051047\n61,46578,5.0,1216050780\n61,46970,4.0,1216487176\n61,46972,4.0,1216487276\n61,46976,3.5,1216051666\n61,47610,2.5,1216051984\n61,48394,4.5,1216050612\n61,48780,5.0,1216050831\n61,50872,4.0,1216050762\n61,52973,4.5,1216051143\n61,53121,3.0,1216487179\n61,53125,1.0,1216051188\n61,53322,4.0,1216052121\n61,53464,2.5,1216050332\n61,53996,5.0,1216051618\n61,54001,2.5,1216051008\n61,54272,2.5,1216050692\n61,55566,4.0,1216051650\n61,55830,2.5,1217424458\n61,56030,3.5,1216050821\n61,56171,4.0,1216486738\n61,56174,4.5,1216050758\n61,56367,4.5,1216050547\n61,56757,3.0,1216052146\n61,57640,2.5,1217175527\n61,57669,4.5,1216487366\n61,58025,3.0,1216487091\n61,58559,5.0,1216487357\n61,58998,5.0,1216487144\n61,59315,4.0,1216050264\n61,60069,5.0,1216487413\n61,60074,3.0,1216486663\n61,60126,4.0,1216487141\n62,111,4.0,1451708754\n62,260,4.0,1451176940\n62,318,3.5,1451359418\n62,1196,5.0,1451176947\n62,1210,4.0,1451359247\n62,1270,4.5,1451359277\n62,2028,4.5,1451359280\n62,2918,4.5,1470457528\n62,2959,5.0,1451359348\n62,4226,4.0,1451359336\n62,5418,4.0,1449594307\n62,6016,4.0,1451708492\n62,8665,4.5,1449594323\n62,48774,4.0,1453318174\n62,49530,3.5,1452916989\n62,54286,4.0,1449594346\n62,58559,5.0,1475948734\n62,68157,4.5,1451708722\n62,68237,4.5,1451708228\n62,69481,3.5,1451707886\n62,70286,4.0,1451708064\n62,70862,4.0,1451708831\n62,79132,5.0,1451708501\n62,81591,4.0,1451713153\n62,85414,4.0,1451707852\n62,91535,3.0,1451708608\n62,92259,3.0,1451708709\n62,97304,4.0,1451708035\n62,101864,3.5,1451708254\n62,101947,3.5,1451712467\n62,103228,4.0,1451708272\n62,104374,5.0,1451178637\n62,104841,4.0,1451708082\n62,106782,4.5,1451707972\n62,106920,4.0,1451708365\n62,109487,4.5,1451708125\n62,111759,4.0,1451708157\n62,112183,3.0,1451706920\n62,112290,4.0,1451708301\n62,112552,4.0,1451708010\n62,114662,3.0,1451178678\n62,115149,3.0,1451406848\n62,115569,3.5,1451706930\n62,115713,4.0,1449594073\n62,119145,4.5,1465526836\n62,120637,1.5,1465535480\n62,122882,5.0,1448760334\n62,122900,3.5,1453472303\n62,134130,5.0,1451407005\n62,134853,5.0,1455413632\n62,139644,4.5,1451368688\n62,146656,4.0,1465279438\n62,160438,4.0,1470457197\n63,1,5.0,1079098216\n63,11,3.5,1079098249\n63,16,5.0,1075307025\n63,58,0.5,1075307034\n63,112,3.0,1075307039\n63,150,4.0,1079098211\n63,151,0.5,1075307036\n63,246,0.5,1075307056\n63,260,5.0,1078570677\n63,315,1.0,1075307064\n63,318,5.0,1079098244\n63,380,3.5,1079098188\n63,432,4.0,1075307028\n63,457,3.0,1078570670\n63,480,4.5,1078570695\n63,515,1.0,1075307062\n63,520,3.0,1079098254\n63,592,5.0,1079098217\n63,593,4.5,1079098263\n63,720,4.0,1076323993\n63,832,2.5,1075307060\n63,1015,1.5,1076324016\n63,1059,4.0,1076324042\n63,1080,4.5,1075307058\n63,1105,0.5,1076324074\n63,1193,5.0,1076324053\n63,1198,5.0,1079098242\n63,1214,5.0,1076324064\n63,1221,5.0,1079098258\n63,1230,1.5,1075307020\n63,1234,1.0,1075307065\n63,1259,5.0,1076324068\n63,1304,4.0,1075307023\n63,1307,2.0,1079098251\n63,1356,5.0,1076324056\n63,1372,3.0,1076324009\n63,1374,4.0,1075307043\n63,1376,3.5,1079098265\n63,1408,4.5,1079098267\n63,1474,1.0,1076324059\n63,1513,1.0,1076324000\n63,1517,4.0,1075307052\n63,1573,4.0,1078570732\n63,1610,4.5,1079098253\n63,1639,5.0,1078570730\n63,1641,3.0,1078570723\n63,1917,4.0,1075307050\n63,1954,4.5,1078570736\n63,1961,3.5,1078570725\n63,2004,4.5,1079098304\n63,2046,4.5,1079098294\n63,2116,2.5,1079098501\n63,2174,1.0,1078570715\n63,2268,4.0,1078570718\n63,2302,2.0,1078570716\n63,2393,4.5,1079098301\n63,2571,4.5,1076324071\n63,2628,4.5,1079098213\n63,2640,4.5,1078570740\n63,2699,4.0,1078570655\n63,2710,4.0,1079098201\n63,2762,3.0,1079098192\n63,2791,4.0,1079098199\n63,2797,5.0,1078570652\n63,2858,5.0,1080482377\n63,2918,5.0,1079098203\n63,2959,4.5,1075307030\n63,2987,4.5,1079098190\n63,2997,4.0,1078570675\n63,3114,5.0,1078570660\n63,3176,5.0,1079098196\n63,3328,4.0,1079098289\n63,3408,2.0,1078570684\n63,3471,4.0,1078570650\n63,3481,5.0,1078570661\n63,3578,5.0,1079098194\n63,3751,2.0,1078570672\n63,3793,4.5,1078570681\n63,3868,4.5,1076324022\n63,3869,4.5,1079098275\n63,3897,4.0,1078570666\n63,3996,4.0,1075307054\n63,4022,2.5,1079098205\n63,4306,5.0,1078570680\n63,4367,4.0,1079098272\n63,4369,4.5,1079098286\n63,4446,4.0,1079098273\n63,4846,5.0,1076324027\n63,4993,5.0,1079098495\n63,5349,5.0,1079098282\n63,5952,5.0,1076324012\n63,6333,5.0,1079098246\n63,6541,2.5,1076324031\n63,6711,5.0,1079098406\n63,6863,4.0,1079098400\n63,7153,5.0,1076324157\n63,7318,3.5,1079098342\n64,110,4.0,843159967\n64,150,3.0,843159644\n64,153,5.0,843159716\n64,165,3.0,843159716\n64,168,3.0,843159967\n64,231,3.0,843159770\n64,253,5.0,843159967\n64,266,5.0,843159967\n64,296,5.0,843159644\n64,318,5.0,843159871\n64,329,4.0,843159770\n64,344,2.0,843159716\n64,349,4.0,843159716\n64,356,4.0,843159871\n64,380,4.0,843159645\n64,434,4.0,843159871\n64,457,4.0,843159770\n64,590,5.0,843159644\n64,592,4.0,843159644\n64,593,5.0,843159770\n64,595,3.0,843159967\n65,260,4.0,945118587\n65,858,5.0,945149894\n65,909,5.0,945150424\n65,920,2.0,945118660\n65,924,4.0,945150571\n65,1077,5.0,945150514\n65,1078,5.0,945150514\n65,1084,5.0,945150037\n65,1210,2.0,945118792\n65,1221,4.0,945118614\n65,1230,5.0,945150175\n65,1238,2.0,945150351\n65,1256,4.0,945150351\n65,1270,3.0,945118543\n65,1278,5.0,945150424\n65,1288,3.0,945150278\n65,1292,5.0,945150473\n65,1299,5.0,945150037\n65,1304,4.0,945150395\n65,1952,4.0,945149894\n65,1956,3.0,945149834\n65,2064,5.0,945150395\n65,2289,4.0,945150395\n65,2863,5.0,945150351\n65,2871,4.0,945149894\n65,2971,5.0,945150011\n65,5060,5.0,945150351\n66,21,4.0,974600703\n66,22,2.0,974599486\n66,105,2.0,974597659\n66,110,4.0,974600526\n66,260,5.0,974600461\n66,356,4.0,974597735\n66,377,4.0,974599725\n66,457,4.0,974599773\n66,480,5.0,974600656\n66,589,5.0,974599725\n66,593,4.0,974599725\n66,608,4.0,974599074\n66,832,4.0,974599923\n66,858,5.0,974600461\n66,908,4.0,974597684\n66,1036,5.0,974600526\n66,1092,4.0,974599834\n66,1129,4.0,974600198\n66,1179,4.0,974599434\n66,1196,4.0,974597627\n66,1198,5.0,974600461\n66,1200,3.0,974600108\n66,1203,5.0,974597659\n66,1240,5.0,974600108\n66,1249,4.0,974599773\n66,1270,4.0,974600108\n66,1275,3.0,974600728\n66,1573,3.0,974599861\n66,1580,3.0,974600572\n66,1625,4.0,974600012\n66,1732,2.0,974599543\n66,1954,5.0,974600600\n66,2000,5.0,974600491\n66,2058,4.0,974599923\n66,2117,5.0,974600198\n66,2194,5.0,974600526\n66,2268,4.0,974599074\n66,2391,3.0,974599434\n66,2455,3.0,974600144\n66,2456,2.0,974600286\n66,2571,3.0,974599773\n66,2605,4.0,974599597\n66,2858,4.0,974600366\n66,2947,5.0,974600526\n66,2985,4.0,974600198\n66,3527,3.0,974600703\n66,3633,5.0,974600656\n66,3763,5.0,974600626\n66,3957,3.0,974598446\n67,1,3.0,854711770\n67,6,5.0,854711804\n67,12,3.0,854711916\n67,16,4.0,854713177\n67,17,4.0,854711772\n67,18,4.0,854711941\n67,28,5.0,854714394\n67,34,5.0,854714246\n67,42,3.0,854714498\n67,43,4.0,854712006\n67,60,4.0,854714394\n67,62,3.0,854711772\n67,86,5.0,854711958\n67,88,3.0,854711958\n67,94,3.0,854711941\n67,95,1.0,854711771\n67,104,3.0,854711830\n67,107,3.0,854711884\n67,110,5.0,854713313\n67,112,3.0,854711804\n67,141,1.0,854711771\n67,151,5.0,854714367\n67,198,4.0,854714394\n67,238,3.0,854715870\n67,260,4.0,854711862\n67,265,5.0,854713313\n67,266,3.0,854713176\n67,272,5.0,854715905\n67,277,4.0,854714200\n67,279,5.0,854714227\n67,280,5.0,854714471\n67,282,5.0,854714367\n67,288,4.0,854713176\n67,293,4.0,854713245\n67,294,3.0,854714394\n67,296,5.0,854714282\n67,314,5.0,854714201\n67,316,3.0,854713245\n67,318,5.0,854713313\n67,337,4.0,854714201\n67,350,3.0,854714421\n67,353,5.0,854715906\n67,356,4.0,854714498\n67,362,1.0,854713245\n67,364,5.0,854715906\n67,368,3.0,854715869\n67,383,4.0,854714302\n67,412,5.0,854714283\n67,431,4.0,854713245\n67,434,2.0,854715870\n67,452,5.0,854714498\n67,454,2.0,854714246\n67,457,4.0,854713245\n67,474,3.0,854714439\n67,475,5.0,854714227\n67,480,5.0,854713313\n67,491,4.0,854714315\n67,493,4.0,854714246\n67,509,5.0,854713245\n67,515,5.0,854713177\n67,524,3.0,854714302\n67,531,5.0,854713177\n67,541,4.0,854714282\n67,553,4.0,854714201\n67,586,4.0,854713176\n67,587,3.0,854714282\n67,589,4.0,854714470\n67,590,5.0,854713175\n67,592,3.0,854715905\n67,593,5.0,854714246\n67,595,4.0,854714421\n67,597,5.0,854715870\n67,609,3.0,854711916\n67,610,4.0,854714367\n67,613,4.0,854712026\n67,616,4.0,854714201\n67,628,3.0,854711862\n67,631,3.0,854711941\n67,637,3.0,854711862\n67,648,3.0,854711771\n67,650,5.0,854712060\n67,653,3.0,854711830\n67,664,3.0,854712785\n67,694,3.0,854711978\n67,707,4.0,854711916\n67,708,3.0,854711830\n67,709,4.0,854715869\n67,711,3.0,854711916\n67,719,1.0,854711884\n67,724,3.0,854711916\n67,733,4.0,854711804\n67,736,4.0,854711770\n67,743,2.0,854711884\n67,780,4.0,854711770\n67,784,3.0,854711830\n67,788,3.0,854711830\n67,849,3.0,854712006\n67,852,3.0,854711916\n67,1027,4.0,854714367\n67,1035,3.0,854714227\n67,1073,4.0,854711804\n67,1084,4.0,854713313\n67,1097,5.0,854714302\n68,1,4.0,1194741818\n68,2,3.0,1249809905\n68,11,3.5,1249808221\n68,150,4.0,1194743603\n68,260,3.0,1219476836\n68,317,3.0,1249808197\n68,318,4.0,1219476825\n68,356,4.0,1194741632\n68,367,3.0,1219477266\n68,380,4.0,1194741556\n68,454,4.0,1249807893\n68,457,4.0,1219476842\n68,468,3.0,1194740982\n68,480,4.0,1219476819\n68,500,4.0,1194741805\n68,527,3.5,1194741627\n68,539,3.5,1219477297\n68,541,3.5,1194741800\n68,586,3.5,1219477374\n68,587,4.0,1194743787\n68,590,3.5,1194741795\n68,592,3.5,1194741615\n68,597,3.0,1249809470\n68,778,2.5,1249807905\n68,780,3.5,1249809424\n68,904,4.0,1202605433\n68,908,4.0,1202605475\n68,912,4.0,1249807876\n68,914,4.0,1219474844\n68,933,3.5,1194741164\n68,934,3.5,1194741234\n68,953,4.0,1194742690\n68,1035,4.0,1219474919\n68,1073,3.0,1194743811\n68,1097,4.0,1194742498\n68,1185,3.5,1194741096\n68,1196,4.5,1202605483\n68,1197,3.5,1194742491\n68,1198,4.0,1202605399\n68,1200,3.5,1194741774\n68,1231,4.0,1194740988\n68,1265,4.5,1194741536\n68,1270,4.0,1194742462\n68,1278,4.0,1202605808\n68,1291,4.5,1249807861\n68,1292,4.0,1194741068\n68,1302,4.5,1249808142\n68,1376,4.0,1249809645\n68,1393,4.0,1249807853\n68,1409,3.5,1194741082\n68,1580,4.0,1194743774\n68,1608,4.0,1194743647\n68,1721,3.0,1249809495\n68,1923,4.0,1194741764\n68,1951,4.0,1219474926\n68,1959,4.5,1219474934\n68,2174,4.0,1249808034\n68,2384,2.5,1194741124\n68,2420,3.5,1249808019\n68,2468,4.0,1249808396\n68,2469,3.5,1194741217\n68,2716,4.0,1219477365\n68,2746,3.5,1194741010\n68,2762,4.0,1194742454\n68,2779,3.5,1249808373\n68,2791,3.5,1194742620\n68,2797,3.5,1194742605\n68,2918,4.5,1249807840\n68,2968,1.0,1249809623\n68,3072,3.5,1194740954\n68,3148,1.5,1249808007\n68,3247,3.0,1249807997\n68,3510,4.5,1194741025\n68,3578,2.5,1194743883\n68,3699,4.0,1194741198\n68,3755,3.0,1194740965\n68,4187,4.0,1194741383\n68,4306,4.5,1194741735\n68,4886,3.5,1194741657\n68,4963,3.5,1194744286\n68,4992,3.5,1249809788\n68,4993,5.0,1194741498\n68,4995,4.0,1219474681\n68,5218,3.5,1249807965\n68,5299,3.5,1194744599\n68,5349,4.0,1194742561\n68,5418,3.5,1194741843\n68,5816,4.0,1249807951\n68,5952,5.0,1194741508\n68,5989,4.0,1194742532\n68,5995,1.5,1249807943\n68,6218,3.5,1194744481\n68,6297,3.5,1194744514\n68,6373,3.0,1249807928\n68,6377,3.0,1194741828\n68,6539,4.0,1202605771\n68,6863,3.5,1194744593\n68,6874,1.0,1194741643\n68,7147,3.5,1194741823\n68,7153,5.0,1194741503\n68,7361,3.0,1194741682\n68,8360,4.5,1194744465\n68,8529,3.0,1194742776\n68,8623,4.0,1249808534\n68,8636,4.0,1346824858\n68,8865,3.5,1249808268\n68,8961,4.0,1194742060\n68,8972,4.0,1194741870\n68,26025,3.5,1255153332\n68,26562,4.0,1194741909\n68,30707,2.5,1219474832\n68,30749,3.0,1194742092\n68,30812,3.0,1194742744\n68,31374,4.0,1292732192\n68,31658,3.5,1346824829\n68,31685,4.0,1194744606\n68,33004,2.5,1194741316\n68,45431,3.5,1194744575\n68,45517,3.5,1194744487\n68,45668,3.5,1249809801\n68,46976,3.5,1194744213\n68,54259,3.5,1202605564\n68,56367,4.5,1219474721\n69,1,5.0,1366831110\n69,2,3.5,1366831701\n69,5,5.0,1366831985\n69,19,4.0,1366831735\n69,34,4.0,1366831572\n69,39,4.5,1366831626\n69,48,4.5,1366831972\n69,104,4.0,1366831788\n69,158,3.0,1366831962\n69,231,4.0,1366831564\n69,262,4.0,1348153664\n69,296,3.5,1366831100\n69,318,5.0,1366830848\n69,344,4.0,1366831253\n69,356,5.0,1366831102\n69,357,5.0,1366831615\n69,364,5.0,1366831266\n69,374,3.5,1348153638\n69,410,3.5,1366831784\n69,500,3.5,1366831290\n69,527,5.0,1366830854\n69,586,4.5,1366831610\n69,587,5.0,1366831598\n69,595,4.0,1366831275\n69,596,3.0,1366831955\n69,597,4.5,1366831566\n69,788,2.0,1366831769\n69,919,4.5,1366831679\n69,934,5.0,1348153757\n69,1020,4.5,1348153603\n69,1028,3.0,1366831950\n69,1035,4.5,1366831980\n69,1073,4.5,1366831595\n69,1193,5.0,1366830860\n69,1265,4.5,1366831588\n69,1270,5.0,1366831245\n69,1513,3.5,1348153569\n69,1682,5.0,1366831673\n69,1704,5.0,1366831619\n69,1721,4.5,1366831288\n69,1954,3.5,1366831929\n69,1968,4.5,1366831711\n69,2011,4.5,1366831778\n69,2012,4.5,1366831752\n69,2028,4.5,1366831268\n69,2054,2.5,1366831811\n69,2059,3.5,1348153818\n69,2136,1.0,1348153829\n69,2240,4.5,1348153964\n69,2302,4.5,1366831892\n69,2321,4.0,1366831968\n69,2355,4.5,1366831744\n69,2379,3.5,1348153794\n69,2706,4.0,1366831662\n69,2918,5.0,1366831695\n69,2987,4.5,1366831713\n69,3114,5.0,1366831681\n69,3253,4.5,1366832014\n69,3668,2.5,1348153841\n69,3791,4.0,1348153799\n69,3821,0.5,1348153863\n69,3948,3.5,1366831871\n69,3977,3.5,1366831839\n69,4254,3.5,1348153974\n69,4306,5.0,1366831576\n69,4878,3.5,1366831823\n69,4886,5.0,1366831687\n69,4896,4.5,1366831855\n69,4993,5.0,1366831289\n69,5308,4.0,1348153821\n69,5349,3.5,1366831708\n69,5816,4.5,1366831993\n69,5952,5.0,1366831574\n69,6377,5.0,1366831715\n69,6539,4.0,1366831670\n69,7153,5.0,1366831604\n69,7361,4.5,1366831756\n69,8961,4.0,1366831801\n69,58047,3.0,1348154058\n69,68554,4.5,1348155188\n69,69757,5.0,1348154113\n70,1,5.0,853954235\n70,3,5.0,853954323\n70,5,5.0,853954323\n70,7,3.0,853954323\n70,9,3.0,853954486\n70,12,3.0,853954577\n70,14,3.0,853954402\n70,17,4.0,853954235\n70,25,5.0,853954235\n70,26,5.0,853954729\n70,32,4.0,853954234\n70,36,4.0,853954322\n70,52,4.0,853954401\n70,58,5.0,853954401\n70,61,4.0,853954813\n70,62,5.0,853954235\n70,63,4.0,853954893\n70,65,3.0,853954577\n70,76,4.0,853954729\n70,79,4.0,853954485\n70,81,4.0,853954893\n70,82,4.0,853954893\n70,86,4.0,853954813\n70,88,3.0,853954814\n70,92,5.0,853954814\n70,95,5.0,853954235\n70,100,4.0,853954577\n70,104,3.0,853954401\n70,107,5.0,853954577\n70,112,5.0,853954323\n70,135,4.0,853954485\n70,141,5.0,853954235\n70,376,4.0,853954323\n70,494,3.0,853954323\n70,608,5.0,853954322\n70,609,5.0,853954656\n70,613,5.0,853955020\n70,628,5.0,853954485\n70,631,5.0,853954656\n70,637,3.0,853954485\n70,640,3.0,853954656\n70,648,3.0,853954235\n70,653,5.0,853954402\n70,661,5.0,853954485\n70,663,3.0,853954814\n70,667,5.0,853954729\n70,671,3.0,853954729\n70,673,3.0,853954814\n70,694,5.0,853954893\n70,704,4.0,853954893\n70,707,5.0,853954656\n70,708,5.0,853954401\n70,711,4.0,853954656\n70,719,4.0,853954577\n70,724,3.0,853954577\n70,733,5.0,853954323\n70,736,4.0,853954235\n70,737,3.0,853954485\n70,743,3.0,853954577\n70,745,4.0,853954813\n70,748,3.0,853954729\n70,761,3.0,853954656\n70,762,4.0,853954485\n70,780,4.0,853954234\n70,784,3.0,853954402\n70,785,5.0,853954893\n70,786,5.0,853954401\n70,788,5.0,853954401\n70,799,4.0,853955020\n70,802,5.0,853954577\n70,805,5.0,853954577\n70,810,3.0,853954814\n70,832,5.0,853954656\n70,839,5.0,853954813\n70,849,5.0,853955020\n70,852,5.0,853954656\n70,880,4.0,853955020\n70,891,4.0,853954893\n70,1059,5.0,853955020\n70,1061,5.0,853955020\n70,1073,5.0,853954401\n70,1356,5.0,853954485\n70,1367,5.0,853955020\n71,581,4.0,974659023\n71,589,3.0,974659502\n71,908,5.0,974659502\n71,1171,5.0,974659646\n71,1259,4.0,974659502\n71,1284,5.0,974659502\n71,1617,5.0,974659023\n71,1673,4.0,974659502\n71,1957,4.0,974659023\n71,2858,5.0,974659408\n71,3098,4.0,974659023\n71,3125,4.0,974658951\n71,3160,5.0,974659408\n71,3422,3.0,974659023\n71,3481,4.0,974659502\n71,3626,4.0,974659408\n71,3920,5.0,974659502\n71,3925,5.0,974659646\n71,3930,4.0,974659408\n71,3932,4.0,974659593\n71,3963,3.0,974659408\n71,3965,4.0,974659696\n71,3966,5.0,974659408\n72,1,3.5,1461778737\n72,2,2.5,1461784724\n72,47,3.5,1461784392\n72,50,4.0,1461778528\n72,110,3.5,1461784365\n72,150,3.5,1461784569\n72,260,3.0,1461778719\n72,296,4.0,1461778730\n72,318,4.0,1461778524\n72,356,4.0,1461778698\n72,480,3.0,1461778746\n72,527,4.0,1461778534\n72,541,4.0,1461784459\n72,593,3.5,1461778557\n72,608,4.0,1461784432\n72,778,4.0,1461784481\n72,858,4.5,1461778530\n72,912,3.5,1461784591\n72,924,4.0,1461784596\n72,1036,3.0,1461784428\n72,1196,3.0,1461778739\n72,1200,3.0,1461784475\n72,1206,4.0,1461784499\n72,1208,4.0,1461784671\n72,1213,4.0,1461778560\n72,1221,4.0,1461778537\n72,1222,4.0,1461784640\n72,1246,3.5,1461784644\n72,1258,4.0,1461784494\n72,1270,3.0,1461778751\n72,1682,3.5,1461784424\n72,1961,3.5,1461784642\n72,2006,2.5,1461778617\n72,2028,3.5,1461784345\n72,2324,4.0,1461784445\n72,2395,3.5,1461778611\n72,2571,3.5,1461778692\n72,2628,3.0,1461784613\n72,2692,3.5,1461784742\n72,2762,4.0,1461784405\n72,2858,4.0,1461784348\n72,2918,3.0,1461784637\n72,2959,4.0,1461778563\n72,3114,3.0,1461784599\n72,3481,3.0,1461778600\n72,3578,3.0,1461778760\n72,3717,1.5,1461784035\n72,3753,2.5,1461783967\n72,3793,3.0,1461783836\n72,3897,3.0,1461783926\n72,3949,3.5,1461784442\n72,3996,3.5,1461783857\n72,4011,3.5,1461783923\n72,4018,3.0,1461784071\n72,4022,4.0,1461783913\n72,4025,1.5,1461784048\n72,4027,3.5,1461783915\n72,4226,4.0,1461783834\n72,4246,2.5,1461783988\n72,4262,4.0,1461784652\n72,4306,3.0,1461784367\n72,4447,3.0,1461784065\n72,4720,3.5,1461784011\n72,4878,4.0,1461783905\n72,4886,3.0,1461783845\n72,4963,3.0,1461783869\n72,4973,3.5,1461783841\n72,4979,3.5,1461783980\n72,4993,3.0,1461778717\n72,4995,3.5,1461783881\n72,5218,2.5,1461783975\n72,5349,3.0,1461783872\n72,5378,3.0,1461784578\n72,5418,3.0,1461783889\n72,5445,3.5,1461783865\n72,5679,3.0,1461784050\n72,5903,2.5,1461784730\n72,5952,3.0,1461778734\n72,5989,3.5,1461783920\n72,5995,3.5,1461783992\n72,6333,2.5,1461784606\n72,6377,3.0,1461783846\n72,6502,3.5,1461783983\n72,6539,3.0,1461783838\n72,6711,4.0,1461784616\n72,6863,3.0,1461784038\n72,6874,3.5,1461783871\n72,6934,2.0,1461783970\n72,7143,3.0,1461784533\n72,7147,3.5,1461783960\n72,7153,3.0,1461778706\n72,7254,3.0,1461784490\n72,7361,3.5,1461783867\n72,7438,3.0,1461783898\n72,7458,2.5,1461784661\n72,7502,3.5,1461784505\n72,8644,3.0,1461784473\n72,8874,3.0,1461783972\n72,8950,3.5,1461784759\n72,8961,2.0,1461783887\n72,31696,3.0,1461784763\n72,33794,3.0,1461783896\n72,36529,3.5,1461784702\n72,41566,3.0,1461784573\n72,44191,3.5,1461784364\n72,44195,3.5,1461784711\n72,45447,2.5,1461784674\n72,46578,3.0,1461783948\n72,47610,3.0,1461784566\n72,48385,3.0,1461784585\n72,48394,3.5,1461783951\n72,48516,3.5,1461784370\n72,49272,3.0,1461783936\n72,50872,4.0,1464722870\n72,51255,3.0,1464722875\n72,51540,3.0,1464723963\n72,51662,3.0,1461783977\n72,52281,3.5,1464723975\n72,52722,1.5,1464722915\n72,52973,2.5,1464722908\n72,53000,3.5,1464723971\n72,53125,3.0,1464722892\n72,53322,2.5,1464723952\n72,53519,3.5,1464723990\n72,53972,3.0,1464723959\n72,53996,2.0,1461784655\n72,54001,2.5,1464723939\n72,54259,3.0,1464723955\n72,54272,3.5,1464722900\n72,54286,3.0,1461783945\n72,54503,3.0,1461784582\n72,54997,3.5,1464723948\n72,55247,3.5,1461784515\n72,55269,3.5,1464723984\n72,55765,3.0,1464723945\n72,55820,5.0,1464722872\n72,56174,3.0,1464722878\n72,56367,4.0,1464722868\n72,56757,3.5,1464723967\n72,56782,4.0,1461784650\n72,58559,3.5,1461778714\n72,59315,3.0,1461784352\n72,60069,4.0,1461778757\n72,61323,3.5,1461784770\n72,64957,3.5,1461784524\n72,68157,3.5,1461783955\n72,68319,2.0,1461784744\n72,68358,3.0,1461784013\n72,68954,4.0,1461778742\n72,69122,2.0,1461784029\n72,72998,2.0,1461783938\n72,74458,3.0,1461784053\n72,79132,3.5,1461778701\n72,79702,3.0,1461784665\n72,81562,3.5,1461784766\n72,81591,3.5,1461784449\n72,82459,3.5,1461784739\n72,86882,3.5,1461784720\n72,88140,3.0,1461784574\n72,88744,3.5,1461784563\n72,89492,3.5,1461784704\n72,89745,2.5,1461784358\n72,91529,3.0,1461778763\n72,92259,4.0,1461784402\n72,94959,4.0,1461784545\n72,97752,2.5,1461784734\n72,97938,3.0,1461784588\n72,99114,3.5,1461778748\n72,102445,3.0,1461784567\n72,103249,2.5,1461784749\n72,104374,3.5,1461784700\n72,104841,3.5,1461784437\n72,105844,3.5,1461784698\n72,106100,3.5,1461784548\n72,106920,4.0,1461784455\n72,109487,3.5,1461778724\n72,112552,3.5,1461784387\n72,112852,3.0,1461784379\n72,114662,1.0,1461784707\n72,115713,3.5,1461784342\n72,116797,3.5,1461778744\n72,117176,3.5,1461784635\n72,122882,4.0,1461778755\n72,122886,3.0,1461778642\n72,122904,3.0,1461778637\n72,122920,3.0,1461778586\n72,134130,3.5,1461778626\n72,136864,1.0,1461784183\n72,139385,3.5,1461784683\n72,142488,3.0,1461778632\n72,156607,2.0,1461784162\n73,1,5.0,1303464840\n73,2,2.5,1255595527\n73,6,4.5,1337593559\n73,10,3.0,1255591764\n73,15,2.5,1255593501\n73,16,4.0,1255508530\n73,19,1.5,1255501766\n73,21,3.5,1255597031\n73,25,4.5,1337593272\n73,31,3.5,1255591860\n73,32,5.0,1354676110\n73,34,2.5,1255606447\n73,36,4.5,1339744008\n73,39,4.0,1255505029\n73,44,3.0,1255596165\n73,47,5.0,1255503386\n73,48,2.0,1255608841\n73,50,5.0,1255502804\n73,60,2.0,1470720095\n73,63,3.5,1304411684\n73,65,2.0,1255587668\n73,69,4.0,1255851405\n73,70,3.5,1255596154\n73,98,3.0,1406172306\n73,101,3.5,1312496282\n73,104,2.5,1255843848\n73,107,3.0,1255742407\n73,110,4.0,1255508598\n73,111,3.5,1255502716\n73,112,3.5,1348568488\n73,145,3.0,1255596442\n73,147,4.5,1283940446\n73,150,3.5,1286701620\n73,153,1.0,1281668214\n73,158,2.0,1255608880\n73,160,3.0,1255506790\n73,163,3.5,1255505013\n73,165,3.5,1255608532\n73,168,2.5,1256018505\n73,169,0.5,1255587428\n73,172,3.5,1255503714\n73,173,3.0,1255587153\n73,175,4.5,1255850905\n73,177,3.0,1470720332\n73,180,3.5,1255593273\n73,185,2.5,1256030057\n73,193,3.0,1266049987\n73,198,4.0,1406171781\n73,208,3.0,1255503373\n73,215,5.0,1456039608\n73,216,4.0,1304411592\n73,223,4.5,1411810971\n73,231,3.5,1264835146\n73,233,4.0,1406171065\n73,235,4.0,1255508717\n73,239,3.0,1437711199\n73,246,4.5,1255585670\n73,247,4.0,1378180010\n73,253,3.5,1255506785\n73,256,2.5,1369513505\n73,258,2.0,1470720392\n73,260,4.5,1255508202\n73,266,4.0,1398568231\n73,267,3.0,1304411765\n73,288,3.5,1255844977\n73,292,3.0,1255597661\n73,293,5.0,1306826434\n73,296,5.0,1255502790\n73,300,4.0,1290089214\n73,316,3.0,1256029728\n73,318,5.0,1255502795\n73,319,4.0,1260597912\n73,322,4.5,1311319243\n73,327,2.5,1255849588\n73,333,2.0,1255609029\n73,337,3.5,1285414310\n73,338,3.0,1255593485\n73,344,2.0,1255501759\n73,349,3.0,1256029720\n73,352,3.5,1470720434\n73,353,4.0,1255509139\n73,356,5.0,1255844449\n73,364,5.0,1303464829\n73,367,2.0,1255947440\n73,368,3.0,1457597096\n73,374,2.5,1255597004\n73,377,3.0,1256030041\n73,380,3.0,1255594331\n73,407,3.5,1280749457\n73,409,2.5,1255501745\n73,410,2.5,1255597090\n73,413,2.5,1255596999\n73,428,4.0,1311318950\n73,431,3.5,1255502945\n73,435,2.5,1304412304\n73,441,3.5,1255508982\n73,442,3.5,1304412090\n73,456,4.0,1289377723\n73,457,4.0,1261572758\n73,466,2.5,1304411724\n73,471,4.0,1296460183\n73,474,3.5,1255608640\n73,480,4.0,1255503366\n73,481,3.5,1255507407\n73,482,4.0,1429168457\n73,485,3.0,1287294447\n73,493,4.0,1255503176\n73,497,3.5,1255845005\n73,500,3.5,1272354528\n73,502,3.0,1470720213\n73,507,3.5,1470896986\n73,508,4.0,1261572653\n73,510,0.5,1255593983\n73,514,3.5,1470720182\n73,520,4.0,1255595145\n73,522,3.0,1255850852\n73,527,5.0,1255844407\n73,541,4.5,1255508022\n73,551,3.5,1255844972\n73,553,4.0,1311651342\n73,555,4.0,1255502930\n73,575,3.5,1255596533\n73,585,2.5,1470719734\n73,586,3.5,1255608112\n73,588,5.0,1303464853\n73,589,3.0,1255595915\n73,590,4.5,1255594321\n73,592,4.0,1255504505\n73,593,4.5,1281307627\n73,594,3.5,1255844780\n73,595,4.5,1303464866\n73,596,3.5,1255844932\n73,597,3.0,1256030046\n73,608,4.0,1255502799\n73,610,1.5,1398568108\n73,628,4.5,1314943073\n73,631,3.0,1470720316\n73,648,3.0,1255845002\n73,653,2.5,1256030164\n73,673,3.0,1255506758\n73,694,3.0,1470720292\n73,704,3.0,1470720380\n73,708,2.5,1256018210\n73,719,2.5,1422335223\n73,733,3.0,1256029754\n73,735,4.0,1448953137\n73,736,1.5,1255608540\n73,737,2.5,1256030591\n73,741,4.0,1264405840\n73,742,2.5,1470720372\n73,745,4.0,1255588345\n73,748,3.5,1283940897\n73,761,2.5,1470720219\n73,778,5.0,1255862403\n73,780,3.5,1457596624\n73,784,1.0,1255591836\n73,785,3.5,1304411666\n73,786,2.0,1398568202\n73,788,2.5,1255606772\n73,799,3.5,1348567967\n73,802,3.0,1418785517\n73,832,2.5,1256030174\n73,849,3.5,1255500962\n73,858,5.0,1255584436\n73,880,2.5,1255849976\n73,904,4.5,1255584412\n73,909,4.0,1255608074\n73,919,4.0,1315979781\n73,924,1.5,1255501638\n73,940,4.5,1255501801\n73,968,4.0,1255607784\n73,1015,3.5,1470720223\n73,1020,3.0,1255594607\n73,1022,3.5,1303464880\n73,1025,3.5,1279948049\n73,1027,3.5,1337594349\n73,1029,3.0,1256030424\n73,1032,3.0,1255595609\n73,1033,3.5,1282638702\n73,1036,4.5,1255508391\n73,1049,3.5,1255743474\n73,1059,3.5,1255609078\n73,1060,4.0,1255506740\n73,1061,4.0,1255947496\n73,1080,4.5,1255608654\n73,1089,3.5,1255844891\n73,1090,5.0,1255506732\n73,1093,2.0,1255595979\n73,1094,3.5,1411355622\n73,1097,4.0,1255504951\n73,1101,3.5,1255595920\n73,1120,3.5,1255609131\n73,1127,4.0,1262660448\n73,1129,4.0,1255502910\n73,1136,3.0,1255508109\n73,1148,4.0,1255588350\n73,1185,4.0,1255596971\n73,1186,3.5,1280749995\n73,1193,4.5,1266581514\n73,1194,4.0,1255503156\n73,1196,5.0,1255502779\n73,1197,5.0,1255506722\n73,1198,5.0,1255508049\n73,1199,4.5,1428469603\n73,1200,5.0,1311651122\n73,1201,5.0,1348568040\n73,1203,4.5,1255501601\n73,1204,5.0,1255504946\n73,1206,4.5,1404370293\n73,1208,5.0,1255844483\n73,1210,5.0,1255508757\n73,1213,5.0,1306826464\n73,1214,5.0,1326419215\n73,1215,4.5,1255502137\n73,1218,4.5,1339744073\n73,1220,3.5,1270610619\n73,1221,5.0,1255585464\n73,1222,4.5,1255506723\n73,1225,3.0,1255608634\n73,1228,4.5,1255587798\n73,1240,4.5,1255596621\n73,1241,4.0,1464751206\n73,1242,3.5,1432525150\n73,1245,4.0,1260977284\n73,1246,3.5,1256030107\n73,1252,4.0,1255502888\n73,1255,4.5,1378180019\n73,1257,4.0,1296952002\n73,1258,4.0,1255502784\n73,1259,3.5,1280749968\n73,1261,4.5,1268808237\n73,1262,4.0,1409452810\n73,1263,4.0,1267705648\n73,1265,4.0,1255591754\n73,1266,4.5,1337593473\n73,1270,5.0,1285479373\n73,1274,4.5,1302152229\n73,1275,4.0,1255845402\n73,1282,4.0,1255606220\n73,1285,3.5,1312496151\n73,1288,2.5,1255587965\n73,1291,5.0,1306826403\n73,1293,4.5,1255506712\n73,1298,1.5,1255591944\n73,1299,3.5,1267705570\n73,1302,2.0,1255593963\n73,1320,3.5,1255501914\n73,1321,3.0,1255501035\n73,1339,3.0,1255500860\n73,1342,3.0,1348567962\n73,1343,4.0,1411355614\n73,1345,4.0,1255593958\n73,1347,3.5,1255844967\n73,1350,3.0,1255608055\n73,1356,3.5,1437103984\n73,1358,4.0,1275964521\n73,1359,2.0,1470720209\n73,1367,2.5,1470719755\n73,1370,3.0,1255502875\n73,1372,3.5,1261667770\n73,1374,4.0,1350192487\n73,1377,3.5,1281668223\n73,1380,4.0,1255594430\n73,1387,4.0,1255502774\n73,1391,3.0,1255591429\n73,1393,4.0,1255596358\n73,1394,4.0,1296730230\n73,1396,4.0,1319337546\n73,1405,3.5,1255500918\n73,1407,4.0,1464751433\n73,1408,3.0,1398567944\n73,1438,2.5,1255501084\n73,1456,1.0,1255586834\n73,1464,3.5,1409205998\n73,1466,4.0,1255508548\n73,1479,2.5,1255609223\n73,1485,3.5,1304411853\n73,1499,2.0,1255502015\n73,1500,4.0,1369206214\n73,1515,3.0,1255843935\n73,1517,3.5,1255591360\n73,1527,3.5,1255509163\n73,1544,3.0,1256030207\n73,1552,2.5,1255597293\n73,1562,0.5,1255597075\n73,1566,4.0,1303464772\n73,1573,3.5,1331374345\n73,1580,3.0,1255607723\n73,1584,3.0,1460517728\n73,1587,4.0,1287294418\n73,1590,4.5,1406172081\n73,1591,3.0,1256028479\n73,1595,0.5,1255586362\n73,1597,3.5,1255596053\n73,1599,1.0,1255589046\n73,1603,2.5,1255597219\n73,1608,3.5,1255501843\n73,1617,4.5,1255844622\n73,1625,4.0,1255591424\n73,1639,3.5,1311319246\n73,1644,1.5,1255849480\n73,1645,3.0,1255609000\n73,1653,3.5,1295875283\n73,1673,4.0,1255508776\n73,1674,3.5,1457597070\n73,1676,3.0,1255596853\n73,1681,1.5,1255507319\n73,1682,4.5,1255509032\n73,1690,2.0,1255596139\n73,1704,4.0,1255502769\n73,1707,1.5,1255845284\n73,1721,0.5,1256552857\n73,1729,3.5,1255502846\n73,1732,4.0,1255584591\n73,1748,4.0,1354676118\n73,1752,2.0,1255593683\n73,1753,4.5,1255844646\n73,1760,0.5,1255503138\n73,1762,3.5,1406172191\n73,1777,3.0,1256030295\n73,1779,3.0,1257239744\n73,1784,4.5,1296951840\n73,1785,3.5,1369514567\n73,1792,2.5,1255596509\n73,1826,1.0,1255588837\n73,1840,3.5,1272354630\n73,1858,3.0,1470720028\n73,1862,1.0,1255589167\n73,1876,2.5,1437709517\n73,1882,1.0,1255849486\n73,1884,3.5,1255594560\n73,1909,3.5,1437709512\n73,1911,3.0,1411355597\n73,1912,4.5,1369206547\n73,1916,4.0,1381126672\n73,1917,2.0,1255591355\n73,1920,2.5,1255596503\n73,1923,3.0,1255591350\n73,1953,3.5,1272355372\n73,1954,4.5,1255506671\n73,1961,4.0,1255584855\n73,1965,3.5,1431232609\n73,1967,5.0,1306826395\n73,1968,4.5,1331019382\n73,1974,3.5,1255845278\n73,1982,4.0,1255591608\n73,1991,3.5,1255742786\n73,1994,4.0,1464751442\n73,1997,4.0,1255502851\n73,2000,4.0,1255608727\n73,2003,4.5,1262056348\n73,2004,4.0,1262056355\n73,2005,5.0,1306826463\n73,2006,3.0,1437103998\n73,2009,4.0,1406171880\n73,2011,4.0,1255502841\n73,2012,2.5,1255595963\n73,2018,4.5,1255584964\n73,2021,3.5,1411452543\n73,2023,2.5,1255595957\n73,2028,4.5,1255844560\n73,2033,3.5,1303464933\n73,2052,3.5,1470720309\n73,2054,3.5,1255608711\n73,2058,2.5,1304412471\n73,2060,2.5,1304411648\n73,2076,4.0,1255503604\n73,2078,5.0,1255502836\n73,2080,3.5,1378180034\n73,2081,3.5,1303464871\n73,2082,3.5,1282545301\n73,2087,3.5,1255844937\n73,2089,3.5,1279948023\n73,2090,3.5,1437711085\n73,2093,4.0,1406171622\n73,2096,3.0,1256027987\n73,2105,3.0,1255500870\n73,2115,5.0,1306826405\n73,2123,4.0,1406171334\n73,2124,3.5,1255506668\n73,2134,4.0,1261656604\n73,2138,4.5,1324634524\n73,2139,4.0,1303464923\n73,2140,4.0,1456038593\n73,2142,3.5,1261656636\n73,2143,3.5,1300947005\n73,2144,4.5,1364100089\n73,2148,3.5,1255844084\n73,2150,3.0,1255596126\n73,2159,3.0,1418786181\n73,2161,3.5,1261656735\n73,2164,1.0,1255589018\n73,2167,3.0,1256030336\n73,2174,4.0,1255591395\n73,2193,4.0,1259037014\n73,2194,4.0,1255584576\n73,2195,3.0,1304411810\n73,2231,4.0,1311318965\n73,2232,4.0,1267705661\n73,2248,3.5,1411876538\n73,2252,4.0,1337593722\n73,2273,3.5,1348568537\n73,2278,4.0,1259040565\n73,2288,4.0,1255502833\n73,2289,4.0,1267705538\n73,2291,3.5,1255593907\n73,2294,3.5,1255502070\n73,2302,3.0,1255844988\n73,2305,4.5,1288697512\n73,2315,2.5,1255587644\n73,2318,4.5,1430027806\n73,2321,3.0,1256030202\n73,2324,3.5,1255608781\n73,2327,3.5,1441522263\n73,2329,4.5,1255501972\n73,2335,3.0,1255502470\n73,2340,0.5,1256028414\n73,2353,2.5,1255742368\n73,2355,3.0,1255594309\n73,2360,4.0,1430034069\n73,2378,3.5,1369513448\n73,2387,3.5,1255504073\n73,2391,3.5,1454042117\n73,2394,3.5,1431234283\n73,2395,4.5,1381126595\n73,2396,4.0,1255584959\n73,2402,3.0,1255593426\n73,2403,3.5,1255593420\n73,2404,3.0,1255586748\n73,2406,3.0,1275964632\n73,2409,4.0,1255608040\n73,2410,3.0,1255507270\n73,2411,3.5,1255844856\n73,2412,2.0,1255844835\n73,2420,4.5,1255591400\n73,2421,4.0,1427170335\n73,2422,3.0,1427170376\n73,2424,1.5,1255597066\n73,2427,4.0,1315969124\n73,2428,2.0,1255850016\n73,2429,2.0,1255593663\n73,2431,4.0,1255608035\n73,2451,3.5,1261487007\n73,2455,4.0,1266665318\n73,2459,4.5,1381045859\n73,2460,3.0,1441522359\n73,2467,4.5,1369205876\n73,2470,3.0,1474615000\n73,2490,3.5,1255844950\n73,2495,3.5,1274265898\n73,2502,4.5,1255508410\n73,2528,3.5,1406171915\n73,2529,4.5,1406171911\n73,2541,2.0,1256030469\n73,2542,4.5,1255508246\n73,2551,3.0,1469772944\n73,2555,1.0,1255586425\n73,2560,4.0,1275964192\n73,2571,4.5,1282543426\n73,2572,3.5,1437709524\n73,2580,4.5,1296460015\n73,2582,3.0,1427170447\n73,2596,4.0,1255844787\n73,2599,4.5,1429168678\n73,2605,2.0,1256030461\n73,2606,3.5,1369514518\n73,2617,3.5,1464751460\n73,2628,2.5,1255591345\n73,2657,2.0,1256944354\n73,2671,3.0,1437709506\n73,2683,3.0,1255596353\n73,2687,4.0,1279948065\n73,2692,4.5,1357552985\n73,2694,3.0,1255597830\n73,2699,3.0,1255502120\n73,2700,3.5,1255844776\n73,2701,2.0,1255586467\n73,2706,3.5,1255501979\n73,2707,4.0,1312496216\n73,2710,3.5,1255591385\n73,2712,4.5,1404370203\n73,2713,1.5,1255947627\n73,2716,4.5,1282545089\n73,2717,3.0,1282545112\n73,2720,1.0,1255587084\n73,2722,2.5,1472698650\n73,2723,3.0,1256019289\n73,2724,2.5,1304412607\n73,2728,4.0,1411876466\n73,2734,3.0,1369513635\n73,2746,3.0,1259325836\n73,2761,2.5,1257229357\n73,2762,4.0,1255508479\n73,2770,3.0,1255591390\n73,2791,3.5,1255501853\n73,2797,3.5,1273043702\n73,2798,3.0,1255844915\n73,2804,4.0,1255588083\n73,2808,2.0,1255596937\n73,2841,4.0,1314942833\n73,2858,4.5,1255844727\n73,2860,3.0,1348568560\n73,2862,3.5,1255506106\n73,2867,4.0,1303465749\n73,2871,4.5,1390127454\n73,2872,3.5,1255849777\n73,2879,3.5,1348568747\n73,2890,3.5,1255509017\n73,2900,3.0,1464508137\n73,2901,3.5,1456038664\n73,2915,3.5,1411355584\n73,2916,4.0,1348568388\n73,2918,4.5,1296952036\n73,2921,4.0,1470985538\n73,2924,4.5,1427170200\n73,2947,4.0,1369205974\n73,2948,4.5,1357552974\n73,2951,4.0,1470729030\n73,2952,4.0,1431584423\n73,2953,2.5,1255849720\n73,2959,5.0,1309081686\n73,2968,3.5,1432523188\n73,2974,1.0,1255586415\n73,2985,4.0,1337593255\n73,2987,3.5,1255607717\n73,2997,4.5,1262056591\n73,3006,4.5,1334396063\n73,3013,3.5,1406172160\n73,3016,4.0,1437710007\n73,3018,3.5,1261487189\n73,3019,4.0,1475124698\n73,3020,4.0,1312496325\n73,3033,3.5,1255596722\n73,3034,4.5,1303464905\n73,3036,4.0,1296730204\n73,3052,3.0,1255509153\n73,3070,3.0,1337594327\n73,3081,2.5,1255503566\n73,3082,2.5,1255500985\n73,3101,3.5,1256018249\n73,3104,4.0,1339743989\n73,3108,4.0,1267705250\n73,3113,2.5,1474615285\n73,3114,4.0,1274265884\n73,3146,2.0,1255743364\n73,3147,3.5,1257228558\n73,3153,4.0,1255606347\n73,3160,3.5,1255845019\n73,3173,2.5,1255845250\n73,3174,4.0,1303466268\n73,3175,2.5,1255608868\n73,3178,4.0,1255850836\n73,3210,3.5,1255508823\n73,3213,4.5,1281668156\n73,3252,4.0,1267705304\n73,3253,3.5,1304411787\n73,3254,2.5,1256028073\n73,3255,2.5,1255500852\n73,3256,3.0,1256030417\n73,3263,4.0,1255505507\n73,3265,4.0,1331375405\n73,3267,3.5,1475124680\n73,3273,2.5,1255607878\n73,3275,3.5,1255507224\n73,3298,4.0,1255504005\n73,3300,3.5,1369514944\n73,3328,4.5,1355922434\n73,3360,3.5,1279948734\n73,3361,3.5,1261572674\n73,3362,4.0,1255596921\n73,3363,4.0,1369513307\n73,3424,4.0,1281668274\n73,3426,3.5,1255742725\n73,3438,3.5,1255592969\n73,3439,3.0,1255586543\n73,3440,1.5,1255586548\n73,3448,3.5,1255597612\n73,3471,3.0,1264493967\n73,3476,4.0,1264751860\n73,3479,4.0,1422335547\n73,3481,4.0,1320810501\n73,3489,3.5,1255597607\n73,3499,4.0,1320810452\n73,3527,3.5,1282543451\n73,3535,4.5,1395987897\n73,3552,4.0,1303466242\n73,3554,3.0,1255506079\n73,3555,2.0,1255594378\n73,3573,0.5,1255588774\n73,3574,0.5,1255588780\n73,3578,4.0,1255584828\n73,3581,4.0,1289045177\n73,3593,0.5,1255588769\n73,3617,2.5,1255591380\n73,3623,2.0,1255608746\n73,3671,3.0,1255595938\n73,3681,4.5,1470896634\n73,3687,3.5,1469772991\n73,3688,3.0,1255844919\n73,3696,4.0,1466320273\n73,3698,4.0,1287294312\n73,3702,2.5,1258367323\n73,3703,3.5,1258367400\n73,3704,3.5,1259389532\n73,3706,4.5,1464750953\n73,3717,3.5,1370057557\n73,3727,3.5,1464751470\n73,3728,4.0,1418461988\n73,3735,4.0,1343119731\n73,3740,3.5,1255596218\n73,3745,3.5,1259325859\n73,3751,2.0,1255608143\n73,3752,2.5,1255594368\n73,3753,3.0,1255597273\n73,3755,3.0,1255844941\n73,3761,4.0,1296459580\n73,3785,3.0,1255591794\n73,3793,2.5,1255608592\n73,3821,1.5,1255608249\n73,3826,1.5,1257229260\n73,3843,4.0,1435472709\n73,3852,3.5,1261573299\n73,3861,2.5,1255596214\n73,3882,1.5,1255742451\n73,3897,4.0,1255859036\n73,3916,3.5,1255844895\n73,3917,3.0,1262826535\n73,3948,4.0,1304411842\n73,3949,4.0,1255504813\n73,3950,3.5,1312496194\n73,3955,3.0,1304411604\n73,3961,3.0,1255742998\n73,3962,2.5,1255586357\n73,3967,3.5,1255849638\n73,3970,4.5,1431234143\n73,3972,4.0,1427170187\n73,3977,2.0,1255608483\n73,3979,0.5,1255503033\n73,3986,3.0,1369513586\n73,3994,2.5,1255596840\n73,3996,3.5,1255591337\n73,4002,3.0,1257229345\n73,4006,4.0,1274265922\n73,4007,4.0,1396156423\n73,4011,4.5,1255508282\n73,4014,4.0,1255584991\n73,4015,2.5,1255742448\n73,4018,3.0,1255597278\n73,4019,3.0,1255845245\n73,4022,3.0,1255594363\n73,4025,2.5,1256030443\n73,4027,4.5,1309414189\n73,4034,4.5,1256029491\n73,4054,2.0,1255608233\n73,4069,1.5,1456038994\n73,4085,3.5,1255609092\n73,4103,4.5,1283169534\n73,4105,4.0,1268808234\n73,4128,3.5,1255845024\n73,4135,3.5,1437710061\n73,4148,3.0,1418462162\n73,4214,3.5,1255844881\n73,4223,3.5,1255849756\n73,4226,4.5,1255508007\n73,4232,0.5,1255596198\n73,4239,4.5,1255503937\n73,4246,2.5,1255608478\n73,4255,0.5,1255592082\n73,4262,4.0,1255506569\n73,4270,2.5,1255596703\n73,4275,4.0,1411452469\n73,4299,2.5,1256019294\n73,4306,4.0,1303464731\n73,4308,2.5,1257228611\n73,4310,1.0,1255849364\n73,4340,2.0,1255845363\n73,4343,2.5,1255596208\n73,4344,3.5,1255507158\n73,4351,4.0,1429168542\n73,4361,4.0,1255502625\n73,4367,1.5,1257229023\n73,4369,5.0,1369515350\n73,4370,2.5,1255609063\n73,4378,3.5,1255844800\n73,4388,2.0,1255596203\n73,4415,3.5,1255506563\n73,4437,3.5,1457597545\n73,4438,4.0,1337593133\n73,4441,3.0,1428469574\n73,4443,4.0,1457596520\n73,4444,4.0,1427170203\n73,4447,1.5,1255608385\n73,4448,3.5,1456038999\n73,4454,3.5,1256944285\n73,4467,4.5,1427168121\n73,4488,3.5,1370057531\n73,4519,5.0,1306826427\n73,4533,3.0,1255593845\n73,4553,4.5,1441514881\n73,4571,3.5,1255596109\n73,4577,4.0,1448953321\n73,4614,3.5,1427170442\n73,4618,3.5,1406172273\n73,4619,2.5,1296952145\n73,4621,2.0,1255505425\n73,4624,4.0,1418462025\n73,4638,3.0,1255594496\n73,4641,4.0,1282545187\n73,4642,4.0,1456039121\n73,4643,2.5,1255742990\n73,4697,3.5,1448953270\n73,4701,3.0,1255845239\n73,4713,4.5,1409205919\n73,4718,3.0,1255596106\n73,4720,3.5,1304411492\n73,4728,1.5,1255608222\n73,4734,3.0,1255591538\n73,4744,1.5,1255594879\n73,4775,0.5,1255606781\n73,4776,3.5,1255509080\n73,4800,4.0,1255505417\n73,4816,2.0,1255594188\n73,4823,3.0,1255844809\n73,4846,4.0,1427170169\n73,4848,3.5,1272355409\n73,4855,4.0,1352959815\n73,4865,3.5,1306826998\n73,4873,4.0,1295875347\n73,4874,4.0,1259411120\n73,4878,4.0,1448953284\n73,4886,3.0,1255608487\n73,4890,2.5,1255607838\n73,4896,3.0,1312496381\n73,4899,2.0,1456039352\n73,4915,3.5,1331374381\n73,4963,3.5,1255844964\n73,4974,3.0,1255844032\n73,4975,3.5,1272354473\n73,4979,4.0,1398567966\n73,4980,3.5,1255591532\n73,4987,3.0,1406172104\n73,4989,3.0,1255504768\n73,4993,5.0,1306826438\n73,4995,4.5,1255595932\n73,5010,4.0,1304412210\n73,5014,4.5,1315969212\n73,5025,3.0,1256030678\n73,5040,3.5,1255592071\n73,5055,3.0,1255742674\n73,5064,4.0,1264835164\n73,5094,0.5,1255586200\n73,5103,4.0,1273217119\n73,5110,3.0,1255606569\n73,5139,3.5,1369514322\n73,5146,4.0,1262569280\n73,5151,3.0,1256030657\n73,5152,3.0,1456039054\n73,5159,4.0,1406171597\n73,5165,4.0,1441514214\n73,5205,3.5,1448953334\n73,5210,3.5,1435472845\n73,5218,3.0,1304411962\n73,5219,3.0,1255844887\n73,5244,5.0,1387082402\n73,5266,3.5,1448953194\n73,5283,3.0,1255593557\n73,5294,3.5,1395987921\n73,5299,3.0,1460517505\n73,5313,2.0,1456039090\n73,5329,4.5,1306065234\n73,5349,4.0,1348568293\n73,5378,3.0,1255591376\n73,5388,3.0,1255591889\n73,5401,3.0,1304411695\n73,5418,3.0,1256017396\n73,5445,3.0,1255503508\n73,5449,3.0,1255503893\n73,5452,1.0,1256030597\n73,5459,2.0,1255608382\n73,5463,3.0,1456039073\n73,5464,3.5,1304412191\n73,5481,2.0,1255849610\n73,5502,2.5,1255609142\n73,5504,0.5,1255742979\n73,5507,1.5,1255503888\n73,5524,2.0,1456039270\n73,5540,4.0,1255606114\n73,5541,2.5,1337594371\n73,5572,1.5,1257164626\n73,5574,2.5,1256029172\n73,5585,1.0,1255587508\n73,5617,3.5,1431406170\n73,5618,4.0,1348568766\n73,5621,2.0,1427170483\n73,5630,3.5,1255850919\n73,5666,4.0,1255742663\n73,5669,4.0,1255584902\n73,5673,4.5,1337591896\n73,5679,3.0,1255595533\n73,5690,4.0,1311653407\n73,5691,2.5,1255587123\n73,5734,2.5,1256029535\n73,5735,3.5,1256029550\n73,5736,2.5,1255588990\n73,5737,2.0,1255588995\n73,5746,4.5,1406172244\n73,5810,3.5,1255501720\n73,5816,3.0,1312496408\n73,5882,3.5,1406172340\n73,5902,4.0,1338530999\n73,5903,4.0,1255507053\n73,5942,2.0,1456039316\n73,5943,2.0,1456039164\n73,5952,5.0,1306826436\n73,5954,4.0,1309761451\n73,5955,3.5,1279948760\n73,5956,3.5,1255503878\n73,5959,4.0,1285311199\n73,5989,4.0,1266581545\n73,5991,1.5,1255608120\n73,6016,5.0,1255503493\n73,6025,4.0,1406172365\n73,6155,3.0,1411355691\n73,6156,3.5,1369513550\n73,6157,0.5,1255503002\n73,6188,3.5,1255844960\n73,6212,2.0,1456039319\n73,6213,2.5,1456039235\n73,6218,2.5,1255849679\n73,6223,4.0,1255504698\n73,6281,3.0,1432523137\n73,6287,2.5,1304411827\n73,6298,0.5,1255586932\n73,6303,3.5,1255503222\n73,6323,4.5,1315969183\n73,6333,3.5,1417081916\n73,6338,3.0,1369514779\n73,6365,2.0,1255596285\n73,6373,2.5,1255591371\n73,6377,4.0,1255584888\n73,6378,3.0,1417081929\n73,6379,2.5,1309414298\n73,6383,3.0,1369515372\n73,6440,4.0,1411451683\n73,6502,3.0,1255501671\n73,6503,1.5,1255843864\n73,6534,0.5,1257229292\n73,6537,2.0,1255503487\n73,6539,4.0,1255509006\n73,6548,2.0,1255595377\n73,6559,4.0,1337594385\n73,6564,3.0,1369513547\n73,6565,2.5,1257229160\n73,6566,0.5,1255589036\n73,6582,3.0,1427170631\n73,6586,3.0,1464508095\n73,6593,0.5,1256029804\n73,6595,1.5,1256028643\n73,6602,3.5,1460519359\n73,6615,1.5,1255742653\n73,6659,4.0,1255502597\n73,6664,3.0,1337594381\n73,6695,1.5,1255587133\n73,6707,2.5,1348567959\n73,6708,4.0,1378179956\n73,6711,4.5,1273216574\n73,6731,4.0,1471332878\n73,6754,3.5,1457596987\n73,6755,4.5,1304411442\n73,6774,3.5,1289045130\n73,6796,4.5,1255502997\n73,6803,4.0,1448953300\n73,6807,3.0,1255591789\n73,6816,4.0,1295874873\n73,6820,3.0,1471332819\n73,6857,3.5,1264405832\n73,6863,2.5,1257228185\n73,6870,4.0,1260877884\n73,6874,4.5,1384069892\n73,6887,3.5,1369514741\n73,6888,2.0,1464508090\n73,6902,3.5,1257222707\n73,6934,2.0,1255503478\n73,6936,2.0,1255596893\n73,6947,3.0,1441513227\n73,6952,3.0,1255593542\n73,6953,3.5,1255588164\n73,6957,2.0,1255607831\n73,6977,3.0,1279947114\n73,7001,4.0,1378179792\n73,7007,4.0,1429168553\n73,7022,4.5,1337593385\n73,7036,3.5,1261656678\n73,7045,3.5,1454042575\n73,7046,3.0,1256029303\n73,7063,4.0,1411451412\n73,7090,4.0,1337594037\n73,7099,4.5,1348568786\n73,7117,3.0,1261486850\n73,7137,4.0,1311654117\n73,7143,2.5,1256030436\n73,7147,2.0,1255594326\n73,7153,5.0,1255503465\n73,7161,2.0,1456039242\n73,7235,4.5,1337593642\n73,7254,3.5,1255849692\n73,7285,4.0,1289046716\n73,7293,3.5,1255594489\n73,7308,3.5,1474614697\n73,7317,4.0,1255607425\n73,7318,3.0,1255591876\n73,7324,2.5,1257164378\n73,7325,2.5,1255596889\n73,7346,3.0,1288095855\n73,7360,3.0,1255591517\n73,7361,4.5,1255508137\n73,7367,2.0,1260977308\n73,7373,3.5,1304412434\n73,7387,3.5,1255503212\n73,7411,3.0,1255844992\n73,7419,4.0,1411810861\n73,7438,4.0,1255585779\n73,7445,3.5,1255606539\n73,7454,1.5,1255743175\n73,7458,2.0,1255595662\n73,7481,4.0,1257418583\n73,7482,4.0,1255850712\n73,7502,4.0,1352959898\n73,7701,1.5,1256559095\n73,7743,3.5,1279948092\n73,7802,5.0,1308113349\n73,7842,2.5,1287575320\n73,7844,4.0,1441513891\n73,7845,3.0,1255503838\n73,7846,2.5,1255586520\n73,7915,3.5,1423801745\n73,7976,4.0,1273217198\n73,7984,3.5,1448953187\n73,7987,3.5,1435474813\n73,8131,4.0,1456039436\n73,8340,4.5,1406172202\n73,8360,3.5,1303464741\n73,8361,3.0,1255742433\n73,8363,1.5,1255589173\n73,8368,3.5,1312496376\n73,8371,3.0,1456039039\n73,8372,1.0,1256029799\n73,8373,2.5,1256030665\n73,8376,3.5,1255844984\n73,8507,3.5,1411451654\n73,8526,2.5,1427170338\n73,8528,3.0,1255596174\n73,8529,4.0,1304412427\n73,8531,2.0,1456039261\n73,8622,3.5,1255742327\n73,8636,3.5,1348568288\n73,8638,4.5,1398568522\n73,8640,2.5,1456039172\n73,8641,4.5,1304411558\n73,8644,3.0,1255502811\n73,8665,3.0,1256017177\n73,8783,2.5,1256019169\n73,8784,4.0,1381126678\n73,8798,3.0,1255593134\n73,8807,3.0,1255608196\n73,8810,2.0,1255843862\n73,8811,0.5,1255588939\n73,8854,3.5,1441522129\n73,8859,0.5,1255588886\n73,8861,2.5,1255594684\n73,8874,4.0,1348568180\n73,8906,4.0,1464751323\n73,8910,4.0,1448953173\n73,8914,3.0,1296460230\n73,8917,3.5,1255591865\n73,8928,3.5,1475989020\n73,8947,0.5,1255592030\n73,8949,3.5,1304412144\n73,8950,4.5,1404370289\n73,8957,4.0,1255844819\n73,8961,3.0,1255597036\n73,8972,3.0,1256019079\n73,8984,2.5,1255742417\n73,25962,4.0,1255851182\n73,26258,4.5,1398568001\n73,26403,3.5,1359617333\n73,26480,3.0,1406172493\n73,26547,4.5,1347441796\n73,26585,3.5,1456038539\n73,26603,3.5,1469772963\n73,26606,4.0,1432788454\n73,26684,3.5,1437710037\n73,26704,4.0,1317177146\n73,26729,3.0,1255587770\n73,26736,4.0,1427170642\n73,26842,4.0,1427170496\n73,27002,2.5,1255589582\n73,27022,4.5,1359974275\n73,27032,4.0,1427170460\n73,27109,4.5,1423801920\n73,27317,4.5,1369206010\n73,27369,3.5,1255590127\n73,27478,2.5,1255501883\n73,27555,4.0,1319337509\n73,27604,4.0,1474263883\n73,27611,2.0,1256029681\n73,27646,4.5,1295874824\n73,27660,4.5,1282543364\n73,27704,2.5,1337593382\n73,27706,3.0,1255596884\n73,27772,1.0,1456039398\n73,27773,5.0,1350192496\n73,27778,3.5,1431234249\n73,27793,2.0,1255589041\n73,27800,3.5,1255947240\n73,27801,4.0,1427170205\n73,27808,3.0,1427168079\n73,27831,4.0,1319337521\n73,27904,3.5,1262838012\n73,30707,4.5,1422335423\n73,30749,5.0,1255844444\n73,30810,4.0,1381126659\n73,30812,3.5,1457597312\n73,30820,3.5,1469772912\n73,30825,3.0,1255596762\n73,31150,4.0,1406171407\n73,31225,3.5,1255844160\n73,31290,0.5,1354679048\n73,31422,1.0,1255587749\n73,31431,1.0,1255743146\n73,31435,4.5,1295591221\n73,31685,3.0,1255596758\n73,31696,3.0,1255595655\n73,31878,3.5,1337593113\n73,32352,3.0,1289046552\n73,32387,4.0,1469772672\n73,32587,4.5,1255508160\n73,32596,2.5,1255845334\n73,33004,3.0,1255843857\n73,33162,4.0,1301481269\n73,33164,1.0,1255587163\n73,33166,5.0,1259323569\n73,33171,4.0,1273217166\n73,33493,3.0,1255595926\n73,33679,2.0,1256018225\n73,33794,4.0,1345798859\n73,33834,3.0,1255507534\n73,34048,2.5,1255607814\n73,34150,3.0,1369513542\n73,34162,3.0,1257228496\n73,34319,3.0,1255591870\n73,34405,3.5,1255844803\n73,34437,3.5,1309414233\n73,34530,2.0,1255506326\n73,35836,3.0,1255596097\n73,36519,2.5,1255845337\n73,36529,3.5,1255508666\n73,36708,3.5,1255592012\n73,37386,3.0,1255845325\n73,37731,4.5,1289377714\n73,37733,4.0,1331809803\n73,38061,1.5,1256029685\n73,39381,3.5,1457320124\n73,39446,3.5,1256028349\n73,40278,3.5,1369513527\n73,40574,3.0,1255505821\n73,40629,1.5,1256029392\n73,40732,4.0,1348567955\n73,40815,3.5,1312496387\n73,41285,3.5,1411355658\n73,41566,3.0,1417081946\n73,41569,2.5,1257228521\n73,41997,4.0,1255503794\n73,42011,3.0,1255844003\n73,42723,3.0,1256030828\n73,42725,3.5,1454043394\n73,43838,3.5,1304412896\n73,43919,1.0,1255588757\n73,43921,4.0,1337593212\n73,43936,3.0,1256030820\n73,44191,4.0,1284880889\n73,44195,3.5,1255502976\n73,44199,4.0,1315969272\n73,44245,4.0,1304412870\n73,44397,3.0,1309414323\n73,44665,4.0,1302152616\n73,44761,4.5,1288782721\n73,44972,2.0,1256559191\n73,44974,4.0,1288096054\n73,45183,3.0,1427170230\n73,45186,2.5,1257229414\n73,45447,2.5,1454042655\n73,45506,4.0,1261217204\n73,45666,0.5,1255742925\n73,45672,1.0,1255591703\n73,45722,3.5,1255844928\n73,45726,2.5,1255742920\n73,45728,3.0,1255508977\n73,46322,4.0,1355922906\n73,46335,3.0,1369515354\n73,46337,0.5,1255587403\n73,46578,3.5,1255584710\n73,46865,1.0,1255586255\n73,46965,2.5,1454042857\n73,46970,2.5,1362112175\n73,46972,3.5,1411355653\n73,46976,4.0,1418784900\n73,47099,3.5,1255844905\n73,47200,3.5,1255593521\n73,47610,4.0,1303465599\n73,47640,3.0,1255504580\n73,47815,0.5,1255586400\n73,47997,4.0,1256027956\n73,48043,3.5,1296460156\n73,48304,3.5,1255502085\n73,48385,3.5,1255506853\n73,48394,3.5,1466320346\n73,48516,4.0,1345798905\n73,48591,0.5,1255587385\n73,48696,4.0,1369514062\n73,48744,3.5,1457597587\n73,48774,4.5,1354676065\n73,48780,4.5,1268806416\n73,48877,2.5,1256030711\n73,49272,4.0,1354676002\n73,49278,3.0,1422335258\n73,49526,2.5,1255586478\n73,49528,2.5,1259837617\n73,49530,3.5,1255502965\n73,49649,2.5,1257164355\n73,49651,3.0,1256030617\n73,49817,4.0,1306826934\n73,50641,5.0,1441514296\n73,50651,3.0,1286699648\n73,50794,2.5,1256030870\n73,50798,1.0,1255588747\n73,50806,1.0,1255586233\n73,50872,3.0,1255596877\n73,51255,2.5,1255845225\n73,51277,4.5,1337593162\n73,51540,4.0,1441514086\n73,51662,3.0,1255501684\n73,51931,4.0,1337593096\n73,51937,2.5,1309414319\n73,52245,3.0,1454042794\n73,52281,3.5,1255592002\n73,52328,3.5,1441513955\n73,52458,3.0,1256029140\n73,52462,3.5,1255502108\n73,52604,4.5,1315969200\n73,52722,2.0,1348568291\n73,52952,4.0,1255502672\n73,52973,3.0,1257228572\n73,53000,3.5,1255591698\n73,53121,2.0,1255742621\n73,53125,3.0,1255503784\n73,53318,4.5,1304411411\n73,53322,2.0,1256018404\n73,53468,4.0,1274526720\n73,53519,3.5,1384070152\n73,53550,4.0,1311653909\n73,53972,3.0,1257228718\n73,53996,2.5,1256018025\n73,54001,3.5,1312496372\n73,54190,2.0,1256029937\n73,54272,3.0,1256017323\n73,54286,3.0,1255947527\n73,54290,0.5,1255588933\n73,54331,4.0,1270610590\n73,54503,4.0,1260273754\n73,54648,3.0,1255503405\n73,54745,3.5,1323247224\n73,54995,3.5,1255844923\n73,54997,4.0,1285673360\n73,55052,4.0,1312496234\n73,55094,4.0,1312496164\n73,55207,4.0,1457598523\n73,55232,2.5,1256030803\n73,55245,3.0,1369514644\n73,55247,4.0,1264751836\n73,55269,3.5,1281668271\n73,55290,4.0,1302604152\n73,55577,3.0,1255844816\n73,55721,4.5,1259837542\n73,55765,3.5,1255501962\n73,55805,2.5,1256029998\n73,55820,4.5,1255508012\n73,55830,3.5,1255504199\n73,55995,2.0,1423801583\n73,56003,2.5,1286794236\n73,56145,4.0,1464751381\n73,56174,2.5,1255596747\n73,56251,3.5,1255505761\n73,56367,3.5,1255502960\n73,56587,3.0,1457598052\n73,56757,2.5,1255596552\n73,56775,2.5,1473060722\n73,56782,4.0,1255508166\n73,56801,2.0,1256559213\n73,57368,1.5,1255594676\n73,57528,3.5,1255844900\n73,57532,1.0,1255586222\n73,57640,3.0,1255592007\n73,57669,4.0,1255844632\n73,58025,1.5,1255596555\n73,58146,0.5,1255586134\n73,58293,1.0,1255501589\n73,58295,3.0,1454042795\n73,58301,4.0,1471759060\n73,58315,1.0,1255586976\n73,58351,4.0,1259837601\n73,58559,5.0,1345798871\n73,58627,3.5,1427170416\n73,58803,3.0,1255501647\n73,58975,2.5,1435472881\n73,58998,3.5,1454042671\n73,59014,1.0,1255589062\n73,59022,2.5,1454043041\n73,59315,3.0,1255597366\n73,59369,3.0,1255596548\n73,59387,3.5,1255606270\n73,59615,1.5,1255591493\n73,59784,2.5,1257228964\n73,59900,2.0,1454042917\n73,59995,4.5,1255607031\n73,60037,2.0,1255503396\n73,60069,3.0,1255508072\n73,60072,2.5,1255591693\n73,60074,2.0,1255593506\n73,60126,2.0,1255844138\n73,60161,4.0,1255503392\n73,60293,5.0,1259323222\n73,60487,3.5,1437711118\n73,60609,4.0,1259323854\n73,60684,3.0,1255505738\n73,60753,3.0,1288697624\n73,60756,4.0,1304411580\n73,61024,3.5,1457597334\n73,61132,3.5,1255843975\n73,61248,3.0,1369514646\n73,61323,3.5,1457318292\n73,61348,0.5,1255588727\n73,61394,3.5,1255844953\n73,62394,1.0,1256559067\n73,62434,3.5,1430034154\n73,62801,4.0,1384069863\n73,62912,0.5,1255587337\n73,62956,3.5,1255504546\n73,63072,3.5,1266309913\n73,63082,5.0,1255587902\n73,63113,2.0,1256018282\n73,63131,3.0,1255742863\n73,63540,0.5,1255586420\n73,63826,3.0,1337593619\n73,63876,4.0,1259325788\n73,63992,2.0,1454042733\n73,64197,4.0,1441513491\n73,64508,1.0,1255589051\n73,64614,4.5,1296209705\n73,64716,4.0,1312495981\n73,64839,5.0,1267705501\n73,64900,4.0,1435472671\n73,64957,4.5,1255606209\n73,64983,3.5,1418785824\n73,65126,4.0,1262826563\n73,65310,3.0,1406172474\n73,65514,4.5,1329122482\n73,65982,3.5,1460517652\n73,66066,0.5,1255506219\n73,66090,4.0,1432523734\n73,66297,3.5,1255851305\n73,66335,3.5,1255501824\n73,66934,4.0,1441513660\n73,67252,3.5,1427170617\n73,67255,4.0,1334134888\n73,67665,3.0,1255509258\n73,67695,3.0,1273231862\n73,67734,3.5,1423801587\n73,67923,3.5,1369515334\n73,68073,4.0,1272351330\n73,68157,4.0,1259037238\n73,68159,4.0,1315969142\n73,68237,4.0,1256944127\n73,68319,3.0,1454042683\n73,68358,3.5,1255508067\n73,68444,3.0,1257228665\n73,68554,2.5,1454042767\n73,68901,3.5,1289995423\n73,68952,3.5,1348567926\n73,68954,4.0,1284880892\n73,68959,2.5,1255851331\n73,68965,0.5,1261217423\n73,69122,3.5,1255584542\n73,69306,3.0,1260280418\n73,69481,4.0,1262471588\n73,69640,3.5,1256639055\n73,69685,3.0,1476086345\n73,69746,2.5,1255850946\n73,69757,4.5,1275964203\n73,69844,3.5,1312496413\n73,70286,3.5,1255505699\n73,70465,4.0,1319336907\n73,70946,0.5,1257228032\n73,71057,3.0,1263197192\n73,71106,4.0,1312496343\n73,71135,4.5,1406172090\n73,71248,3.5,1264835071\n73,71379,3.5,1268808266\n73,71429,4.5,1457597657\n73,71466,4.0,1280749920\n73,71520,4.0,1262487606\n73,71533,3.0,1262490949\n73,71535,4.0,1257418656\n73,71745,3.5,1369514017\n73,71838,2.0,1260877856\n73,72011,4.0,1262660477\n73,72171,3.5,1441513896\n73,72226,4.0,1311319024\n73,72603,3.0,1437711220\n73,72641,4.0,1279948740\n73,72733,4.5,1279948672\n73,72998,4.0,1261487370\n73,73023,4.0,1331019387\n73,73268,3.0,1270610716\n73,73321,3.0,1279948662\n73,73759,4.0,1273212258\n73,74416,4.5,1270626393\n73,74458,4.5,1369205637\n73,74545,4.0,1284788822\n73,74851,3.5,1432523566\n73,74944,3.5,1279947051\n73,74948,4.0,1288782501\n73,75813,3.5,1471493475\n73,76060,2.0,1288697300\n73,76077,3.5,1277244869\n73,76093,4.0,1287639123\n73,76251,4.5,1274171831\n73,76272,3.5,1279948640\n73,77561,2.5,1286184933\n73,77800,3.5,1293747419\n73,77837,3.5,1293747383\n73,77866,2.5,1454042956\n73,78209,3.0,1286699464\n73,78266,2.5,1295874843\n73,78349,3.5,1289045492\n73,78469,3.0,1369514012\n73,78499,4.5,1290170524\n73,78574,3.5,1288262844\n73,78772,2.0,1454041525\n73,79008,4.5,1280207089\n73,79057,3.5,1337594376\n73,79091,4.0,1334134881\n73,79132,4.0,1354676128\n73,79242,3.5,1296730408\n73,79251,3.5,1470450406\n73,79274,4.0,1281668137\n73,79357,5.0,1286364707\n73,79553,3.5,1334396237\n73,79695,3.5,1337593917\n73,79702,4.0,1290923031\n73,79720,3.5,1476081506\n73,79879,2.5,1457597559\n73,80083,3.5,1304412705\n73,80219,4.0,1288095832\n73,80463,4.5,1295875330\n73,80489,4.0,1293747396\n73,80693,4.0,1303283044\n73,80831,3.0,1320810425\n73,80846,2.5,1457597487\n73,81083,3.5,1437709564\n73,81562,3.5,1300946992\n73,81564,5.0,1303464661\n73,81591,4.0,1294806059\n73,81660,2.5,1406172509\n73,81788,4.0,1331889469\n73,81834,4.0,1312496405\n73,81932,4.0,1301291585\n73,82041,3.5,1471332805\n73,82459,4.0,1411355319\n73,82527,4.0,1311318839\n73,82667,4.5,1374355498\n73,83134,4.0,1323226011\n73,83613,3.0,1411452415\n73,84152,4.0,1311318846\n73,84772,3.0,1315968775\n73,84944,4.0,1311651421\n73,85342,5.0,1308222797\n73,85401,4.5,1431584367\n73,85414,4.5,1315968748\n73,85788,4.0,1348567976\n73,85881,3.5,1317176746\n73,86142,4.0,1384069356\n73,86644,3.5,1369515303\n73,86882,4.5,1330240107\n73,87192,4.5,1348567873\n73,87232,4.0,1316757783\n73,87234,4.0,1319336798\n73,87298,3.5,1457597592\n73,87306,4.0,1320810413\n73,87869,3.5,1319336835\n73,88118,4.0,1317176741\n73,88125,4.5,1312496402\n73,88129,3.5,1345798952\n73,88140,3.5,1357553094\n73,88163,4.0,1320810254\n73,88744,3.5,1324634215\n73,89039,3.5,1325543528\n73,89085,4.5,1323857570\n73,89343,3.5,1431406208\n73,89470,3.0,1329461095\n73,89745,4.5,1337593575\n73,89774,4.5,1324634205\n73,89864,3.0,1329122460\n73,90376,3.5,1345799028\n73,90430,3.5,1325685214\n73,90439,3.5,1329461077\n73,90531,4.0,1430706568\n73,91485,3.5,1348568449\n73,91500,4.0,1337593368\n73,91529,4.0,1345798866\n73,91630,4.0,1326315218\n73,91658,4.0,1334396206\n73,91976,3.0,1457597425\n73,92309,3.0,1329986644\n73,93320,5.0,1448953095\n73,93363,3.0,1411452403\n73,93443,3.5,1345799036\n73,93510,4.0,1334396050\n73,93831,3.5,1348568088\n73,93838,4.5,1339743740\n73,93840,4.0,1348568138\n73,93855,5.0,1347441732\n73,94018,2.5,1352959770\n73,94070,4.0,1350192390\n73,94677,4.0,1352959766\n73,94833,3.5,1351406444\n73,94864,4.0,1339743735\n73,94959,4.0,1351406414\n73,95088,4.0,1357552636\n73,95147,3.5,1437711595\n73,95165,3.0,1398570058\n73,95182,3.0,1398570053\n73,95441,4.0,1355736140\n73,95473,3.5,1437711059\n73,95475,4.5,1398570027\n73,95499,4.5,1398570019\n73,95510,4.0,1345799054\n73,95558,3.5,1358144551\n73,95780,3.5,1437711174\n73,95782,3.5,1398570077\n73,95875,3.5,1348568386\n73,95963,3.5,1398570066\n73,95965,4.5,1398569999\n73,96004,4.0,1398569927\n73,96007,3.5,1437711131\n73,96079,4.5,1354675993\n73,96110,2.5,1359358796\n73,96281,3.0,1348568337\n73,96432,3.5,1441514105\n73,96588,3.5,1454043300\n73,96610,4.0,1354675986\n73,96737,3.5,1369515292\n73,96811,4.0,1374355461\n73,96821,4.5,1374355516\n73,97306,4.0,1374355492\n73,97752,4.5,1357552147\n73,97860,3.5,1357552193\n73,97913,3.5,1369206362\n73,97921,4.0,1369205846\n73,97923,3.5,1374355488\n73,97938,4.5,1357552149\n73,98607,3.5,1437710825\n73,98809,4.5,1355735865\n73,98829,4.0,1427170660\n73,98961,4.0,1364009534\n73,99112,3.5,1357552186\n73,99114,4.5,1369206612\n73,99145,4.0,1362112152\n73,99728,3.5,1370057754\n73,100159,4.0,1437709595\n73,100383,4.0,1369205631\n73,100714,4.5,1437104737\n73,101525,4.0,1409452760\n73,101864,3.5,1411452577\n73,102033,3.5,1378179817\n73,102123,4.0,1454043331\n73,102194,4.0,1395986174\n73,102252,4.5,1427170676\n73,102407,2.5,1454041530\n73,102445,4.0,1369205577\n73,102716,3.5,1374355582\n73,102993,4.0,1437104788\n73,103042,3.0,1409452741\n73,103048,4.0,1437104521\n73,103228,2.5,1457596601\n73,103249,2.5,1454042845\n73,103253,3.0,1406171923\n73,103384,2.0,1457597113\n73,103624,3.0,1437104561\n73,103688,3.5,1418462292\n73,103772,3.0,1427170398\n73,104841,4.5,1395986150\n73,104913,4.5,1395986058\n73,104944,4.5,1398567572\n73,105213,3.5,1457597402\n73,105504,4.0,1395986019\n73,106002,3.5,1411452394\n73,106022,4.0,1411355255\n73,106100,4.5,1398567543\n73,106487,0.5,1390015641\n73,106489,3.5,1404370211\n73,106491,3.0,1427170708\n73,106782,4.5,1395986157\n73,106916,4.5,1395986160\n73,106918,3.5,1404370215\n73,106920,4.0,1418461939\n73,107069,3.5,1406172291\n73,107348,3.5,1457597419\n73,107406,4.0,1454043018\n73,107953,3.5,1427170706\n73,107999,3.5,1398570071\n73,108090,3.5,1437711587\n73,108190,3.5,1411452354\n73,108583,5.0,1435472609\n73,108932,4.0,1410578415\n73,108981,3.5,1437104540\n73,109074,4.0,1427170717\n73,109374,4.5,1417081790\n73,109487,4.5,1422335272\n73,109850,3.0,1411452818\n73,109895,3.5,1409452259\n73,110127,2.0,1411452812\n73,110348,4.0,1432523533\n73,110501,4.5,1404370180\n73,110882,3.0,1409452254\n73,111360,3.0,1457597194\n73,111362,4.0,1411355333\n73,111364,2.5,1454043389\n73,111624,3.5,1423801674\n73,111659,2.5,1454043328\n73,111759,4.0,1411355268\n73,111781,3.5,1454043334\n73,111921,4.0,1454043365\n73,112183,4.5,1427168087\n73,112290,2.5,1423801598\n73,112515,3.5,1422335674\n73,112552,4.5,1427168057\n73,112556,4.0,1422335277\n73,112623,3.0,1454042867\n73,112818,3.0,1457597515\n73,112852,5.0,1409205899\n73,113252,4.0,1418462083\n73,113348,2.5,1427170549\n73,113573,3.0,1457597407\n73,114060,4.0,1437104690\n73,114180,3.5,1418462052\n73,114662,4.0,1431406217\n73,114670,3.0,1457597605\n73,114935,4.5,1417081980\n73,115122,5.0,1448953211\n73,115149,3.5,1423801646\n73,115216,4.0,1417593332\n73,115569,4.5,1423801600\n73,115713,4.0,1432523152\n73,115877,3.5,1437711208\n73,115881,3.0,1437711165\n73,116397,3.5,1418462066\n73,116797,4.0,1432788703\n73,116823,0.5,1454042838\n73,117123,3.0,1457597665\n73,117176,4.0,1457597352\n73,117529,3.0,1454042923\n73,118082,3.5,1431232449\n73,118696,3.0,1454042873\n73,119145,3.5,1454042779\n73,120466,3.5,1431233322\n73,121231,3.5,1431233272\n73,122882,5.0,1435472640\n73,122886,4.5,1454041548\n73,122890,4.0,1466320057\n73,122900,3.0,1466320222\n73,122904,4.5,1456038880\n73,122924,3.5,1474255427\n73,126006,3.5,1437711226\n73,127198,3.5,1457597882\n73,128360,4.5,1460517538\n73,130642,3.5,1437709660\n73,130682,3.5,1432523179\n73,133771,3.5,1466320172\n73,134130,4.5,1448953050\n73,135887,3.0,1466320258\n73,137857,3.5,1470720695\n73,139130,4.0,1437711245\n73,139385,4.0,1460517533\n73,139644,3.5,1457597863\n73,140267,3.0,1456038901\n73,140715,4.0,1456038576\n73,141718,3.5,1471332767\n73,141866,4.0,1469772876\n73,146656,4.0,1456038516\n73,148626,3.5,1457332236\n73,152077,3.5,1466320302\n73,152091,3.0,1466320393\n73,152844,4.0,1476080611\n73,156726,3.5,1460517484\n73,158238,4.0,1470719796\n73,159462,3.0,1469772608\n73,159858,3.5,1473060620\n73,161594,3.0,1474255459\n73,162376,4.5,1474255532\n74,10,5.0,942704394\n74,16,3.0,942705457\n74,17,4.0,942705568\n74,104,4.0,942703730\n74,110,5.0,942705318\n74,153,4.0,942703172\n74,260,5.0,942705457\n74,356,4.0,942705608\n74,527,5.0,942705304\n74,592,5.0,942703172\n74,612,1.0,942703569\n74,912,5.0,942705568\n74,1059,4.0,942703337\n74,1080,3.0,942703678\n74,1097,3.0,942705648\n74,1136,5.0,942703678\n74,1196,5.0,942705496\n74,1210,5.0,942705496\n74,1272,5.0,942705381\n74,1302,4.0,942705413\n74,1377,4.0,942703172\n74,1562,4.0,942703172\n74,1584,5.0,942705533\n74,1704,4.0,942705382\n74,1721,2.0,942705232\n74,1722,5.0,942704332\n74,1876,3.0,942704723\n74,1917,4.0,942702876\n74,1918,5.0,942703038\n74,1954,3.0,942705496\n74,1961,4.0,942705608\n74,2000,4.0,942703038\n74,2002,4.0,942703038\n74,2028,5.0,942703474\n74,2106,5.0,942705708\n74,2167,4.0,942704005\n74,2188,3.0,942704863\n74,2333,4.0,942704616\n74,2396,5.0,942703337\n74,2490,5.0,942705899\n74,2541,4.0,942704668\n74,2549,3.0,942704192\n74,2571,5.0,942705678\n74,2572,4.0,942705303\n74,2628,4.0,942703093\n74,2640,3.0,942705648\n74,2700,4.0,942702937\n74,2710,4.0,942702971\n74,2762,4.0,942703538\n75,1,3.0,1165607201\n75,3,3.0,1143047700\n75,32,4.0,1165607192\n75,161,4.0,1143049641\n75,253,4.5,1143048074\n75,260,4.5,1143049571\n75,316,2.0,1165607377\n75,318,4.0,1165597501\n75,350,3.0,1143047643\n75,353,4.5,1143048140\n75,356,4.0,1143048117\n75,368,2.0,1143047471\n75,377,4.0,1143049541\n75,379,0.5,1165607346\n75,442,2.0,1143047458\n75,480,3.0,1143047880\n75,509,0.5,1143047478\n75,520,3.0,1165596956\n75,527,4.0,1143048687\n75,541,4.0,1143048797\n75,589,4.0,1165607264\n75,592,1.0,1143047916\n75,708,4.0,1143047668\n75,786,1.0,1143047463\n75,800,3.0,1143048961\n75,858,1.0,1143048947\n75,880,1.0,1165596837\n75,899,3.0,1143048856\n75,904,4.0,1143049098\n75,908,4.5,1143049193\n75,923,4.5,1143049074\n75,933,4.0,1165607749\n75,953,4.0,1143048735\n75,955,4.0,1165607773\n75,1080,0.5,1143047705\n75,1127,3.0,1143047928\n75,1196,4.0,1143048680\n75,1197,3.5,1165607559\n75,1198,4.0,1165607472\n75,1201,3.5,1143048840\n75,1207,3.5,1143048887\n75,1208,0.5,1143048986\n75,1214,4.0,1143048691\n75,1219,4.0,1165596756\n75,1221,0.5,1143048977\n75,1225,1.0,1143047503\n75,1234,3.0,1143048836\n75,1240,3.0,1165607261\n75,1253,4.0,1165607757\n75,1258,4.5,1143047710\n75,1259,4.0,1165607737\n75,1265,3.5,1165607211\n75,1270,4.0,1165607206\n75,1272,4.0,1143048849\n75,1278,4.0,1165596933\n75,1288,4.0,1143048844\n75,1291,4.5,1165607763\n75,1297,3.0,1143048004\n75,1356,2.0,1143048064\n75,1358,0.5,1165607144\n75,1376,0.5,1143048164\n75,1441,3.5,1143048156\n75,1517,3.0,1143047444\n75,1580,2.5,1143049592\n75,1584,4.0,1143047448\n75,1672,4.0,1143048056\n75,1721,3.0,1165607364\n75,1917,0.5,1143047624\n75,1967,3.0,1143048523\n75,1994,3.0,1143047921\n75,2003,3.0,1143048053\n75,2005,3.5,1143048090\n75,2011,4.5,1143047874\n75,2012,3.5,1143047679\n75,2115,3.0,1143047997\n75,2134,3.0,1143048070\n75,2161,4.5,1143048175\n75,2167,2.5,1165607133\n75,2174,3.5,1143047685\n75,2176,4.0,1165607636\n75,2231,3.5,1143048532\n75,2300,4.0,1165596884\n75,2302,4.0,1143047960\n75,2311,2.5,1143048305\n75,2355,2.0,1143047636\n75,2371,3.0,1143048520\n75,2423,4.5,1143048106\n75,2424,2.5,1143049630\n75,2455,4.5,1143048615\n75,2502,4.0,1143049615\n75,2571,5.0,1165607547\n75,2600,3.0,1165607066\n75,2692,5.0,1143048712\n75,2707,1.5,1143048602\n75,2710,0.5,1143047691\n75,2797,2.0,1143047689\n75,2841,4.5,1165596737\n75,2916,3.5,1143048020\n75,2959,3.5,1143048746\n75,2991,3.0,1143048172\n75,3007,4.0,1165607415\n75,3020,3.0,1143048565\n75,3033,4.0,1143048267\n75,3087,3.5,1143047896\n75,3147,2.0,1143049546\n75,3252,3.5,1143048546\n75,3408,4.0,1143049565\n75,3510,0.5,1165607272\n75,3671,4.0,1165596914\n75,3793,3.0,1143047490\n75,3948,3.5,1143047941\n75,3959,4.0,1165607230\n75,4223,3.0,1143048203\n75,4226,4.5,1143048829\n75,4306,3.5,1143049532\n75,4571,2.5,1165607291\n75,4799,4.0,1143048182\n75,4878,4.0,1143048879\n75,4973,4.0,1143048866\n75,4975,4.5,1143048659\n75,4980,2.5,1165607318\n75,4993,4.5,1143048707\n75,5054,3.5,1143048060\n75,5171,2.0,1165607360\n75,5445,4.0,1143049523\n75,5782,4.0,1143048930\n75,5952,4.5,1143048725\n75,6323,3.5,1143048192\n75,6537,3.0,1165607372\n75,6820,4.0,1165607099\n75,7153,5.0,1143048765\n75,7254,4.0,1143048629\n75,7361,4.5,1143048967\n75,7743,3.0,1143047861\n75,8581,4.0,1143048671\n75,8638,4.0,1143049061\n75,8957,4.5,1143048646\n75,8985,3.0,1165607136\n75,27788,3.0,1165607299\n75,33166,4.5,1143048773\n75,33794,4.5,1143048683\n75,34319,4.0,1165596823\n75,39446,4.0,1165607919\n75,42002,4.0,1165596874\n75,44397,0.5,1165607897\n76,45,5.0,1194384499\n76,303,3.0,1194384318\n76,531,3.0,1194384313\n76,915,4.0,1194384411\n76,954,4.0,1194384386\n76,1096,4.5,1194384460\n76,1185,3.5,1194384373\n76,1269,3.5,1194384328\n76,1449,4.0,1194384361\n76,2020,4.5,1194384299\n76,2087,3.5,1194384353\n76,2336,4.0,1194384281\n76,2948,4.0,1194384341\n76,3671,3.5,1194384277\n76,3911,4.0,1194384275\n76,3988,2.0,1194384399\n76,4321,4.5,1194384338\n76,44694,4.5,1194384512\n76,49530,3.5,1194384470\n76,54259,3.5,1194384451\n77,1,4.0,1163005363\n77,6,3.5,1163252774\n77,10,3.0,1183844529\n77,32,4.0,1163013349\n77,34,3.5,1163253023\n77,39,2.5,1163253088\n77,47,4.0,1163008777\n77,62,3.5,1163252918\n77,70,3.5,1163004464\n77,76,3.5,1163219726\n77,95,1.5,1163253105\n77,110,3.5,1163013335\n77,111,4.0,1183920234\n77,141,3.0,1163253085\n77,161,2.0,1183844506\n77,163,3.0,1163286142\n77,165,2.5,1163082488\n77,173,2.5,1163219428\n77,185,2.0,1163253082\n77,208,3.0,1163253079\n77,223,4.5,1163004353\n77,231,1.0,1163125859\n77,253,2.5,1163259531\n77,260,4.0,1163006051\n77,288,3.5,1163253117\n77,292,2.5,1163252922\n77,293,4.0,1163012798\n77,296,3.5,1163012801\n77,316,4.0,1163082508\n77,318,4.0,1163006037\n77,329,2.0,1163253047\n77,339,2.5,1163253104\n77,344,3.0,1163082485\n77,349,3.5,1163082500\n77,353,4.0,1163219321\n77,356,3.5,1163006023\n77,364,3.0,1163125780\n77,367,3.5,1163219373\n77,377,2.5,1163013353\n77,380,2.5,1163013344\n77,413,1.5,1163286164\n77,442,3.0,1163277657\n77,457,2.5,1163013330\n77,480,3.0,1163006020\n77,500,3.0,1183920204\n77,541,2.0,1163013198\n77,551,4.5,1163005103\n77,586,1.5,1183920099\n77,587,2.5,1163252886\n77,588,3.5,1163082479\n77,589,4.0,1163013341\n77,590,3.0,1163013339\n77,592,3.5,1163006012\n77,593,3.0,1163013328\n77,595,3.5,1163253015\n77,597,2.5,1163253037\n77,608,2.0,1183844492\n77,648,2.5,1163013368\n77,720,3.0,1183512581\n77,733,3.0,1163253027\n77,736,2.0,1163253163\n77,741,4.0,1163079173\n77,745,3.0,1183512477\n77,750,4.5,1163004390\n77,780,3.5,1163005369\n77,839,3.0,1163219390\n77,849,2.5,1163277702\n77,919,4.5,1163004359\n77,924,3.5,1183920326\n77,1036,3.0,1163253110\n77,1073,4.0,1163079436\n77,1079,3.5,1163252515\n77,1080,4.0,1163004406\n77,1097,3.0,1163253049\n77,1129,4.0,1163277603\n77,1136,4.5,1163012788\n77,1148,3.0,1183512491\n77,1196,4.5,1163013360\n77,1197,4.5,1163125789\n77,1198,4.0,1163082497\n77,1199,4.0,1163219937\n77,1200,4.0,1163252283\n77,1206,4.0,1163008790\n77,1208,3.5,1183920321\n77,1210,4.0,1163006027\n77,1214,3.5,1163253113\n77,1215,4.5,1163005217\n77,1217,3.5,1163013055\n77,1220,4.5,1163004386\n77,1222,3.5,1163012783\n77,1223,3.0,1183512498\n77,1240,4.5,1163125801\n77,1258,3.0,1163252277\n77,1262,4.5,1163915651\n77,1265,4.0,1163082678\n77,1270,3.5,1163006001\n77,1274,3.5,1163219327\n77,1278,3.5,1163079424\n77,1282,4.5,1163004479\n77,1291,4.0,1163079277\n77,1321,4.0,1163005225\n77,1380,3.0,1163252892\n77,1387,3.5,1183920197\n77,1393,2.0,1183920089\n77,1517,4.0,1163125883\n77,1527,4.0,1163125876\n77,1552,3.5,1163286102\n77,1580,3.5,1163253071\n77,1584,1.5,1183920103\n77,1591,2.5,1163219409\n77,1610,4.0,1163082518\n77,1653,3.5,1163277597\n77,1676,4.0,1183920299\n77,1682,3.5,1163915779\n77,1704,3.0,1183844513\n77,1721,2.0,1163252930\n77,1732,3.5,1163079388\n77,1772,2.5,1163269736\n77,1779,2.5,1163219656\n77,1784,2.5,1183844547\n77,1917,2.0,1163286171\n77,1923,2.0,1163252812\n77,1961,2.5,1163253127\n77,1967,4.5,1166027866\n77,1968,3.0,1183920347\n77,2000,3.5,1183920251\n77,2001,3.5,1183920333\n77,2005,4.0,1163082649\n77,2011,4.0,1183844575\n77,2012,3.5,1163286265\n77,2021,3.5,1163004544\n77,2054,2.5,1163915788\n77,2081,3.5,1183920345\n77,2105,4.0,1163277609\n77,2115,4.0,1163915709\n77,2139,4.0,1166027980\n77,2140,4.5,1166027880\n77,2167,4.0,1163219362\n77,2174,4.0,1163005101\n77,2275,4.5,1163259483\n77,2291,3.5,1163005107\n77,2321,4.0,1163738014\n77,2355,3.5,1183844537\n77,2395,2.0,1163252612\n77,2450,3.5,1163219423\n77,2502,4.5,1163005196\n77,2528,3.5,1163277646\n77,2529,3.5,1163277601\n77,2541,3.5,1163738035\n77,2542,4.5,1163004608\n77,2571,4.0,1163079154\n77,2599,2.5,1163738031\n77,2600,4.0,1184948966\n77,2628,1.5,1163006017\n77,2640,3.5,1163219366\n77,2641,3.0,1163219414\n77,2671,2.5,1163252918\n77,2683,4.0,1183920219\n77,2700,4.0,1183844561\n77,2706,3.5,1163125798\n77,2709,3.0,1166027951\n77,2710,1.0,1183844524\n77,2716,4.0,1163253120\n77,2762,4.0,1163253062\n77,2788,4.0,1163219953\n77,2797,3.5,1163125886\n77,2808,2.0,1163259854\n77,2858,3.0,1163013177\n77,2916,3.5,1163125878\n77,2918,4.5,1183844565\n77,2959,4.0,1163005335\n77,2968,4.0,1163004536\n77,2985,3.5,1163277606\n77,2986,2.5,1163277704\n77,2987,3.5,1183920193\n77,3000,4.0,1163005456\n77,3033,4.0,1163004499\n77,3052,4.5,1183920214\n77,3070,4.5,1163005080\n77,3081,3.0,1163259912\n77,3114,3.5,1163082621\n77,3147,4.0,1163286260\n77,3148,2.5,1163738069\n77,3175,3.5,1183920264\n77,3196,4.0,1163252250\n77,3204,4.0,1163219938\n77,3264,3.0,1163259527\n77,3275,4.5,1163265784\n77,3396,4.0,1166027886\n77,3397,3.5,1166027891\n77,3398,3.0,1166027895\n77,3408,1.5,1183844498\n77,3418,0.5,1183920246\n77,3421,4.5,1163005031\n77,3429,3.0,1183512502\n77,3438,2.5,1163219416\n77,3439,1.5,1163260803\n77,3471,4.0,1183920231\n77,3527,4.0,1183920227\n77,3578,3.0,1163006008\n77,3623,1.5,1163915774\n77,3671,4.0,1163079471\n77,3702,4.0,1163265859\n77,3703,4.0,1163265861\n77,3704,3.5,1163265862\n77,3751,3.5,1163220288\n77,3753,3.5,1183920122\n77,3793,4.0,1163004371\n77,3882,3.0,1163252840\n77,3897,3.0,1163252803\n77,3977,3.0,1163125809\n77,3994,4.5,1183920274\n77,3996,0.5,1163004354\n77,4011,4.5,1163004631\n77,4027,2.5,1183920127\n77,4040,1.0,1163346129\n77,4092,2.5,1163277700\n77,4246,2.0,1183920136\n77,4270,3.0,1166027898\n77,4306,3.5,1163125847\n77,4446,3.5,1163286177\n77,4447,3.5,1163252909\n77,4467,4.0,1163219953\n77,4499,4.5,1163633273\n77,4533,3.5,1163005241\n77,4886,4.0,1163082640\n77,4896,3.0,1163125785\n77,4963,3.0,1183920097\n77,4979,2.0,1183844539\n77,4993,3.0,1183844467\n77,5171,2.0,1163005117\n77,5218,4.0,1183920341\n77,5254,3.5,1163219308\n77,5349,4.0,1163125813\n77,5378,1.0,1163386523\n77,5445,3.0,1163006045\n77,5502,0.5,1183920259\n77,5522,4.0,1163277663\n77,5618,4.0,1163005522\n77,5650,3.5,1163004657\n77,5669,0.5,1183511678\n77,5782,4.0,1183512622\n77,5816,3.0,1163125818\n77,5903,4.0,1163277586\n77,6093,3.5,1166027993\n77,6157,3.0,1163219386\n77,6281,3.0,1163219717\n77,6303,3.5,1163219638\n77,6305,3.0,1163277592\n77,6316,3.0,1163005385\n77,6333,4.0,1163219317\n77,6350,4.0,1163005491\n77,6365,3.0,1183844543\n77,6377,0.5,1163004453\n77,6537,3.5,1183920262\n77,6539,4.0,1163082645\n77,6541,4.0,1163219402\n77,6645,3.0,1163277654\n77,6662,3.0,1163346143\n77,6755,4.5,1163259669\n77,6807,4.0,1163079326\n77,6811,4.0,1163286010\n77,6874,3.5,1163004488\n77,6934,2.5,1183844503\n77,7099,4.5,1163005487\n77,7143,2.0,1163004783\n77,7147,4.0,1163005091\n77,7163,3.5,1163219723\n77,7236,4.0,1163277648\n77,7360,4.0,1163005229\n77,7373,4.0,1163219298\n77,7387,4.5,1163259811\n77,7438,3.5,1163004517\n77,7649,4.5,1166028040\n77,7708,2.5,1183511703\n77,7810,4.0,1166028045\n77,7811,4.0,1166028040\n77,7812,4.0,1166028010\n77,7841,4.0,1163346052\n77,7842,4.0,1163346050\n77,8157,4.0,1163012825\n77,8368,3.0,1183844570\n77,8537,4.0,1163260633\n77,8622,0.5,1183511682\n77,8636,4.0,1163219319\n77,8644,2.0,1183920174\n77,8665,4.0,1183844557\n77,8874,4.5,1163259824\n77,8958,3.5,1163252803\n77,8961,4.0,1163125836\n77,26492,3.5,1183511991\n77,26700,2.0,1183511757\n77,27685,1.0,1163219241\n77,27831,4.0,1163004633\n77,31150,3.5,1183511779\n77,31221,2.5,1163219395\n77,31658,4.0,1163005497\n77,31878,3.5,1163013078\n77,32587,4.5,1163006062\n77,33493,3.0,1163386501\n77,33794,4.0,1163013182\n77,34319,2.0,1163286160\n77,34405,4.5,1163008703\n77,36708,3.5,1163079317\n77,37729,4.0,1163259890\n77,37857,4.0,1163219907\n77,38038,3.5,1163220283\n77,40732,2.5,1163005991\n77,40819,4.0,1163737974\n77,44191,4.5,1163006072\n77,45499,3.5,1163125866\n77,45722,4.0,1183511846\n77,47423,0.5,1163005434\n77,47518,4.0,1163286001\n77,53894,0.5,1183511648\n78,2,3.5,1274051069\n78,10,5.0,1274050854\n78,16,5.0,1344470037\n78,32,5.0,1274050782\n78,34,3.5,1344469842\n78,39,5.0,1274050940\n78,47,4.0,1344469790\n78,50,5.0,1274051508\n78,110,1.5,1274050758\n78,111,3.5,1274050991\n78,141,4.0,1274050945\n78,150,3.5,1327289203\n78,172,5.0,1274046007\n78,185,4.5,1274050942\n78,193,5.0,1344470407\n78,223,4.5,1274051011\n78,253,5.0,1274050895\n78,260,5.0,1274050755\n78,296,4.5,1274050741\n78,316,4.0,1274050827\n78,318,5.0,1274050752\n78,329,5.0,1274050869\n78,345,4.5,1327288678\n78,349,4.5,1274051738\n78,356,5.0,1274050745\n78,364,3.5,1274050816\n78,377,4.5,1274050797\n78,480,3.5,1274050750\n78,500,4.0,1274050831\n78,508,4.0,1328636541\n78,540,4.0,1344470455\n78,588,3.5,1274050785\n78,589,5.0,1274050763\n78,593,4.5,1274050748\n78,648,5.0,1274050801\n78,736,4.5,1274050821\n78,778,4.5,1274051080\n78,780,4.0,1274050766\n78,788,3.5,1327289197\n78,858,4.5,1327288505\n78,919,3.5,1274051063\n78,924,2.0,1274051008\n78,1059,4.5,1274046035\n78,1089,1.0,1274050989\n78,1094,4.0,1345676388\n78,1097,3.5,1274050843\n78,1136,3.0,1274050885\n78,1196,4.0,1274050792\n78,1200,4.5,1274050964\n78,1206,2.5,1327288495\n78,1208,5.0,1274051079\n78,1210,4.0,1274050770\n78,1213,4.5,1274050993\n78,1214,3.5,1274050904\n78,1222,5.0,1327062981\n78,1240,4.0,1274050852\n78,1265,2.0,1274050876\n78,1270,4.5,1274050805\n78,1293,5.0,1344470536\n78,1320,3.5,1345676342\n78,1345,4.0,1327288652\n78,1356,5.0,1274051262\n78,1371,4.0,1344470332\n78,1374,4.0,1344470035\n78,1375,5.0,1327289353\n78,1376,3.0,1274045997\n78,1407,4.5,1344469958\n78,1513,4.0,1274046052\n78,1517,3.0,1274051802\n78,1527,4.0,1274050950\n78,1552,4.0,1344470497\n78,1580,2.5,1344469730\n78,1584,5.0,1274051255\n78,1586,3.5,1274046079\n78,1610,5.0,1274051089\n78,1625,5.0,1344469988\n78,1644,4.5,1327288610\n78,1676,5.0,1344469919\n78,1680,5.0,1356219742\n78,1682,3.5,1274051084\n78,1690,4.0,1344470446\n78,1704,5.0,1274050948\n78,1717,5.0,1327289341\n78,1721,4.0,1274050845\n78,1722,4.5,1344470107\n78,1732,5.0,1344469830\n78,1747,4.0,1274046023\n78,1805,5.0,1274046061\n78,1876,5.0,1327288604\n78,1917,4.5,1274051067\n78,1923,1.5,1274050974\n78,1968,5.0,1274051253\n78,1997,4.0,1344470116\n78,2011,4.5,1344469836\n78,2012,4.0,1274051275\n78,2028,2.5,1274050826\n78,2107,3.0,1344470388\n78,2174,4.0,1344469948\n78,2231,4.5,1344470322\n78,2297,4.0,1274046142\n78,2329,5.0,1274052026\n78,2334,5.0,1328046149\n78,2336,5.0,1274046041\n78,2353,5.0,1328046208\n78,2393,4.0,1344470328\n78,2394,4.0,1274046086\n78,2541,5.0,1327288596\n78,2542,4.5,1274051581\n78,2571,5.0,1274050787\n78,2617,5.0,1327289320\n78,2628,5.0,1274050865\n78,2657,2.0,1274046002\n78,2683,3.5,1274050967\n78,2700,5.0,1344469934\n78,2706,5.0,1274051060\n78,2710,5.0,1274051281\n78,2858,4.5,1274050793\n78,2908,5.0,1327288635\n78,2916,4.0,1274051279\n78,2947,5.0,1345676411\n78,2959,5.0,1274050848\n78,2987,4.0,1344469750\n78,2995,2.5,1274046172\n78,3052,4.0,1344469913\n78,3077,5.0,1344470523\n78,3082,4.5,1344470341\n78,3147,4.5,1274051797\n78,3256,4.0,1344470469\n78,3273,5.0,1327288628\n78,3298,4.0,1274051897\n78,3386,5.0,1327289236\n78,3418,5.0,1327288622\n78,3504,3.5,1274046121\n78,3556,3.0,1344470577\n78,3578,5.0,1274050886\n78,3617,4.5,1344470313\n78,3623,5.0,1327288585\n78,3753,5.0,1344469943\n78,3755,3.0,1327289233\n78,3785,5.0,1327289228\n78,3793,4.0,1274050970\n78,3897,4.0,1274051784\n78,3908,4.5,1344530161\n78,3949,5.0,1327063029\n78,3967,3.5,1344472522\n78,3977,3.5,1344469805\n78,3979,4.0,1344471126\n78,3986,4.0,1333307515\n78,3994,3.5,1327288577\n78,3996,4.5,1274050983\n78,4007,5.0,1344470392\n78,4011,5.0,1274051829\n78,4015,3.5,1344470351\n78,4018,3.5,1344470343\n78,4022,3.5,1327288572\n78,4025,5.0,1327288563\n78,4128,5.0,1274051637\n78,4226,5.0,1274050984\n78,4239,5.0,1327288556\n78,4270,5.0,1327288550\n78,4306,1.5,1274050890\n78,4308,4.5,1344469968\n78,4367,5.0,1344470491\n78,4369,4.5,1344470449\n78,4370,4.5,1344470026\n78,4388,5.0,1344470349\n78,4446,4.5,1274046093\n78,4641,5.0,1356229145\n78,4643,5.0,1327288541\n78,4718,4.5,1344470443\n78,4744,3.5,1344530365\n78,4878,4.0,1274051518\n78,4896,2.5,1274051757\n78,4973,5.0,1327063019\n78,4974,5.0,1333307847\n78,4993,4.5,1274050863\n78,4995,4.5,1274051748\n78,5010,4.0,1344470040\n78,5219,4.5,1344470309\n78,5378,5.0,1274051759\n78,5418,5.0,1274051563\n78,5445,4.5,1274051086\n78,5463,3.5,1344530435\n78,5502,4.5,1344470149\n78,5669,5.0,1344469825\n78,5693,4.0,1274046191\n78,5784,2.5,1344530420\n78,5872,5.0,1344530381\n78,5952,5.0,1274050908\n78,5989,4.5,1274051712\n78,5992,4.0,1328636458\n78,6016,5.0,1327062972\n78,6058,4.5,1333307553\n78,6365,5.0,1274051783\n78,6377,3.0,1274051715\n78,6502,5.0,1327288534\n78,6537,3.5,1327288529\n78,6539,3.0,1274051268\n78,6552,4.0,1346672082\n78,6564,4.5,1344470357\n78,6793,4.0,1344518331\n78,6796,4.0,1274052032\n78,6874,4.0,1274051752\n78,6888,5.0,1327288739\n78,6934,5.0,1274051798\n78,6979,5.0,1274051633\n78,7153,5.0,1274050980\n78,7254,4.0,1344470121\n78,7323,4.0,1344470372\n78,7438,4.0,1274051794\n78,7458,5.0,1344470476\n78,7566,5.0,1344470545\n78,8361,4.5,1327288726\n78,8368,3.5,1274051780\n78,8464,3.5,1327288523\n78,8533,5.0,1344518494\n78,8622,5.0,1327289219\n78,8644,5.0,1344469996\n78,8665,5.0,1274051848\n78,8861,5.0,1327288720\n78,8874,4.0,1344469894\n78,8947,3.5,1344530363\n78,8972,3.5,1344530371\n78,26614,5.0,1327063041\n78,26712,5.0,1344518298\n78,27831,4.5,1327288715\n78,33166,5.0,1328651648\n78,33493,5.0,1274051716\n78,33794,4.0,1327063058\n78,34048,2.0,1345676370\n78,36529,5.0,1327288988\n78,38499,5.0,1328636442\n78,39183,5.0,1328636566\n78,40815,3.5,1274051816\n78,43679,4.5,1344470539\n78,44191,3.5,1274051721\n78,44555,4.5,1327063006\n78,46335,4.5,1363462225\n78,46723,5.0,1344470740\n78,48774,4.0,1327289209\n78,49272,3.5,1344469724\n78,50658,5.0,1344518302\n78,50740,5.0,1344518809\n78,50742,5.0,1344518317\n78,51662,5.0,1274051823\n78,51935,5.0,1328046198\n78,52767,5.0,1344518294\n78,52952,5.0,1344470834\n78,54001,4.0,1344470126\n78,54272,4.5,1344470065\n78,54286,5.0,1274051523\n78,56174,4.5,1327288700\n78,58559,5.0,1274051773\n78,65130,5.0,1327063126\n78,68358,4.0,1344469772\n78,69757,4.0,1344529892\n78,70678,4.5,1358634080\n78,72998,5.0,1274051746\n78,79132,4.5,1327062958\n78,81834,4.5,1344470051\n78,88125,4.5,1344469820\n78,88129,4.0,1344470072\n78,97673,4.5,1352920811\n79,1,2.0,1182994648\n79,2,2.5,1182994926\n79,7,0.5,1182995062\n79,150,2.5,1182994636\n79,260,3.0,1182994622\n79,344,2.0,1182994728\n79,356,4.0,1182994610\n79,367,2.5,1182994765\n79,468,0.5,1182555848\n79,480,3.0,1182994616\n79,519,2.0,1182556000\n79,587,2.5,1182994781\n79,588,2.5,1182994717\n79,592,2.5,1182994627\n79,648,2.5,1182994732\n79,736,3.0,1182994756\n79,778,3.0,1182994965\n79,780,2.5,1182994653\n79,924,2.0,1182994899\n79,1097,3.0,1182994775\n79,1101,2.5,1182994952\n79,1196,3.0,1182994723\n79,1210,3.0,1182994711\n79,1291,2.5,1182994818\n79,1517,0.5,1182994912\n79,1580,3.0,1182994786\n79,1721,2.5,1182994791\n79,1917,2.5,1182994945\n79,2013,2.5,1182555959\n79,2150,0.5,1182555847\n79,2422,2.0,1182556054\n79,2571,3.0,1182994750\n79,2628,3.0,1182994807\n79,2640,2.5,1182995057\n79,2641,2.5,1182555876\n79,2683,0.5,1182994878\n79,2918,3.5,1182994972\n79,3478,3.0,1182556148\n79,3578,3.0,1182994834\n79,3697,2.0,1182555991\n79,3702,2.5,1182555869\n79,3793,3.0,1182994903\n79,3864,2.5,1182556240\n79,4306,3.0,1182994861\n79,4886,3.0,1182995029\n79,4993,3.0,1182994849\n79,5349,3.0,1182995072\n79,5952,3.0,1182994884\n79,6539,2.5,1182995104\n79,7153,3.0,1182995012\n79,32031,3.5,1182556308\n79,39292,3.0,1182556130\n79,42738,2.5,1182556378\n79,45081,2.0,1182556482\n79,49530,3.5,1182556320\n80,2,2.0,844860022\n80,6,4.0,844860041\n80,7,4.0,844860107\n80,10,3.0,844860003\n80,16,5.0,844860062\n80,20,1.0,844860151\n80,21,4.0,844860003\n80,25,4.0,844860041\n80,32,5.0,844860003\n80,45,4.0,844860062\n80,46,3.0,844860173\n80,50,3.0,844860003\n80,73,5.0,844860517\n80,89,3.0,844860250\n80,93,1.0,844860173\n80,95,2.0,844860022\n80,100,2.0,844860266\n80,105,3.0,844860062\n80,112,4.0,844860085\n80,141,3.0,844860022\n80,156,5.0,844861440\n80,191,2.0,844860215\n80,608,5.0,844860062\n80,610,3.0,844860085\n80,616,4.0,844860085\n80,661,4.0,844860198\n80,671,4.0,844860496\n80,745,5.0,844861413\n80,762,2.0,844860250\n80,778,5.0,844860215\n80,780,4.0,844860041\n80,783,5.0,844860173\n80,800,5.0,844861413\n80,802,3.0,844860198\n80,805,4.0,844860266\n80,1084,4.0,844861019\n80,1104,4.0,844861019\n81,111,4.0,1307172367\n81,154,4.0,1307169402\n81,190,3.0,1307179969\n81,306,4.0,1307174799\n81,308,3.5,1307172938\n81,318,3.0,1307171149\n81,495,3.5,1307173087\n81,509,3.0,1307173089\n81,549,4.5,1307172985\n81,668,5.0,1307174641\n81,750,4.0,1307171452\n81,872,5.0,1307172386\n81,899,3.5,1307169236\n81,903,4.0,1307172383\n81,904,4.0,1307172343\n81,910,5.0,1307178610\n81,922,5.0,1307180667\n81,924,4.0,1307171594\n81,1132,3.0,1307178475\n81,1136,3.5,1307178724\n81,1173,4.5,1307173047\n81,1176,4.0,1307174899\n81,1199,4.5,1307180625\n81,1201,3.5,1307175182\n81,1206,4.0,1307172416\n81,1213,3.0,1307178374\n81,1219,4.0,1307172330\n81,1222,4.0,1307178462\n81,1230,4.0,1307172514\n81,1232,4.5,1307172080\n81,1251,4.5,1307169415\n81,1258,4.0,1307178606\n81,1295,3.5,1307172085\n81,1298,4.0,1307180587\n81,1339,1.5,1307169246\n81,1719,4.5,1307172493\n81,1913,3.0,1307178387\n81,1921,4.0,1307180647\n81,2010,5.0,1307174910\n81,2068,5.0,1307171800\n81,2131,4.0,1307171603\n81,2424,2.0,1307169218\n81,2551,4.0,1307180591\n81,2673,4.5,1307179973\n81,2712,4.5,1307180643\n81,2730,4.0,1307179936\n81,2959,4.0,1307180621\n81,2997,4.0,1307172282\n81,3000,4.5,1307172475\n81,3083,4.0,1307169335\n81,3160,4.0,1307179945\n81,3415,5.0,1307172071\n81,3578,3.5,1307173783\n81,3637,4.0,1307179942\n81,3788,4.5,1307171554\n81,3814,5.0,1307171816\n81,3910,4.5,1307169357\n81,3925,4.0,1307180690\n81,3949,4.0,1307172357\n81,3967,3.0,1307169275\n81,3993,4.0,1307169422\n81,3996,4.0,1307180985\n81,4144,4.0,1307172241\n81,4271,5.0,1307174778\n81,4312,4.0,1307179931\n81,4334,4.5,1307171682\n81,4422,4.5,1307171518\n81,4437,4.0,1307173092\n81,4470,4.5,1307171511\n81,4658,5.0,1307172034\n81,4848,4.0,1307180444\n81,4878,2.0,1307180653\n81,4928,3.0,1307171489\n81,5028,5.0,1307172908\n81,5105,3.0,1307171929\n81,5147,4.0,1307171418\n81,5269,4.5,1307172978\n81,5530,2.5,1307169545\n81,5618,4.0,1307172369\n81,5668,2.5,1307169589\n81,5686,4.0,1307173060\n81,5971,4.5,1307172197\n81,6123,4.5,1307171746\n81,6214,3.5,1307180611\n81,6301,2.5,1307169608\n81,6440,4.5,1307180639\n81,6509,4.0,1307171598\n81,6641,4.5,1307173663\n81,6643,4.0,1307171752\n81,6666,4.0,1307171631\n81,6711,4.0,1307172319\n81,6807,5.0,1307173007\n81,6993,5.0,1307172238\n81,7172,4.0,1307179979\n81,7265,3.5,1307180420\n81,7323,4.0,1307172433\n81,7327,4.0,1307171479\n81,7361,4.0,1307172154\n81,7460,4.0,1307180598\n81,7564,5.0,1307174689\n81,7574,5.0,1307172961\n81,7786,3.5,1307178465\n81,7820,4.0,1307171686\n81,7938,4.0,1307171420\n81,7979,4.5,1307178330\n81,8014,3.5,1307175022\n81,8199,4.5,1307171680\n81,8239,5.0,1307171842\n81,8327,4.0,1307179983\n81,8338,4.5,1307171907\n81,8367,4.0,1307173075\n81,8485,4.0,1307178208\n81,8533,2.5,1307177440\n81,8638,5.0,1307172225\n81,8983,4.0,1307180990\n81,26150,5.0,1307172805\n81,26228,4.0,1307172101\n81,26258,5.0,1307171878\n81,26318,4.5,1307180149\n81,26326,4.5,1307180746\n81,26578,5.0,1307172863\n81,26662,4.0,1307172450\n81,31437,4.0,1307171367\n81,31524,4.0,1307180847\n81,31930,4.0,1307180362\n81,36276,4.0,1307174858\n81,37731,3.0,1307177412\n81,40491,4.5,1307171356\n81,43899,3.0,1307178303\n81,44694,3.0,1307172173\n81,45000,4.0,1307180335\n81,47274,4.0,1307172325\n81,47610,2.5,1307177426\n81,48043,3.5,1307180145\n81,48165,4.0,1307172130\n81,52528,4.0,1307172373\n81,52617,5.0,1307173112\n81,52885,4.0,1307180141\n81,53447,3.5,1307173098\n81,56782,4.0,1307178621\n81,58425,4.5,1307172311\n81,60950,3.0,1307169533\n81,61206,4.5,1307173763\n81,64701,4.0,1307172454\n81,65130,4.0,1307180134\n81,68137,2.0,1307180237\n81,68967,4.0,1307172169\n81,69516,4.0,1307180694\n81,69757,2.0,1307169383\n81,71108,4.0,1307171589\n81,71438,3.5,1307175227\n81,72998,3.0,1307177375\n81,73344,4.0,1307172203\n81,78836,4.0,1307171458\n81,79132,3.0,1307180634\n81,80463,3.0,1307172215\n81,81054,4.0,1307180849\n81,81591,2.5,1307172182\n81,81786,4.0,1307171915\n81,82459,3.5,1307172379\n82,10,3.0,835973445\n82,21,3.0,835973471\n82,34,5.0,835973471\n82,39,5.0,835973488\n82,47,5.0,835973458\n82,50,4.0,835973488\n82,110,5.0,835973458\n82,150,4.0,835973379\n82,153,3.0,835973398\n82,160,2.0,835973504\n82,165,3.0,835973398\n82,208,3.0,835973445\n82,231,4.0,835973419\n82,253,5.0,835973445\n82,266,4.0,835973504\n82,288,3.0,835973458\n82,292,3.0,835973431\n82,296,5.0,835973380\n82,300,4.0,835973458\n82,316,2.0,835973419\n82,318,5.0,835973419\n82,329,2.0,835973418\n82,339,4.0,835973431\n82,344,3.0,835973398\n82,356,5.0,835973504\n82,364,4.0,835973488\n82,367,3.0,835973504\n82,380,3.0,835973380\n82,410,3.0,835973458\n82,420,1.0,835973488\n82,434,3.0,835973431\n82,435,3.0,835973504\n82,454,3.0,835973488\n82,457,3.0,835973445\n82,588,4.0,835973398\n82,590,4.0,835973379\n82,592,3.0,835973379\n82,593,4.0,835973430\n82,595,5.0,835973419\n83,6,5.0,1156206916\n83,21,1.0,1156206448\n83,39,4.0,1156207541\n83,50,5.0,1156205258\n83,69,3.5,1156207469\n83,101,3.5,1156206709\n83,141,4.0,1156207607\n83,150,5.0,1156206932\n83,151,0.5,1156205069\n83,205,4.0,1156207528\n83,224,4.0,1156205399\n83,235,4.5,1156207393\n83,266,5.0,1156205395\n83,272,4.5,1156206432\n83,351,3.5,1156205656\n83,356,4.0,1156207431\n83,370,4.0,1156205062\n83,377,2.5,1156205254\n83,441,4.0,1156207404\n83,480,3.5,1156205241\n83,514,4.0,1156205644\n83,532,3.5,1156205647\n83,608,4.5,1156206584\n83,663,5.0,1156207579\n83,750,5.0,1156205385\n83,778,4.0,1156206735\n83,799,3.5,1156207536\n83,904,4.5,1156205103\n83,908,4.5,1156205036\n83,923,4.5,1156205382\n83,1060,5.0,1156206581\n83,1077,4.5,1156206305\n83,1078,4.0,1156205621\n83,1197,5.0,1156206554\n83,1208,5.0,1156205372\n83,1210,5.0,1156205236\n83,1230,5.0,1156205012\n83,1233,5.0,1156205366\n83,1240,3.0,1156205231\n83,1247,4.5,1156206232\n83,1257,5.0,1156205603\n83,1259,4.5,1156206569\n83,1265,4.5,1156206193\n83,1270,4.0,1156206651\n83,1276,5.0,1156205360\n83,1278,5.0,1156205116\n83,1288,4.5,1156205079\n83,1348,4.0,1156205597\n83,1358,0.5,1156205108\n83,1394,5.0,1156206678\n83,1476,5.0,1156207561\n83,1500,5.0,1156205057\n83,1590,5.0,1156205586\n83,1639,4.5,1156207452\n83,1653,5.0,1156205019\n83,1732,5.0,1156205355\n83,1747,4.0,1156207505\n83,1777,4.5,1156207576\n83,1799,5.0,1156207007\n83,1917,2.0,1156205343\n83,1920,0.5,1156205568\n83,1923,2.0,1156206976\n83,1961,5.0,1156205341\n83,2000,1.5,1156205337\n83,2109,3.5,1156205560\n83,2155,4.0,1156207519\n83,2291,5.0,1156207407\n83,2300,4.0,1156206206\n83,2302,4.0,1156207465\n83,2324,4.0,1156207385\n83,2359,4.0,1156206335\n83,2371,3.5,1156205549\n83,2395,5.0,1156207378\n83,2406,4.0,1156205072\n83,2502,5.0,1156205066\n83,2571,1.0,1156205227\n83,2599,4.0,1156205050\n83,2700,4.5,1156205318\n83,2716,4.0,1156206687\n83,2791,5.0,1156205315\n83,2795,5.0,1156206643\n83,2804,4.5,1156206109\n83,2858,4.0,1156206557\n83,2863,4.0,1156206361\n83,2918,5.0,1156206548\n83,2997,5.0,1156206640\n83,3022,4.5,1156206330\n83,3033,4.0,1156205312\n83,3037,4.0,1156206276\n83,3044,4.0,1156206983\n83,3087,3.5,1156205522\n83,3114,4.0,1156205304\n83,3160,0.5,1156205302\n83,3176,4.5,1156205298\n83,3198,4.0,1156205508\n83,3210,3.5,1156206681\n83,3252,4.0,1156205515\n83,3253,3.5,1156206992\n83,3261,4.0,1156207514\n83,3355,5.0,1156207276\n83,3359,4.0,1156205502\n83,3361,4.0,1156205494\n83,3362,4.5,1156206161\n83,3396,4.0,1156206211\n83,3398,4.0,1156205797\n83,3408,4.0,1156205095\n83,3421,5.0,1156206559\n83,3450,4.0,1156207595\n83,3481,4.0,1156206178\n83,3552,4.0,1156206668\n83,3671,4.5,1156206112\n83,3735,5.0,1156205479\n83,3751,4.0,1156206371\n83,3753,1.0,1156205296\n83,3809,4.0,1156207556\n83,3814,4.5,1156206196\n83,3868,5.0,1156206694\n83,3869,3.0,1156205474\n83,3897,4.0,1156206169\n83,3911,2.0,1156205292\n83,3950,3.5,1156205780\n83,4025,3.5,1156205468\n83,4027,5.0,1156206599\n83,4034,4.5,1156205085\n83,4066,4.0,1156205765\n83,4174,4.0,1156206943\n83,4255,1.5,1156205759\n83,4321,4.5,1156207591\n83,4322,4.5,1156205751\n83,4361,4.5,1156206364\n83,4388,4.0,1156205739\n83,4558,3.5,1156205736\n83,4571,3.5,1156205449\n83,4688,4.0,1156206995\n83,4886,4.0,1156206165\n83,4898,0.5,1156207279\n83,4963,4.5,1156205274\n83,4975,0.5,1156205445\n83,5060,4.5,1156206253\n83,5103,4.0,1156206947\n83,5135,4.5,1156206394\n83,5152,5.0,1156205729\n83,5377,4.0,1156206692\n83,5445,0.5,1156205029\n83,5602,3.5,1156206308\n83,5650,3.5,1156206705\n83,5669,4.0,1156205270\n83,5673,1.0,1156205435\n83,5902,0.5,1156206646\n83,6373,3.5,1156205432\n83,6659,3.5,1156207498\n83,6863,4.5,1156206301\n83,6947,5.0,1156205421\n83,7028,4.5,1156206134\n83,8376,4.0,1156205417\n83,8493,5.0,1156206979\n83,8528,3.5,1156205409\n83,8784,4.0,1156206637\n83,8807,5.0,1156205696\n83,8874,4.5,1156206118\n83,35836,3.5,1156206624\n84,1,3.5,1429910800\n84,110,4.0,1429910930\n84,260,4.0,1429910910\n84,296,4.0,1429910837\n84,356,3.0,1429910797\n84,589,3.0,1429910957\n84,1036,4.5,1429910764\n84,1196,4.0,1429910902\n84,1198,3.5,1429910909\n84,1210,4.0,1429910922\n84,1610,3.5,1429910906\n84,2028,3.0,1429910948\n84,2268,3.5,1429911562\n84,2329,3.0,1429910790\n84,2571,5.0,1429712680\n84,2858,3.5,1429910812\n84,2916,4.0,1429910913\n84,2959,4.0,1429910771\n84,3114,3.5,1429910861\n84,3301,4.0,1429911170\n84,3578,4.0,1429910935\n84,3623,3.5,1429911066\n84,3624,4.0,1429911144\n84,3717,4.0,1429911104\n84,3752,3.5,1429911142\n84,3753,4.0,1429911073\n84,3980,4.5,1429911363\n84,3994,3.0,1429911077\n84,4023,3.0,1429911265\n84,4148,4.0,1429911164\n84,4270,3.5,1429911152\n84,4306,4.0,1429911006\n84,4310,3.5,1429911137\n84,4701,3.5,1429911227\n84,4720,4.0,1429911106\n84,4776,4.0,1429911149\n84,4886,4.0,1429911038\n84,4896,3.5,1429911063\n84,4963,4.0,1429911041\n84,4993,4.5,1429910749\n84,4995,4.5,1429911049\n84,5010,4.0,1429911572\n84,5418,3.5,1429910917\n84,5445,3.5,1429911017\n84,5459,3.5,1429911098\n84,5481,3.0,1429911130\n84,5630,3.5,1429911247\n84,5952,4.5,1429910753\n84,5989,3.5,1429911059\n84,6016,4.0,1429910831\n84,6287,3.5,1429911297\n84,6365,3.5,1429910872\n84,6373,3.5,1429911118\n84,6377,3.0,1429911039\n84,6378,3.0,1429911113\n84,6539,3.5,1429910932\n84,6874,4.0,1429911044\n84,7153,5.0,1429712691\n84,7254,3.5,1429911126\n84,7293,3.5,1429911204\n84,7438,4.0,1429911060\n84,7458,4.0,1429911207\n84,8361,3.0,1429911214\n84,8368,4.0,1429910840\n84,8531,3.5,1429911525\n84,8644,3.5,1429911101\n84,8665,3.5,1429910987\n84,8961,4.0,1429911051\n84,8972,3.5,1429911276\n84,30825,3.5,1429911292\n84,31696,4.0,1429911295\n84,32587,3.5,1429910892\n84,33646,4.0,1429911509\n84,33794,4.0,1429910927\n84,34162,3.5,1429911174\n84,35836,4.0,1429911102\n84,36529,3.5,1429911221\n84,40815,3.5,1429910876\n84,44199,3.5,1429911233\n84,45447,3.0,1429911253\n84,45499,4.0,1429911198\n84,45722,3.5,1429911097\n84,53125,3.5,1429911229\n84,54001,3.5,1429911203\n84,54272,3.0,1429911238\n84,54286,4.0,1429910996\n84,56174,3.0,1429911193\n84,58559,4.0,1429910919\n84,58803,4.0,1429911340\n84,59315,3.5,1429910974\n84,64983,4.0,1429911421\n84,65514,2.5,1429910960\n84,68157,3.5,1429910829\n84,68358,3.5,1429910890\n84,69122,4.0,1429911154\n84,69844,3.5,1429910852\n84,72998,4.0,1429911107\n84,74458,4.0,1429911208\n84,74795,4.0,1429911567\n84,76093,4.0,1429910886\n84,81229,3.5,1429911541\n84,85342,3.5,1429910984\n84,89745,4.0,1429910785\n84,91500,3.5,1429910849\n84,91529,4.0,1429911262\n84,91658,3.5,1429911003\n84,92259,4.5,1429911538\n84,94777,4.0,1429910965\n84,96079,3.0,1429911001\n84,99114,3.0,1429910808\n84,102125,3.5,1429910884\n84,106487,3.5,1429910860\n84,106489,5.0,1429910856\n84,110102,4.0,1429910866\n84,116797,4.5,1429712709\n84,117176,4.0,1429911324\n85,2,5.0,837511784\n85,3,2.0,837512420\n85,5,3.0,837512493\n85,10,5.0,837507143\n85,19,3.0,837512280\n85,21,4.0,837511743\n85,23,3.0,837512169\n85,44,2.0,837512134\n85,58,1.0,837506990\n85,110,5.0,837506903\n85,153,4.0,837506803\n85,158,1.0,837513025\n85,160,3.0,837512403\n85,161,4.0,837507117\n85,165,4.0,837506796\n85,170,3.0,837512681\n85,172,3.0,837513025\n85,173,4.0,837512148\n85,177,2.0,837512454\n85,181,1.0,837512701\n85,185,3.0,837511998\n85,186,3.0,837512987\n85,188,1.0,837511493\n85,196,3.0,837511986\n85,203,3.0,837512599\n85,208,3.0,837511797\n85,216,3.0,837512325\n85,227,4.0,837512325\n85,230,2.0,837512519\n85,231,4.0,837507101\n85,234,4.0,837512212\n85,247,1.0,837512599\n85,253,3.0,837512030\n85,255,5.0,837512635\n85,256,4.0,837513025\n85,261,1.0,837513012\n85,275,3.0,837512134\n85,277,2.0,837512482\n85,282,1.0,837512962\n85,288,4.0,837512114\n85,291,1.0,837512611\n85,292,4.0,837507117\n85,293,5.0,837511431\n85,296,5.0,837506719\n85,315,4.0,837512200\n85,316,5.0,837512888\n85,317,4.0,837512236\n85,318,5.0,837506848\n85,327,1.0,837512249\n85,329,5.0,837507101\n85,333,4.0,837511448\n85,339,1.0,837512763\n85,344,4.0,837506801\n85,349,5.0,837506799\n85,350,3.0,837511838\n85,355,3.0,837512312\n85,356,4.0,837506902\n85,357,3.0,837512561\n85,364,3.0,837512169\n85,366,1.0,837512580\n85,367,4.0,837511809\n85,368,4.0,837511822\n85,370,2.0,837512403\n85,374,1.0,837512723\n85,377,5.0,837511771\n85,380,5.0,837506726\n85,405,3.0,837512599\n85,410,4.0,837511784\n85,415,3.0,837512420\n85,420,1.0,837512433\n85,432,4.0,837512344\n85,434,3.0,837512015\n85,437,3.0,837512344\n85,442,4.0,837511349\n85,454,3.0,837512191\n85,457,5.0,837506903\n85,466,3.0,837512312\n85,471,3.0,837512312\n85,480,5.0,837511743\n85,485,3.0,837512225\n85,500,4.0,837512181\n85,508,2.0,837512648\n85,519,3.0,837512249\n85,520,3.0,837511838\n85,527,2.0,837506847\n85,543,4.0,837512561\n85,546,1.0,837512482\n85,548,4.0,837512388\n85,551,1.0,837512648\n85,553,4.0,837511743\n85,555,3.0,837512114\n85,586,3.0,837512268\n85,587,3.0,837512325\n85,588,3.0,837506797\n85,589,5.0,837507044\n85,590,3.0,837506714\n85,592,4.0,837506709\n85,593,4.0,837506876\n85,594,2.0,837512504\n85,595,3.0,837507101\n85,597,4.0,837512519\n85,610,3.0,837512225\n85,616,4.0,837512681\n85,648,5.0,837511448\n85,688,1.0,837512681\n85,709,1.0,837512723\n85,733,5.0,837506902\n86,1,3.0,848161799\n86,11,1.0,848159306\n86,14,4.0,848161252\n86,17,5.0,848159382\n86,18,5.0,848160301\n86,19,1.0,848159249\n86,21,1.0,848159249\n86,25,3.0,848161123\n86,26,4.0,848160245\n86,28,4.0,848160132\n86,29,4.0,848160311\n86,30,5.0,848161285\n86,32,5.0,848159270\n86,34,3.0,848159230\n86,35,4.0,848160169\n86,36,4.0,848159467\n86,39,4.0,848161788\n86,41,4.0,848160022\n86,46,3.0,848161443\n86,47,5.0,848159211\n86,58,4.0,848161091\n86,62,3.0,848161498\n86,68,4.0,848160534\n86,72,4.0,848161284\n86,73,3.0,848161182\n86,81,5.0,848161391\n86,82,3.0,848161091\n86,85,4.0,848161221\n86,97,4.0,848161123\n86,105,3.0,848161330\n86,110,3.0,848161539\n86,116,4.0,848160534\n86,121,3.0,848161182\n86,124,3.0,848161391\n86,126,1.0,848160230\n86,141,4.0,848159382\n86,144,3.0,848161353\n86,147,5.0,848161267\n86,150,4.0,848159074\n86,151,4.0,848161799\n86,154,4.0,848161123\n86,159,3.0,848161454\n86,160,2.0,848159289\n86,162,3.0,848161091\n86,171,4.0,848160273\n86,172,3.0,848161811\n86,178,5.0,848160534\n86,180,3.0,848161507\n86,186,1.0,848159406\n86,194,4.0,848161090\n86,198,3.0,848159752\n86,203,4.0,848159634\n86,208,3.0,848159167\n86,213,4.0,848161123\n86,218,4.0,848161454\n86,223,5.0,848159545\n86,224,3.0,848161373\n86,229,4.0,848160081\n86,231,1.0,848159117\n86,232,4.0,848159826\n86,235,4.0,848159429\n86,242,4.0,848160360\n86,246,3.0,848161252\n86,247,5.0,848159905\n86,249,4.0,848161208\n86,252,1.0,848159406\n86,253,4.0,848159191\n86,254,4.0,848161465\n86,260,5.0,848161982\n86,261,3.0,848161454\n86,263,3.0,848161149\n86,265,4.0,848159467\n86,266,3.0,848161787\n86,269,4.0,848161199\n86,272,4.0,848159608\n86,273,3.0,848161308\n86,282,3.0,848161308\n86,287,3.0,848161343\n86,288,3.0,848161773\n86,290,5.0,848160119\n86,292,3.0,848161773\n86,296,5.0,848159074\n86,299,5.0,848160039\n86,300,4.0,848159230\n86,302,3.0,848161134\n86,305,3.0,848159765\n86,306,5.0,848159807\n86,307,5.0,848159845\n86,308,5.0,848159932\n86,314,3.0,848161182\n86,316,3.0,848159117\n86,318,5.0,848159148\n86,319,5.0,848159779\n86,321,3.0,848160389\n86,324,3.0,848160729\n86,329,5.0,848159148\n86,331,3.0,848161199\n86,332,3.0,848160081\n86,337,4.0,848161104\n86,342,5.0,848159621\n86,345,5.0,848159719\n86,348,3.0,848161134\n86,357,5.0,848159270\n86,362,3.0,848159654\n86,364,4.0,848159211\n86,365,4.0,848161330\n86,369,4.0,848161149\n86,372,3.0,848161404\n86,405,2.0,848162010\n86,419,3.0,848159719\n86,427,3.0,848161443\n86,435,4.0,848161788\n86,444,4.0,848161353\n86,446,3.0,848160066\n86,454,2.0,848159191\n86,461,4.0,848160573\n86,468,3.0,848161491\n86,469,3.0,848161343\n86,471,4.0,848161161\n86,475,4.0,848159706\n86,477,3.0,848161443\n86,480,3.0,848159148\n86,481,3.0,848159932\n86,482,4.0,848161465\n86,497,4.0,848161123\n86,500,3.0,848161773\n86,501,5.0,848160301\n86,508,3.0,848159361\n86,509,5.0,848159326\n86,515,5.0,848159503\n86,527,5.0,848159249\n86,531,3.0,848159779\n86,534,4.0,848159856\n86,535,5.0,848159932\n86,538,5.0,848159989\n86,539,3.0,848159249\n86,541,4.0,848162072\n86,550,4.0,848159949\n86,551,4.0,848159429\n86,555,4.0,848159503\n86,568,3.0,848161252\n86,585,5.0,848161811\n86,586,1.0,848161788\n86,587,3.0,848159230\n86,588,3.0,848159093\n86,589,2.0,848159191\n86,590,3.0,848161161\n86,592,3.0,848159074\n86,593,5.0,848161773\n86,594,4.0,848159503\n86,595,3.0,848161267\n86,596,4.0,848159689\n86,597,3.0,848159230\n86,608,5.0,848159590\n86,613,3.0,848161360\n86,616,3.0,848161308\n86,633,5.0,848161343\n86,640,3.0,848160245\n86,650,3.0,848161481\n86,661,3.0,848161221\n86,665,4.0,848161149\n86,671,4.0,848161330\n86,708,3.0,848159794\n86,720,4.0,848162097\n86,724,3.0,848162119\n86,728,4.0,848160360\n86,753,3.0,848161237\n86,756,3.0,848161539\n86,766,5.0,848161161\n86,778,4.0,848159975\n86,780,2.0,848159406\n86,783,3.0,848159949\n86,784,2.0,848162010\n86,828,3.0,848161481\n86,830,2.0,848161528\n86,844,3.0,848161552\n86,892,3.0,848161552\n86,1035,4.0,848162129\n86,1036,1.0,848162026\n86,1041,5.0,848160714\n86,1046,4.0,848160865\n86,1059,3.0,848161267\n86,1073,4.0,848160039\n86,1079,4.0,848162144\n86,1084,3.0,848160211\n86,1148,5.0,848160625\n86,1161,4.0,848160729\n86,1163,3.0,848160993\n86,1354,5.0,848160983\n86,1357,5.0,848161044\n87,1,3.0,858623186\n87,7,3.0,858623219\n87,25,4.0,858623186\n87,32,3.0,858623186\n87,52,4.0,858623240\n87,62,1.0,858623186\n87,88,3.0,858623319\n87,95,3.0,858623186\n87,104,4.0,858623240\n87,112,3.0,858623240\n87,141,4.0,858623186\n87,260,4.0,858623240\n87,293,5.0,858623456\n87,494,4.0,858623219\n87,608,5.0,858623219\n87,648,3.0,858623186\n87,663,3.0,858623335\n87,728,5.0,858623364\n87,733,3.0,858623219\n87,736,2.0,858623186\n87,762,3.0,858623257\n87,778,3.0,858623270\n87,780,3.0,858623186\n87,785,4.0,858623319\n87,786,3.0,858623219\n87,802,3.0,858623257\n87,852,1.0,858623283\n87,1073,3.0,858623219\n87,1210,3.0,858623299\n87,1357,5.0,858623403\n87,1405,2.0,858623335\n88,2,3.5,1239773232\n88,7,4.0,1239765126\n88,11,3.5,1239764623\n88,21,3.5,1239764334\n88,31,3.0,1239755559\n88,36,4.0,1239758454\n88,39,3.0,1239764316\n88,47,4.0,1239763433\n88,62,3.5,1239758460\n88,95,2.0,1239764336\n88,104,0.5,1239764721\n88,141,4.5,1239764330\n88,150,4.0,1239763733\n88,153,2.0,1239763939\n88,160,2.0,1239765071\n88,163,3.0,1239766992\n88,165,3.0,1239763933\n88,185,3.0,1239764312\n88,223,4.5,1239764512\n88,231,0.5,1239767689\n88,253,3.0,1239764173\n88,256,0.5,1239755560\n88,260,4.0,1239763727\n88,261,3.5,1239755456\n88,288,3.0,1239758451\n88,296,3.5,1239757625\n88,316,2.5,1239763984\n88,318,4.0,1239757629\n88,337,3.5,1239764763\n88,339,4.0,1239764337\n88,344,2.0,1239763845\n88,345,3.0,1239775160\n88,350,3.0,1239764885\n88,353,4.0,1239764964\n88,356,4.0,1239757626\n88,357,5.0,1239764169\n88,364,4.0,1239763943\n88,377,3.0,1239763839\n88,380,2.0,1239763826\n88,435,1.5,1239766980\n88,440,2.5,1239773306\n88,454,2.5,1239764176\n88,457,2.5,1239763731\n88,480,3.0,1239763722\n88,497,4.0,1239765126\n88,500,2.5,1239772521\n88,508,4.0,1239764638\n88,509,5.0,1239764747\n88,520,1.5,1239766985\n88,527,4.0,1239756770\n88,539,3.5,1239767724\n88,541,4.5,1239758268\n88,551,4.5,1239764701\n88,552,2.0,1239755377\n88,553,3.0,1239765069\n88,586,2.5,1239764309\n88,588,3.0,1239757679\n88,592,3.0,1239772558\n88,593,2.0,1239763711\n88,594,4.0,1239764749\n88,595,3.5,1239763938\n88,596,4.0,1239755381\n88,608,3.5,1239763830\n88,648,3.5,1239763854\n88,708,3.5,1239764853\n88,733,3.0,1239772575\n88,736,3.5,1239763983\n88,745,3.0,1239762941\n88,778,4.5,1239772824\n88,780,3.5,1239757090\n88,802,1.0,1239755385\n88,913,4.0,1239755437\n88,914,4.0,1239755560\n88,919,4.0,1239764515\n88,924,4.0,1239764492\n88,1028,3.0,1239775047\n88,1073,3.0,1239758081\n88,1079,4.0,1239764641\n88,1080,3.5,1239764678\n88,1097,3.5,1239758059\n88,1101,4.0,1239764609\n88,1136,3.5,1239758202\n88,1183,3.0,1239764886\n88,1193,4.0,1239758210\n88,1196,3.5,1239757684\n88,1197,4.0,1239758069\n88,1207,4.0,1239763265\n88,1225,4.5,1239764628\n88,1246,5.0,1239764716\n88,1258,3.0,1239764604\n88,1259,4.5,1239764615\n88,1265,2.5,1239772561\n88,1270,3.5,1239763858\n88,1278,4.0,1239766995\n88,1282,4.0,1239755420\n88,1291,3.0,1239764173\n88,1293,4.0,1239755561\n88,1302,2.5,1239755415\n88,1307,4.0,1239764516\n88,1380,2.5,1239765070\n88,1391,3.0,1239764905\n88,1393,3.0,1239764514\n88,1394,3.5,1239765130\n88,1407,1.5,1239764889\n88,1485,0.5,1239764845\n88,1500,4.0,1239765138\n88,1517,0.5,1239767713\n88,1527,4.0,1239758428\n88,1573,3.0,1239764767\n88,1580,2.5,1239756858\n88,1639,4.5,1239766989\n88,1641,4.0,1239764988\n88,1674,3.0,1239755446\n88,1704,5.0,1239758442\n88,1732,4.0,1239764905\n88,1777,1.5,1239773365\n88,1784,3.5,1239764518\n88,1909,0.5,1239755427\n88,1917,3.0,1239764540\n88,1961,3.5,1239764341\n88,1968,3.5,1239772229\n88,2011,2.0,1239764751\n88,2054,3.0,1239764896\n88,2100,3.5,1239774217\n88,2115,2.0,1239764695\n88,2174,4.0,1239764636\n88,2268,3.0,1239765142\n88,2291,4.5,1239764706\n88,2302,3.0,1239767000\n88,2321,3.0,1257010873\n88,2329,2.5,1239764852\n88,2353,3.5,1239766983\n88,2355,3.5,1239764618\n88,2396,4.5,1239764344\n88,2502,4.0,1239764770\n88,2571,4.0,1239763841\n88,2599,4.0,1239772626\n88,2617,2.5,1239764978\n88,2628,0.5,1239758086\n88,2640,2.0,1239764969\n88,2671,4.0,1239774709\n88,2692,4.5,1239763430\n88,2710,1.0,1239764684\n88,2712,2.5,1239766975\n88,2716,3.5,1239767661\n88,2762,4.0,1239767652\n88,2763,2.5,1239755416\n88,2791,3.5,1239764774\n88,2797,4.0,1239764693\n88,2858,4.0,1239757873\n88,2959,4.0,1239758107\n88,2962,4.5,1239778395\n88,2997,4.0,1239764339\n88,3052,2.5,1239765128\n88,3081,3.0,1239773748\n88,3147,4.0,1239764794\n88,3160,4.0,1239774220\n88,3255,3.0,1239755557\n88,3408,4.5,1239765070\n88,3418,3.5,1239775154\n88,3435,3.5,1239763277\n88,3448,4.0,1239773739\n88,3481,4.5,1239765131\n88,3578,2.0,1239764184\n88,3751,3.5,1239765070\n88,3753,3.5,1239773151\n88,3755,2.5,1239755558\n88,3793,3.0,1239756814\n88,3897,4.5,1239764782\n88,3996,3.5,1239758460\n88,4017,4.0,1239775449\n88,4022,4.0,1239764966\n88,4027,4.0,1239764951\n88,4034,4.0,1239764957\n88,4226,3.0,1239762847\n88,4246,4.0,1239772249\n88,4308,3.0,1239772623\n88,4720,2.5,1239773931\n88,4886,4.0,1239764688\n88,4896,3.5,1239767658\n88,4963,4.5,1239764753\n88,4973,5.0,1239757171\n88,4979,4.0,1239772946\n88,4993,4.0,1239756824\n88,4995,3.0,1239757094\n88,5218,3.5,1239772461\n88,5299,3.5,1239772239\n88,5349,3.0,1239764714\n88,5377,4.5,1239778184\n88,5378,1.0,1239767719\n88,5418,4.0,1239767682\n88,5445,3.5,1239764608\n88,5459,2.5,1239773123\n88,5618,4.0,1239762921\n88,5679,2.0,1239773937\n88,5952,3.5,1239756837\n88,5991,3.0,1239773743\n88,5995,4.5,1239763309\n88,6016,4.0,1239762854\n88,6373,2.5,1239773941\n88,6377,4.0,1239764786\n88,6539,4.0,1239764697\n88,6711,4.5,1239767643\n88,6807,4.0,1239773949\n88,6863,3.0,1239772568\n88,6873,4.0,1239771765\n88,6874,4.0,1239756823\n88,6881,4.0,1256960996\n88,6942,4.5,1239771692\n88,7147,4.0,1239772247\n88,7153,3.5,1239757077\n88,7285,4.0,1239775462\n88,7361,4.0,1239766978\n88,7438,4.0,1239767657\n88,8228,4.5,1239763295\n88,8368,3.5,1239767702\n88,8636,3.0,1239772533\n88,8644,4.0,1239772225\n88,8665,4.0,1239767646\n88,8784,4.0,1239772582\n88,8874,3.5,1239772618\n88,30707,3.5,1239772528\n88,30793,2.5,1239772951\n88,32587,3.5,1239772632\n88,32598,3.0,1239778397\n88,33794,2.0,1239755439\n88,34405,3.0,1239775005\n88,35836,2.5,1239772928\n88,36517,4.0,1239778633\n88,40815,3.5,1239774702\n88,40819,4.5,1239761146\n88,41566,4.0,1239772241\n88,45447,3.0,1239774712\n88,46976,4.5,1239774126\n88,50872,4.0,1239772995\n88,51705,4.5,1251668327\n88,52668,4.5,1259386770\n88,52973,3.0,1239773175\n88,54001,4.0,1239773229\n88,55269,1.5,1256960930\n88,56367,5.0,1239757476\n88,57669,4.0,1256961092\n88,59615,1.0,1239772235\n88,60684,2.5,1239758696\n88,62344,4.5,1239775107\n88,63515,2.5,1239772923\n88,63876,4.5,1239775407\n88,65261,4.0,1251668389\n88,66097,4.0,1239758693\n88,66198,3.0,1239759260\n88,67193,3.0,1239758705\n88,67799,2.5,1239767650\n88,68954,4.5,1249886099\n88,69844,4.0,1249886123\n88,70293,4.5,1251956371\n89,1,5.0,1257620018\n89,107,4.0,1257610324\n89,110,5.0,1257620127\n89,165,4.0,1257620488\n89,231,5.0,1257620511\n89,260,5.0,1257620279\n89,296,5.0,1257620073\n89,303,4.0,1257610311\n89,316,4.0,1257620499\n89,318,5.0,1257620251\n89,327,2.0,1257610314\n89,344,5.0,1257620122\n89,364,5.0,1257620508\n89,428,4.0,1257610525\n89,480,5.0,1257620110\n89,500,5.0,1257620515\n89,588,4.5,1257620522\n89,589,4.0,1257620040\n89,590,5.0,1257620132\n89,648,4.0,1257620113\n89,780,4.0,1257620045\n89,1019,3.0,1257610347\n89,1073,4.5,1257620538\n89,1214,3.5,1257620544\n89,1240,4.5,1257620479\n89,1265,4.5,1257620589\n89,1385,3.0,1257610479\n89,1617,4.0,1257620572\n89,1772,5.0,1257610885\n89,2028,5.0,1257620592\n89,2378,4.0,1257610468\n89,2571,5.0,1257620269\n89,2628,5.0,1257620129\n89,2683,5.0,1257620503\n89,2706,5.0,1257620604\n89,2762,5.0,1257620518\n89,2951,5.0,1257610437\n89,2959,5.0,1257620271\n89,2987,4.0,1257620535\n89,2991,5.0,1257610538\n89,3114,4.5,1257620568\n89,3254,4.0,1257610494\n89,3578,5.0,1257620265\n89,3638,5.0,1257610567\n89,3793,5.0,1257620282\n89,4886,4.0,1257620037\n89,4896,5.0,1257620582\n89,4963,5.0,1257620117\n89,5219,4.5,1257610620\n89,5349,4.5,1257620031\n89,5418,5.0,1257620554\n89,5952,5.0,1257620258\n89,6365,5.0,1257620255\n89,6539,5.0,1257620050\n89,6874,5.0,1257620132\n89,7153,5.0,1257620466\n89,7438,5.0,1257620454\n89,7454,4.0,1257610864\n89,8528,5.0,1257610580\n89,33794,5.0,1257620448\n89,45722,5.0,1257620541\n89,48516,5.0,1257620575\n89,49272,4.0,1257620285\n89,51662,5.0,1257620602\n89,58559,5.0,1257620481\n89,59315,5.0,1257620457\n90,1,4.0,875517174\n90,6,4.0,875517954\n90,25,2.0,875517624\n90,29,5.0,875517306\n90,32,4.0,875517953\n90,36,4.0,875516371\n90,79,3.0,875520648\n90,81,4.0,875520409\n90,141,3.0,875518226\n90,260,4.0,875516370\n90,608,5.0,875516370\n90,648,4.0,875519306\n90,661,3.0,875518088\n90,733,4.0,875516731\n90,736,3.0,875518345\n90,766,3.0,875520264\n90,778,4.0,875517233\n90,780,2.0,875520463\n90,783,3.0,875518641\n90,800,5.0,875517174\n90,802,4.0,875518088\n90,830,3.0,875520464\n90,832,4.0,875517754\n90,837,4.0,875517233\n90,866,4.0,875517953\n90,986,4.0,895843258\n90,1047,4.0,875518345\n90,1061,4.0,875517306\n90,1073,3.0,875518016\n90,1183,4.0,875514792\n90,1351,4.0,875517306\n90,1356,4.0,875517233\n90,1367,4.0,875519306\n90,1407,4.0,875514792\n90,1422,4.0,875515203\n90,1438,3.0,875515203\n90,1472,4.0,875519715\n90,1479,3.0,875515030\n90,1500,5.0,875517174\n90,1513,2.0,876370672\n90,1515,3.0,876288277\n90,1527,4.0,875518289\n90,1552,4.0,875517306\n90,1554,4.0,875516370\n90,1569,4.0,875518088\n90,1580,4.0,875517358\n90,1584,5.0,876288017\n90,1590,5.0,875515956\n90,1597,4.0,875515902\n90,1608,2.0,875515030\n91,1,5.0,1448798200\n91,12,3.5,1448813887\n91,19,4.0,1448813534\n91,23,3.5,1448798511\n91,34,3.0,1448798347\n91,104,4.0,1448814310\n91,110,5.0,1448798142\n91,216,4.0,1448813322\n91,231,4.5,1448813386\n91,260,5.0,1448798105\n91,267,3.5,1448814317\n91,318,5.0,1448798101\n91,356,5.0,1448798168\n91,370,4.5,1448814268\n91,380,4.5,1448798508\n91,466,5.0,1448814281\n91,527,5.0,1448798139\n91,588,4.5,1448798326\n91,589,5.0,1448798161\n91,747,3.5,1448814498\n91,1036,5.0,1448798146\n91,1047,4.0,1448798490\n91,1097,5.0,1448798242\n91,1196,5.0,1448798104\n91,1198,5.0,1448798107\n91,1200,4.0,1448798180\n91,1210,5.0,1448798136\n91,1214,4.0,1448798206\n91,1240,5.0,1448798178\n91,1265,5.0,1448798300\n91,1270,5.0,1448798307\n91,1291,5.0,1448798140\n91,1573,4.0,1448798532\n91,1682,5.0,1448798342\n91,2028,5.0,1448798143\n91,2335,3.0,1448813382\n91,2379,3.0,1448814231\n91,2380,3.0,1448814231\n91,2381,3.0,1448814230\n91,2382,2.5,1448814268\n91,2571,5.0,1448798112\n91,2706,4.0,1448813169\n91,2791,5.0,1448814124\n91,2948,4.5,1448798580\n91,3114,5.0,1448798200\n91,3146,3.5,1448813361\n91,3387,3.0,1448814276\n91,3578,4.0,1448798170\n91,3623,4.0,1448798564\n91,3821,3.0,1448814280\n91,3869,4.5,1448814228\n91,3979,3.0,1448814200\n91,3996,4.0,1448798208\n91,4015,3.0,1448813368\n91,4084,3.5,1448814226\n91,4306,4.5,1448798338\n91,4340,3.0,1448814412\n91,4718,4.0,1448813183\n91,4886,5.0,1448798317\n91,4973,4.5,1448798341\n91,4993,5.0,1448798115\n91,5218,4.5,1448813064\n91,5418,5.0,1448798216\n91,5952,5.0,1448798134\n91,6482,2.0,1448813528\n91,6550,3.0,1448814312\n91,6763,3.5,1448814436\n91,7153,5.0,1448798114\n91,7317,4.0,1448813185\n91,7346,4.0,1448813189\n91,8360,4.5,1448813078\n91,8531,3.0,1448814393\n91,30825,4.0,1448814287\n91,33679,4.5,1448798548\n91,33794,5.0,1448798175\n91,34162,4.5,1448813022\n91,35836,4.0,1448813008\n91,43836,3.5,1448814434\n91,44022,4.5,1448813043\n91,44191,4.5,1448798234\n91,44972,3.0,1448814469\n91,45186,4.5,1448798488\n91,46865,2.5,1448814476\n91,50806,2.0,1448814443\n91,52694,3.5,1448814407\n91,54272,4.5,1448813111\n91,54286,5.0,1448798163\n91,54503,4.0,1448813293\n91,54732,3.0,1448813885\n91,57532,2.0,1448814418\n91,58559,5.0,1448798116\n91,59014,3.0,1448814399\n91,59315,5.0,1448798230\n91,59369,4.5,1448798219\n91,59900,3.0,1448813535\n91,66798,4.0,1448814401\n91,68358,4.5,1448798186\n91,68954,4.0,1448798188\n91,69122,4.5,1448813028\n91,71535,4.5,1448798331\n91,73017,4.5,1448813010\n91,74851,4.5,1448798475\n91,76093,5.0,1448798187\n91,78041,3.5,1448798561\n91,78499,5.0,1448798300\n91,79132,5.0,1448798165\n91,79185,4.0,1448798481\n91,79293,4.0,1448798492\n91,79428,3.0,1448814299\n91,80549,3.5,1448813209\n91,81229,5.0,1448798482\n91,81564,4.5,1448813080\n91,82852,3.5,1448814286\n91,85414,5.0,1448798233\n91,87232,5.0,1448798202\n91,89745,5.0,1448798191\n91,91500,3.5,1448798222\n91,91542,5.0,1448798645\n91,91630,4.5,1448798513\n91,92259,5.0,1448813059\n91,92507,4.5,1448798507\n91,93326,4.0,1448798554\n91,93510,4.0,1448813012\n91,94466,4.0,1448798161\n91,96610,5.0,1448798244\n91,96616,3.0,1448814395\n91,97913,4.5,1448798340\n91,98809,4.5,1448798239\n91,103335,4.5,1448813040\n91,103341,3.5,1448813127\n91,103810,5.0,1448798514\n91,103883,4.0,1448813037\n91,104218,3.5,1448814472\n91,104374,4.5,1448813046\n91,106487,3.0,1448798204\n91,106489,4.5,1448798214\n91,106782,4.5,1448813133\n91,109374,5.0,1448813013\n91,110102,5.0,1448798210\n91,111781,4.0,1448798496\n91,112138,4.0,1448814302\n91,112175,4.5,1448813019\n91,112623,4.5,1448798238\n91,112852,5.0,1448798144\n91,115617,5.0,1448798217\n91,116977,3.5,1448813890\n91,132157,2.5,1448814423\n91,134368,4.0,1448798654\n91,134853,4.0,1448813002\n91,138036,5.0,1448798537\n92,1,5.0,848526251\n92,2,3.0,848525932\n92,6,3.0,848526431\n92,10,2.0,848525661\n92,11,4.0,848525903\n92,19,1.0,848525799\n92,21,5.0,848525799\n92,32,5.0,848525833\n92,34,5.0,848525764\n92,39,2.0,848525833\n92,44,3.0,848526389\n92,45,4.0,848526550\n92,47,5.0,848525730\n92,50,5.0,848525799\n92,62,3.0,848526334\n92,76,3.0,848526084\n92,95,3.0,848525971\n92,110,5.0,848525661\n92,112,4.0,848526594\n92,141,4.0,848526274\n92,145,3.0,848526572\n92,150,3.0,848525510\n92,151,3.0,848526334\n92,153,3.0,848525554\n92,160,2.0,848525873\n92,161,5.0,848525661\n92,163,5.0,848526550\n92,165,3.0,848525554\n92,172,1.0,848526406\n92,173,3.0,848525932\n92,177,2.0,848526037\n92,181,3.0,848526572\n92,186,3.0,848526334\n92,188,3.0,848526060\n92,193,1.0,848526484\n92,196,3.0,848526274\n92,204,4.0,848526363\n92,208,3.0,848525661\n92,223,5.0,848526508\n92,224,3.0,848526484\n92,231,3.0,848525589\n92,235,4.0,848526363\n92,237,3.0,848526529\n92,247,5.0,848526037\n92,252,3.0,848526334\n92,253,2.0,848525694\n92,266,2.0,848525873\n92,273,3.0,848526005\n92,288,3.0,848525694\n92,292,3.0,848525624\n92,293,4.0,848526363\n92,296,4.0,848525510\n92,300,4.0,848525764\n92,315,2.0,848525932\n92,316,1.0,848525589\n92,317,2.0,848525873\n92,318,5.0,848525624\n92,319,4.0,848526711\n92,328,3.0,848526037\n92,329,3.0,848525624\n92,330,3.0,848526061\n92,332,3.0,848526061\n92,333,3.0,848526431\n92,339,3.0,848525694\n92,344,2.0,848525554\n92,349,3.0,848525589\n92,350,2.0,848525873\n92,353,3.0,848526389\n92,355,2.0,848526484\n92,356,4.0,848525589\n92,357,3.0,848525833\n92,362,3.0,848526594\n92,364,1.0,848525730\n92,366,2.0,848526037\n92,367,3.0,848525730\n92,368,4.0,848526363\n92,370,3.0,848526431\n92,377,3.0,848525730\n92,380,4.0,848525510\n92,413,1.0,848526671\n92,420,1.0,848525833\n92,426,2.0,848526037\n92,432,2.0,848525903\n92,434,3.0,848525624\n92,435,3.0,848525903\n92,440,3.0,848525873\n92,442,3.0,848525971\n92,454,2.0,848525694\n92,455,3.0,848526615\n92,457,4.0,848525554\n92,466,2.0,848526508\n92,471,4.0,848526594\n92,474,4.0,848525932\n92,480,4.0,848525624\n92,485,3.0,848526431\n92,497,4.0,848526484\n92,500,3.0,848525730\n92,508,3.0,848526251\n92,509,1.0,848525932\n92,520,2.0,848526508\n92,527,4.0,848525799\n92,529,3.0,848526615\n92,532,3.0,848526005\n92,539,3.0,848525799\n92,543,3.0,848526632\n92,551,3.0,848526363\n92,552,1.0,848526529\n92,553,5.0,848525971\n92,555,5.0,848526458\n92,587,3.0,848525764\n92,588,3.0,848525554\n92,589,5.0,848525694\n92,590,4.0,848525510\n92,592,3.0,848525510\n92,595,5.0,848525589\n92,597,2.0,848525764\n92,606,2.0,848526061\n92,608,5.0,848526005\n92,610,3.0,848526615\n92,648,5.0,848526431\n92,736,2.0,848526274\n92,778,5.0,848526711\n92,780,2.0,848526334\n93,1,4.0,1304992014\n93,11,3.5,1304992956\n93,17,4.0,1304992470\n93,21,5.0,1304992496\n93,25,3.5,1304992612\n93,34,4.0,1304992044\n93,39,4.0,1304992650\n93,62,3.5,1304992545\n93,150,4.0,1304992002\n93,208,3.0,1304992201\n93,260,4.0,1304991771\n93,265,3.5,1304729472\n93,266,3.5,1304993113\n93,337,4.0,1304993047\n93,339,4.5,1304992536\n93,342,3.5,1304729463\n93,357,3.5,1304992467\n93,364,3.5,1304991727\n93,368,3.5,1304993029\n93,377,4.5,1304991695\n93,457,4.0,1304991813\n93,508,4.0,1304992794\n93,515,2.5,1304729519\n93,529,4.0,1304729511\n93,539,4.0,1304992253\n93,586,2.5,1304992362\n93,587,3.5,1304992164\n93,588,3.0,1304991715\n93,590,4.5,1304991644\n93,592,3.5,1304992145\n93,595,4.0,1304991672\n93,597,3.5,1304991976\n93,648,3.5,1304992476\n93,733,3.0,1304992157\n93,858,4.5,1304991806\n93,898,5.0,1304730634\n93,902,2.5,1304729528\n93,904,4.5,1304993084\n93,908,4.0,1304993135\n93,910,3.5,1304729500\n93,912,4.5,1304992427\n93,914,3.5,1304729546\n93,919,4.0,1304992912\n93,920,4.0,1304993128\n93,923,4.0,1304993105\n93,1073,3.5,1304991872\n93,1079,4.0,1304993056\n93,1097,4.0,1304991877\n93,1193,4.0,1304992150\n93,1197,4.0,1304992131\n93,1198,4.0,1304991788\n93,1225,4.0,1304992590\n93,1234,4.0,1304993139\n93,1240,3.0,1304991885\n93,1242,3.5,1304729440\n93,1246,3.5,1304992621\n93,1247,3.5,1304992965\n93,1259,4.0,1304992601\n93,1265,4.0,1304991801\n93,1270,3.5,1304992197\n93,1278,4.0,1304993180\n93,1291,3.5,1304992081\n93,1304,4.5,1304992945\n93,1307,4.0,1304992566\n93,1380,3.5,1304992785\n93,1387,3.0,1304992367\n93,1393,3.5,1304992382\n93,1394,4.0,1304992980\n93,1580,3.5,1304992244\n93,1610,4.0,1304992258\n93,1641,4.5,1304992689\n93,1682,3.5,1304992372\n93,1704,4.0,1304992435\n93,1721,4.0,1304992542\n93,1747,5.0,1304729481\n93,1784,3.5,1304992334\n93,1912,4.0,1304729620\n93,1923,3.5,1304992089\n93,1961,4.5,1304992108\n93,1968,3.5,1304992212\n93,2011,3.0,1304992510\n93,2081,2.5,1304992707\n93,2100,2.5,1304729449\n93,2115,3.5,1304992236\n93,2194,4.5,1304992654\n93,2268,4.5,1304992659\n93,2291,3.5,1304992445\n93,2302,4.0,1304992644\n93,2321,4.0,1304992988\n93,2355,3.0,1304992274\n93,2396,4.0,1304992573\n93,2406,3.5,1304992693\n93,2470,2.5,1304993132\n93,2599,4.0,1304992774\n93,2657,3.0,1304992753\n93,2716,3.5,1304991839\n93,2797,4.0,1304992605\n93,2918,4.0,1304992288\n93,3072,3.5,1304729573\n93,3101,4.0,1304993022\n93,3114,4.0,1304992431\n93,3176,3.0,1304992724\n93,3255,3.0,1304729539\n93,3256,3.5,1304729577\n93,3317,4.0,1304730537\n93,3408,3.5,1304992717\n93,3471,3.5,1304992675\n93,3751,4.0,1304992393\n93,3897,5.0,1304992126\n93,4014,3.5,1304993193\n93,4022,3.5,1304992208\n93,4027,3.5,1304992116\n93,4029,5.0,1304730462\n93,4085,3.5,1304992960\n93,4246,4.0,1304992617\n93,4306,3.0,1304991655\n93,4361,4.5,1304729607\n93,4886,3.0,1304992417\n93,4963,4.0,1304992228\n93,4979,4.5,1304992578\n93,4993,5.0,1304991776\n93,4995,4.0,1304992025\n93,5299,3.5,1304992638\n93,5377,3.5,1304992993\n93,5952,5.0,1304991738\n93,5989,4.0,1304992101\n93,6377,3.5,1304991702\n93,6711,4.0,1304992293\n93,6863,3.0,1304992773\n93,6942,3.5,1304993061\n93,7147,3.5,1304730389\n93,7153,5.0,1304991683\n93,8360,3.0,1304991855\n93,8636,3.5,1304992297\n93,8949,4.0,1304993087\n93,8961,5.0,1304991698\n93,27790,5.0,1304730326\n93,41566,4.0,1304992905\n93,41569,3.0,1304993097\n93,44195,4.0,1304730662\n93,45722,2.5,1304992317\n93,46578,4.0,1304992240\n93,49272,3.5,1304992218\n93,50872,3.5,1304992595\n93,54328,5.0,1304730410\n93,56367,5.0,1304992038\n93,59315,4.0,1304992192\n93,59615,2.5,1304993120\n93,60069,3.5,1304992010\n93,68954,5.0,1304992278\n93,72011,4.0,1304993011\n93,72998,4.0,1304991627\n93,74789,3.5,1304992976\n93,77561,4.0,1304992900\n93,78499,5.0,1304992451\n93,79132,4.0,1304730598\n93,81845,4.0,1304992984\n93,82459,4.0,1304993169\n93,84304,3.5,1304991723\n94,1,4.0,1291779829\n94,16,3.5,1291781117\n94,50,4.0,1291780058\n94,69,3.0,1291777340\n94,104,2.5,1291781042\n94,110,4.5,1291779579\n94,111,3.5,1291780487\n94,150,5.0,1291779548\n94,161,3.5,1291780453\n94,208,2.0,1291780169\n94,231,4.0,1291779818\n94,260,3.0,1291779564\n94,292,3.5,1291780604\n94,296,4.0,1291779736\n94,316,2.5,1291779708\n94,318,5.0,1291779616\n94,344,3.0,1291780145\n94,353,3.0,1291781185\n94,356,5.0,1291779585\n94,367,1.5,1291779806\n94,442,1.5,1291781070\n94,480,2.5,1291779540\n94,527,5.0,1291779717\n94,551,1.0,1291781004\n94,590,4.0,1292392510\n94,593,5.0,1291779634\n94,733,2.5,1291779941\n94,780,2.0,1291779697\n94,858,4.5,1291781482\n94,923,3.0,1291781464\n94,1049,3.0,1291777310\n94,1089,2.5,1291780484\n94,1131,4.5,1291781501\n94,1172,3.5,1291781459\n94,1193,3.5,1291779824\n94,1198,2.5,1291780026\n94,1213,4.0,1291780363\n94,1222,4.0,1291780634\n94,1233,1.5,1291780751\n94,1246,3.0,1291780969\n94,1252,3.5,1291781469\n94,1265,2.0,1291780019\n94,1270,4.0,1291779596\n94,1393,3.0,1291780592\n94,1552,2.5,1291781119\n94,1580,3.0,1291779528\n94,1610,4.0,1291780451\n94,1617,3.5,1291779626\n94,1653,4.0,1291780889\n94,1676,4.0,1291781072\n94,1682,4.0,1291780472\n94,1704,4.5,1291780191\n94,1721,4.5,1291779614\n94,1726,2.0,1291777522\n94,1777,2.5,1291781044\n94,1784,3.5,1291780064\n94,1961,4.0,1291779810\n94,1962,4.0,1292392507\n94,2012,2.5,1291780343\n94,2028,5.0,1291779546\n94,2115,1.0,1291780076\n94,2324,5.0,1291780553\n94,2329,4.5,1291780430\n94,2423,4.0,1291777298\n94,2501,4.5,1292392496\n94,2571,4.5,1291779758\n94,2628,1.0,1291780335\n94,2692,2.5,1291780964\n94,2706,3.5,1291779761\n94,2710,1.5,1291780347\n94,2762,3.0,1291779570\n94,2795,3.5,1291777280\n94,2804,4.0,1291781145\n94,2858,4.0,1291779537\n94,2916,2.0,1291780196\n94,2959,4.5,1291779525\n94,3105,4.5,1292392529\n94,3147,4.5,1291780171\n94,3175,1.5,1291780877\n94,3178,4.0,1291777330\n94,3243,1.5,1291777466\n94,3409,2.5,1291777325\n94,3441,0.5,1291777450\n94,3450,2.5,1291777293\n94,3471,3.0,1291780906\n94,3578,5.0,1291779610\n94,3593,0.5,1291777353\n94,3753,4.0,1291780599\n94,3948,3.5,1291780358\n94,3949,4.5,1291781033\n94,4011,3.0,1291780351\n94,4014,3.5,1291781096\n94,4022,4.0,1291780054\n94,4226,4.5,1291780090\n94,4306,5.0,1291779549\n94,4878,4.0,1291780425\n94,4973,4.5,1291779803\n94,4993,4.5,1291779544\n94,4995,5.0,1291779591\n94,5010,4.0,1291781082\n94,5218,3.5,1291780951\n94,5349,4.0,1291779535\n94,5418,4.0,1291779744\n94,5445,2.5,1291779700\n94,5464,3.5,1291777250\n94,5502,1.5,1291780622\n94,5679,2.5,1291780996\n94,5952,4.0,1291779657\n94,5989,4.5,1291779740\n94,5991,4.0,1291777241\n94,6016,3.0,1291781112\n94,6365,2.5,1291779623\n94,6373,2.5,1291781129\n94,6377,4.0,1291779714\n94,6378,1.0,1291781066\n94,6539,3.5,1291779733\n94,6552,3.5,1291777509\n94,6711,1.5,1291779692\n94,6863,4.0,1291781010\n94,6870,3.5,1292392675\n94,6874,3.5,1291779659\n94,6934,1.5,1291780177\n94,7153,4.5,1291779589\n94,7254,2.0,1291781215\n94,7361,3.0,1291779577\n94,7438,2.0,1291779607\n94,8132,4.5,1292392486\n94,8360,3.5,1291779652\n94,8464,3.0,1291780898\n94,8636,3.5,1291779827\n94,8644,3.0,1291780974\n94,8645,3.5,1292392653\n94,8781,3.0,1291777481\n94,8784,2.5,1291780596\n94,8798,2.5,1291781001\n94,8873,2.5,1292392659\n94,8874,2.0,1291780469\n94,8949,1.5,1291781025\n94,8961,3.0,1291779663\n94,30707,4.5,1291780881\n94,30749,4.5,1292392561\n94,30793,1.0,1291781212\n94,32587,4.0,1291779636\n94,33166,4.5,1292392492\n94,33660,4.5,1292392483\n94,33794,3.0,1291780509\n94,34162,3.5,1291780992\n94,34405,3.5,1291781105\n94,35836,4.5,1291780442\n94,39292,3.5,1292392712\n94,40414,4.0,1292392598\n94,40819,4.0,1292392488\n94,44191,4.0,1291779648\n94,44195,3.0,1291781085\n94,44204,3.0,1292392700\n94,45722,2.5,1291779888\n94,46578,4.0,1291780166\n94,46976,4.0,1291781133\n94,47099,3.5,1292392505\n94,48394,3.0,1291780552\n94,48516,4.0,1291779751\n94,48738,4.0,1292392595\n94,48780,3.5,1292392628\n94,50068,3.5,1292392633\n94,50872,3.0,1291780606\n94,51662,4.0,1291779813\n94,53996,2.5,1291781053\n94,54272,3.0,1291780941\n94,54503,3.0,1291780984\n94,55118,4.0,1292392685\n94,55820,3.0,1291780476\n94,56174,2.5,1291780610\n94,56367,3.5,1291781204\n94,58559,4.0,1291780084\n94,58706,4.0,1291781289\n94,59315,3.0,1291779704\n94,59784,5.0,1292392763\n94,60069,5.0,1291780489\n94,63062,4.0,1292392523\n94,63082,3.5,1291780148\n94,64614,4.0,1292392650\n94,64620,3.5,1292392670\n94,64622,3.5,1292392500\n94,64957,4.5,1291781225\n94,68358,3.5,1292392637\n94,68954,5.0,1291779884\n94,69122,4.5,1291780012\n94,69481,3.5,1292392716\n94,70286,4.0,1291779687\n94,71535,4.0,1291780570\n94,72641,4.5,1292392773\n94,72998,4.0,1291780456\n94,74458,2.5,1291780910\n94,76251,3.0,1291780495\n94,78499,4.0,1291780580\n94,79132,4.0,1291779510\n95,6,5.0,1016317227\n95,9,3.0,1016317600\n95,11,4.0,1025556196\n95,16,5.0,1016316940\n95,19,4.0,1016317584\n95,24,4.0,1018816035\n95,63,4.0,1016317617\n95,70,4.0,1019023190\n95,86,4.0,1018816147\n95,88,4.0,1016317721\n95,174,2.0,1016317489\n95,196,3.0,1016317721\n95,198,4.0,1016317489\n95,222,4.0,1016317856\n95,223,5.0,1018815674\n95,236,4.0,1016317519\n95,253,4.0,1019023054\n95,260,5.0,1018816569\n95,261,5.0,1016317793\n95,266,5.0,1016317396\n95,296,5.0,1018816557\n95,328,3.0,1019023101\n95,329,3.0,1016317617\n95,332,3.0,1019023293\n95,339,4.0,1016317208\n95,357,4.0,1025556197\n95,360,3.0,1016317696\n95,364,4.0,1025556197\n95,366,4.0,1016317140\n95,382,4.0,1019023230\n95,457,4.0,1016317171\n95,480,4.0,1016316990\n95,519,2.0,1016317171\n95,553,4.0,1025556197\n95,593,5.0,1018816582\n95,610,4.0,1019023054\n95,724,3.0,1019023206\n95,733,4.0,1025556197\n95,778,5.0,1016317192\n95,780,4.0,1016317773\n95,785,4.0,1016317193\n95,879,3.0,1019023343\n95,968,5.0,1018816003\n95,999,4.0,1016317074\n95,1022,4.0,1016317584\n95,1037,3.0,1016317074\n95,1059,5.0,1025556197\n95,1088,5.0,1016317856\n95,1093,4.0,1018815698\n95,1127,4.0,1018815528\n95,1130,5.0,1019023148\n95,1198,5.0,1018816548\n95,1210,5.0,1016316940\n95,1214,5.0,1019022863\n95,1215,5.0,1019022916\n95,1219,5.0,1019022863\n95,1246,4.0,1025556197\n95,1258,4.0,1019022885\n95,1261,5.0,1019022916\n95,1268,5.0,1016317806\n95,1320,4.0,1019023230\n95,1321,5.0,1019023029\n95,1322,2.0,1019023613\n95,1327,4.0,1019023230\n95,1330,4.0,1019023569\n95,1339,5.0,1019023054\n95,1342,4.0,1019023410\n95,1345,4.0,1019023029\n95,1347,5.0,1019023054\n95,1350,4.0,1019023148\n95,1370,4.0,1025556197\n95,1377,4.0,1025556197\n95,1387,5.0,1019022863\n95,1388,4.0,1019023343\n95,1389,4.0,1016317140\n95,1393,5.0,1016317157\n95,1407,4.0,1019022937\n95,1513,4.0,1018816073\n95,1644,3.0,1019023410\n95,1645,4.0,1019022937\n95,1655,2.0,1019023252\n95,1690,3.0,1019023190\n95,1717,4.0,1019023169\n95,1762,3.0,1019023230\n95,1909,4.0,1016317584\n95,1917,3.0,1016317074\n95,1969,4.0,1019023569\n95,1970,4.0,1019023293\n95,1971,4.0,1019023650\n95,1972,3.0,1019023736\n95,1973,3.0,1016317396\n95,1974,4.0,1019023410\n95,1975,3.0,1019023569\n95,1982,5.0,1019022916\n95,1983,3.0,1019023517\n95,1984,3.0,1016317090\n95,1985,2.0,1019023463\n95,1988,3.0,1019023369\n95,1994,4.0,1019022970\n95,1995,3.0,1019023613\n95,2003,5.0,1019023101\n95,2004,4.0,1019023169\n95,2005,5.0,1025556197\n95,2013,3.0,1018816035\n95,2026,3.0,1019023410\n95,2028,4.0,1016316964\n95,2069,3.0,1016317111\n95,2081,4.0,1025556197\n95,2105,3.0,1025556197\n95,2107,4.0,1019023517\n95,2109,5.0,1019022736\n95,2113,2.0,1019023768\n95,2118,4.0,1019023078\n95,2119,5.0,1019023569\n95,2120,3.0,1019023230\n95,2121,2.0,1019023343\n95,2123,4.0,1016317674\n95,2148,4.0,1019023190\n95,2149,3.0,1016317773\n95,2160,3.0,1019022937\n95,2163,3.0,1016317697\n95,2167,4.0,1019023078\n95,2188,3.0,1018815528\n95,2193,5.0,1025556197\n95,2279,4.0,1019023540\n95,2294,4.0,1025556197\n95,2327,4.0,1019023343\n95,2336,4.0,1018815770\n95,2353,4.0,1025556197\n95,2369,3.0,1018815698\n95,2389,4.0,1019023275\n95,2394,4.0,1018816055\n95,2395,5.0,1018816073\n95,2396,4.0,1018816106\n95,2421,3.0,1016317157\n95,2428,4.0,1018815786\n95,2443,4.0,1018816035\n95,2445,3.0,1016317856\n95,2451,4.0,1019023275\n95,2455,4.0,1019023054\n95,2459,5.0,1019023275\n95,2461,4.0,1019023650\n95,2462,2.0,1019023753\n95,2465,3.0,1019023314\n95,2470,5.0,1025556197\n95,2485,4.0,1018816106\n95,2513,4.0,1019023517\n95,2541,4.0,1018815674\n95,2572,5.0,1018815528\n95,2580,4.0,1018815804\n95,2581,4.0,1018816003\n95,2599,4.0,1018815770\n95,2600,5.0,1018816171\n95,2617,4.0,1019023148\n95,2628,5.0,1016316859\n95,2641,3.0,1025556197\n95,2657,4.0,1019023078\n95,2672,3.0,1018816130\n95,2683,4.0,1018815560\n95,2694,4.0,1018815599\n95,2699,5.0,1018815560\n95,2701,3.0,1018816171\n95,2702,3.0,1018816130\n95,2706,5.0,1018815560\n95,2710,4.0,1018815599\n95,2713,3.0,1018815904\n95,2716,5.0,1018815804\n95,2717,4.0,1016317818\n95,2722,3.0,1018815674\n95,2746,4.0,1019023078\n95,2762,4.0,1018816106\n95,2787,4.0,1019023275\n95,2789,3.0,1019023252\n95,2793,5.0,1016317111\n95,2841,5.0,1018816106\n95,2858,5.0,1018815528\n95,2867,4.0,1019023101\n95,2868,4.0,1019023671\n95,2881,4.0,1018815698\n95,2888,3.0,1018815770\n95,2901,4.0,1018816035\n95,2907,5.0,1016317306\n95,2908,4.0,1018815599\n95,2928,4.0,1016317885\n95,2959,5.0,1018815786\n95,2976,3.0,1018815599\n95,2985,5.0,1025556197\n95,2987,5.0,1018816171\n95,3005,4.0,1018815599\n95,3016,4.0,1018815674\n95,3017,3.0,1019023314\n95,3018,3.0,1019023054\n95,3024,3.0,1019023314\n95,3033,5.0,1019022702\n95,3051,3.0,1018815560\n95,3081,5.0,1018816106\n95,3107,4.0,1016317872\n95,3146,4.0,1016317489\n95,3168,4.0,1016317535\n95,3185,4.0,1018816106\n95,3203,4.0,1018815674\n95,3255,4.0,1025556197\n95,3257,4.0,1016317396\n95,3258,4.0,1016317306\n95,3261,4.0,1016317208\n95,3264,4.0,1019023169\n95,3269,3.0,1016317600\n95,3273,3.0,1018816073\n95,3285,4.0,1018815574\n95,3298,4.0,1018815599\n95,3300,5.0,1018816035\n95,3391,2.0,1016317833\n95,3408,5.0,1018815770\n95,3409,4.0,1018815786\n95,3441,3.0,1016317074\n95,3448,3.0,1025556197\n95,3477,4.0,1016317773\n95,3481,5.0,1016316859\n95,3499,5.0,1019022937\n95,3510,5.0,1018815804\n95,3535,3.0,1019023102\n95,3578,5.0,1018815804\n95,3617,5.0,1018816073\n95,3623,3.0,1018815953\n95,3660,4.0,1019023369\n95,3693,3.0,1019023314\n95,3702,5.0,1016316990\n95,3709,3.0,1019023569\n95,3752,4.0,1018815916\n95,3764,3.0,1016317140\n95,3793,5.0,1018816171\n95,3826,2.0,1018815877\n95,3840,3.0,1019023613\n95,3843,3.0,1019023671\n95,3863,4.0,1018815615\n95,3877,2.0,1016317856\n95,3917,5.0,1019023102\n95,3918,4.0,1019023540\n95,3948,5.0,1025556197\n95,3961,2.0,1019023517\n95,3967,4.0,1025556197\n95,3994,3.0,1025556197\n95,4002,4.0,1025556197\n95,4008,4.0,1016317157\n95,4018,3.0,1016317519\n95,4030,4.0,1016317721\n95,4036,4.0,1019023029\n95,4081,4.0,1019022819\n95,4085,4.0,1025556197\n95,4105,5.0,1019022937\n95,4124,3.0,1016317253\n95,4128,5.0,1019022970\n95,4135,4.0,1019023054\n95,4140,5.0,1019022672\n95,4148,4.0,1019023078\n95,4205,4.0,1016316990\n95,4213,4.0,1019023569\n95,4222,3.0,1019023736\n95,4266,3.0,1016317253\n95,4321,5.0,1025556197\n95,4351,5.0,1016317519\n95,4369,5.0,1019022782\n95,4480,4.0,1019023569\n95,4490,4.0,1016316940\n95,4499,5.0,1025556197\n95,4501,4.0,1019023517\n95,4516,3.0,1016317227\n95,4520,5.0,1019022802\n95,4560,3.0,1019023736\n95,4561,4.0,1019022885\n95,4618,4.0,1019023671\n95,4636,2.0,1016317111\n95,4639,3.0,1018815528\n95,4670,4.0,1019023540\n95,4681,5.0,1025556197\n95,4682,4.0,1019023190\n95,4697,3.0,1016317721\n95,4700,4.0,1016317564\n95,4718,4.0,1025556197\n95,4734,4.0,1025556197\n95,4865,4.0,1019022970\n95,4949,2.0,1016316859\n95,4993,5.0,1018816582\n95,5025,5.0,1025556328\n95,5049,3.0,1025556197\n95,5080,3.0,1025556369\n95,5103,3.0,1025556197\n95,5203,4.0,1016317674\n95,5222,4.0,1025556344\n95,5292,4.0,1018816337\n95,5303,3.0,1018816326\n95,5308,4.0,1018816304\n95,5309,3.0,1018816304\n95,5342,2.0,1018816267\n95,5343,3.0,1018816267\n95,5346,4.0,1018816267\n95,5349,4.0,1025556297\n95,5378,5.0,1025556344\n95,5449,3.0,1025556285\n96,31,2.5,1223256331\n96,50,4.0,1223256642\n96,318,2.0,1223256805\n96,527,3.5,1223256797\n96,608,4.0,1223256741\n96,628,3.0,1223256282\n96,724,3.0,1223256349\n96,750,5.0,1223256660\n96,903,5.0,1223256822\n96,904,5.0,1223256630\n96,905,5.0,1223256671\n96,908,5.0,1223256689\n96,910,4.5,1223256312\n96,912,5.0,1223256587\n96,913,5.0,1223256273\n96,922,5.0,1223256562\n96,923,5.0,1223256720\n96,926,5.0,1223256572\n96,930,4.5,1223256771\n96,951,5.0,1223256610\n96,969,5.0,1223256296\n96,1084,3.0,1223256301\n96,1104,4.0,1223256696\n96,1212,5.0,1223256813\n96,1219,5.0,1223256782\n96,1235,4.0,1223256376\n96,1242,3.5,1223256264\n96,1247,4.0,1223256864\n96,1252,5.0,1223256591\n96,1267,4.0,1223256617\n96,1284,5.0,1223256583\n96,1285,4.0,1223256307\n96,1617,4.0,1223256759\n96,1747,2.5,1223256322\n96,1912,4.0,1223256353\n96,2186,3.0,1223256635\n96,2208,5.0,1223256883\n96,2248,3.0,1223256357\n96,2336,3.0,1223256336\n96,2692,3.0,1223256786\n96,2858,2.5,1223256713\n96,2908,4.0,1223256372\n96,3435,5.0,1223256513\n96,3730,2.5,1223256849\n96,3736,4.5,1223256540\n96,3739,5.0,1223256464\n96,4226,5.0,1223256556\n96,5008,4.0,1223256707\n96,5114,5.0,1223256543\n96,5878,3.0,1223256810\n96,6027,3.0,1223256730\n96,6254,5.0,1223256716\n96,6273,5.0,1223256876\n96,6650,5.0,1223256756\n96,7013,5.0,1223256621\n96,7056,4.0,1223256531\n96,7116,5.0,1223256727\n96,7361,4.0,1223256733\n96,7587,4.0,1223256745\n96,7831,4.0,1223256468\n96,8094,4.5,1223256833\n96,8128,4.5,1223256668\n96,8629,3.0,1223256472\n96,8765,4.0,1223256507\n96,25850,5.0,1223256486\n96,25868,4.0,1223256835\n96,25947,5.0,1223256567\n96,30712,4.0,1223256489\n96,32525,5.0,1223256595\n96,44555,3.0,1223256615\n96,47202,4.0,1223256800\n96,48394,3.5,1223256776\n96,48516,4.0,1223256656\n96,55118,4.0,1223256854\n96,55276,4.0,1223256680\n96,56367,3.5,1223256753\n97,1,1.0,1460342505\n97,32,4.5,1460343666\n97,50,5.0,1460342291\n97,110,1.0,1460342434\n97,223,3.5,1460343084\n97,293,2.0,1460343105\n97,296,4.0,1460343816\n97,318,4.5,1460342280\n97,356,2.5,1460342503\n97,364,1.5,1460342652\n97,480,2.5,1460342605\n97,527,1.5,1460342318\n97,541,4.0,1460342426\n97,588,0.5,1460342660\n97,589,2.0,1460342416\n97,593,3.5,1460342325\n97,595,1.5,1460342687\n97,597,2.0,1460342646\n97,608,4.0,1460343174\n97,750,4.0,1460342344\n97,858,3.0,1460342315\n97,899,4.5,1460342587\n97,904,3.5,1460342304\n97,908,2.0,1460342342\n97,912,1.5,1460342302\n97,923,4.0,1460342491\n97,926,4.0,1460342556\n97,1036,1.5,1460342421\n97,1084,2.5,1460342673\n97,1088,2.0,1460342716\n97,1089,2.0,1460343721\n97,1136,4.0,1460342440\n97,1193,2.5,1460342322\n97,1196,4.5,1460342349\n97,1197,4.5,1460342403\n97,1198,3.5,1460342334\n97,1200,2.0,1460342420\n97,1201,4.5,1460343815\n97,1203,4.5,1460342327\n97,1204,3.0,1460342517\n97,1207,3.5,1460342468\n97,1208,3.5,1460343956\n97,1210,4.0,1460342397\n97,1212,4.0,1460342494\n97,1213,3.0,1460342330\n97,1219,2.5,1460342480\n97,1221,2.5,1460342320\n97,1228,2.0,1460342498\n97,1240,2.0,1460342433\n97,1262,4.0,1460343849\n97,1265,1.5,1460342560\n97,1267,4.0,1460342471\n97,1270,2.5,1460342413\n97,1288,4.0,1460343682\n97,1291,3.0,1460342413\n97,1387,1.5,1460342563\n97,1527,3.5,1460342531\n97,1580,2.5,1460342451\n97,1721,0.5,1460342715\n97,1732,4.0,1460342762\n97,1884,3.5,1460343016\n97,1997,0.5,1460342648\n97,2000,3.0,1460342624\n97,2019,4.0,1460342337\n97,2028,1.0,1460342488\n97,2324,4.5,1460343845\n97,2395,4.0,1460343230\n97,2502,4.0,1460342786\n97,2542,3.5,1460343708\n97,2571,2.5,1460342388\n97,2716,2.5,1460342443\n97,2797,1.0,1460342654\n97,2918,1.5,1460342423\n97,2959,1.5,1460342389\n97,2997,3.5,1460343714\n97,3033,3.5,1460342705\n97,3253,3.0,1460342676\n97,3421,1.5,1460342685\n97,3471,3.0,1460342668\n97,3527,1.0,1460342613\n97,3552,1.5,1460342644\n97,3578,0.5,1460342547\n97,3868,3.5,1460343718\n97,3911,5.0,1460343773\n97,4226,3.0,1460343661\n97,4816,4.0,1460343802\n97,4878,5.0,1460342871\n97,4973,4.5,1460343052\n97,4979,3.5,1460343011\n97,5618,4.0,1460343114\n97,5902,2.5,1460343401\n97,5903,2.0,1460343083\n97,5952,2.5,1460342395\n97,5971,4.0,1460344057\n97,6711,4.0,1460343048\n97,6863,4.0,1460343701\n97,7153,3.0,1460342391\n97,7361,3.5,1460343777\n97,8376,3.5,1460342807\n97,8641,4.0,1460343798\n97,8784,1.5,1460343379\n97,8949,3.0,1460343218\n97,8950,1.5,1460343699\n97,30810,5.0,1460342855\n97,31658,3.5,1460343862\n97,33004,3.5,1460342888\n97,33679,2.0,1460343786\n97,34437,3.0,1460343233\n97,35836,3.5,1460343228\n97,44199,4.5,1460342819\n97,44555,4.5,1460343328\n97,46578,5.0,1460342986\n97,46970,3.0,1460343800\n97,46976,4.5,1460343057\n97,48394,1.5,1460343121\n97,48516,2.0,1460342400\n97,54503,4.0,1460342777\n97,55269,4.5,1460343087\n97,55820,4.0,1460343726\n97,56367,4.0,1460342758\n97,56782,4.5,1460342789\n97,58559,2.0,1460342393\n97,58998,1.5,1460343388\n97,61024,4.0,1460342851\n97,72226,4.0,1460343331\n97,91529,1.0,1460342589\n97,94959,3.5,1460343371\n97,114662,1.0,1460342797\n98,5,3.0,1459405466\n98,39,3.0,1459405274\n98,296,4.5,1459405871\n98,339,3.5,1459405698\n98,356,4.5,1459405061\n98,357,3.5,1459405701\n98,597,5.0,1459405239\n98,724,5.0,1459405507\n98,902,5.0,1459405325\n98,920,3.5,1459405340\n98,1197,4.5,1459405035\n98,1198,5.0,1459405031\n98,1215,5.0,1459405397\n98,1261,4.0,1459405419\n98,1527,5.0,1459405539\n98,1569,5.0,1459405413\n98,1704,5.0,1459405043\n98,1721,5.0,1459405132\n98,1732,5.0,1459405119\n98,1967,4.0,1459405401\n98,2144,5.0,1459405443\n98,2193,2.5,1459405478\n98,2321,5.0,1459405606\n98,2572,5.0,1459405252\n98,2599,3.5,1459405423\n98,2617,5.0,1459405229\n98,2724,5.0,1459405410\n98,2762,4.0,1459405074\n98,2858,2.5,1459405039\n98,3081,3.0,1459405262\n98,4014,5.0,1459405197\n98,4246,5.0,1459405188\n98,4447,5.0,1459405186\n98,4878,4.0,1459405067\n98,5620,5.0,1459405375\n98,5943,3.0,1459405452\n98,6155,3.5,1459405271\n98,6564,3.0,1459405319\n98,6593,4.0,1459405332\n98,6874,5.0,1459405100\n98,7081,5.0,1459405753\n98,7154,5.0,1459405504\n98,7438,5.0,1459405098\n98,7444,5.0,1459405307\n98,7458,3.0,1459405160\n98,8360,5.0,1459405138\n98,8522,5.0,1459405771\n98,8533,5.0,1459405179\n98,8874,5.0,1459405104\n98,8969,5.0,1459405390\n98,25801,5.0,1459405765\n98,31685,5.0,1459405174\n98,45720,4.0,1459405166\n98,55280,3.5,1459405380\n98,56949,5.0,1459405344\n98,64034,5.0,1459405292\n98,68954,3.5,1459405048\n98,71535,5.0,1459405121\n98,71745,1.5,1459405437\n98,79132,3.5,1459405880\n98,81834,5.0,1459405111\n98,84374,5.0,1459405355\n98,88163,5.0,1459405578\n98,88810,5.0,1459405175\n98,106487,2.0,1459405127\n98,106782,4.5,1459405094\n98,115617,5.0,1459405107\n98,122904,5.0,1459404749\n98,148888,3.0,1459404907\n98,149830,3.0,1459404951\n98,156025,5.0,1459404758\n99,1,4.0,938586006\n99,2,2.0,950999958\n99,17,3.0,938586999\n99,28,3.0,938586999\n99,39,4.0,938587073\n99,47,1.0,938585500\n99,50,4.0,938585285\n99,105,3.0,938587407\n99,110,3.0,947519500\n99,154,3.0,938623596\n99,160,2.0,938586337\n99,170,2.0,938585857\n99,208,2.0,938586560\n99,296,3.0,938585556\n99,316,1.0,938586591\n99,318,5.0,947519825\n99,356,5.0,938584975\n99,357,5.0,938587407\n99,367,3.0,938585656\n99,377,4.0,938587203\n99,380,2.0,938587172\n99,455,1.0,938586663\n99,457,4.0,938585499\n99,468,3.0,938587407\n99,480,4.0,938586403\n99,497,3.0,938587034\n99,509,5.0,938587301\n99,527,4.0,938584894\n99,546,1.0,938586706\n99,588,3.0,938586006\n99,593,4.0,938585500\n99,595,5.0,938586006\n99,596,4.0,947519681\n99,608,5.0,938585500\n99,647,4.0,947519527\n99,720,5.0,938586021\n99,733,2.0,947519711\n99,736,3.0,938586662\n99,750,4.0,938623534\n99,838,4.0,938587172\n99,898,4.0,938587876\n99,899,4.0,938588239\n99,900,3.0,938588178\n99,902,3.0,938624252\n99,903,5.0,938588142\n99,904,4.0,938588142\n99,908,4.0,938588109\n99,909,3.0,938623596\n99,912,5.0,938587795\n99,913,4.0,938587916\n99,914,4.0,938623534\n99,918,5.0,938588010\n99,923,4.0,938587817\n99,924,3.0,938623596\n99,928,4.0,938587795\n99,951,4.0,938587876\n99,953,5.0,938587876\n99,968,4.0,938624591\n99,969,5.0,938588142\n99,1012,4.0,938588329\n99,1014,2.0,938624708\n99,1016,2.0,938588392\n99,1017,1.0,938624591\n99,1019,2.0,938588290\n99,1022,3.0,938588290\n99,1025,2.0,938624617\n99,1028,5.0,938623675\n99,1029,3.0,938587916\n99,1032,3.0,938588290\n99,1035,3.0,938623534\n99,1083,2.0,938624591\n99,1084,4.0,938624252\n99,1103,4.0,938588178\n99,1183,3.0,938585037\n99,1204,5.0,938623534\n99,1207,4.0,938623534\n99,1210,4.0,938584975\n99,1219,3.0,938623675\n99,1233,5.0,938584894\n99,1247,3.0,947519573\n99,1250,4.0,947519501\n99,1276,4.0,938624252\n99,1282,3.0,938587916\n99,1284,3.0,938587876\n99,1304,5.0,938623675\n99,1333,4.0,938624252\n99,1334,2.0,938588358\n99,1358,3.0,938585285\n99,1393,3.0,938587104\n99,1580,3.0,947519657\n99,1586,2.0,938585094\n99,1589,3.0,938585718\n99,1591,1.0,938586764\n99,1617,5.0,938585285\n99,1619,5.0,938585094\n99,1670,4.0,938584894\n99,1676,1.0,938585037\n99,1721,5.0,938586999\n99,1732,3.0,938585613\n99,1735,4.0,938587240\n99,1748,4.0,938549817\n99,1777,3.0,938587337\n99,1909,4.0,938586216\n99,1920,3.0,938586895\n99,1937,3.0,947519573\n99,1945,4.0,947519658\n99,1947,4.0,938623534\n99,1948,4.0,938624529\n99,1949,3.0,938624252\n99,1950,4.0,938623596\n99,1951,2.0,947519658\n99,1952,4.0,938624807\n99,2006,3.0,947519629\n99,2015,1.0,938623675\n99,2018,4.0,938587916\n99,2028,4.0,938584894\n99,2067,5.0,938624807\n99,2080,4.0,938588239\n99,2085,3.0,938624708\n99,2094,2.0,947519712\n99,2096,4.0,938588178\n99,2099,4.0,938587980\n99,2106,2.0,938584974\n99,2126,1.0,938585869\n99,2132,2.0,938623675\n99,2135,1.0,938624708\n99,2136,1.0,938624807\n99,2160,3.0,947519712\n99,2324,4.0,943444622\n99,2355,4.0,938586074\n99,2391,5.0,938585500\n99,2393,2.0,942783208\n99,2396,3.0,938586999\n99,2424,3.0,942783156\n99,2427,5.0,938584894\n99,2436,3.0,938549745\n99,2442,4.0,938623241\n99,2529,1.0,951000065\n99,2539,3.0,938623208\n99,2565,3.0,947519597\n99,2599,5.0,943444622\n99,2677,4.0,938549991\n99,2687,3.0,938586006\n99,2692,5.0,938549686\n99,2761,2.0,950999958\n99,2801,3.0,938587172\n99,2836,2.0,938549053\n99,2858,5.0,939314422\n99,2908,5.0,947519286\n99,2912,4.0,942783078\n99,2959,3.0,940223140\n99,2966,2.0,942783078\n99,2997,4.0,949880591\n99,3125,3.0,950999736\n99,3129,4.0,951000163\n99,3147,4.0,953428514\n99,3160,5.0,947519369\n99,3174,2.0,947519315\n99,3186,2.0,948412004\n99,3298,2.0,953399961\n99,3408,4.0,1015037861\n99,3578,1.0,1015038047\n99,3752,4.0,962144750\n99,3783,3.0,963871870\n99,3897,3.0,970943910\n99,3910,5.0,982280677\n99,3911,3.0,1015037811\n99,3948,2.0,1015038093\n99,3967,4.0,1015037795\n99,3996,4.0,982280581\n99,4014,4.0,1015038047\n99,4019,3.0,1044786615\n99,4022,3.0,982280624\n99,4027,3.0,1015037743\n99,4033,2.0,1015037795\n99,4034,5.0,982280553\n99,4226,4.0,1015037725\n99,4246,4.0,1015037951\n99,4380,5.0,1044786697\n99,4641,5.0,1015037824\n99,4881,4.0,1044786543\n99,4973,5.0,1015037811\n99,4993,5.0,1044786919\n99,4995,5.0,1015037662\n99,5013,4.0,1015037662\n99,5349,4.0,1025915895\n99,5952,4.0,1044786919\n99,5991,5.0,1044754204\n100,1,4.0,854193977\n100,3,4.0,854194024\n100,6,3.0,854194023\n100,7,3.0,854194024\n100,25,4.0,854193977\n100,32,5.0,854193977\n100,52,3.0,854194056\n100,62,3.0,854193977\n100,86,3.0,854194208\n100,88,2.0,854194208\n100,95,3.0,854193977\n100,135,3.0,854194086\n100,141,3.0,854193977\n100,608,4.0,854194024\n100,648,3.0,854193977\n100,661,3.0,854194086\n100,708,3.0,854194056\n100,733,3.0,854194024\n100,736,3.0,854193977\n100,745,4.0,854194208\n100,780,3.0,854193977\n100,786,3.0,854194056\n100,802,4.0,854194111\n100,1073,5.0,854194056\n100,1356,4.0,854194086\n101,145,3.5,1292402318\n101,163,2.5,1292402288\n101,172,2.5,1292402307\n101,196,3.5,1292402305\n101,260,4.0,1292402500\n101,315,2.0,1292402324\n101,318,4.0,1292402404\n101,370,2.5,1292402282\n101,457,3.5,1292402634\n101,520,2.5,1292402274\n101,527,4.5,1292402397\n101,541,4.0,1292402458\n101,589,4.5,1292402496\n101,762,2.5,1292402330\n101,1036,3.5,1292402569\n101,1196,4.5,1292402493\n101,1198,5.0,1292402603\n101,1200,4.5,1292402446\n101,1210,4.5,1292402512\n101,1214,3.5,1292402444\n101,1240,3.5,1292402503\n101,1270,4.5,1292402504\n101,1291,4.5,1292402584\n101,1374,4.5,1292402509\n101,1376,4.5,1292402299\n101,1610,4.0,1292402616\n101,1909,3.0,1292402316\n101,2000,3.5,1292402618\n101,2001,4.0,1292402302\n101,2019,4.0,1292402401\n101,2028,4.5,1292402651\n101,2268,3.5,1292402682\n101,2302,2.5,1292402269\n101,2353,4.0,1292402271\n101,2571,4.5,1292402491\n101,2699,3.0,1292402279\n101,2716,3.5,1292402688\n101,2770,3.0,1292402332\n101,3147,4.0,1292402692\n101,3471,4.0,1292402294\n101,3527,3.5,1292402724\n101,4993,5.0,1292402643\n101,5952,5.0,1292402713\n101,7153,4.5,1292402711\n101,26701,4.0,1292402719\n101,27611,4.5,1292402460\n101,33794,5.0,1292402625\n101,44199,4.0,1292402696\n101,54286,4.0,1292402671\n101,56921,4.0,1292402507\n101,58559,5.0,1292402610\n101,68237,4.0,1292402716\n101,68358,4.5,1292402497\n101,70286,4.5,1292402675\n101,79132,5.0,1292402393\n102,14,4.0,957895013\n102,25,4.0,956599039\n102,28,4.0,956590655\n102,34,4.0,956591671\n102,35,4.0,957894204\n102,36,4.0,956598974\n102,37,1.0,959976593\n102,45,4.0,957894251\n102,47,4.0,958248432\n102,50,4.0,956598567\n102,52,4.0,956600232\n102,58,4.0,956598787\n102,70,2.0,957980283\n102,78,4.0,957895295\n102,94,2.0,957895047\n102,111,5.0,956590822\n102,117,4.0,958248486\n102,125,4.0,957895967\n102,147,4.0,957894564\n102,150,4.0,957893991\n102,159,4.0,957894848\n102,162,5.0,956598725\n102,194,4.0,957894450\n102,202,4.0,957895469\n102,224,4.0,957894935\n102,235,4.0,956599987\n102,246,5.0,956598609\n102,247,5.0,957893897\n102,253,3.0,957895080\n102,260,5.0,956598697\n102,261,3.0,957894400\n102,272,4.0,957893763\n102,280,4.0,957894358\n102,296,4.0,956591745\n102,300,4.0,957894232\n102,303,4.0,957895736\n102,314,2.0,956598995\n102,318,3.0,956598677\n102,334,4.0,956599916\n102,337,5.0,957893949\n102,342,4.0,957896110\n102,345,4.0,956600309\n102,346,3.0,956599860\n102,348,4.0,956598960\n102,352,4.0,957895947\n102,382,3.0,957895251\n102,410,3.0,958249214\n102,417,4.0,958249107\n102,434,4.0,958248568\n102,441,4.0,958248859\n102,457,3.0,956600134\n102,471,5.0,958248997\n102,474,3.0,956600183\n102,492,4.0,958249091\n102,501,4.0,957894006\n102,506,3.0,957894532\n102,507,3.0,957894532\n102,508,2.0,957894170\n102,527,4.0,956590890\n102,529,4.0,956600199\n102,532,4.0,957980250\n102,535,4.0,957893915\n102,538,4.0,957894170\n102,541,4.0,956590911\n102,549,4.0,956591782\n102,551,4.0,957980939\n102,555,3.0,958248454\n102,556,4.0,956590911\n102,562,5.0,957893672\n102,574,4.0,957894400\n102,581,4.0,957895604\n102,590,2.0,957894532\n102,592,4.0,957894505\n102,593,4.0,956598567\n102,594,5.0,957980883\n102,596,4.0,958250022\n102,599,5.0,956600050\n102,608,5.0,956591420\n102,616,4.0,958250102\n102,661,5.0,958250119\n102,745,4.0,956590890\n102,750,5.0,956590655\n102,766,4.0,957894204\n102,778,4.0,956600246\n102,780,2.0,957980779\n102,799,3.0,957980120\n102,800,4.0,956598803\n102,802,3.0,957895047\n102,858,5.0,956598493\n102,898,5.0,957895908\n102,899,5.0,956598942\n102,902,4.0,956600034\n102,903,5.0,956590727\n102,904,5.0,956590677\n102,905,4.0,956598677\n102,908,5.0,956590655\n102,909,4.0,956600065\n102,910,4.0,956598634\n102,912,5.0,956590727\n102,913,4.0,956590706\n102,914,5.0,957980851\n102,918,4.0,957980883\n102,919,4.0,956590822\n102,920,5.0,956591803\n102,921,4.0,956600034\n102,922,5.0,956590624\n102,923,5.0,956590609\n102,924,5.0,956598725\n102,926,5.0,956591655\n102,927,4.0,958248832\n102,928,4.0,956591745\n102,930,5.0,956590956\n102,931,4.0,956600103\n102,945,4.0,956591745\n102,948,5.0,957894084\n102,949,4.0,956598942\n102,950,5.0,957982142\n102,953,5.0,956600396\n102,954,4.0,956599860\n102,955,4.0,956598921\n102,965,4.0,956591596\n102,968,5.0,957980120\n102,969,4.0,956591745\n102,971,4.0,956598656\n102,973,5.0,957893763\n102,982,4.0,956600155\n102,994,4.0,956591420\n102,1009,3.0,959976680\n102,1010,4.0,958249168\n102,1012,5.0,957894142\n102,1019,4.0,959976634\n102,1028,5.0,957980851\n102,1029,5.0,958250063\n102,1035,5.0,957980939\n102,1036,4.0,959976817\n102,1046,4.0,956600103\n102,1057,5.0,957980883\n102,1061,2.0,957894450\n102,1073,4.0,957896110\n102,1077,4.0,956598725\n102,1078,4.0,956600265\n102,1079,5.0,956599182\n102,1080,4.0,956598921\n102,1081,4.0,957980939\n102,1082,4.0,956599941\n102,1084,4.0,956591548\n102,1086,5.0,956599833\n102,1089,4.0,956598825\n102,1090,2.0,957893991\n102,1093,3.0,957894807\n102,1094,4.0,956598634\n102,1095,4.0,956599987\n102,1096,4.0,956591745\n102,1097,4.0,956600083\n102,1103,4.0,956591762\n102,1104,5.0,956590843\n102,1120,4.0,957894466\n102,1124,4.0,957894532\n102,1125,5.0,957895999\n102,1128,4.0,957980222\n102,1131,4.0,956591390\n102,1132,4.0,956598841\n102,1136,5.0,956591803\n102,1147,4.0,956590727\n102,1148,4.0,956590890\n102,1171,4.0,957896110\n102,1172,4.0,956598768\n102,1173,5.0,957894648\n102,1175,5.0,957895828\n102,1178,5.0,956590655\n102,1179,5.0,957893541\n102,1185,4.0,956598825\n102,1186,4.0,956599082\n102,1188,3.0,956590405\n102,1189,4.0,956590911\n102,1192,5.0,957895604\n102,1193,4.0,956598567\n102,1196,5.0,957893656\n102,1197,5.0,958248642\n102,1198,4.0,956590465\n102,1200,5.0,956600284\n102,1201,5.0,957980614\n102,1203,4.0,956598898\n102,1204,5.0,956590934\n102,1207,5.0,956598547\n102,1208,5.0,956591671\n102,1209,5.0,956598841\n102,1210,3.0,956590405\n102,1211,5.0,957893839\n102,1212,5.0,956590677\n102,1213,5.0,956590890\n102,1214,4.0,956598869\n102,1217,5.0,956598803\n102,1218,5.0,956590706\n102,1219,5.0,956590862\n102,1220,4.0,957895908\n102,1221,5.0,956598567\n102,1222,5.0,956600155\n102,1224,4.0,956591420\n102,1225,4.0,956598567\n102,1227,5.0,957893972\n102,1228,5.0,956598656\n102,1230,5.0,956598547\n102,1231,4.0,956598725\n102,1233,5.0,956598656\n102,1234,4.0,956598869\n102,1235,4.0,956598869\n102,1237,4.0,956590822\n102,1238,4.0,957895908\n102,1240,4.0,956598942\n102,1242,4.0,956599082\n102,1243,4.0,956600349\n102,1244,5.0,956598768\n102,1245,5.0,956600349\n102,1246,3.0,957893991\n102,1247,5.0,956590822\n102,1248,5.0,956590677\n102,1249,4.0,956600199\n102,1250,4.0,956598590\n102,1251,5.0,956590862\n102,1252,5.0,956598547\n102,1253,5.0,956600349\n102,1256,4.0,956598609\n102,1258,5.0,957979592\n102,1259,4.0,956598898\n102,1260,5.0,956590609\n102,1262,4.0,956591803\n102,1263,5.0,957893782\n102,1264,4.0,957894084\n102,1265,5.0,957895874\n102,1266,5.0,956591624\n102,1267,5.0,956598547\n102,1268,3.0,957894707\n102,1270,3.0,958248668\n102,1272,5.0,957980677\n102,1273,4.0,956599013\n102,1276,5.0,956591745\n102,1278,4.0,956591762\n102,1279,4.0,957894685\n102,1281,5.0,956598768\n102,1282,4.0,956591782\n102,1283,5.0,956591636\n102,1284,5.0,956599013\n102,1285,4.0,956599039\n102,1287,4.0,956600217\n102,1288,5.0,956599039\n102,1289,4.0,956599821\n102,1292,5.0,957895947\n102,1293,5.0,956598697\n102,1296,4.0,956598697\n102,1299,4.0,956598567\n102,1300,4.0,956598656\n102,1302,3.0,957894204\n102,1304,5.0,956598742\n102,1307,3.0,956599971\n102,1320,3.0,957980378\n102,1321,4.0,957980041\n102,1323,2.0,957980557\n102,1327,4.0,957980426\n102,1333,5.0,956598961\n102,1339,3.0,957980250\n102,1340,5.0,957980072\n102,1341,4.0,957980173\n102,1342,3.0,957980222\n102,1345,5.0,957980072\n102,1346,3.0,957980400\n102,1347,5.0,957980222\n102,1348,4.0,956598590\n102,1350,5.0,957980146\n102,1357,4.0,956600328\n102,1358,3.0,956599100\n102,1361,5.0,956599182\n102,1366,4.0,957894870\n102,1374,4.0,959976792\n102,1377,2.0,958248516\n102,1380,4.0,957980962\n102,1384,4.0,956599821\n102,1387,4.0,956591596\n102,1389,2.0,957980557\n102,1393,2.0,957894170\n102,1394,4.0,956591671\n102,1405,4.0,958250139\n102,1407,4.0,957980094\n102,1411,5.0,957893740\n102,1420,5.0,957895586\n102,1449,5.0,957896110\n102,1466,4.0,957893897\n102,1516,4.0,958249411\n102,1517,4.0,957896069\n102,1535,4.0,956600328\n102,1554,4.0,957894126\n102,1584,2.0,957894285\n102,1594,2.0,957982093\n102,1610,3.0,959976817\n102,1611,4.0,957894309\n102,1617,5.0,957893520\n102,1644,2.0,957980451\n102,1648,5.0,957894935\n102,1663,4.0,958248949\n102,1673,4.0,957893804\n102,1690,4.0,957980283\n102,1701,4.0,957895947\n102,1704,2.0,957893804\n102,1717,4.0,957980283\n102,1719,4.0,956591390\n102,1729,4.0,958248432\n102,1732,5.0,958248454\n102,1734,4.0,956600034\n102,1788,4.0,957894505\n102,1797,4.0,956591420\n102,1836,4.0,957894505\n102,1841,4.0,957894606\n102,1856,2.0,957895650\n102,1883,4.0,956600328\n102,1884,3.0,958249148\n102,1888,1.0,957895013\n102,1895,2.0,957894870\n102,1923,3.0,956600246\n102,1924,5.0,957980072\n102,1927,4.0,956590934\n102,1929,4.0,956598898\n102,1931,4.0,956591762\n102,1939,5.0,957980677\n102,1941,4.0,956598869\n102,1944,5.0,956598898\n102,1945,5.0,957893719\n102,1946,4.0,956599013\n102,1947,5.0,956598898\n102,1950,5.0,956591624\n102,1952,5.0,956591803\n102,1953,5.0,956598697\n102,1954,5.0,957894100\n102,1955,4.0,956599162\n102,1956,4.0,956598825\n102,1957,4.0,956599039\n102,1958,4.0,957894084\n102,1960,5.0,956600328\n102,1961,4.0,957893949\n102,1962,3.0,956599162\n102,1965,4.0,957895999\n102,1966,5.0,956600379\n102,1968,4.0,957894285\n102,1969,4.0,957980426\n102,1974,5.0,957980309\n102,1982,4.0,956590465\n102,1987,4.0,957980451\n102,1994,4.0,957980072\n102,1997,5.0,957979592\n102,1999,3.0,957980400\n102,2000,2.0,957894204\n102,2001,2.0,957894807\n102,2003,2.0,957980222\n102,2010,4.0,956590862\n102,2014,4.0,958249253\n102,2018,4.0,958250044\n102,2019,4.0,956598510\n102,2020,4.0,956591624\n102,2021,4.0,959976656\n102,2023,2.0,957894667\n102,2043,3.0,959976680\n102,2064,4.0,956600232\n102,2065,4.0,957896110\n102,2067,4.0,956599916\n102,2068,5.0,956599137\n102,2069,4.0,956600217\n102,2070,4.0,956600309\n102,2075,4.0,956598634\n102,2076,5.0,956600134\n102,2078,4.0,958250044\n102,2080,4.0,958250044\n102,2085,4.0,956599039\n102,2087,4.0,957980851\n102,2088,4.0,957980999\n102,2090,4.0,958250119\n102,2097,4.0,957980196\n102,2099,5.0,957980939\n102,2100,4.0,959976656\n102,2105,3.0,959976680\n102,2107,3.0,957980451\n102,2109,4.0,958248997\n102,2110,3.0,958248471\n102,2112,2.0,957894627\n102,2118,4.0,957980072\n102,2121,2.0,957980426\n102,2124,4.0,958249214\n102,2130,5.0,956591745\n102,2132,5.0,956591576\n102,2135,4.0,957980962\n102,2137,5.0,958250078\n102,2138,4.0,958250102\n102,2140,3.0,959976634\n102,2144,3.0,958248878\n102,2145,3.0,957894667\n102,2146,3.0,957895251\n102,2160,5.0,956599971\n102,2163,4.0,957980309\n102,2174,4.0,956600134\n102,2186,5.0,956590677\n102,2193,3.0,959976680\n102,2194,4.0,957894309\n102,2202,4.0,957893782\n102,2203,4.0,956598921\n102,2208,4.0,956599137\n102,2219,4.0,956591624\n102,2227,4.0,956600002\n102,2240,1.0,957894741\n102,2243,3.0,957894126\n102,2248,4.0,956599117\n102,2268,4.0,957894627\n102,2282,4.0,957894037\n102,2289,4.0,956591576\n102,2290,4.0,957896048\n102,2291,4.0,956599082\n102,2300,5.0,956598787\n102,2301,4.0,958248997\n102,2303,5.0,956591624\n102,2312,3.0,957894400\n102,2313,5.0,956599941\n102,2318,5.0,956600363\n102,2321,3.0,956600183\n102,2333,4.0,957893857\n102,2336,4.0,956591745\n102,2344,4.0,957894424\n102,2345,3.0,957894126\n102,2351,5.0,957893656\n102,2352,3.0,957893897\n102,2356,4.0,958249590\n102,2361,5.0,956600065\n102,2362,4.0,956600265\n102,2366,4.0,957980072\n102,2367,3.0,957980309\n102,2391,4.0,958248391\n102,2395,4.0,956600183\n102,2396,4.0,956598656\n102,2397,3.0,957894400\n102,2406,3.0,958248949\n102,2407,3.0,958249041\n102,2420,3.0,957894883\n102,2423,3.0,958249076\n102,2439,4.0,957981110\n102,2453,3.0,956599941\n102,2454,5.0,957980196\n102,2455,3.0,957980146\n102,2459,5.0,957980343\n102,2517,3.0,957980283\n102,2520,4.0,957894989\n102,2524,4.0,957895047\n102,2527,4.0,957895736\n102,2541,1.0,957894760\n102,2548,1.0,957980378\n102,2599,4.0,956591624\n102,2616,3.0,958248533\n102,2628,4.0,959976656\n102,2639,4.0,957894989\n102,2644,4.0,957980072\n102,2657,5.0,957980146\n102,2662,4.0,957980677\n102,2664,5.0,957980041\n102,2672,3.0,957893541\n102,2683,4.0,957981224\n102,2692,4.0,956598825\n102,2702,3.0,957895189\n102,2710,3.0,957980173\n102,2712,4.0,957894170\n102,2716,4.0,957895908\n102,2717,2.0,957980426\n102,2725,4.0,957894057\n102,2726,5.0,957893520\n102,2728,4.0,956590405\n102,2729,5.0,956600363\n102,2730,4.0,956599860\n102,2731,4.0,956590956\n102,2734,4.0,957894627\n102,2739,4.0,956599137\n102,2746,4.0,957980173\n102,2747,4.0,957980094\n102,2749,4.0,957894788\n102,2750,4.0,956600284\n102,2757,4.0,957894309\n102,2762,4.0,956591782\n102,2764,4.0,958248454\n102,2779,4.0,958249021\n102,2784,4.0,957980222\n102,2791,4.0,956599971\n102,2793,4.0,958249508\n102,2795,4.0,958248911\n102,2797,3.0,959976634\n102,2804,4.0,956590911\n102,2820,4.0,956600309\n102,2844,4.0,957895278\n102,2852,4.0,956600349\n102,2857,4.0,957980883\n102,2858,5.0,956590890\n102,2859,3.0,956598547\n102,2863,3.0,956591576\n102,2866,4.0,957894037\n102,2871,4.0,956600134\n102,2872,3.0,957894309\n102,2883,4.0,958248928\n102,2890,4.0,957893857\n102,2902,2.0,957980469\n102,2915,4.0,956599891\n102,2917,4.0,956600002\n102,2918,4.0,957895909\n102,2919,4.0,956598825\n102,2920,5.0,956590677\n102,2921,4.0,956599182\n102,2922,4.0,956600103\n102,2925,5.0,956591420\n102,2926,4.0,957894170\n102,2929,5.0,957894726\n102,2932,5.0,957894251\n102,2944,5.0,957980704\n102,2947,4.0,956600155\n102,2948,4.0,956599891\n102,2949,4.0,956599971\n102,2951,5.0,956599039\n102,2966,4.0,956590465\n102,2968,4.0,959976634\n102,2970,5.0,957893672\n102,2973,5.0,956599061\n102,2987,3.0,956600083\n102,2993,4.0,959976817\n102,2997,4.0,957895846\n102,3006,4.0,956591596\n102,3007,5.0,956590934\n102,3011,4.0,956600309\n102,3018,4.0,957979592\n102,3019,4.0,956590890\n102,3022,5.0,956590465\n102,3037,4.0,956599941\n102,3039,3.0,957896083\n102,3060,3.0,956599100\n102,3061,4.0,957980939\n102,3062,5.0,957980704\n102,3066,4.0,957980740\n102,3067,4.0,956591576\n102,3068,4.0,956598768\n102,3071,3.0,957894126\n102,3072,4.0,956598921\n102,3081,4.0,957980120\n102,3088,5.0,957895947\n102,3089,4.0,956598510\n102,3093,5.0,957895708\n102,3095,5.0,957893696\n102,3098,4.0,956600217\n102,3129,4.0,957894685\n102,3130,3.0,958249773\n102,3134,5.0,956598547\n102,3145,4.0,957894400\n102,3147,2.0,957893930\n102,3152,5.0,956598869\n102,3163,4.0,956590956\n102,3168,5.0,957893915\n102,3169,3.0,956599162\n102,3176,2.0,957894309\n102,3179,2.0,957893972\n102,3196,4.0,956590727\n102,3198,4.0,956600183\n102,3201,4.0,956591596\n102,3203,4.0,956600379\n102,3210,4.0,956600112\n102,3218,4.0,957894788\n102,3223,4.0,956598768\n102,3224,4.0,956590706\n102,3246,4.0,956600396\n102,3250,4.0,957894588\n102,3251,3.0,957894505\n102,3253,3.0,958248878\n102,3255,4.0,957894588\n102,3262,3.0,957895233\n102,3264,4.0,958249181\n102,3265,4.0,958248367\n102,3266,4.0,957893696\n102,3273,3.0,956598432\n102,3285,2.0,957893451\n102,3301,2.0,957893451\n102,3307,5.0,956590465\n102,3308,2.0,956599821\n102,3317,2.0,957893364\n102,3324,2.0,957893405\n102,3327,2.0,957893405\n102,3329,4.0,957894564\n102,3342,3.0,956599874\n102,3350,4.0,956598787\n102,3354,1.0,957893451\n102,3358,4.0,958248911\n102,3360,4.0,957893804\n102,3361,3.0,956591745\n102,3362,5.0,956591576\n102,3363,4.0,956598898\n102,3365,5.0,956591391\n102,3386,3.0,957894788\n102,3396,4.0,956600309\n102,3408,2.0,957893364\n102,3418,4.0,956598961\n102,3420,4.0,957894424\n102,3421,3.0,956599061\n102,3422,4.0,958248928\n102,3424,5.0,956591391\n102,3426,4.0,957894870\n102,3428,4.0,957895495\n102,3435,5.0,956590584\n102,3441,2.0,957980779\n102,3448,3.0,957894667\n102,3451,5.0,957894482\n102,3461,4.0,956598974\n102,3462,5.0,956590677\n102,3468,4.0,956591655\n102,3469,4.0,956598590\n102,3471,4.0,956598677\n102,3478,3.0,957894760\n102,3479,4.0,959976656\n102,3481,4.0,956598345\n102,3484,1.0,957893428\n102,3499,4.0,956600014\n102,3503,5.0,957893629\n102,3504,5.0,956591420\n102,3508,5.0,957895708\n102,3511,1.0,957893428\n102,3519,4.0,957980758\n102,3521,4.0,957893972\n102,3526,2.0,957894267\n102,3528,2.0,957981575\n102,3529,4.0,957981575\n102,3538,3.0,959975630\n102,3543,4.0,956590822\n102,3544,4.0,957981594\n102,3545,4.0,957980704\n102,3546,5.0,956600396\n102,3547,4.0,956599061\n102,3548,4.0,956591762\n102,3549,5.0,957980939\n102,3550,5.0,957980250\n102,3551,5.0,956599039\n102,3552,4.0,958248161\n102,3564,2.0,957893471\n102,3565,3.0,957981663\n102,3566,4.0,959021992\n102,3588,4.0,956598590\n102,3590,4.0,957981516\n102,3591,3.0,956590822\n102,3606,5.0,957980851\n102,3608,4.0,957895846\n102,3609,4.0,957981575\n102,3614,4.0,957981492\n102,3618,4.0,959975659\n102,3633,4.0,959976792\n102,3635,4.0,958248322\n102,3639,4.0,959976817\n102,3655,5.0,959975764\n102,3668,4.0,959975910\n102,3671,4.0,959975744\n102,3675,4.0,959975931\n102,3676,5.0,959975786\n102,3678,4.0,959975848\n102,3679,4.0,959975786\n102,3680,4.0,959975786\n102,3681,4.0,959976043\n102,3683,5.0,959021771\n102,3685,4.0,959975885\n102,3698,3.0,959976106\n102,3700,4.0,959975764\n102,3702,4.0,959975848\n102,3703,4.0,959975848\n102,3704,3.0,959975848\n102,3706,3.0,959021792\n102,3708,3.0,959976044\n102,3724,4.0,959975991\n102,3729,4.0,959975910\n102,3730,5.0,959975991\n102,3733,4.0,959975875\n102,3734,4.0,959975875\n102,3735,5.0,959975910\n102,3740,3.0,961791852\n102,3741,5.0,959975726\n102,3742,4.0,959975744\n102,5060,5.0,957895828\n103,29,5.0,1117481918\n103,32,5.0,1117402453\n103,47,4.5,1117403556\n103,71,1.0,1117751197\n103,196,1.5,1117482144\n103,293,4.5,1117402575\n103,393,1.0,1117750991\n103,519,1.0,1117751173\n103,541,4.5,1117482289\n103,589,3.0,1117403705\n103,592,3.0,1117403402\n103,593,5.0,1117482311\n103,671,4.0,1117315933\n103,735,4.0,1117403064\n103,736,2.5,1117751391\n103,741,4.5,1117402874\n103,778,4.5,1117482329\n103,780,2.0,1117482051\n103,866,4.5,1117403711\n103,1037,1.0,1117315897\n103,1101,2.0,1117402549\n103,1129,2.5,1117315794\n103,1199,4.0,1117481923\n103,1200,4.0,1117403684\n103,1214,5.0,1117481910\n103,1215,3.5,1117403369\n103,1240,4.0,1117481941\n103,1241,3.5,1117403410\n103,1255,3.0,1117403375\n103,1261,4.5,1117315956\n103,1274,3.5,1117481903\n103,1320,3.0,1117315673\n103,1339,3.5,1117315810\n103,1385,1.5,1117751643\n103,1389,1.0,1117751071\n103,1527,4.0,1117403286\n103,1552,2.0,1117402521\n103,1562,1.5,1117315867\n103,1580,3.0,1117403717\n103,1584,3.5,1117402531\n103,1599,1.0,1117750982\n103,1645,3.5,1117402540\n103,1653,3.5,1117315619\n103,1676,4.0,1117482082\n103,1690,1.5,1117315761\n103,1721,3.0,1117751684\n103,1805,2.0,1117315940\n103,2021,1.5,1117315845\n103,2232,4.0,1117403832\n103,2329,4.5,1117482271\n103,2405,3.0,1117751407\n103,2549,1.0,1117403012\n103,2571,4.0,1117403661\n103,2605,3.0,1117315874\n103,2701,2.0,1117402713\n103,2858,4.0,1117482349\n103,2916,3.5,1117482016\n103,2959,5.0,1117403605\n103,2985,3.0,1117402464\n103,3033,4.0,1117482022\n103,3175,4.0,1117481971\n103,3527,3.5,1117403390\n103,3578,4.0,1117403674\n103,3697,2.0,1117482135\n103,3793,4.0,1117403280\n103,3863,3.0,1117482102\n103,4105,3.5,1117402645\n103,4226,4.5,1117402477\n103,4370,4.0,1117402625\n103,4475,4.0,1117404328\n103,4848,5.0,1117403775\n103,4896,4.0,1117403646\n103,4973,5.0,1117482339\n103,5349,4.0,1117403497\n103,5445,4.0,1117315690\n103,5528,3.5,1117402615\n103,5700,1.0,1117751135\n103,5816,4.0,1117403745\n103,6242,4.5,1117403493\n103,6333,4.0,1117315905\n103,6502,4.0,1117403477\n103,6790,4.0,1117481980\n103,6857,3.0,1117403312\n103,6874,5.0,1117315927\n103,6996,1.5,1117751234\n103,7022,5.0,1117403423\n103,7090,4.5,1117403588\n103,7235,4.5,1117751478\n103,7438,5.0,1117404267\n103,7481,2.0,1117482004\n103,8019,4.5,1117751459\n103,8093,3.5,1117751568\n103,8157,4.0,1117403597\n103,8636,3.5,1117402600\n104,110,4.5,1446673724\n104,150,4.0,1446674277\n104,260,4.0,1446673679\n104,293,4.5,1446673753\n104,296,4.0,1446674272\n104,318,5.0,1446673698\n104,589,5.0,1446673907\n104,733,4.5,1446673861\n104,1036,4.0,1446673896\n104,1196,3.5,1446673678\n104,1573,3.5,1446674058\n104,2571,3.5,1446673686\n104,3578,4.0,1446673781\n104,4993,4.0,1446673683\n104,4995,4.0,1446674309\n104,5628,3.5,1446674117\n104,5952,5.0,1446673694\n104,5956,4.0,1446674021\n104,6365,3.5,1446674123\n104,6539,4.5,1446673739\n104,6754,4.0,1446673986\n104,7153,4.0,1446673682\n104,7458,3.5,1446674066\n104,8371,3.5,1446674097\n104,8636,4.0,1446673947\n104,8644,4.0,1446673870\n104,8972,3.5,1446673980\n104,27611,3.5,1446673794\n104,33794,4.5,1446673711\n104,42738,3.5,1446674082\n104,47099,4.0,1446674352\n104,48043,4.5,1446673951\n104,48780,4.0,1446674197\n104,51662,4.0,1446673807\n104,53125,3.5,1446673875\n104,53972,4.0,1446673928\n104,57640,3.5,1446674148\n104,58559,4.5,1446673690\n104,59315,4.5,1446674306\n104,60069,4.5,1446674190\n104,64614,4.0,1446674365\n104,64957,4.0,1446674300\n104,65682,3.5,1446674037\n104,68358,4.0,1446674282\n104,70286,4.0,1446673836\n104,71135,3.5,1446674062\n104,71535,4.5,1446674335\n104,72998,4.5,1446673799\n104,73017,4.0,1446674429\n104,74458,4.5,1446674211\n104,76093,4.5,1446673706\n104,77561,4.0,1446673820\n104,79132,4.5,1446673718\n104,80219,4.0,1446674103\n104,82461,3.0,1446674088\n104,84152,4.5,1446674400\n104,84844,4.0,1446673934\n104,86644,4.0,1446674030\n104,88140,3.5,1446673778\n104,88744,4.0,1446673846\n104,89745,4.5,1446673714\n104,91529,4.5,1446673734\n104,92259,4.5,1446674215\n104,94777,3.5,1446673992\n104,103228,4.0,1446673791\n104,106072,3.5,1446673802\n104,106489,4.0,1446673764\n104,109487,4.5,1446673771\n104,111362,4.0,1446674330\n104,112171,3.0,1446674139\n104,112556,4.0,1446674396\n104,112852,5.0,1446673703\n104,115617,4.5,1446674193\n104,122882,4.5,1446673832\n104,122892,4.5,1446673756\n104,129354,3.5,1446674078\n105,6,3.0,1085578997\n105,10,3.5,1101130624\n105,11,3.5,1100533597\n105,16,5.0,1085573826\n105,19,2.0,1088058230\n105,21,3.5,1086093635\n105,22,2.5,1085574077\n105,25,4.0,1100533528\n105,32,4.0,1085581768\n105,36,3.0,1100533551\n105,47,4.0,1086094595\n105,50,4.5,1086272608\n105,52,4.0,1085574005\n105,95,2.5,1088058158\n105,104,3.5,1100533831\n105,105,3.5,1088058675\n105,110,3.5,1086093600\n105,111,4.0,1085574450\n105,150,3.0,1100529775\n105,151,3.5,1085581733\n105,153,3.0,1085581726\n105,164,4.0,1085640748\n105,165,3.5,1100533423\n105,168,2.0,1088058683\n105,173,2.0,1100533903\n105,196,2.5,1100533996\n105,198,4.0,1088058689\n105,208,2.5,1086093646\n105,253,3.5,1100533509\n105,260,3.0,1101130498\n105,272,3.5,1085579933\n105,288,3.5,1085574471\n105,290,2.5,1088058647\n105,292,3.5,1100533466\n105,293,4.0,1100533653\n105,296,4.0,1086094607\n105,300,3.0,1100533564\n105,305,2.0,1088058656\n105,316,3.0,1085579676\n105,318,3.0,1086272698\n105,339,3.0,1085579171\n105,344,3.0,1100533414\n105,348,3.5,1086101939\n105,349,3.0,1101130575\n105,356,3.0,1086094614\n105,357,4.0,1085579921\n105,364,3.5,1100533451\n105,367,3.5,1101130637\n105,368,3.0,1086095273\n105,370,3.0,1100534070\n105,377,3.0,1086094602\n105,380,3.5,1100529797\n105,381,2.5,1088058623\n105,382,4.0,1085579068\n105,383,3.0,1086093920\n105,410,3.0,1100533629\n105,420,2.5,1085581664\n105,427,3.0,1086095239\n105,431,4.0,1086095202\n105,432,1.5,1085573835\n105,434,3.5,1100533484\n105,435,2.5,1100533815\n105,440,3.0,1100533587\n105,442,3.5,1086101945\n105,454,3.5,1100533501\n105,457,3.5,1100529745\n105,458,3.0,1085640697\n105,459,3.0,1085640689\n105,468,3.0,1086094013\n105,471,4.0,1085574088\n105,474,3.5,1100533610\n105,480,3.0,1086094619\n105,481,3.5,1086094026\n105,497,2.5,1085574422\n105,500,3.0,1086101954\n105,508,3.5,1086095236\n105,509,4.0,1086093610\n105,522,3.5,1085640658\n105,535,4.0,1086094007\n105,539,3.0,1085574395\n105,541,4.0,1086095152\n105,555,3.5,1086095164\n105,586,3.0,1086093615\n105,587,3.5,1100533482\n105,589,3.5,1086272680\n105,590,3.0,1088058164\n105,592,4.0,1086101860\n105,593,4.0,1086272669\n105,597,3.5,1086095185\n105,608,4.0,1086094625\n105,648,3.0,1100533435\n105,653,4.0,1085574389\n105,688,2.5,1088058610\n105,733,3.0,1100533457\n105,736,2.5,1085581674\n105,762,3.5,1086093893\n105,778,4.0,1086095169\n105,780,2.5,1085574335\n105,784,2.5,1085581638\n105,785,4.0,1085581634\n105,788,2.5,1088058188\n105,832,3.0,1086101906\n105,852,2.5,1085581624\n105,858,4.5,1085581604\n105,866,3.5,1086095142\n105,912,3.5,1100533616\n105,923,4.0,1085573960\n105,996,3.0,1086274277\n105,1020,3.0,1086095103\n105,1027,3.0,1085579881\n105,1036,4.0,1085579867\n105,1047,4.0,1086095114\n105,1057,2.5,1088058573\n105,1061,4.0,1085579876\n105,1079,3.5,1085574410\n105,1080,3.5,1085573973\n105,1088,3.0,1086095128\n105,1089,4.0,1085581592\n105,1090,4.0,1085581582\n105,1094,4.0,1100534077\n105,1101,3.0,1085581557\n105,1120,4.0,1085579857\n105,1127,2.5,1086093583\n105,1129,3.5,1088058555\n105,1136,3.0,1085579179\n105,1147,4.5,1088058547\n105,1173,3.5,1085579028\n105,1175,4.0,1086095081\n105,1179,3.5,1086095072\n105,1183,4.0,1085574385\n105,1185,3.0,1086095090\n105,1186,4.0,1086095086\n105,1187,3.0,1088059092\n105,1193,4.0,1085579154\n105,1196,3.0,1101130590\n105,1198,4.0,1085579138\n105,1199,4.0,1086101872\n105,1200,3.5,1086101917\n105,1202,4.0,1085640597\n105,1206,4.0,1100532174\n105,1208,3.5,1085581565\n105,1210,3.0,1101130530\n105,1213,4.5,1086093572\n105,1214,4.0,1086095067\n105,1216,3.5,1085580336\n105,1220,3.5,1100533822\n105,1221,4.0,1085579162\n105,1222,4.5,1086272503\n105,1225,3.5,1086101890\n105,1227,3.5,1085580285\n105,1233,5.0,1085574426\n105,1234,3.5,1101125772\n105,1238,4.0,1086093860\n105,1240,4.0,1085581523\n105,1246,1.5,1085573954\n105,1247,5.0,1085573851\n105,1249,4.0,1088058527\n105,1252,4.5,1100534090\n105,1258,4.5,1086095076\n105,1259,3.0,1086272749\n105,1263,4.0,1100532241\n105,1265,4.0,1086095095\n105,1270,3.0,1085581535\n105,1275,3.0,1086093850\n105,1277,3.5,1088058500\n105,1278,4.0,1100534028\n105,1291,3.0,1085579145\n105,1298,3.5,1085640555\n105,1299,4.0,1101115984\n105,1300,3.0,1086093867\n105,1305,4.0,1085640535\n105,1307,4.0,1085579151\n105,1320,3.5,1086101897\n105,1321,3.5,1085579314\n105,1333,3.5,1086960518\n105,1346,3.0,1086094327\n105,1367,2.5,1085581530\n105,1370,3.5,1086960509\n105,1377,4.0,1085581548\n105,1378,2.5,1086093877\n105,1380,3.0,1086101845\n105,1387,4.5,1085578985\n105,1391,3.5,1086095038\n105,1392,3.0,1086960525\n105,1393,3.5,1086095060\n105,1394,3.5,1085573855\n105,1395,3.5,1085640550\n105,1407,3.0,1100533952\n105,1438,3.0,1086095042\n105,1466,4.0,1086094994\n105,1480,3.5,1086093488\n105,1499,2.0,1085580294\n105,1500,4.0,1085573987\n105,1503,3.0,1085579473\n105,1527,3.5,1088058180\n105,1544,3.0,1085574042\n105,1552,3.0,1085581486\n105,1573,3.5,1086095010\n105,1580,4.0,1086094990\n105,1586,2.0,1086274021\n105,1589,4.0,1085579848\n105,1608,3.0,1086095002\n105,1610,3.5,1100533713\n105,1617,5.0,1100532149\n105,1625,4.0,1100532012\n105,1635,4.0,1085640504\n105,1641,3.5,1085581466\n105,1673,4.0,1086094998\n105,1682,3.5,1086960071\n105,1721,3.0,1086101836\n105,1727,3.0,1088059037\n105,1729,4.5,1086095017\n105,1732,4.0,1086272767\n105,1784,4.0,1100606295\n105,1801,3.0,1101116025\n105,1810,3.0,1085640483\n105,1846,4.0,1101115552\n105,1882,2.0,1085579811\n105,1884,3.5,1088058417\n105,1889,4.0,1085580269\n105,1913,4.0,1086093482\n105,1917,3.0,1086093845\n105,1923,4.0,1100533705\n105,1953,3.5,1086093383\n105,1961,4.0,1085579817\n105,1962,3.0,1088058422\n105,1965,4.0,1085579802\n105,1968,3.0,1100533686\n105,1997,4.0,1086094947\n105,2000,3.5,1100533958\n105,2001,3.0,1085581438\n105,2002,3.0,1085581441\n105,2006,2.5,1088058369\n105,2011,2.5,1100533989\n105,2020,4.0,1088058393\n105,2023,3.0,1086094963\n105,2028,3.0,1086272795\n105,2058,3.0,1085581411\n105,2115,3.5,1100534034\n105,2116,2.0,1086093376\n105,2124,3.5,1088058350\n105,2126,3.0,1086093792\n105,2159,4.0,1085579444\n105,2167,3.0,1086094915\n105,2174,4.5,1085574328\n105,2194,3.0,1086272559\n105,2231,4.0,1085579823\n105,2243,4.0,1085581427\n105,2247,3.0,1088058975\n105,2268,3.5,1199439298\n105,2288,4.0,1086093836\n105,2291,4.0,1100533947\n105,2294,3.5,1085579021\n105,2329,4.0,1085581415\n105,2352,3.5,1085581448\n105,2353,2.5,1085581377\n105,2394,3.0,1088058358\n105,2395,3.0,1085574059\n105,2396,3.0,1100533577\n105,2405,3.0,1086093370\n105,2406,3.5,1100534113\n105,2423,3.0,1088058376\n105,2427,3.0,1088058315\n105,2455,3.0,1085579828\n105,2467,3.5,1086272645\n105,2478,3.5,1086094900\n105,2502,4.0,1086094924\n105,2513,2.0,1085640299\n105,2529,3.0,1085581383\n105,2539,3.0,1086094906\n105,2542,4.0,1086272637\n105,2551,4.0,1085640284\n105,2571,3.0,1085574342\n105,2580,4.0,1086272688\n105,2616,2.5,1086093818\n105,2617,3.5,1085574093\n105,2640,1.5,1085574070\n105,2671,3.0,1086094844\n105,2683,3.0,1085581341\n105,2692,3.5,1199439167\n105,2699,3.0,1086094851\n105,2701,1.0,1086102111\n105,2710,2.5,1086094875\n105,2712,3.0,1085581358\n105,2716,4.0,1086094848\n105,2717,3.0,1086274315\n105,2746,2.0,1086093346\n105,2762,3.5,1086960054\n105,2763,3.0,1086094859\n105,2790,3.0,1085579657\n105,2793,2.0,1088058933\n105,2797,3.0,1100533937\n105,2822,2.5,1086960284\n105,2858,4.0,1085581346\n105,2862,2.5,1085581054\n105,2890,3.0,1086272690\n105,2916,4.0,1086094829\n105,2917,4.0,1101125846\n105,2919,4.0,1085640230\n105,2942,3.0,1086094218\n105,2959,3.5,1086093785\n105,2968,4.0,1086094813\n105,2985,3.0,1086101839\n105,2987,3.0,1085574349\n105,2997,4.0,1085574365\n105,3006,4.0,1085640181\n105,3019,3.5,1101125851\n105,3020,4.0,1085640196\n105,3037,4.0,1085640140\n105,3072,3.0,1086093777\n105,3081,3.0,1086094809\n105,3082,3.0,1086094805\n105,3104,4.5,1085640164\n105,3127,3.0,1086094522\n105,3130,3.5,1085579412\n105,3141,2.5,1085641901\n105,3147,3.0,1085581274\n105,3157,3.0,1086274284\n105,3168,3.5,1086093765\n105,3176,3.5,1086094765\n105,3185,3.5,1086093452\n105,3198,3.5,1085580217\n105,3201,4.0,1100606354\n105,3210,3.0,1085640104\n105,3246,3.0,1086272799\n105,3253,2.5,1086094787\n105,3255,2.5,1086093357\n105,3257,3.5,1086102081\n105,3263,3.0,1088058238\n105,3271,3.0,1086272525\n105,3285,2.5,1086093741\n105,3324,2.5,1100531148\n105,3328,3.0,1101125778\n105,3386,3.0,1086272631\n105,3408,3.5,1085574022\n105,3418,3.5,1085581284\n105,3421,4.0,1086094759\n105,3424,4.0,1088058292\n105,3426,3.0,1086960240\n105,3448,3.0,1085581289\n105,3450,3.0,1085640064\n105,3471,4.0,1085579214\n105,3476,4.0,1085640021\n105,3481,4.0,1085574084\n105,3489,2.5,1086102087\n105,3498,4.0,1100532099\n105,3499,4.0,1086272508\n105,3503,2.0,1088058852\n105,3527,3.5,1086094781\n105,3529,3.0,1085579419\n105,3552,3.5,1086093773\n105,3557,3.0,1086094534\n105,3578,4.5,1100533679\n105,3584,3.5,1086094545\n105,3614,4.0,1088058828\n105,3676,2.0,1086094180\n105,3682,4.0,1085639996\n105,3683,4.0,1085639989\n105,3685,4.0,1085639974\n105,3686,3.0,1086094194\n105,3697,3.0,1086093756\n105,3702,4.0,1085639969\n105,3703,3.5,1086102036\n105,3717,2.5,1086274173\n105,3735,4.0,1086102041\n105,3740,3.0,1085580186\n105,3744,3.0,1086274263\n105,3752,3.0,1088058270\n105,3753,3.0,1086094721\n105,3755,3.0,1085581279\n105,3783,3.0,1101125836\n105,3793,3.0,1086094736\n105,3809,4.0,1086275253\n105,3825,2.0,1086275040\n105,3826,2.5,1086093749\n105,3831,3.0,1085639931\n105,3836,3.0,1086272615\n105,3917,4.0,1086094149\n105,3918,3.0,1088058788\n105,3946,2.0,1086094164\n105,3967,3.0,1085639873\n105,3980,2.0,1085639899\n105,3996,3.5,1085573843\n105,4002,3.5,1100532157\n105,4007,3.5,1086272672\n105,4011,4.0,1086102024\n105,4027,3.5,1086272776\n105,4034,4.0,1086272718\n105,4041,3.5,1085580193\n105,4056,4.0,1100606338\n105,4084,3.0,1088058815\n105,4148,3.5,1085580206\n105,4161,3.0,1085639858\n105,4203,2.0,1086094470\n105,4210,4.0,1086272626\n105,4218,4.0,1085641797\n105,4223,3.5,1088058250\n105,4226,4.0,1085581263\n105,4234,3.0,1085639848\n105,4235,4.5,1100532272\n105,4239,4.0,1086101981\n105,4246,3.0,1085639812\n105,4251,4.0,1085641793\n105,4262,3.5,1085580172\n105,4280,3.0,1085639807\n105,4321,3.5,1086094703\n105,4326,4.0,1086272756\n105,4361,3.0,1086101988\n105,4367,2.0,1085579220\n105,4407,4.5,1085581010\n105,4448,3.0,1086093719\n105,4467,3.5,1085639777\n105,4479,4.0,1085579231\n105,4482,3.0,1085579637\n105,4487,3.0,1085580165\n105,4557,3.0,1085580993\n105,4558,3.0,1086274032\n105,4572,3.0,1086094467\n105,4643,2.5,1088058223\n105,4654,3.0,1086094100\n105,4673,2.5,1085639782\n105,4679,4.0,1086094125\n105,4681,3.5,1085582146\n105,4719,3.5,1086274529\n105,4772,4.0,1086275259\n105,4776,3.0,1086272790\n105,4837,3.5,1085581236\n105,4855,3.5,1086272598\n105,4878,3.0,1086272410\n105,4896,3.0,1085581244\n105,4901,3.0,1101115611\n105,4958,3.0,1085582137\n105,4963,3.0,1086093708\n105,4979,3.5,1085582061\n105,4993,5.0,1085574372\n105,4995,2.5,1199438959\n105,5003,3.0,1086093682\n105,5013,3.0,1088058214\n105,5026,4.0,1085582071\n105,5049,4.0,1085580155\n105,5060,4.0,1100534081\n105,5180,3.0,1086094105\n105,5218,4.0,1085582076\n105,5299,3.0,1085574460\n105,5302,3.5,1085582030\n105,5308,2.0,1086274470\n105,5309,1.5,1088058733\n105,5334,3.5,1085641574\n105,5349,2.5,1101115415\n105,5377,4.0,1085574465\n105,5388,4.0,1085580133\n105,5400,2.5,1085582022\n105,5418,4.0,1085574443\n105,5419,1.5,1086094117\n105,5445,3.0,1085581212\n105,5447,4.0,1199439617\n105,5464,4.0,1086272549\n105,5630,3.0,1086094066\n105,5669,3.0,1100532042\n105,5693,4.0,1088058740\n105,5747,3.5,1100532177\n105,5816,3.0,1086101995\n105,5867,3.5,1101125659\n105,5878,3.5,1085581939\n105,5900,3.0,1085641448\n105,5902,3.5,1086093675\n105,5940,4.0,1085641421\n105,5945,3.5,1100606244\n105,5952,5.0,1085579003\n105,5954,3.5,1086272571\n105,5959,4.0,1085579117\n105,5989,3.5,1101125697\n105,6016,5.0,1100530925\n105,6104,2.5,1086272492\n105,6125,4.0,1100532053\n105,6188,3.5,1100605991\n105,6218,3.5,1088058706\n105,6238,3.0,1086094075\n105,6291,3.0,1085581170\n105,6344,3.5,1085581157\n105,6365,3.0,1199438599\n105,6377,3.0,1086272603\n105,6378,2.0,1199439214\n105,6502,3.5,1100532089\n105,6539,3.0,1086094656\n105,6595,2.5,1085580015\n105,6659,4.0,1085581903\n105,6711,4.0,1100532215\n105,6774,3.0,1086094360\n105,6787,3.5,1100532118\n105,6796,3.0,1085581870\n105,6807,4.0,1085579346\n105,6870,3.5,1100532019\n105,6874,4.0,1100531989\n105,6898,4.0,1101115431\n105,6989,4.0,1086094632\n105,6997,3.0,1100606302\n105,7005,2.0,1086094349\n105,7017,2.5,1088059177\n105,7034,4.0,1085580911\n105,7060,2.5,1086093699\n105,7104,3.0,1085579207\n105,7143,4.0,1100531114\n105,7149,3.5,1100606316\n105,7153,5.0,1086272392\n105,7193,3.5,1086093623\n105,7272,2.5,1085581780\n105,7438,4.0,1100531941\n105,7802,3.5,1086272341\n105,7836,3.0,1086272346\n105,8042,3.5,1101125893\n105,8228,3.5,1086272329\n105,8798,4.0,1199439320\n105,8874,3.5,1199439249\n105,8949,4.0,1199439187\n105,32587,4.5,1199438786\n105,33166,4.0,1199439242\n105,34162,3.5,1199439144\n105,34542,4.5,1199439476\n105,41569,2.5,1199439080\n105,44195,4.0,1199439192\n105,48304,4.5,1199439376\n105,48385,3.5,1199438665\n105,48516,3.0,1199438842\n105,51255,1.5,1199439007\n106,1,4.0,1215818369\n106,551,3.0,1215820041\n106,837,5.0,1215760082\n106,1246,5.0,1215923111\n106,1721,4.5,1215818307\n106,1968,4.5,1215819684\n106,1992,4.0,1215760993\n106,2052,3.0,1215760658\n106,2145,3.5,1215759985\n106,2174,4.5,1215819696\n106,2279,3.5,1215760493\n106,2395,5.0,1215818606\n106,2672,3.0,1215760243\n106,2762,3.5,1215818358\n106,2804,4.5,1215761648\n106,3210,4.0,1215759966\n106,3786,5.0,1215818780\n106,4040,2.5,1215760669\n106,4306,4.0,1215818300\n106,4886,4.0,1215818347\n106,5296,2.5,1215761066\n106,5422,4.5,1215761551\n106,6377,4.5,1215818402\n106,7161,2.0,1215761101\n106,7773,5.0,1236572531\n106,8360,3.5,1215818302\n106,8366,5.0,1215818597\n106,8641,4.0,1215760422\n106,8961,3.0,1215818385\n106,39408,0.5,1215818472\n106,39416,5.0,1215818584\n106,43919,1.0,1215818522\n106,44731,4.0,1215819614\n106,45431,3.0,1215760972\n106,46976,0.5,1215819552\n106,48394,5.0,1215818377\n106,51086,4.5,1215761312\n106,53996,4.0,1231299100\n106,54281,5.0,1215818691\n106,56367,3.5,1215818396\n106,57368,4.0,1215819568\n106,58559,5.0,1216958340\n106,59306,4.0,1215818489\n106,59315,5.0,1215761098\n106,60069,5.0,1215761519\n107,293,3.0,1446493028\n107,296,5.0,1446493021\n107,527,5.0,1446493024\n107,2605,3.0,1446493238\n107,2701,0.5,1446493194\n107,2805,2.0,1446493350\n107,2959,4.5,1446493013\n107,3005,3.5,1446493296\n107,3082,1.5,1446493230\n107,3160,3.5,1446493183\n107,3176,3.5,1446493152\n107,3300,3.5,1446493281\n107,3409,0.5,1446493334\n107,3755,1.5,1446493198\n107,3785,0.5,1446493222\n107,4239,2.0,1446493286\n107,4344,2.0,1446493319\n107,4370,3.0,1446493190\n107,4447,0.5,1446493216\n107,4718,1.5,1446493250\n107,4816,0.5,1446493273\n107,4874,4.0,1446493306\n107,5502,3.5,1446493203\n107,5669,4.0,1446493178\n107,5995,4.5,1446493188\n107,6016,4.5,1446493019\n107,6377,4.0,1446493039\n107,6502,1.5,1446493170\n107,6874,4.0,1446493044\n107,7361,4.0,1446493042\n107,109487,4.0,1446493059\n107,115713,3.0,1446493062\n108,10,4.0,843302067\n108,34,3.0,843302154\n108,47,2.0,843302154\n108,110,3.0,843302110\n108,153,3.0,843301948\n108,161,3.0,843302067\n108,185,3.0,843302067\n108,208,4.0,843302111\n108,225,3.0,843302196\n108,231,2.0,843301990\n108,253,3.0,843302067\n108,288,3.0,843302110\n108,296,3.0,843301884\n108,329,5.0,843301990\n108,339,3.0,843302111\n108,344,1.0,843301948\n108,356,4.0,843302026\n108,364,5.0,843302154\n108,367,3.0,843302154\n108,377,4.0,843302196\n108,380,3.0,843301884\n108,434,3.0,843302026\n108,454,3.0,843302111\n108,457,4.0,843301990\n108,480,4.0,843302067\n108,500,5.0,843302196\n108,588,5.0,843301948\n108,589,3.0,843302154\n108,590,3.0,843301884\n108,593,5.0,843301990\n108,595,5.0,843301990\n109,16,3.5,1153229790\n109,47,5.0,1153862175\n109,296,4.5,1153862055\n109,318,5.0,1153862063\n109,442,2.5,1153229745\n109,509,4.5,1153229750\n109,543,4.5,1153229872\n109,553,4.5,1153229795\n109,592,4.0,1153862071\n109,593,5.0,1153862058\n109,648,4.0,1153862117\n109,784,4.0,1153229824\n109,1101,4.5,1153229777\n109,1213,4.5,1153229724\n109,1917,4.0,1153229766\n109,2268,4.0,1153229838\n109,2640,4.5,1153229817\n109,2683,2.5,1153229716\n109,3052,4.0,1153229865\n109,3793,3.5,1153229759\n109,4993,4.0,1153229733\n109,5445,4.0,1153229813\n109,6953,4.0,1156107879\n110,3,4.0,840101142\n110,5,4.0,840100796\n110,6,4.0,840100719\n110,7,4.0,840100994\n110,9,5.0,840101320\n110,10,4.0,840100456\n110,11,5.0,840100602\n110,16,4.0,840100745\n110,19,4.0,840100515\n110,23,5.0,840100893\n110,31,4.0,840100695\n110,32,3.0,840100546\n110,34,3.0,840100501\n110,39,5.0,840100529\n110,45,5.0,840100781\n110,47,3.0,840100501\n110,79,1.0,840101128\n110,95,5.0,840100644\n110,122,4.0,840100908\n110,132,4.0,840101305\n110,135,4.0,840101394\n110,150,5.0,840100361\n110,153,3.0,840100386\n110,160,3.0,840100546\n110,161,4.0,840100438\n110,163,5.0,840100745\n110,165,5.0,840100386\n110,168,4.0,840100672\n110,173,3.0,840100585\n110,179,5.0,840101468\n110,185,4.0,840100456\n110,186,4.0,840100631\n110,193,5.0,840100695\n110,204,4.0,840100644\n110,207,5.0,840100808\n110,208,4.0,840100456\n110,225,4.0,840100515\n110,227,4.0,840100758\n110,231,5.0,840100416\n110,236,4.0,840100602\n110,237,4.0,840100719\n110,248,4.0,840100881\n110,249,3.0,840100893\n110,252,4.0,840100614\n110,253,3.0,840100456\n110,256,4.0,840100656\n110,257,4.0,840100836\n110,260,4.0,840100976\n110,266,3.0,840100546\n110,276,4.0,840100731\n110,280,4.0,840100808\n110,282,4.0,840100602\n110,292,4.0,840100438\n110,296,5.0,840100361\n110,303,3.0,840100821\n110,305,4.0,840100836\n110,315,5.0,840100585\n110,318,3.0,840100439\n110,327,3.0,840100821\n110,329,4.0,840100416\n110,339,5.0,840100456\n110,344,4.0,840100386\n110,345,2.0,840100921\n110,349,5.0,840100386\n110,350,4.0,840100602\n110,356,4.0,840100475\n110,357,4.0,840100585\n110,364,3.0,840100501\n110,367,4.0,840100515\n110,368,4.0,840101167\n110,370,5.0,840100745\n110,374,4.0,840101494\n110,377,5.0,840100515\n110,378,5.0,840101150\n110,380,5.0,840100361\n110,381,4.0,840100796\n110,413,4.0,840100796\n110,415,3.0,840100946\n110,420,4.0,840100529\n110,434,5.0,840100438\n110,445,5.0,840101191\n110,454,4.0,840100501\n110,457,5.0,840100438\n110,464,4.0,840101508\n110,466,5.0,840100758\n110,474,5.0,840100656\n110,480,5.0,840100475\n110,485,4.0,840100731\n110,489,4.0,840101294\n110,494,5.0,840100958\n110,500,4.0,840100546\n110,508,4.0,840100672\n110,519,3.0,840100994\n110,520,5.0,840100769\n110,527,4.0,840100559\n110,532,3.0,840100921\n110,539,5.0,840100585\n110,540,5.0,840100881\n110,542,4.0,840101142\n110,548,5.0,840101207\n110,550,4.0,840101099\n110,552,4.0,840100758\n110,586,5.0,840100559\n110,587,5.0,840100559\n110,588,4.0,840100386\n110,589,5.0,840100515\n110,590,4.0,840100360\n110,592,4.0,840100360\n110,593,5.0,840100416\n110,595,3.0,840100416\n110,597,5.0,840100559\n110,648,4.0,840100719\n110,719,5.0,840101225\n110,733,5.0,840100851\n110,736,3.0,840100695\n110,761,4.0,840101368\n110,762,5.0,840101207\n110,780,5.0,840100851\n110,786,5.0,840101099\n110,802,4.0,840101284\n111,5,3.0,1097430540\n111,7,3.5,1097429457\n111,10,3.5,1097432318\n111,11,4.0,1097432404\n111,18,2.5,1098045013\n111,25,4.0,1097430903\n111,31,3.5,1097429230\n111,32,3.5,1097429750\n111,39,4.5,1097432363\n111,45,1.0,1097429193\n111,47,4.0,1097431427\n111,50,4.0,1097432297\n111,81,3.0,1097431144\n111,95,3.0,1097430874\n111,105,0.5,1097429180\n111,110,4.0,1097429291\n111,122,3.5,1097514612\n111,141,3.5,1097432358\n111,150,4.0,1098045292\n111,161,4.0,1097430893\n111,185,3.0,1097432346\n111,216,2.5,1097431678\n111,223,4.0,1097432413\n111,224,5.0,1098373536\n111,231,0.5,1097431412\n111,253,3.5,1097430507\n111,260,4.0,1097429700\n111,292,3.5,1097432320\n111,296,4.5,1097429606\n111,300,3.5,1097432375\n111,318,4.0,1097429677\n111,327,3.0,1097514606\n111,339,4.0,1097432349\n111,344,3.0,1097430518\n111,345,2.0,1097429176\n111,353,3.0,1097514380\n111,356,3.5,1097429651\n111,364,3.5,1098045314\n111,367,2.0,1097432326\n111,368,4.5,1097432453\n111,372,3.5,1097431682\n111,377,3.5,1097429767\n111,380,4.5,1097429708\n111,440,4.0,1097432399\n111,454,2.5,1097432334\n111,457,4.0,1097429686\n111,480,3.5,1097429669\n111,497,4.0,1097431077\n111,508,3.5,1097430883\n111,527,4.0,1097429740\n111,539,3.0,1097432336\n111,541,3.5,1097430881\n111,542,3.5,1098044819\n111,551,1.0,1097430889\n111,552,3.5,1097429406\n111,586,3.0,1097432380\n111,587,1.5,1097432330\n111,588,2.5,1097429297\n111,589,4.5,1097429719\n111,592,4.0,1097429732\n111,593,4.0,1097429638\n111,595,3.0,1097432294\n111,597,3.0,1097430856\n111,608,5.0,1097429759\n111,647,2.5,1097429228\n111,648,3.5,1097432291\n111,708,4.0,1097429411\n111,733,3.5,1097432312\n111,778,4.0,1097431399\n111,783,1.5,1097429183\n111,800,4.0,1097514629\n111,802,2.5,1097429387\n111,839,4.0,1097431115\n111,851,3.0,1097514893\n111,852,3.5,1097429385\n111,920,4.0,1097430847\n111,932,5.0,1097431310\n111,1013,4.5,1098044811\n111,1022,4.0,1098044804\n111,1036,4.0,1098374024\n111,1047,3.0,1097429251\n111,1073,4.5,1097432352\n111,1080,3.5,1097429373\n111,1088,3.5,1097431651\n111,1089,4.0,1097429390\n111,1101,4.0,1097429367\n111,1104,3.0,1097431125\n111,1127,4.0,1097429377\n111,1136,4.0,1097430860\n111,1183,2.5,1097432456\n111,1196,4.5,1097432302\n111,1197,4.5,1097432365\n111,1198,4.5,1097432308\n111,1210,4.0,1097429301\n111,1220,4.5,1097438364\n111,1231,4.0,1098373619\n111,1234,3.5,1097429355\n111,1240,4.5,1097432389\n111,1265,3.0,1097431418\n111,1270,4.5,1097430850\n111,1291,5.0,1097430510\n111,1297,4.0,1097431648\n111,1307,3.5,1097432420\n111,1333,3.0,1098044795\n111,1391,3.5,1097431623\n111,1393,3.5,1097431420\n111,1408,4.5,1097431081\n111,1460,4.0,1097431952\n111,1517,4.0,1097432482\n111,1527,3.0,1097432450\n111,1541,3.5,1098373835\n111,1544,1.5,1097431619\n111,1580,4.0,1097430678\n111,1584,3.5,1097429361\n111,1593,3.5,1097514793\n111,1608,3.0,1097431614\n111,1610,4.0,1098373983\n111,1617,4.0,1097430708\n111,1639,4.0,1097431610\n111,1648,3.5,1097514816\n111,1653,3.5,1097429351\n111,1658,4.0,1097514776\n111,1682,3.0,1098044660\n111,1688,4.0,1097514591\n111,1704,4.0,1097430685\n111,1721,1.5,1097429349\n111,1747,1.5,1097429237\n111,1760,2.5,1097431968\n111,1777,4.5,1097429222\n111,1784,1.0,1097430687\n111,1797,4.5,1097429836\n111,1799,3.5,1097431959\n111,1804,3.0,1098373801\n111,1863,3.0,1097432240\n111,1888,3.0,1097431606\n111,1912,3.5,1098374434\n111,1917,2.5,1097429293\n111,1921,2.5,1097431602\n111,1923,3.5,1097429320\n111,1943,3.5,1097430719\n111,1961,3.5,1098373990\n111,1967,4.0,1097514579\n111,1968,4.0,1097432441\n111,2014,3.5,1097514936\n111,2038,4.5,1097431289\n111,2046,3.5,1098374461\n111,2059,3.0,1098373776\n111,2081,2.5,1097429187\n111,2100,4.0,1098374452\n111,2106,3.5,1097514940\n111,2115,3.5,1098045265\n111,2125,3.5,1097431564\n111,2133,4.0,1097431098\n111,2134,3.5,1097431577\n111,2153,2.0,1097431941\n111,2174,4.0,1097431570\n111,2249,4.0,1097438356\n111,2252,2.5,1097514906\n111,2321,1.5,1097429203\n111,2324,4.0,1097429317\n111,2330,5.0,1097437092\n111,2380,3.0,1098373766\n111,2395,3.5,1098374417\n111,2396,4.0,1097432382\n111,2432,3.5,1097514883\n111,2447,3.0,1097431925\n111,2470,3.5,1098373592\n111,2478,4.0,1097431568\n111,2502,4.5,1097438248\n111,2541,4.0,1098044728\n111,2558,2.5,1098373755\n111,2563,4.5,1098373745\n111,2571,5.0,1097430682\n111,2572,4.5,1097430545\n111,2594,1.5,1097431911\n111,2598,4.0,1097431549\n111,2599,4.5,1098374393\n111,2605,2.5,1098044731\n111,2616,3.0,1098044735\n111,2628,2.5,1097432395\n111,2657,4.5,1097431559\n111,2671,3.5,1098374402\n111,2683,1.5,1097432489\n111,2692,5.0,1097431071\n111,2706,3.0,1097430705\n111,2712,1.0,1097429310\n111,2716,4.5,1097430655\n111,2723,3.5,1097431536\n111,2770,1.0,1097429213\n111,2791,4.0,1097514500\n111,2797,4.0,1098374372\n111,2846,4.5,1098735274\n111,2858,4.0,1097432316\n111,2877,3.5,1097514822\n111,2890,3.5,1097431519\n111,2916,4.0,1097430665\n111,2918,4.5,1098735255\n111,2953,3.0,1097431523\n111,2959,5.0,1097429287\n111,2997,3.0,1097432427\n111,3004,3.0,1097431882\n111,3006,4.5,1098374376\n111,3033,5.0,1097429547\n111,3060,4.0,1098044718\n111,3087,4.5,1098374343\n111,3098,4.0,1098374355\n111,3114,3.5,1098374333\n111,3160,0.5,1097429253\n111,3173,3.5,1098044715\n111,3210,3.0,1097429526\n111,3247,3.5,1097429513\n111,3252,3.0,1098373553\n111,3253,4.5,1097429219\n111,3254,4.0,1098373508\n111,3255,4.5,1097431096\n111,3257,1.0,1097429530\n111,3261,3.5,1097429519\n111,3270,4.0,1097432224\n111,3273,2.5,1098374329\n111,3298,2.5,1098374337\n111,3317,3.5,1097431498\n111,3360,4.0,1097438321\n111,3361,4.0,1097431509\n111,3418,3.5,1097429206\n111,3421,4.0,1098374307\n111,3448,3.5,1097429533\n111,3476,4.5,1097429539\n111,3481,3.5,1097431490\n111,3526,3.5,1097429535\n111,3534,1.0,1097429517\n111,3578,3.5,1097432437\n111,3608,3.5,1098374299\n111,3698,3.5,1098373571\n111,3712,3.5,1097514909\n111,3753,2.0,1098374296\n111,3783,4.5,1097514745\n111,3791,4.0,1097514650\n111,3825,3.5,1097431843\n111,3835,2.5,1098045068\n111,3852,3.5,1097514767\n111,3882,4.5,1097431838\n111,3893,3.0,1097431503\n111,3897,3.5,1097431493\n111,3911,3.5,1098374191\n111,3915,4.5,1099603600\n111,3948,4.0,1098044690\n111,3967,3.5,1098374196\n111,3968,2.5,1097514553\n111,3994,0.5,1097431467\n111,4011,4.5,1098374209\n111,4014,4.5,1098374184\n111,4017,3.5,1097514787\n111,4027,5.0,1097430515\n111,4034,4.0,1097429322\n111,4052,2.5,1097514663\n111,4121,3.5,1098044698\n111,4130,3.0,1097432186\n111,4132,2.5,1097514666\n111,4161,4.0,1098374183\n111,4219,4.0,1097431364\n111,4221,4.0,1097438330\n111,4226,4.5,1097429324\n111,4228,3.5,1097431823\n111,4231,4.0,1098373713\n111,4246,4.5,1097429490\n111,4299,3.5,1098044693\n111,4304,3.5,1097436698\n111,4308,4.0,1098374167\n111,4310,2.5,1098374158\n111,4321,3.5,1097431477\n111,4322,4.5,1097431827\n111,4344,2.5,1097514531\n111,4351,3.5,1097431817\n111,4357,5.0,1097430670\n111,4367,2.5,1098374154\n111,4447,5.0,1097429482\n111,4545,3.5,1097431810\n111,4600,4.0,1097432158\n111,4623,4.0,1097432234\n111,4677,4.5,1097514916\n111,4700,3.0,1097514898\n111,4734,2.5,1097431464\n111,4757,3.5,1097514657\n111,4776,2.0,1098374142\n111,4816,4.0,1097514550\n111,4823,3.0,1097431797\n111,4844,3.0,1097514862\n111,4901,5.0,1098374109\n111,4954,2.5,1098045051\n111,4963,4.5,1097429464\n111,4973,5.0,1098374097\n111,4975,1.5,1097431446\n111,4979,4.0,1097429466\n111,4980,1.5,1097430574\n111,4992,3.0,1097514874\n111,4993,4.0,1098374083\n111,5013,4.0,1098374091\n111,5055,4.0,1097430563\n111,5255,3.0,1097432135\n111,5283,3.5,1098045039\n111,5308,3.5,1097514754\n111,5349,4.0,1097430966\n111,5377,4.0,1097430970\n111,5418,3.5,1098045419\n111,5438,3.5,1097432127\n111,5481,3.0,1097432492\n111,5505,4.0,1097514913\n111,5524,4.0,1097432212\n111,5528,4.0,1097437328\n111,5620,4.0,1097514837\n111,5673,4.0,1098044666\n111,5816,3.0,1098373561\n111,5829,3.0,1097514681\n111,5902,1.5,1097429446\n111,5952,4.5,1098374060\n111,5957,3.0,1098045033\n111,5961,3.0,1097436615\n111,5991,3.5,1097429453\n111,6183,4.0,1097432112\n111,6299,4.0,1097436714\n111,6375,4.5,1097436630\n111,6377,3.5,1098374066\n111,6378,4.0,1098044670\n111,6480,4.5,1097438343\n111,6502,4.0,1097431764\n111,6537,2.0,1098044676\n111,6638,3.5,1097432077\n111,6744,3.0,1097432100\n111,6811,4.0,1097432268\n111,6850,3.0,1097432064\n111,6942,4.0,1097431710\n111,6974,4.0,1097432048\n111,7101,3.5,1097432030\n111,7153,4.5,1098374038\n111,7255,3.0,1097437389\n111,7256,4.5,1097436667\n111,7451,4.5,1099937091\n111,8366,4.5,1099603580\n111,8493,4.0,1097432008\n111,8622,4.0,1099937080\n111,8709,3.0,1097432018\n112,1,5.0,852720865\n112,3,5.0,852720897\n112,6,3.0,852720897\n112,18,3.0,852720984\n112,32,3.0,852720865\n112,41,5.0,852720950\n112,85,5.0,852721004\n112,95,3.0,852720866\n112,141,4.0,852720866\n112,296,5.0,852721145\n112,376,5.0,852720897\n112,648,2.0,852720866\n112,708,5.0,852720915\n112,733,4.0,852720897\n112,736,1.0,852720866\n112,780,4.0,852720865\n112,802,4.0,852720950\n112,805,5.0,852720950\n112,1073,5.0,852720915\n112,1183,4.0,852721058\n112,1356,5.0,852720950\n113,2,5.0,844884330\n113,4,3.0,844884590\n113,5,5.0,844884467\n113,6,4.0,844884390\n113,8,5.0,844885084\n113,9,4.0,844884734\n113,10,3.0,844884266\n113,16,5.0,844884467\n113,20,5.0,844884632\n113,21,5.0,844884266\n113,24,5.0,844884632\n113,25,4.0,844884390\n113,36,4.0,844884390\n113,65,4.0,844884932\n113,74,5.0,844885045\n113,79,5.0,844884793\n113,89,4.0,844884932\n113,104,5.0,844884632\n113,105,5.0,844884467\n113,135,5.0,844884853\n113,140,5.0,844884853\n113,494,5.0,844884528\n113,616,5.0,844884528\n113,637,5.0,844884932\n113,647,5.0,844885044\n113,711,5.0,844885206\n113,762,5.0,844884932\n114,10,4.0,838365857\n114,34,5.0,838365827\n114,153,3.0,838365897\n114,158,4.0,838365765\n114,165,3.0,838365897\n114,185,4.0,838365857\n114,208,4.0,838365857\n114,253,3.0,838365857\n114,267,1.0,838365737\n114,288,3.0,838365840\n114,292,4.0,838365867\n114,333,5.0,838365737\n114,339,4.0,838365857\n114,349,5.0,838365897\n114,356,5.0,838365840\n114,364,5.0,838365827\n114,380,5.0,838365907\n114,434,5.0,838365867\n114,457,5.0,838365867\n114,586,5.0,838365827\n114,588,5.0,838365897\n114,590,4.0,838365907\n114,592,3.0,838365907\n114,593,3.0,838365867\n114,595,5.0,838365878\n115,2,5.0,1107034391\n115,3,5.0,1107034474\n115,19,4.0,1107034440\n115,45,3.5,1107034126\n115,160,2.0,1107034459\n115,231,4.5,1107034320\n115,318,5.0,1107034264\n115,342,3.0,1107034092\n115,466,3.0,1107034046\n115,480,5.0,1107034257\n115,520,4.0,1107034112\n115,543,3.5,1107034097\n115,608,5.0,1107034287\n115,784,2.5,1107034038\n115,1073,5.0,1107034335\n115,1089,3.5,1107034454\n115,1148,4.5,1107034130\n115,1197,4.5,1107034342\n115,1259,4.0,1107034443\n115,1265,5.0,1107034360\n115,1270,5.0,1107034308\n115,1278,4.0,1107034056\n115,1288,4.0,1107034052\n115,1500,3.0,1107034043\n115,1639,3.5,1107034088\n115,1704,4.0,1107034404\n115,1732,5.0,1107034158\n115,1923,3.5,1107034448\n115,2001,3.5,1107034119\n115,2502,5.0,1107034121\n115,2683,4.5,1107034409\n115,2706,4.0,1107034471\n115,2762,4.0,1107034350\n115,2959,4.0,1107034465\n115,2997,4.5,1107034393\n115,3176,4.5,1107034109\n115,3578,4.5,1107034401\n115,3751,3.0,1107034074\n115,3897,3.5,1107034071\n115,4027,5.0,1107034105\n115,7361,5.0,1107034201\n116,47,5.0,1163454737\n116,153,1.5,1163454706\n116,231,5.0,1163454716\n116,260,5.0,1163454699\n116,296,5.0,1163454673\n116,316,4.0,1163454741\n116,318,4.5,1163454676\n116,356,4.5,1163454645\n116,367,2.5,1163454728\n116,434,2.5,1163454712\n116,480,2.0,1163454650\n116,593,3.0,1163454691\n116,733,4.0,1163454734\n116,1573,5.0,1163454719\n116,2571,4.0,1163454662\n116,2762,5.0,1163454695\n116,2858,3.0,1163454632\n116,2890,1.0,1163454748\n116,2959,2.0,1163454640\n116,4306,5.0,1163454681\n116,4993,5.0,1163454653\n116,5952,5.0,1163454658\n116,6539,4.0,1163454669\n116,7153,5.0,1163454656\n116,40414,5.0,1163454931\n117,215,3.5,1320638323\n117,281,4.0,1320640472\n117,318,5.0,1320636964\n117,524,4.0,1320634639\n117,527,3.5,1320638237\n117,539,5.0,1320636576\n117,1124,4.5,1320639869\n117,1185,3.0,1320634780\n117,1188,2.5,1320634699\n117,1235,2.5,1320634623\n117,1271,4.5,1320637156\n117,1307,4.5,1320639878\n117,1347,0.5,1320634657\n117,1674,5.0,1320637063\n117,1704,4.5,1320639090\n117,1831,0.5,1320634669\n117,1835,4.0,1320634819\n117,1957,3.0,1320634724\n117,1958,4.0,1320634810\n117,1961,3.0,1320638154\n117,2236,4.0,1320638938\n117,2324,4.0,1320638280\n117,2686,3.0,1320640136\n117,2719,0.5,1320634828\n117,2739,5.0,1320636860\n117,2840,0.5,1320634835\n117,3107,2.0,1320634634\n117,3147,5.0,1320636937\n117,3363,3.5,1320634680\n117,3504,3.0,1320634856\n117,3512,5.0,1320636888\n117,3565,4.0,1320638959\n117,3969,4.5,1320638669\n117,4361,4.0,1320634616\n117,4564,4.5,1320637425\n117,8638,4.0,1320638358\n117,8949,4.0,1320637606\n117,30707,5.0,1320636770\n117,43396,3.5,1320637335\n117,47099,4.5,1320637244\n117,47148,4.5,1320636826\n117,50685,4.0,1320640798\n117,53123,5.0,1320636446\n117,56587,5.0,1320636687\n117,59018,5.0,1320636732\n117,64614,3.5,1320639535\n117,64716,3.5,1320637031\n117,66371,4.5,1320636632\n117,72011,4.5,1320637937\n117,73023,4.0,1320640384\n117,81845,4.0,1320638004\n117,82527,4.5,1320637762\n117,85881,4.0,1320637732\n117,88810,4.5,1320637502\n117,89804,5.0,1320637871\n118,16,4.0,951009481\n118,32,4.0,951008797\n118,36,4.0,950154206\n118,47,4.0,951009525\n118,50,5.0,951009296\n118,111,4.0,951009296\n118,247,2.0,951009429\n118,260,5.0,951008797\n118,296,5.0,950154177\n118,329,4.0,951009067\n118,377,4.0,951009525\n118,457,5.0,951009370\n118,474,4.0,951009429\n118,480,4.0,951008941\n118,527,5.0,950154206\n118,541,4.0,951008797\n118,589,5.0,951008828\n118,593,5.0,951009296\n118,597,3.0,951009851\n118,608,5.0,950154138\n118,674,2.0,951009005\n118,750,5.0,951008797\n118,780,4.0,951009097\n118,832,4.0,951009585\n118,866,5.0,951009481\n118,903,4.0,951009322\n118,904,5.0,951009296\n118,905,5.0,951009676\n118,908,5.0,951009296\n118,913,4.0,958531282\n118,922,5.0,950153928\n118,924,5.0,951008798\n118,930,4.0,951009322\n118,954,4.0,958531282\n118,965,3.0,951009349\n118,1019,4.0,951008941\n118,1036,4.0,951009397\n118,1086,3.0,951009429\n118,1089,4.0,951009349\n118,1127,4.0,951009005\n118,1129,3.0,951009005\n118,1196,5.0,951008828\n118,1199,4.0,951008798\n118,1200,5.0,951008883\n118,1206,4.0,951008828\n118,1210,3.0,950153947\n118,1212,4.0,951009322\n118,1213,5.0,950154138\n118,1214,5.0,951008798\n118,1219,5.0,951009349\n118,1221,5.0,950153998\n118,1227,4.0,951009429\n118,1233,5.0,950154138\n118,1238,5.0,951009750\n118,1240,5.0,951008828\n118,1249,4.0,951009397\n118,1252,5.0,951009296\n118,1260,4.0,951009322\n118,1264,4.0,951009397\n118,1267,4.0,951009296\n118,1269,3.0,951009429\n118,1270,5.0,951008828\n118,1276,5.0,951009653\n118,1304,5.0,958531282\n118,1356,4.0,951009037\n118,1358,5.0,951009370\n118,1371,3.0,951009005\n118,1374,4.0,951008855\n118,1375,4.0,951008911\n118,1376,3.0,951008883\n118,1396,4.0,951009005\n118,1407,3.0,951009585\n118,1527,2.0,951008911\n118,1573,4.0,951008855\n118,1580,4.0,951008970\n118,1584,4.0,951008883\n118,1610,4.0,951009481\n118,1617,5.0,950153998\n118,1625,4.0,951009552\n118,1653,3.0,951008828\n118,1674,5.0,951009370\n118,1683,1.0,951009552\n118,1690,3.0,951009097\n118,1747,4.0,950153998\n118,1748,3.0,951009481\n118,1834,5.0,951009429\n118,1845,4.0,951009397\n118,1909,4.0,951009037\n118,1917,4.0,951009209\n118,1953,4.0,951009349\n118,1965,4.0,951008883\n118,1994,4.0,951009610\n118,2009,4.0,951009168\n118,2011,5.0,951009005\n118,2012,3.0,951009067\n118,2021,1.0,951009097\n118,2028,5.0,950154206\n118,2034,3.0,951009097\n118,2054,4.0,951009148\n118,2064,5.0,951009676\n118,2094,4.0,951009148\n118,2110,4.0,951009611\n118,2117,3.0,951009067\n118,2118,3.0,951009481\n118,2139,3.0,950153928\n118,2160,3.0,951009397\n118,2176,4.0,951009585\n118,2178,4.0,951009585\n118,2186,5.0,951009370\n118,2203,4.0,951009296\n118,2243,5.0,950153998\n118,2278,4.0,951009585\n118,2288,4.0,951008911\n118,2311,4.0,951009037\n118,2324,5.0,951009653\n118,2344,5.0,951009552\n118,2346,3.0,951008941\n118,2349,4.0,951009429\n118,2353,4.0,951009525\n118,2391,5.0,951009451\n118,2393,3.0,951009067\n118,2407,4.0,951008911\n118,2435,3.0,951009826\n118,2450,1.0,951009209\n118,2455,4.0,951008970\n118,2528,3.0,951009005\n118,2529,5.0,951008941\n118,2533,3.0,951009097\n118,2571,3.0,951008855\n118,2613,3.0,951009148\n118,2628,3.0,951009037\n118,2640,4.0,951008970\n118,2641,3.0,951009005\n118,2668,3.0,951009230\n118,2692,5.0,950154314\n118,2722,3.0,951009168\n118,2762,5.0,958531282\n118,2804,5.0,951009676\n118,2819,4.0,951009349\n118,2871,5.0,951009322\n118,2916,4.0,951009552\n118,2917,5.0,951009429\n118,2968,4.0,951008855\n118,2985,4.0,951008941\n118,3006,5.0,958531282\n118,3033,2.0,951009097\n118,3101,4.0,951009451\n118,3147,4.0,951008705\n118,3148,5.0,964408725\n118,3152,5.0,950154314\n118,3173,4.0,951008705\n118,3176,4.0,951008668\n118,3178,4.0,951008726\n118,3196,4.0,950154314\n118,3198,5.0,950154314\n118,3200,5.0,950154314\n118,3203,4.0,951009504\n118,3204,4.0,951009481\n118,3252,4.0,950154104\n118,3256,4.0,951009504\n118,3350,5.0,958531355\n118,3371,4.0,958531252\n118,3543,4.0,958531252\n118,3578,5.0,964408657\n118,3615,4.0,964408657\n118,3717,3.0,964408657\n118,3724,4.0,964408813\n118,3725,3.0,964408796\n118,3727,4.0,964408961\n118,3730,5.0,964408874\n118,3732,3.0,964408894\n118,3734,3.0,964408994\n118,3735,5.0,964408994\n118,3738,3.0,964409017\n118,3740,2.0,964408796\n118,3742,5.0,964408796\n118,3755,5.0,964408657\n118,3760,3.0,964408911\n118,3763,4.0,964408874\n118,3769,4.0,964409017\n118,3789,4.0,964408994\n118,3801,4.0,964408796\n118,3806,3.0,964408938\n118,3810,3.0,964409039\n118,3811,5.0,964408813\n118,3812,4.0,964408874\n118,3814,3.0,964408938\n118,3816,4.0,964408961\n118,6184,3.0,964408938\n119,1,2.0,913048158\n119,2,3.0,913051445\n119,6,5.0,913057893\n119,16,3.0,913048006\n119,21,4.0,913049013\n119,24,3.0,913050793\n119,26,5.0,913117867\n119,29,3.0,915411448\n119,32,4.0,913047936\n119,36,3.0,945993306\n119,41,4.0,913048297\n119,47,5.0,913233441\n119,50,4.0,913047839\n119,60,2.0,913048438\n119,62,4.0,913049366\n119,70,4.0,959734582\n119,78,3.0,945993516\n119,95,2.0,913232674\n119,101,2.0,952582537\n119,110,5.0,913047936\n119,111,5.0,913047839\n119,112,3.0,913128316\n119,141,4.0,913049888\n119,145,4.0,913050230\n119,151,3.0,913048077\n119,153,1.0,913232864\n119,160,2.0,913051632\n119,161,4.0,913117754\n119,163,4.0,960751875\n119,168,2.0,913232864\n119,173,1.0,913051632\n119,180,2.0,960751812\n119,196,2.0,913051475\n119,203,3.0,913050333\n119,208,2.0,913232894\n119,223,4.0,945994116\n119,227,2.0,913232929\n119,235,4.0,952584312\n119,253,2.0,913050480\n119,260,5.0,913052591\n119,265,4.0,913048077\n119,266,4.0,913048721\n119,272,5.0,913049150\n119,288,4.0,913233068\n119,292,3.0,913050293\n119,296,5.0,913047597\n119,316,3.0,913051506\n119,318,4.0,913047258\n119,329,3.0,913048548\n119,345,5.0,913049331\n119,353,3.0,913049150\n119,356,3.0,952583089\n119,364,3.0,913049072\n119,368,3.0,913048916\n119,370,2.0,913050396\n119,373,4.0,913232013\n119,377,2.0,913049964\n119,383,4.0,915412154\n119,428,4.0,952583024\n119,435,2.0,913051632\n119,443,2.0,952583169\n119,454,3.0,952583509\n119,457,3.0,913048158\n119,480,4.0,913048721\n119,481,4.0,972099168\n119,482,3.0,972097228\n119,492,4.0,913052193\n119,527,5.0,927055846\n119,531,3.0,952582353\n119,532,4.0,960938884\n119,535,4.0,952581900\n119,541,4.0,952580959\n119,551,5.0,913048721\n119,553,3.0,913047597\n119,585,3.0,952582708\n119,587,4.0,913050857\n119,588,4.0,913048006\n119,589,4.0,913048983\n119,590,5.0,913047973\n119,592,4.0,913232794\n119,593,4.0,913048297\n119,595,4.0,913049486\n119,596,4.0,945993306\n119,597,4.0,913048605\n119,599,4.0,915412223\n119,608,5.0,913207624\n119,611,1.0,913232929\n119,648,3.0,913048883\n119,653,3.0,913052090\n119,661,3.0,913049964\n119,678,4.0,952581199\n119,688,2.0,913232864\n119,707,3.0,915411867\n119,728,5.0,918856559\n119,733,4.0,913057993\n119,735,4.0,952583624\n119,736,2.0,913232716\n119,745,5.0,945993227\n119,750,5.0,915411448\n119,778,4.0,913047687\n119,780,3.0,913050553\n119,785,4.0,913050711\n119,788,4.0,913052089\n119,800,4.0,952584582\n119,832,4.0,913048799\n119,849,1.0,913051506\n119,858,5.0,913052626\n119,870,3.0,913211320\n119,880,3.0,913051666\n119,881,2.0,952583400\n119,903,5.0,989623265\n119,904,5.0,913052756\n119,908,5.0,913052591\n119,910,5.0,952581061\n119,912,5.0,913052699\n119,913,5.0,952581106\n119,919,5.0,945993179\n119,920,5.0,927055517\n119,922,4.0,913052591\n119,923,5.0,913052756\n119,924,4.0,913058394\n119,926,5.0,945993179\n119,943,4.0,952582729\n119,953,4.0,952582145\n119,954,4.0,952581796\n119,968,3.0,915411502\n119,969,5.0,913232642\n119,971,4.0,952581408\n119,996,3.0,913232992\n119,1009,3.0,960671689\n119,1027,2.0,913050827\n119,1028,3.0,913681100\n119,1034,3.0,952584169\n119,1035,5.0,952582174\n119,1036,4.0,913232601\n119,1037,3.0,913051666\n119,1042,3.0,913050942\n119,1049,3.0,913048764\n119,1059,2.0,913049782\n119,1061,4.0,952583272\n119,1063,4.0,945995420\n119,1073,3.0,960671633\n119,1077,5.0,913681190\n119,1079,4.0,952581978\n119,1080,4.0,913681190\n119,1081,4.0,952583089\n119,1084,4.0,952581304\n119,1085,5.0,989623184\n119,1089,4.0,952581199\n119,1097,4.0,915411448\n119,1101,4.0,913232754\n119,1103,5.0,945993269\n119,1112,2.0,913050942\n119,1127,2.0,913232754\n119,1129,4.0,913232754\n119,1136,5.0,913681021\n119,1148,5.0,945993227\n119,1172,4.0,913051262\n119,1179,3.0,913680627\n119,1183,2.0,952583063\n119,1192,2.0,913118043\n119,1193,5.0,927055342\n119,1196,4.0,913232524\n119,1197,4.0,913681326\n119,1198,4.0,913052591\n119,1199,5.0,915411448\n119,1200,4.0,913058394\n119,1201,4.0,913232601\n119,1203,5.0,989622199\n119,1204,5.0,913052699\n119,1206,5.0,915411480\n119,1207,4.0,913211024\n119,1208,5.0,952581061\n119,1210,4.0,913048438\n119,1213,4.0,913128255\n119,1214,3.0,913058346\n119,1215,4.0,913211024\n119,1220,4.0,913232567\n119,1221,4.0,913232567\n119,1223,5.0,960751702\n119,1224,5.0,913052862\n119,1225,5.0,952580936\n119,1233,5.0,913048035\n119,1234,4.0,913052591\n119,1235,5.0,913207776\n119,1237,3.0,952581003\n119,1240,4.0,913058278\n119,1243,5.0,913048764\n119,1246,4.0,952582145\n119,1247,4.0,945993227\n119,1249,4.0,952581335\n119,1252,4.0,913058346\n119,1254,4.0,952581106\n119,1256,4.0,913681100\n119,1258,4.0,952581686\n119,1259,5.0,927055517\n119,1262,4.0,913052662\n119,1265,2.0,913049179\n119,1266,5.0,913047687\n119,1267,4.0,913058314\n119,1269,4.0,913058314\n119,1270,4.0,913681222\n119,1271,4.0,913048639\n119,1272,5.0,945993306\n119,1275,4.0,913232716\n119,1276,4.0,913681100\n119,1277,4.0,913048548\n119,1278,4.0,913058153\n119,1282,4.0,952581686\n119,1283,4.0,915412223\n119,1287,5.0,913232524\n119,1291,3.0,913232524\n119,1292,5.0,913207845\n119,1293,4.0,913052528\n119,1296,4.0,952581470\n119,1299,4.0,952581856\n119,1303,4.0,952581003\n119,1304,4.0,913232524\n119,1317,4.0,913050333\n119,1320,2.0,913051590\n119,1332,4.0,913232065\n119,1333,4.0,952582034\n119,1339,5.0,913049366\n119,1340,4.0,945993269\n119,1342,2.0,952584516\n119,1345,4.0,952581718\n119,1347,2.0,952582585\n119,1350,3.0,952582509\n119,1356,3.0,913049427\n119,1358,5.0,915411308\n119,1370,4.0,913049888\n119,1372,2.0,952583400\n119,1374,3.0,913232642\n119,1375,2.0,913232965\n119,1376,3.0,952582034\n119,1377,1.0,913232965\n119,1378,3.0,913232794\n119,1379,4.0,915412154\n119,1387,4.0,913232567\n119,1388,2.0,913233215\n119,1390,4.0,913050186\n119,1391,3.0,913051590\n119,1394,5.0,945995160\n119,1411,5.0,913049270\n119,1416,4.0,913050480\n119,1429,4.0,913057939\n119,1485,2.0,913050666\n119,1499,2.0,913232929\n119,1503,4.0,952581933\n119,1508,4.0,960673585\n119,1517,2.0,913050368\n119,1518,3.0,913232754\n119,1527,4.0,913049116\n119,1544,2.0,913051590\n119,1552,3.0,913048764\n119,1554,2.0,952581174\n119,1556,1.0,913233239\n119,1562,1.0,913233239\n119,1564,5.0,972096905\n119,1569,2.0,952583721\n119,1573,2.0,913048476\n119,1580,4.0,913049303\n119,1584,3.0,913051475\n119,1586,2.0,913050942\n119,1587,3.0,913232754\n119,1588,2.0,913050793\n119,1589,3.0,913050230\n119,1591,2.0,913233183\n119,1597,4.0,913048476\n119,1603,2.0,913051632\n119,1606,2.0,913233268\n119,1608,3.0,915579236\n119,1610,4.0,913047737\n119,1611,5.0,913048605\n119,1613,3.0,952582839\n119,1617,4.0,913047737\n119,1619,1.0,913049303\n119,1625,4.0,913048232\n119,1627,4.0,913208236\n119,1639,4.0,945994088\n119,1641,3.0,913048232\n119,1646,2.0,913048077\n119,1653,4.0,913048338\n119,1663,3.0,952583024\n119,1670,3.0,913211248\n119,1674,4.0,913058314\n119,1676,2.0,913050553\n119,1678,3.0,913117813\n119,1682,3.0,927055670\n119,1687,3.0,913232894\n119,1689,3.0,952583747\n119,1690,1.0,913051506\n119,1694,2.0,913050075\n119,1702,3.0,913052089\n119,1704,5.0,913047643\n119,1711,4.0,913049542\n119,1713,3.0,913057714\n119,1721,3.0,913047343\n119,1727,2.0,913049844\n119,1729,3.0,913047878\n119,1732,4.0,913047643\n119,1747,4.0,913048605\n119,1748,4.0,913047343\n119,1754,3.0,913050029\n119,1762,3.0,913049605\n119,1769,2.0,913050666\n119,1772,2.0,913233215\n119,1777,2.0,913048883\n119,1779,3.0,913051445\n119,1784,5.0,913047973\n119,1788,4.0,913047466\n119,1792,3.0,913232864\n119,1799,3.0,913048721\n119,1801,2.0,913048605\n119,1804,3.0,913128356\n119,1805,4.0,913128255\n119,1824,5.0,959733966\n119,1827,2.0,913057714\n119,1831,2.0,913051666\n119,1833,2.0,913233136\n119,1834,3.0,913047687\n119,1848,3.0,913049396\n119,1852,3.0,913680547\n119,1862,2.0,913051697\n119,1866,3.0,913233296\n119,1876,3.0,913050997\n119,1882,2.0,913051666\n119,1883,5.0,927055026\n119,1884,2.0,913058499\n119,1885,4.0,913057714\n119,1894,2.0,913680503\n119,1911,2.0,913050666\n119,1912,4.0,915579154\n119,1917,3.0,913051632\n119,1918,4.0,913049605\n119,1920,2.0,913052129\n119,1921,4.0,952582409\n119,1923,5.0,928442267\n119,1924,3.0,952583206\n119,1931,5.0,952582207\n119,1944,4.0,952581718\n119,1948,4.0,952581174\n119,1952,4.0,952581304\n119,1953,4.0,913058394\n119,1954,3.0,913052966\n119,1955,3.0,952582353\n119,1956,4.0,952581552\n119,1957,4.0,927055670\n119,1958,5.0,927055708\n119,1960,4.0,913052966\n119,1961,4.0,952582145\n119,1962,5.0,927055670\n119,1965,5.0,945995181\n119,1967,3.0,960671689\n119,1968,4.0,913052966\n119,1994,4.0,913058153\n119,1997,4.0,913058153\n119,1999,3.0,952583848\n119,2000,4.0,952582353\n119,2001,3.0,952583799\n119,2002,3.0,913050368\n119,2005,3.0,952581796\n119,2006,4.0,913048367\n119,2009,4.0,913058394\n119,2011,2.0,952583848\n119,2012,2.0,913050261\n119,2013,3.0,913233012\n119,2019,4.0,913232524\n119,2021,3.0,960671689\n119,2028,5.0,945993179\n119,2053,2.0,913051697\n119,2054,2.0,960671689\n119,2058,4.0,915579122\n119,2065,4.0,952581506\n119,2067,4.0,952581960\n119,2069,4.0,952582353\n119,2071,4.0,913049605\n119,2076,5.0,913207917\n119,2080,3.0,913211160\n119,2083,4.0,913050620\n119,2087,4.0,945993396\n119,2094,2.0,913051697\n119,2096,4.0,952581739\n119,2100,3.0,952583442\n119,2101,4.0,960671832\n119,2104,4.0,945993396\n119,2105,3.0,913233215\n119,2108,4.0,952581530\n119,2109,4.0,913052756\n119,2111,2.0,952582409\n119,2112,4.0,959733499\n119,2115,3.0,913232965\n119,2118,3.0,913058346\n119,2120,3.0,952584492\n119,2124,3.0,913050518\n119,2132,4.0,913052591\n119,2136,3.0,913211320\n119,2138,3.0,913211248\n119,2140,3.0,945993582\n119,2143,3.0,960671726\n119,2155,3.0,952582538\n119,2160,4.0,913208080\n119,2161,3.0,960671689\n119,2167,3.0,915411308\n119,2174,5.0,952582117\n119,2183,4.0,927055517\n119,2193,4.0,913232524\n119,2194,4.0,913052626\n119,2240,3.0,952582887\n119,2243,4.0,952581827\n119,2253,2.0,913052129\n119,2263,3.0,913058279\n119,2268,4.0,913047343\n119,2278,4.0,927055342\n119,2279,2.0,952584516\n119,2282,4.0,928442005\n119,2289,4.0,913207729\n119,2291,4.0,913048232\n119,2297,2.0,927055099\n119,2302,3.0,913051262\n119,2303,5.0,952581003\n119,2306,2.0,952583548\n119,2312,3.0,952582839\n119,2313,5.0,913052756\n119,2321,4.0,927055752\n119,2329,4.0,952581900\n119,2333,4.0,952121533\n119,2336,5.0,952121490\n119,2337,4.0,952122333\n119,2338,2.0,913046852\n119,2340,3.0,927055342\n119,2346,3.0,952583721\n119,2352,4.0,952582353\n119,2353,3.0,952582174\n119,2355,3.0,952121372\n119,2359,4.0,952582207\n119,2361,4.0,989784765\n119,2365,1.0,913233136\n119,2366,4.0,913052699\n119,2369,3.0,945995494\n119,2371,3.0,952582248\n119,2373,2.0,913233327\n119,2375,4.0,913681261\n119,2391,3.0,952581686\n119,2398,4.0,952582117\n119,2404,2.0,913233183\n119,2406,3.0,913232567\n119,2407,4.0,913052662\n119,2411,2.0,913233296\n119,2412,2.0,913232864\n119,2414,3.0,913233268\n119,2420,3.0,927055846\n119,2421,2.0,913232642\n119,2422,1.0,913233136\n119,2425,3.0,952583624\n119,2440,4.0,928442046\n119,2454,3.0,972097288\n119,2455,3.0,915411448\n119,2463,4.0,952582409\n119,2469,4.0,952583902\n119,2470,4.0,927055846\n119,2478,3.0,915412223\n119,2498,3.0,945993844\n119,2502,4.0,972097622\n119,2524,2.0,952583587\n119,2527,2.0,952582887\n119,2529,4.0,927055446\n119,2539,3.0,952583587\n119,2542,3.0,952582382\n119,2571,4.0,945993764\n119,2574,1.0,945993859\n119,2587,2.0,959733676\n119,2590,3.0,952583902\n119,2600,3.0,945993764\n119,2616,3.0,952583967\n119,2617,2.0,945993697\n119,2622,3.0,945993582\n119,2628,3.0,952583509\n119,2639,4.0,927055797\n119,2648,4.0,952581439\n119,2657,4.0,972097322\n119,2660,5.0,952580766\n119,2664,4.0,952582034\n119,2672,3.0,945993537\n119,2686,4.0,959734646\n119,2688,3.0,952121533\n119,2700,2.0,952582248\n119,2701,1.0,945993764\n119,2707,3.0,952582887\n119,2710,1.0,945993967\n119,2713,2.0,952121596\n119,2716,4.0,952582174\n119,2719,2.0,952121533\n119,2728,5.0,952581223\n119,2734,2.0,952583721\n119,2739,4.0,952582271\n119,2746,5.0,952583400\n119,2750,4.0,952582145\n119,2762,4.0,959733393\n119,2769,2.0,989622527\n119,2770,3.0,952121372\n119,2779,2.0,952583136\n119,2784,4.0,952583624\n119,2797,3.0,952582207\n119,2804,5.0,945993269\n119,2826,3.0,952121372\n119,2828,2.0,952121490\n119,2857,5.0,952583442\n119,2858,5.0,952580851\n119,2863,3.0,952581439\n119,2871,4.0,945993269\n119,2872,3.0,945993349\n119,2901,4.0,952580766\n119,2912,4.0,959733348\n119,2915,4.0,952581470\n119,2916,4.0,952581900\n119,2918,4.0,945993486\n119,2919,4.0,952581960\n119,2921,3.0,952582069\n119,2926,4.0,952581856\n119,2944,4.0,952581506\n119,2947,4.0,952581470\n119,2949,4.0,952582003\n119,2968,4.0,952581640\n119,2971,5.0,952582477\n119,2973,5.0,952581084\n119,2976,4.0,959734551\n119,2985,3.0,945993582\n119,2987,4.0,952121796\n119,2997,5.0,960938945\n119,3011,4.0,989622248\n119,3019,5.0,945993227\n119,3032,3.0,952583136\n119,3035,4.0,952581603\n119,3037,5.0,952581356\n119,3039,3.0,952582207\n119,3052,5.0,960751774\n119,3066,4.0,945993329\n119,3081,4.0,959733423\n119,3095,5.0,952581061\n119,3099,3.0,952582639\n119,3100,3.0,952582729\n119,3107,2.0,952583587\n119,3108,5.0,952581379\n119,3113,3.0,960751946\n119,3114,4.0,989622248\n119,3127,2.0,972097355\n119,3129,3.0,972097906\n119,3148,4.0,972097228\n119,3152,4.0,952581223\n119,3159,3.0,952583442\n119,3160,2.0,972097256\n119,3168,5.0,945993227\n119,3169,4.0,945993269\n119,3175,3.0,959734260\n119,3181,4.0,972097153\n119,3194,4.0,952582959\n119,3198,4.0,952582679\n119,3201,5.0,952580802\n119,3204,4.0,952580878\n119,3219,4.0,952121654\n119,3250,2.0,952583929\n119,3252,4.0,952582431\n119,3253,3.0,952581470\n119,3255,2.0,952583206\n119,3263,2.0,952583587\n119,3267,4.0,952581933\n119,3308,5.0,953675542\n119,3317,4.0,989623184\n119,3324,2.0,972097449\n119,3330,4.0,952581686\n119,3350,4.0,952580851\n119,3354,2.0,972097473\n119,3355,2.0,972097288\n119,3360,3.0,952581856\n119,3363,4.0,952580442\n119,3379,3.0,952580649\n119,3388,2.0,952580566\n119,3396,4.0,952580606\n119,3397,4.0,952580566\n119,3409,3.0,972097355\n119,3414,5.0,952580606\n119,3418,4.0,952580692\n119,3421,4.0,952580442\n119,3429,5.0,989784738\n119,3438,2.0,960671726\n119,3441,3.0,952580649\n119,3448,4.0,952580566\n119,3450,3.0,952580566\n119,3457,3.0,972097322\n119,3461,4.0,953675594\n119,3467,5.0,989622199\n119,3471,5.0,953675360\n119,3476,4.0,959734551\n119,3479,4.0,960671633\n119,3481,4.0,972097228\n119,3489,2.0,960671726\n119,3490,1.0,989784509\n119,3499,4.0,953675866\n119,3504,5.0,989622144\n119,3527,4.0,959734194\n119,3535,2.0,972097378\n119,3548,5.0,989784738\n119,3563,1.0,989622944\n119,3654,4.0,959734139\n119,3699,4.0,960671856\n119,3701,3.0,989623049\n119,3702,4.0,959734169\n119,3735,4.0,989622144\n119,3740,4.0,959734115\n119,3741,4.0,960751727\n119,3827,3.0,989622945\n119,3841,2.0,972097449\n119,3844,4.0,972097355\n119,3869,2.0,972097449\n119,3889,2.0,989622976\n119,3893,3.0,989623306\n119,3895,2.0,989623049\n119,3897,5.0,989622057\n119,3911,5.0,989622166\n119,3926,4.0,972097410\n119,3928,3.0,972097355\n119,3929,5.0,989622144\n119,3943,5.0,989622663\n119,3946,2.0,989622976\n119,3959,4.0,972097288\n119,3967,5.0,989622717\n119,3977,3.0,989622945\n119,3980,4.0,989622743\n119,3986,3.0,989622945\n119,4018,3.0,989622570\n119,4106,3.0,989622945\n119,4139,2.0,989784550\n119,4179,4.0,989623122\n119,4186,4.0,989623184\n119,4190,4.0,989623150\n119,4195,4.0,989622087\n119,4280,4.0,989623184\n119,4282,4.0,989623150\n119,4292,4.0,989623150\n119,5060,5.0,913680947\n120,1,2.5,1167422234\n120,32,3.5,1167420751\n120,36,3.0,1125350649\n120,47,3.5,1167421762\n120,50,4.0,1167421675\n120,104,5.0,1167420288\n120,185,3.0,1167422401\n120,198,2.5,1125350327\n120,231,2.0,1167422338\n120,292,3.0,1167422364\n120,296,3.5,1125522893\n120,356,4.5,1167422193\n120,364,3.0,1167422305\n120,377,3.0,1167422258\n120,380,3.5,1167422230\n120,454,3.5,1167422387\n120,457,3.5,1125523032\n120,480,3.0,1125523035\n120,500,3.0,1167422333\n120,539,3.0,1167422359\n120,587,3.5,1125523111\n120,589,4.0,1167421705\n120,592,3.5,1167420777\n120,593,4.5,1167422201\n120,597,3.0,1167422326\n120,608,1.5,1167420460\n120,648,3.5,1167422272\n120,733,3.0,1167422320\n120,736,3.0,1167422296\n120,780,3.5,1125523023\n120,903,1.5,1167420471\n120,1036,4.0,1167421024\n120,1092,4.0,1125350310\n120,1097,3.0,1167421691\n120,1198,3.5,1125523097\n120,1214,3.5,1125523103\n120,1240,4.5,1167421051\n120,1265,4.5,1167420333\n120,1270,4.5,1167422024\n120,1302,3.5,1167422131\n120,1307,3.0,1125523069\n120,1343,3.5,1125350472\n120,1350,4.0,1125350440\n120,1387,4.5,1167421344\n120,1388,3.5,1167421349\n120,1389,1.5,1167421357\n120,1391,2.5,1125523079\n120,1393,3.5,1125522964\n120,1476,2.5,1125350599\n120,1517,3.0,1125350568\n120,1552,3.0,1125350259\n120,1573,3.5,1125523072\n120,1580,4.0,1167422378\n120,1597,3.0,1125350313\n120,1608,3.0,1125523087\n120,1625,4.0,1125350227\n120,1663,5.0,1167420323\n120,1721,3.5,1167422380\n120,1748,3.0,1125350343\n120,1777,3.5,1125350275\n120,1923,4.0,1125350510\n120,1954,5.0,1167420301\n120,1961,5.0,1167420306\n120,1994,2.5,1167420608\n120,1997,3.0,1167420253\n120,2000,3.5,1125523075\n120,2003,3.0,1125350356\n120,2009,1.5,1167420444\n120,2013,2.5,1167420413\n120,2028,4.0,1167420767\n120,2109,4.0,1125350584\n120,2118,4.5,1167421606\n120,2268,5.0,1167422043\n120,2321,3.0,1167420364\n120,2371,3.5,1125350564\n120,2402,4.0,1167421005\n120,2403,4.5,1167420996\n120,2407,3.0,1125350335\n120,2416,5.0,1167420932\n120,2470,3.5,1125350317\n120,2474,3.5,1125350538\n120,2529,4.5,1125350279\n120,2571,4.5,1167421379\n120,2640,3.5,1125523055\n120,2699,3.0,1125523007\n120,2716,4.0,1167422102\n120,2762,4.5,1167420730\n120,2791,5.0,1167422113\n120,2795,3.5,1125350425\n120,2797,5.0,1167420347\n120,2858,3.5,1167421669\n120,2915,4.0,1125350474\n120,2916,4.5,1167421081\n120,2918,4.5,1167421968\n120,2959,3.0,1125522923\n120,2987,3.0,1167421776\n120,2997,2.0,1167420840\n120,3039,3.5,1167422034\n120,3098,3.5,1167422048\n120,3101,4.5,1125350268\n120,3102,3.5,1125350417\n120,3210,4.0,1167422097\n120,3253,3.5,1125523048\n120,3360,3.5,1167420588\n120,3363,3.5,1167422090\n120,3421,5.0,1167420895\n120,3448,3.5,1125350348\n120,3481,2.0,1125523044\n120,3527,4.0,1125523040\n120,3552,5.0,1167420317\n120,3635,2.5,1167420410\n120,3671,2.5,1167422038\n120,3793,2.5,1125523018\n120,4002,3.0,1167420604\n120,4007,3.5,1125350427\n120,4022,3.5,1125522968\n120,4085,4.0,1167422061\n120,4102,3.0,1125350544\n120,4220,3.0,1167420597\n120,4226,4.5,1125522907\n120,4306,2.5,1125523014\n120,4623,4.5,1167420969\n120,4963,4.0,1167421701\n120,4973,0.5,1167420818\n120,5049,3.5,1125350483\n120,5250,3.0,1125350587\n120,5349,4.0,1167420830\n120,5418,4.0,1167421733\n120,5445,4.0,1167421737\n120,5693,2.0,1125350613\n120,6188,3.0,1125350594\n120,6373,5.0,1167420875\n120,6787,3.5,1125350627\n120,6874,2.0,1167421715\n120,7616,4.5,1167421410\n120,8636,4.0,1167421751\n120,32587,1.5,1167420746\n120,48385,3.0,1167421787\n121,1,4.0,833058442\n121,6,4.0,833058704\n121,10,3.0,833058428\n121,11,4.0,833058545\n121,17,5.0,833058557\n121,34,5.0,833058465\n121,39,4.0,836906043\n121,40,5.0,833059219\n121,50,5.0,833058475\n121,95,4.0,833058545\n121,105,3.0,833058633\n121,110,5.0,836905999\n121,112,3.0,833058866\n121,125,3.0,833059070\n121,150,4.0,833058355\n121,153,3.0,833058390\n121,161,4.0,833058428\n121,163,5.0,833058714\n121,165,3.0,833058390\n121,171,4.0,833058784\n121,186,3.0,833058557\n121,198,5.0,833058929\n121,203,4.0,833058843\n121,215,4.0,833058980\n121,222,4.0,833058843\n121,223,4.0,833058645\n121,246,5.0,833058685\n121,249,4.0,833058885\n121,253,3.0,833058442\n121,256,3.0,833058621\n121,265,5.0,833058611\n121,273,4.0,833058704\n121,281,5.0,833058875\n121,282,4.0,833058575\n121,293,5.0,833058599\n121,296,5.0,833058355\n121,300,4.0,833058442\n121,303,5.0,833058856\n121,307,5.0,833058929\n121,315,5.0,833058518\n121,316,3.0,833058414\n121,318,5.0,833058414\n121,329,4.0,833058414\n121,339,3.0,833058428\n121,345,5.0,833058775\n121,348,3.0,833058704\n121,349,4.0,833058390\n121,356,4.0,833059029\n121,357,4.0,836906137\n121,364,4.0,833058633\n121,377,4.0,836906063\n121,380,4.0,833058355\n121,435,3.0,833058489\n121,440,5.0,833058714\n121,442,4.0,833058843\n121,454,3.0,833058645\n121,457,4.0,833058489\n121,468,4.0,833058704\n121,475,4.0,833059235\n121,480,4.0,833059045\n121,497,5.0,833059219\n121,509,4.0,833058733\n121,515,5.0,833058894\n121,527,5.0,833059235\n121,529,4.0,833059190\n121,539,3.0,836906092\n121,551,4.0,833058866\n121,553,3.0,833058545\n121,585,3.0,833058905\n121,587,3.0,836906093\n121,588,4.0,833058390\n121,589,5.0,836906063\n121,590,4.0,833058355\n121,592,4.0,833058354\n121,593,4.0,833058489\n121,595,4.0,833058414\n121,597,3.0,836906141\n121,610,3.0,833058905\n121,736,4.0,833058938\n121,780,5.0,836905940\n122,1,3.0,832773057\n122,10,3.0,832773057\n122,17,3.0,832773202\n122,28,3.0,832773358\n122,73,4.0,832773302\n122,150,3.0,832772925\n122,153,3.0,832772980\n122,161,3.0,832773057\n122,165,2.0,832772980\n122,185,2.0,832773092\n122,208,1.0,832773092\n122,231,1.0,832773017\n122,253,3.0,832773092\n122,261,3.0,832773358\n122,265,3.0,832773202\n122,272,4.0,832773202\n122,292,3.0,832773092\n122,296,1.0,832772925\n122,300,3.0,832773092\n122,316,4.0,832773017\n122,318,4.0,832773017\n122,329,3.0,832773017\n122,339,3.0,832773057\n122,342,1.0,832773202\n122,344,1.0,832772980\n122,349,3.0,832772977\n122,356,3.0,832773358\n122,380,1.0,832772925\n122,434,3.0,832773057\n122,468,3.0,832773202\n122,497,4.0,832773302\n122,527,3.0,832773302\n122,529,4.0,832773302\n122,534,5.0,832773302\n122,588,3.0,832772977\n122,590,3.0,832772925\n122,592,3.0,832772925\n122,595,3.0,832773017\n122,613,3.0,832773358\n122,668,3.0,832773358\n123,233,4.0,994021026\n123,288,5.0,994015967\n123,407,5.0,994021077\n123,785,5.0,994021092\n123,968,3.0,994021141\n123,1968,4.0,994015836\n123,1976,4.0,994015911\n123,2003,4.0,994015911\n123,2369,3.0,994021000\n123,2378,1.0,994015880\n123,2428,5.0,994021026\n123,2502,5.0,994021141\n123,2672,2.0,994015896\n123,2699,2.0,994020942\n123,2702,2.0,994021210\n123,2707,2.0,994020942\n123,2710,1.0,994020953\n123,2762,5.0,994021194\n123,2841,5.0,994021194\n123,2959,4.0,994021038\n123,2995,2.0,994021077\n123,3005,5.0,994020971\n123,3016,5.0,994021000\n123,3203,5.0,994021000\n123,3219,5.0,994021153\n123,3273,3.0,994021178\n123,3409,5.0,994021038\n123,3578,3.0,994021057\n123,3826,5.0,994021057\n123,3857,2.0,994020971\n123,4228,5.0,994015865\n123,4492,4.0,994020819\n123,4493,4.0,994020819\n124,1,4.5,1147862310\n124,2,3.0,1147861200\n124,19,4.0,1147861227\n124,47,3.5,1147861617\n124,110,5.0,1147862138\n124,266,3.0,1147861437\n124,293,4.5,1147861654\n124,296,3.0,1147861878\n124,318,3.5,1147861620\n124,350,4.0,1147861428\n124,356,4.0,1147861623\n124,527,5.0,1147861790\n124,541,2.5,1147862448\n124,589,5.0,1147862223\n124,593,3.5,1147862163\n124,786,3.0,1147861240\n124,1036,4.5,1147861587\n124,1090,4.5,1147862264\n124,1198,4.0,1147862042\n124,1200,5.0,1147862198\n124,1214,5.0,1147862306\n124,1222,3.5,1147862239\n124,1240,5.0,1147862371\n124,1270,5.0,1147862279\n124,1291,4.0,1147861555\n124,1625,4.0,1147861686\n124,1917,4.0,1147861415\n124,1961,3.5,1147861842\n124,2000,3.0,1147862399\n124,2028,4.0,1147861660\n124,2355,4.0,1147862049\n124,2542,4.0,1147861853\n124,2571,5.0,1147861561\n124,2683,3.0,1147861193\n124,2716,4.0,1147861161\n124,2762,4.0,1147862130\n124,2858,4.5,1147862230\n124,2959,5.0,1147861149\n124,3066,3.5,1147861893\n124,3114,4.0,1147861255\n124,3147,4.0,1147861568\n124,3578,4.5,1147861566\n124,3793,3.5,1147861388\n124,3996,2.0,1147861403\n124,4011,3.0,1147861760\n124,4014,4.0,1147862834\n124,4016,4.0,1147861701\n124,4223,4.0,1147861711\n124,4306,5.0,1147861207\n124,4973,4.0,1147862227\n124,4993,5.0,1147861204\n124,4995,3.5,1147861832\n124,5218,3.5,1147861688\n124,5418,2.5,1147861744\n124,5445,3.5,1147862433\n124,5679,3.0,1147861810\n124,5782,2.0,1147862179\n124,5952,5.0,1147861440\n124,5989,2.5,1147861752\n124,6323,3.0,1147861764\n124,6377,4.5,1147861640\n124,6539,4.5,1147861577\n124,6874,2.0,1147862295\n124,6942,3.0,1147861798\n124,7090,2.5,1147862366\n124,7153,5.0,1147861559\n124,7254,4.5,1147861821\n124,7360,3.0,1147861916\n124,7438,2.0,1147862207\n124,7445,4.0,1147861769\n124,8132,4.5,1147861726\n124,8360,4.5,1147861582\n124,8665,2.5,1147862346\n124,8798,2.5,1147861882\n124,8874,3.0,1147862438\n124,8957,3.0,1147861819\n124,8961,4.0,1147862135\n124,30707,3.0,1147861932\n124,32587,4.0,1147861867\n124,33166,3.5,1147861944\n124,33493,3.5,1147861644\n124,34405,2.5,1147862196\n124,37475,3.5,1147861573\n124,41569,4.0,1147862461\n124,41997,4.0,1147862176\n125,1,4.0,1269736592\n125,11,4.0,1269735560\n125,47,4.5,1269733663\n125,50,5.0,1244537461\n125,104,4.0,1269735058\n125,111,4.0,1244538123\n125,150,4.5,1269734153\n125,208,0.5,1269733955\n125,231,5.0,1244537702\n125,236,4.5,1269736207\n125,260,5.0,1244537436\n125,293,4.5,1244538139\n125,296,5.0,1244537427\n125,318,5.0,1244537564\n125,344,4.0,1269734365\n125,356,5.0,1244537870\n125,364,4.0,1269733891\n125,367,2.0,1244537743\n125,440,4.0,1269736684\n125,457,3.5,1269733436\n125,474,5.0,1269735100\n125,480,5.0,1244537415\n125,508,4.0,1269736628\n125,524,4.0,1269734088\n125,539,4.0,1269733830\n125,546,4.0,1269832398\n125,586,4.0,1269734212\n125,595,4.0,1269733931\n125,597,3.0,1244537726\n125,608,5.0,1244537507\n125,648,4.0,1244537842\n125,750,5.0,1269735179\n125,780,3.0,1269734068\n125,858,4.5,1269734004\n125,903,4.5,1269736378\n125,904,5.0,1269735467\n125,908,5.0,1269735305\n125,912,5.0,1244538087\n125,913,4.0,1269736203\n125,919,4.5,1244538057\n125,920,2.0,1269735439\n125,933,4.0,1269736604\n125,953,5.0,1269735864\n125,1035,2.5,1269735996\n125,1036,4.5,1269733784\n125,1073,4.5,1269733443\n125,1089,4.5,1244538001\n125,1097,4.5,1269734007\n125,1101,4.0,1269736599\n125,1136,5.0,1244537778\n125,1193,4.5,1269736437\n125,1196,4.0,1269736613\n125,1197,5.0,1244537770\n125,1198,4.5,1244537561\n125,1201,4.5,1269735930\n125,1204,5.0,1269736091\n125,1210,4.0,1269733639\n125,1213,4.5,1269734168\n125,1220,3.5,1269734601\n125,1221,4.0,1269736718\n125,1230,5.0,1244538472\n125,1234,4.0,1269736400\n125,1240,4.5,1244537845\n125,1242,3.5,1269736034\n125,1245,4.0,1269736643\n125,1265,5.0,1244537789\n125,1270,5.0,1244538151\n125,1278,4.5,1269736368\n125,1288,4.5,1269736393\n125,1291,4.5,1269736488\n125,1304,4.5,1269735681\n125,1387,4.5,1269736483\n125,1391,4.0,1269735088\n125,1485,5.0,1269734733\n125,1580,4.0,1269733878\n125,1608,4.0,1269735288\n125,1610,5.0,1244537823\n125,1653,3.5,1269736671\n125,1673,4.5,1269736548\n125,1682,5.0,1244537860\n125,1704,5.0,1244537923\n125,1721,4.0,1269733430\n125,1729,3.0,1269735987\n125,1732,5.0,1244538114\n125,1777,3.0,1269735628\n125,1784,4.5,1269736558\n125,1884,5.0,1269737513\n125,1892,4.0,1269736632\n125,1917,3.0,1269734042\n125,1961,4.5,1269736429\n125,2000,4.0,1269736478\n125,2011,0.5,1269734109\n125,2012,3.5,1244537996\n125,2028,4.5,1269736423\n125,2194,4.5,1269735278\n125,2355,3.0,1269734161\n125,2359,5.0,1244536977\n125,2407,4.0,1269736528\n125,2502,4.5,1244537980\n125,2571,4.0,1269733874\n125,2572,4.5,1269736000\n125,2628,0.5,1244537537\n125,2683,4.0,1269733455\n125,2706,0.5,1269734112\n125,2716,4.5,1269736504\n125,2723,4.0,1269734054\n125,2763,4.0,1269736390\n125,2791,5.0,1244538022\n125,2797,5.0,1269734032\n125,2804,4.0,1269736680\n125,2858,5.0,1244537657\n125,2918,4.5,1269736515\n125,2959,5.0,1244537480\n125,2987,3.5,1269736579\n125,3033,2.5,1269735788\n125,3160,5.0,1269823824\n125,3175,5.0,1269734513\n125,3246,3.0,1244537079\n125,3253,4.5,1269735457\n125,3360,4.5,1244537063\n125,3524,4.0,1269736562\n125,3552,4.5,1244536928\n125,3671,4.5,1269735510\n125,3717,3.0,1269735935\n125,3751,2.5,1269734016\n125,3755,3.5,1269735525\n125,3897,5.0,1244537685\n125,3948,3.0,1269734062\n125,3994,3.5,1269734659\n125,4002,3.0,1269737566\n125,4018,3.5,1269736108\n125,4022,3.5,1269733447\n125,4023,4.0,1269733776\n125,4025,1.0,1269735812\n125,4085,4.5,1269735202\n125,4226,4.0,1269733384\n125,4306,5.0,1244537528\n125,4361,4.0,1269736601\n125,4367,2.0,1269736281\n125,4886,4.0,1244537708\n125,4979,5.0,1244538176\n125,4993,4.5,1269733683\n125,5266,2.5,1269736021\n125,5349,4.0,1269733651\n125,5377,4.0,1269735816\n125,5378,1.0,1269734116\n125,5459,1.5,1269734961\n125,5481,3.0,1269736040\n125,5502,5.0,1244538086\n125,5952,3.5,1269733990\n125,5989,5.0,1244537608\n125,6373,4.0,1269735196\n125,6377,5.0,1244538015\n125,6539,3.0,1269734050\n125,6708,3.5,1269737542\n125,6711,5.0,1244537800\n125,6863,3.0,1269735283\n125,6870,4.5,1269735068\n125,6942,5.0,1269735210\n125,6947,3.5,1269735728\n125,6953,4.0,1269736255\n125,6979,3.0,1269737520\n125,7147,5.0,1269733926\n125,7153,4.0,1244537487\n125,7361,5.0,1269734149\n125,8360,3.5,1269733972\n125,8376,4.0,1269736638\n125,8784,4.0,1269733912\n125,8798,3.5,1269734945\n125,8949,5.0,1269734731\n125,8961,4.0,1269733906\n125,8981,4.0,1269737571\n125,30707,4.0,1244538187\n125,30793,0.5,1269734106\n125,32587,4.5,1269736410\n125,33166,5.0,1269734692\n125,33493,1.5,1269734083\n125,33679,3.5,1269735602\n125,34162,4.0,1269736371\n125,35836,4.0,1269733947\n125,40819,4.0,1269735313\n125,44191,4.5,1244537921\n125,44195,5.0,1269734797\n125,44665,4.5,1269736453\n125,45447,3.5,1269735450\n125,45722,2.5,1269734352\n125,46578,5.0,1269733885\n125,46723,5.0,1269736164\n125,47610,2.5,1269735873\n125,48394,4.5,1269736433\n125,48516,5.0,1244537556\n125,48774,4.5,1269736542\n125,48780,4.5,1269734205\n125,49272,4.0,1269734075\n125,52973,4.5,1269735187\n125,54503,4.0,1269733816\n125,55820,5.0,1244537638\n125,56367,4.5,1269733995\n125,57669,3.5,1269736050\n125,58559,5.0,1244537602\n125,59315,4.5,1269733998\n125,59387,5.0,1269733921\n125,61132,4.0,1269736587\n125,61323,5.0,1269735674\n125,64614,4.5,1269735004\n125,66659,0.5,1269735444\n125,68157,5.0,1269733529\n125,68319,0.5,1269736273\n125,68358,4.5,1244537577\n125,68954,4.5,1269736384\n126,1,5.0,833286470\n126,2,3.0,833286607\n126,10,3.0,833286456\n126,34,3.0,833286506\n126,39,3.0,833286550\n126,48,3.0,833286654\n126,58,4.0,833286795\n126,95,3.0,833286594\n126,150,5.0,833286399\n126,153,4.0,833286421\n126,160,3.0,833286550\n126,161,4.0,833286456\n126,185,3.0,833286470\n126,186,2.0,833286594\n126,207,3.0,833286795\n126,208,3.0,833286470\n126,231,4.0,833286440\n126,246,4.0,833286688\n126,252,3.0,833286577\n126,256,3.0,833286643\n126,292,4.0,833286456\n126,316,3.0,833286440\n126,317,3.0,833286506\n126,318,4.0,833286440\n126,329,3.0,833286440\n126,344,4.0,833286421\n126,349,4.0,833286421\n126,350,3.0,833286723\n126,356,4.0,833286916\n126,357,3.0,833287094\n126,362,3.0,833286940\n126,364,4.0,833286624\n126,367,4.0,833286643\n126,368,4.0,833287094\n126,377,4.0,833286957\n126,380,4.0,833286399\n126,410,4.0,833286488\n126,421,2.0,833286978\n126,435,3.0,833286550\n126,440,4.0,833286688\n126,454,3.0,833286624\n126,455,2.0,833287220\n126,457,4.0,833286524\n126,466,4.0,833287173\n126,468,3.0,833286712\n126,471,5.0,833287141\n126,474,5.0,833286996\n126,480,5.0,833286940\n126,497,4.0,833287056\n126,500,4.0,833287015\n126,529,4.0,833287141\n126,531,3.0,833287311\n126,539,4.0,833287219\n126,551,4.0,833286776\n126,588,5.0,833286421\n126,589,5.0,833286916\n126,590,3.0,833286399\n126,592,4.0,833286399\n126,593,4.0,833286506\n126,594,3.0,833287296\n126,595,4.0,833286440\n126,596,4.0,833287296\n126,616,3.0,833287296\n126,736,3.0,833287194\n127,5,4.0,842323102\n127,135,5.0,842323288\n127,193,4.0,842323003\n127,236,4.0,842322801\n127,237,5.0,842323052\n127,339,5.0,842322523\n127,350,3.0,842322769\n127,356,4.0,842322467\n127,367,4.0,842322571\n127,370,4.0,842322953\n127,380,4.0,842322388\n127,381,3.0,842323102\n127,420,3.0,842322681\n127,454,4.0,842322523\n127,480,3.0,842322523\n127,500,5.0,842322608\n127,539,4.0,842322709\n127,586,4.0,842322608\n127,597,5.0,842322608\n127,648,4.0,842322979\n127,736,4.0,842322979\n128,1,5.0,1049690031\n128,2,4.0,1049685256\n128,3,2.0,1049682634\n128,4,3.0,1049682515\n128,7,5.0,1049683873\n128,8,4.0,1049685242\n128,25,2.0,1049683567\n128,39,4.0,1049683567\n128,45,5.0,1049682646\n128,47,5.0,1049683132\n128,48,5.0,1049683855\n128,60,3.0,1049690251\n128,79,5.0,1049683456\n128,86,5.0,1049685242\n128,89,5.0,1049683332\n128,93,1.0,1049684039\n128,110,5.0,1049683003\n128,111,1.0,1049682562\n128,140,5.0,1049683791\n128,145,4.0,1049684584\n128,153,3.0,1049684855\n128,160,4.0,1049684855\n128,168,4.0,1049683955\n128,170,5.0,1049683282\n128,179,4.0,1049684017\n128,217,2.0,1049683476\n128,225,3.0,1049683383\n128,239,3.0,1049690067\n128,253,1.0,1049682729\n128,257,5.0,1049683504\n128,258,2.0,1049684039\n128,266,5.0,1049683032\n128,273,2.0,1049682822\n128,276,3.0,1049683828\n128,280,5.0,1049683189\n128,292,4.0,1049684687\n128,313,4.0,1049690067\n128,317,5.0,1049690269\n128,340,5.0,1049685213\n128,350,4.0,1049683309\n128,356,5.0,1049682548\n128,362,5.0,1049685227\n128,364,5.0,1049690031\n128,367,3.0,1049690251\n128,377,5.0,1049683587\n128,380,4.0,1049683651\n128,420,5.0,1049684979\n128,434,5.0,1049684794\n128,455,4.0,1049689862\n128,480,5.0,1049684614\n128,509,5.0,1049683680\n128,516,5.0,1049683062\n128,517,2.0,1049684701\n128,527,5.0,1049683003\n128,539,5.0,1049683603\n128,552,3.0,1049684687\n128,558,3.0,1049684826\n128,587,5.0,1049683716\n128,588,5.0,1049690334\n128,593,5.0,1049683132\n128,595,5.0,1049690031\n128,597,5.0,1049683603\n128,605,4.0,1049683889\n128,628,5.0,1049683151\n128,662,4.0,1049683325\n128,673,4.0,1049685256\n128,724,3.0,1049682807\n128,733,5.0,1049683179\n128,736,5.0,1049683266\n128,780,5.0,1049683032\n128,782,3.0,1049683439\n128,783,5.0,1049690067\n128,788,4.0,1049683889\n128,802,4.0,1049683674\n128,891,2.0,1049683456\n128,1015,5.0,1049685213\n128,1022,4.0,1049690967\n128,1028,5.0,1049690908\n128,1029,4.0,1049691020\n128,1030,5.0,1049690439\n128,1031,5.0,1049690439\n128,1032,5.0,1049690967\n128,1035,5.0,1049690908\n128,1049,4.0,1049684733\n128,1059,5.0,1049683620\n128,1064,3.0,1049690086\n128,1088,5.0,1049690378\n128,1092,4.0,1049683249\n128,1100,3.0,1049683972\n128,1183,1.0,1049683032\n128,1197,3.0,1049682539\n128,1210,5.0,1049682515\n128,1215,2.0,1049684749\n128,1265,2.0,1049683548\n128,1282,2.0,1049691020\n128,1320,2.0,1049682780\n128,1377,4.0,1049684769\n128,1380,5.0,1049690439\n128,1391,2.0,1049684916\n128,1393,5.0,1049683587\n128,1407,4.0,1049682729\n128,1438,4.0,1049683309\n128,1457,3.0,1049683751\n128,1479,4.0,1049683360\n128,1487,5.0,1049690334\n128,1488,4.0,1049683062\n128,1499,2.0,1049683504\n128,1513,4.0,1049682539\n128,1518,4.0,1049683351\n128,1541,3.0,1049683768\n128,1544,3.0,1049683326\n128,1552,5.0,1049682623\n128,1566,5.0,1049690067\n128,1569,4.0,1049683674\n128,1573,5.0,1049683179\n128,1580,4.0,1049685213\n128,1586,5.0,1049683042\n128,1608,3.0,1049683220\n128,1615,4.0,1049683231\n128,1616,5.0,1049683062\n128,1617,2.0,1049682679\n128,1644,3.0,1049682807\n128,1645,2.0,1049682729\n128,1667,3.0,1049684733\n128,1686,5.0,1049683423\n128,1687,3.0,1049683351\n128,1688,5.0,1049690067\n128,1717,2.0,1049682780\n128,1721,5.0,1049683567\n128,1760,3.0,1049690354\n128,1777,4.0,1049683603\n128,1866,3.0,1049684794\n128,1876,2.0,1049684762\n128,1889,2.0,1049683204\n128,1892,4.0,1049683249\n128,1895,5.0,1049683587\n128,1917,5.0,1049683282\n128,1947,4.0,1049690908\n128,2006,3.0,1049683738\n128,2017,5.0,1049690929\n128,2028,3.0,1049682497\n128,2078,5.0,1049690908\n128,2080,5.0,1049690967\n128,2081,5.0,1049690378\n128,2087,4.0,1049690967\n128,2088,4.0,1049690395\n128,2092,5.0,1049690102\n128,2096,5.0,1049690967\n128,2106,4.0,1049683033\n128,2114,5.0,1049682562\n128,2126,4.0,1049683439\n128,2137,5.0,1049682572\n128,2142,3.0,1049690086\n128,2162,4.0,1049689902\n128,2166,4.0,1049683835\n128,2279,3.0,1049682780\n128,2291,5.0,1049683620\n128,2316,4.0,1049683907\n128,2340,5.0,1049683716\n128,2353,4.0,1049683166\n128,2355,5.0,1049690048\n128,2385,3.0,1049683929\n128,2389,2.0,1049682835\n128,2424,5.0,1049683738\n128,2485,5.0,1049683651\n128,2490,3.0,1049683204\n128,2540,4.0,1049683326\n128,2548,1.0,1049682865\n128,2558,4.0,1049683873\n128,2572,5.0,1049683603\n128,2581,3.0,1049683701\n128,2605,4.0,1049683309\n128,2617,4.0,1049683204\n128,2620,4.0,1049683701\n128,2628,4.0,1049684749\n128,2657,5.0,1049690447\n128,2671,5.0,1049683620\n128,2687,5.0,1049690048\n128,2688,3.0,1049683467\n128,2707,5.0,1049683249\n128,2710,1.0,1049682795\n128,2719,3.0,1049682759\n128,2722,2.0,1049684817\n128,2762,5.0,1049683132\n128,2805,5.0,1049683920\n128,2806,4.0,1049683282\n128,2840,5.0,1049683282\n128,2841,5.0,1049683166\n128,2881,4.0,1049683408\n128,2888,5.0,1049683873\n128,2906,3.0,1049683920\n128,2978,3.0,1049683651\n128,3005,1.0,1049683266\n128,3081,4.0,1049683805\n128,3107,5.0,1049684713\n128,3114,5.0,1049690031\n128,3147,5.0,1049682660\n128,3159,1.0,1049690048\n128,3176,3.0,1049683249\n128,3178,4.0,1049684596\n128,3185,3.0,1049690613\n128,3285,3.0,1049690808\n128,3298,3.0,1049690695\n128,3299,3.0,1049690847\n128,3400,3.0,1049690102\n128,3408,5.0,1049690505\n128,3418,4.0,1049684584\n128,3489,4.0,1049685256\n128,3528,4.0,1049683716\n128,3535,1.0,1049684340\n128,3553,4.0,1049684436\n128,3554,4.0,1049684105\n128,3555,2.0,1049684373\n128,3556,3.0,1049690644\n128,3578,5.0,1049685053\n128,3594,4.0,1049690750\n128,3615,2.0,1049690152\n128,3675,3.0,1049690988\n128,3709,1.0,1049682846\n128,3717,5.0,1049685113\n128,3743,5.0,1049684216\n128,3753,4.0,1049683086\n128,3755,4.0,1049684436\n128,3798,5.0,1049684359\n128,3824,2.0,1049684260\n128,3825,5.0,1049690710\n128,3897,3.0,1049690481\n128,3908,2.0,1049682975\n128,3953,2.0,1049684289\n128,3977,3.0,1049685075\n128,3978,4.0,1049684186\n128,3980,4.0,1049690622\n128,3993,4.0,1049690662\n128,3998,4.0,1049690570\n128,3999,5.0,1049685145\n128,4016,2.0,1049690140\n128,4022,4.0,1049689958\n128,4023,4.0,1049684131\n128,4025,4.0,1049685090\n128,4034,4.0,1049690547\n128,4039,5.0,1049690378\n128,4052,4.0,1049682539\n128,4054,5.0,1049684159\n128,4056,4.0,1049690750\n128,4148,3.0,1049684450\n128,4155,4.0,1049684216\n128,4161,4.0,1049685113\n128,4238,4.0,1049684373\n128,4246,3.0,1049684142\n128,4299,4.0,1049685113\n128,4306,5.0,1049690140\n128,4308,5.0,1049690302\n128,4310,5.0,1049683099\n128,4344,4.0,1049685126\n128,4367,3.0,1049685135\n128,4369,5.0,1049684373\n128,4372,3.0,1049684216\n128,4388,1.0,1049682951\n128,4448,4.0,1049685075\n128,4639,3.0,1049684159\n128,4699,4.0,1049684505\n128,4720,5.0,1049682921\n128,4727,1.0,1049683099\n128,4745,3.0,1049690695\n128,4756,2.0,1049685166\n128,4814,5.0,1049684390\n128,4821,5.0,1049689981\n128,4823,4.0,1049684120\n128,4865,2.0,1049682909\n128,4867,5.0,1049690794\n128,4878,4.0,1049684082\n128,4886,5.0,1049690140\n128,4896,4.0,1049689958\n128,4901,5.0,1049684340\n128,4903,3.0,1049690516\n128,4951,4.0,1049683220\n128,4963,5.0,1049685053\n128,4973,5.0,1049684082\n128,4977,3.0,1049690695\n128,4979,3.0,1049690580\n128,4992,4.0,1049684159\n128,4993,5.0,1049689958\n128,5010,1.0,1049683086\n128,5013,1.0,1049690547\n128,5014,4.0,1049690599\n128,5066,4.0,1049684216\n128,5106,4.0,1049684289\n128,5108,5.0,1049684359\n128,5151,5.0,1049684159\n128,5159,5.0,1049690086\n128,5164,4.0,1049690110\n128,5266,4.0,1049684359\n128,5296,3.0,1049684271\n128,5299,5.0,1049684095\n128,5312,4.0,1049684359\n128,5349,3.0,1049685053\n128,5387,4.0,1049684468\n128,5388,3.0,1049684359\n128,5415,4.0,1049690710\n128,5418,4.0,1049684321\n128,5444,5.0,1049690140\n128,5449,4.0,1049684193\n128,5502,5.0,1049684340\n128,5524,4.0,1049684171\n128,5612,4.0,1049684545\n128,5620,4.0,1049684131\n128,5630,5.0,1049684321\n128,5677,3.0,1049684537\n128,5679,5.0,1049682909\n128,5693,2.0,1049690439\n128,5810,4.0,1049690588\n128,5816,3.0,1049689958\n128,5829,3.0,1049684216\n128,5872,1.0,1049685126\n128,5952,5.0,1049689958\n128,5954,3.0,1049690674\n128,5957,5.0,1049684171\n128,5970,5.0,1049683889\n128,5989,5.0,1049685053\n128,5991,5.0,1049690302\n128,5992,4.0,1049684082\n128,6155,5.0,1049684186\n128,6316,1.0,1049690439\n129,39,3.0,965328135\n129,527,5.0,965328135\n129,736,3.0,965328135\n129,1027,3.0,965328135\n129,1245,3.0,965328135\n129,1611,4.0,965328135\n129,2163,3.0,965328135\n129,3578,4.0,965328241\n129,3593,1.0,965328476\n129,3598,4.0,965328241\n129,3615,4.0,965328416\n129,3616,3.0,965328302\n129,3617,3.0,965328416\n129,3618,3.0,965328241\n129,3623,4.0,965328302\n129,3624,3.0,965328302\n129,3691,2.0,965328135\n129,3717,2.0,965328302\n129,3744,3.0,965328416\n129,3745,2.0,965328241\n129,3751,4.0,965328241\n129,3752,3.0,965328416\n129,3753,4.0,965328302\n129,3755,4.0,965328241\n129,3785,3.0,965328416\n129,3793,3.0,965328241\n130,1,3.0,1138997743\n130,10,3.5,1140723887\n130,19,1.0,1138998764\n130,21,3.5,1138999325\n130,34,3.0,1138999264\n130,36,4.0,1138999312\n130,48,3.0,1139003683\n130,50,3.5,1138997386\n130,104,1.5,1140723854\n130,110,3.0,1138999206\n130,141,2.5,1138999333\n130,150,4.0,1138999203\n130,153,0.5,1138998386\n130,165,2.0,1139003532\n130,173,1.0,1138999624\n130,193,0.5,1139000278\n130,216,3.0,1139000192\n130,223,3.0,1138999377\n130,231,3.5,1138999284\n130,235,0.5,1138998368\n130,246,4.0,1139002230\n130,260,4.5,1138997369\n130,266,2.5,1138999494\n130,272,3.5,1138999984\n130,288,1.0,1138999363\n130,293,4.0,1138997798\n130,300,3.5,1138999359\n130,303,3.5,1139000274\n130,315,3.5,1138998393\n130,316,2.0,1138999234\n130,318,3.5,1138985739\n130,333,1.5,1140723852\n130,337,4.0,1138999509\n130,339,3.5,1138999338\n130,349,3.0,1138999240\n130,353,3.5,1138998345\n130,356,3.5,1138998954\n130,364,3.5,1138998339\n130,367,2.5,1138999304\n130,368,3.0,1139003169\n130,377,3.0,1138999246\n130,380,3.5,1149644358\n130,410,2.5,1138999426\n130,423,2.0,1139003970\n130,442,1.0,1138998357\n130,454,2.5,1138998351\n130,457,4.0,1138998578\n130,475,3.5,1139000027\n130,480,3.0,1138999196\n130,497,4.0,1138998334\n130,500,3.5,1138999276\n130,508,1.5,1138999450\n130,527,4.0,1138997935\n130,541,4.0,1138997782\n130,543,2.0,1149644393\n130,551,3.0,1139004419\n130,588,4.0,1138998871\n130,589,3.5,1138998637\n130,590,4.0,1138998106\n130,592,3.5,1138998867\n130,593,3.0,1138997735\n130,594,4.0,1138999481\n130,595,3.5,1138999226\n130,596,4.0,1138985459\n130,597,3.0,1138999271\n130,608,2.0,1138999218\n130,610,2.0,1139000095\n130,648,2.0,1138999229\n130,661,3.5,1138999943\n130,674,1.0,1139003949\n130,720,4.0,1138997913\n130,736,3.0,1138999279\n130,745,4.0,1138985753\n130,750,3.0,1138998722\n130,780,1.5,1138998179\n130,785,2.5,1138999897\n130,858,4.0,1138997697\n130,899,4.5,1139000019\n130,908,3.5,1138998705\n130,914,3.5,1139003939\n130,919,3.5,1138999381\n130,953,5.0,1138999770\n130,1022,4.0,1139000177\n130,1023,4.0,1139002594\n130,1028,4.0,1138999778\n130,1035,5.0,1138999781\n130,1036,4.5,1138997776\n130,1042,3.5,1139000148\n130,1059,4.0,1138998314\n130,1079,3.5,1138999458\n130,1080,0.5,1138998296\n130,1086,4.0,1139002565\n130,1090,4.0,1138999632\n130,1092,3.0,1138999948\n130,1097,3.0,1138999293\n130,1101,3.0,1138998307\n130,1127,3.0,1138999543\n130,1136,4.5,1138997938\n130,1148,4.0,1138985476\n130,1172,4.0,1139003923\n130,1193,3.0,1138999352\n130,1196,5.0,1138985701\n130,1197,4.5,1138985732\n130,1198,4.0,1138985706\n130,1199,3.0,1138985488\n130,1200,4.0,1138997709\n130,1201,4.0,1138998626\n130,1204,4.5,1138985495\n130,1206,3.0,1138999487\n130,1208,4.5,1138998285\n130,1210,4.0,1138997428\n130,1213,3.5,1138998614\n130,1214,4.5,1138997786\n130,1215,3.0,1138985543\n130,1221,4.0,1139003651\n130,1222,3.5,1138999564\n130,1223,4.0,1138997410\n130,1224,5.0,1139002617\n130,1225,3.5,1138999472\n130,1240,4.0,1138998260\n130,1243,3.0,1139003088\n130,1246,4.0,1138998267\n130,1247,1.0,1138999570\n130,1249,4.0,1139000061\n130,1250,4.0,1140723823\n130,1259,3.5,1139002409\n130,1262,4.0,1138997921\n130,1265,4.5,1138997954\n130,1266,4.0,1138999766\n130,1270,4.0,1138998695\n130,1271,4.0,1139000109\n130,1275,3.0,1138999930\n130,1276,2.5,1138999889\n130,1277,4.0,1139003095\n130,1282,4.5,1138985550\n130,1288,4.5,1138998045\n130,1291,4.0,1138997398\n130,1293,4.0,1139000042\n130,1299,4.0,1139000228\n130,1302,3.5,1138999832\n130,1304,4.0,1139003629\n130,1307,3.5,1138999386\n130,1333,3.0,1138999978\n130,1339,2.0,1139000051\n130,1357,3.5,1139000105\n130,1370,3.5,1138999646\n130,1371,3.0,1138999999\n130,1372,1.0,1138985523\n130,1374,4.0,1138999538\n130,1375,1.5,1138985568\n130,1377,1.0,1138999849\n130,1378,3.0,1139003911\n130,1380,2.0,1138999651\n130,1387,3.5,1138999441\n130,1391,2.5,1138999586\n130,1393,2.0,1138999392\n130,1396,3.0,1139003180\n130,1411,4.0,1139002698\n130,1449,4.5,1138998001\n130,1466,3.5,1139000022\n130,1485,1.0,1140723811\n130,1500,4.0,1138997985\n130,1527,4.0,1138998269\n130,1544,2.5,1138999757\n130,1562,2.5,1139000200\n130,1566,2.5,1139003364\n130,1580,4.0,1138999316\n130,1610,2.5,1138999414\n130,1617,3.5,1138998573\n130,1625,1.5,1138985430\n130,1641,3.5,1138998229\n130,1674,3.0,1138985529\n130,1676,3.5,1138999699\n130,1682,3.0,1139002586\n130,1704,3.0,1138999402\n130,1721,3.0,1138998251\n130,1722,3.0,1138999878\n130,1729,3.5,1139003501\n130,1732,4.0,1138999639\n130,1747,2.5,1138999939\n130,1748,4.0,1138998225\n130,1777,3.5,1138999817\n130,1884,1.5,1138998812\n130,1909,1.5,1138985574\n130,1954,4.0,1139002614\n130,1957,5.0,1138997823\n130,1961,3.5,1139003177\n130,1968,4.5,1138998906\n130,1997,1.0,1138999860\n130,2000,3.0,1140723797\n130,2001,2.0,1138985434\n130,2003,3.5,1138999966\n130,2005,4.0,1139000114\n130,2006,3.5,1138998245\n130,2011,3.5,1138999592\n130,2012,2.0,1138998151\n130,2021,2.0,1139000186\n130,2023,3.5,1139003198\n130,2028,4.0,1138998595\n130,2054,3.0,1138998159\n130,2078,3.5,1139000209\n130,2081,3.5,1138985437\n130,2083,4.0,1139003860\n130,2087,4.0,1139004425\n130,2100,3.0,1138998930\n130,2105,4.0,1139000088\n130,2108,4.0,1149644350\n130,2115,2.5,1138998238\n130,2117,3.5,1139003856\n130,2124,2.5,1139000322\n130,2139,4.0,1139002520\n130,2140,3.5,1139004433\n130,2150,4.0,1139000159\n130,2151,3.5,1139003454\n130,2161,3.5,1139000118\n130,2174,3.0,1138999518\n130,2194,4.0,1138998587\n130,2268,3.5,1138999663\n130,2291,3.5,1138998919\n130,2294,3.0,1139000084\n130,2302,1.0,1138985399\n130,2324,4.5,1138998220\n130,2355,2.0,1138999477\n130,2359,4.0,1139002709\n130,2396,2.5,1138998912\n130,2406,4.0,1138998923\n130,2407,3.0,1138998883\n130,2409,3.0,1139003270\n130,2411,2.5,1139003272\n130,2421,2.5,1139003277\n130,2455,3.0,1139003192\n130,2467,4.0,1139002636\n130,2470,3.5,1138999903\n130,2502,4.5,1138998134\n130,2513,1.0,1139003839\n130,2542,4.5,1138998747\n130,2571,4.5,1138997421\n130,2628,3.5,1138999343\n130,2640,3.0,1138999611\n130,2642,2.5,1139003845\n130,2657,1.0,1138998776\n130,2699,3.0,1138985408\n130,2716,4.0,1138998888\n130,2728,4.0,1138998727\n130,2745,4.5,1139003045\n130,2761,3.0,1139002432\n130,2763,3.0,1138999845\n130,2788,3.5,1138998544\n130,2791,3.0,1138999531\n130,2792,2.0,1139003827\n130,2795,3.5,1139002483\n130,2797,3.5,1138999514\n130,2804,3.5,1138999827\n130,2858,2.0,1138999259\n130,2890,4.0,1138998896\n130,2915,2.5,1139000240\n130,2916,3.5,1138998117\n130,2918,4.5,1138998120\n130,2942,2.0,1139003804\n130,2947,3.5,1139000015\n130,2948,4.0,1139002557\n130,2949,3.5,1139002538\n130,2950,2.0,1139003810\n130,2951,4.0,1138998769\n130,2959,4.0,1138998566\n130,2968,4.0,1139000164\n130,2985,4.0,1138998205\n130,2987,3.5,1138999421\n130,2991,3.5,1139004267\n130,2993,3.5,1139002739\n130,2997,3.0,1138998089\n130,3033,2.5,1138999989\n130,3034,4.0,1139002528\n130,3039,3.5,1139002323\n130,3060,4.0,1139002753\n130,3087,3.5,1139003233\n130,3088,3.5,1139002489\n130,3098,3.5,1139002089\n130,3100,3.5,1140723698\n130,3101,3.0,1138999838\n130,3107,3.0,1139000344\n130,3108,3.0,1139004475\n130,3114,4.0,1138997747\n130,3173,2.5,1139003778\n130,3175,3.5,1138998124\n130,3247,3.5,1139003786\n130,3253,3.0,1138999869\n130,3256,2.5,1149644342\n130,3360,3.5,1139002313\n130,3396,4.0,1139002508\n130,3441,3.0,1139003239\n130,3448,3.5,1138998877\n130,3481,3.5,1138999687\n130,3527,4.0,1138999865\n130,3578,3.5,1138999373\n130,3608,4.0,1139003745\n130,3623,0.5,1138985391\n130,3671,2.0,1149644335\n130,3702,4.0,1139000265\n130,3703,4.5,1139000232\n130,3740,3.0,1139003758\n130,3755,3.5,1139000126\n130,3793,4.0,1138999444\n130,3897,2.5,1140723774\n130,3911,2.0,1138998034\n130,3967,3.0,1139002677\n130,3996,4.5,1138998097\n130,4011,4.0,1138998731\n130,4022,3.5,1138998191\n130,4027,4.5,1138998892\n130,4085,4.0,1139000136\n130,4226,4.5,1138997445\n130,4232,4.0,1139003242\n130,4262,3.0,1139002534\n130,4306,2.5,1138999409\n130,4369,2.0,1140723933\n130,4499,4.0,1138998510\n130,4545,3.5,1140723925\n130,4571,4.0,1139003602\n130,4623,2.5,1139003545\n130,4643,2.0,1139002134\n130,4679,4.0,1138997969\n130,4857,4.5,1139002624\n130,4886,3.0,1138997700\n130,4896,4.0,1138999934\n130,4963,3.5,1138998187\n130,4971,3.0,1139004237\n130,4980,3.0,1139003560\n130,4993,5.0,1138985690\n130,4995,3.5,1149644325\n130,5014,3.5,1139003416\n130,5016,1.0,1149644286\n130,5049,3.5,1139003209\n130,5299,3.0,1139000247\n130,5349,4.0,1138998112\n130,5378,4.0,1138998084\n130,5418,3.5,1138998092\n130,5445,2.5,1138999669\n130,5650,4.0,1139002715\n130,5782,3.5,1138997691\n130,5816,4.0,1139000140\n130,5952,4.0,1138985686\n130,6218,4.0,1139002775\n130,6296,4.0,1138998020\n130,6333,4.0,1138997801\n130,6365,3.5,1139000080\n130,6377,3.0,1138997433\n130,6378,3.5,1139003694\n130,6440,3.5,1139004327\n130,6539,4.5,1138985554\n130,6664,3.0,1139003401\n130,6768,4.0,1139003109\n130,6782,4.0,1139003468\n130,6791,4.0,1139004312\n130,6807,3.0,1139003512\n130,6934,2.0,1139003706\n130,6947,3.0,1138998783\n130,6979,4.0,1139002333\n130,7153,5.0,1138985455\n130,7247,3.0,1139004044\n130,7373,1.0,1138998410\n130,8169,4.0,1139002015\n130,8368,4.0,1139002299\n130,8376,4.0,1140723873\n130,8580,3.5,1139004407\n130,8636,3.0,1138998609\n130,8644,3.0,1139003215\n130,8665,3.0,1138998402\n130,8879,3.5,1139002515\n130,8961,4.0,1138997373\n130,8970,4.0,1139002082\n130,33493,4.0,1139002726\n130,33794,3.0,1138997905\n130,40959,0.5,1139002372\n130,41566,5.0,1138998599\n131,306,5.0,992234269\n131,307,5.0,992234780\n131,355,3.0,992138514\n131,356,5.0,992138595\n131,593,5.0,992234666\n131,728,5.0,992293816\n131,1176,4.0,992234666\n131,1233,3.0,992234666\n131,1265,4.0,992234930\n131,1927,5.0,992293241\n131,1959,4.0,992138514\n131,2028,5.0,992234780\n131,2324,5.0,992293816\n131,2357,4.0,992234780\n131,2396,5.0,992293816\n131,2420,3.0,992138595\n131,2628,4.0,992138465\n131,2683,3.0,992139118\n131,2688,2.0,992139284\n131,2692,3.0,992234780\n131,2700,2.0,992294336\n131,2706,3.0,992139118\n131,2710,4.0,992139152\n131,2762,5.0,992294297\n131,2763,3.0,992294336\n131,2858,4.0,992234780\n131,2997,5.0,992139152\n131,3253,2.0,992293841\n131,3317,4.0,992232012\n131,3408,5.0,992139237\n131,3824,3.0,992139118\n131,3852,3.0,992232012\n131,3897,4.0,992232012\n131,3967,5.0,992232012\n131,3977,3.0,992139205\n131,3979,1.0,992232108\n131,3988,2.0,992294182\n131,3991,3.0,992232081\n131,4018,4.0,992232081\n131,4025,3.0,992232081\n131,4031,2.0,992232012\n131,4034,4.0,992232012\n131,4246,5.0,992324879\n131,4310,3.0,992324879\n132,126,4.0,1283414558\n132,153,3.5,1285244965\n132,296,4.5,1284656495\n132,356,4.5,1284656497\n132,364,3.0,1285312208\n132,377,2.0,1285312185\n132,590,3.5,1284656529\n132,593,3.5,1284656508\n132,595,3.0,1285312214\n132,1111,5.0,1283508912\n132,1270,2.5,1285312198\n132,1900,4.5,1283508886\n132,2028,2.5,1285244961\n132,2135,4.0,1283414426\n132,2174,4.0,1284132807\n132,2357,4.5,1283435971\n132,2395,5.0,1283509594\n132,2571,3.5,1285244968\n132,2843,5.0,1283509429\n132,2997,5.0,1284797391\n132,3000,5.0,1284797346\n132,3083,5.0,1284658827\n132,3396,4.0,1283413949\n132,3456,5.0,1283416290\n132,3481,5.0,1283423354\n132,3744,1.5,1283414100\n132,3996,4.0,1285244977\n132,4306,2.5,1285245057\n132,4312,5.0,1296286644\n132,4873,3.5,1296286126\n132,4964,4.5,1283419525\n132,4967,5.0,1296286559\n132,4973,4.5,1283421870\n132,4979,5.0,1283509486\n132,5135,4.5,1283414221\n132,5577,4.5,1288623777\n132,5878,4.0,1283421217\n132,5902,5.0,1283423129\n132,5971,5.0,1284797310\n132,6003,5.0,1296286136\n132,6016,4.0,1283419384\n132,6211,4.5,1283417628\n132,6571,4.0,1283421336\n132,6711,4.5,1283421710\n132,6867,4.5,1296286578\n132,7349,4.5,1283508978\n132,7842,4.5,1283414551\n132,8012,5.0,1283423388\n132,8014,4.5,1283421212\n132,8910,5.0,1284797097\n132,8949,4.0,1284656613\n132,27178,5.0,1283423342\n132,27255,2.5,1283580984\n132,27727,4.0,1283421625\n132,27904,3.5,1285241821\n132,30810,5.0,1283414079\n132,38886,4.5,1283423121\n132,39768,4.5,1284658407\n132,41527,4.5,1283419790\n132,42935,4.0,1283418860\n132,44555,4.5,1283419399\n132,44694,4.0,1283421294\n132,46578,5.0,1283423097\n132,48082,5.0,1283419800\n132,48394,4.0,1283421257\n132,48744,3.5,1283416148\n132,50872,4.0,1285241214\n132,52885,5.0,1284496773\n132,53189,4.0,1284496709\n132,55269,5.0,1283423181\n132,55442,5.0,1283419466\n132,55555,5.0,1283421604\n132,56274,4.0,1283417106\n132,56367,4.0,1283423157\n132,57243,5.0,1283419368\n132,57792,3.5,1283580966\n132,60069,3.5,1285241067\n132,61323,4.5,1284132727\n132,65261,5.0,1283416116\n132,66097,5.0,1284797425\n132,66371,4.5,1283436034\n132,66665,5.0,1283509716\n132,67267,3.5,1283416213\n132,68954,4.0,1283423105\n132,69757,4.5,1283419079\n132,71464,4.5,1283419604\n132,71899,5.0,1283419541\n132,72226,5.0,1283419533\n132,73344,5.0,1283508931\n132,73587,5.0,1283420183\n132,74486,4.5,1285335351\n132,74916,4.5,1283417405\n132,79132,3.5,1296285967\n132,79702,4.5,1284658506\n133,47,2.5,1416147036\n133,110,2.5,1416147058\n133,111,0.5,1416151676\n133,215,1.0,1416148560\n133,247,1.0,1416148907\n133,296,4.0,1416147064\n133,318,2.5,1416146851\n133,356,3.5,1416147092\n133,551,2.5,1416149693\n133,593,0.5,1416147032\n133,595,2.5,1416166708\n133,745,0.5,1416152168\n133,912,2.5,1416151751\n133,919,2.0,1416152164\n133,1028,3.0,1416149837\n133,1080,2.0,1416166759\n133,1088,1.5,1416166508\n133,1148,0.5,1416152160\n133,1172,5.0,1416151906\n133,1193,3.5,1416147099\n133,1198,0.5,1416146861\n133,1207,5.0,1416151382\n133,1222,0.5,1416167123\n133,1235,3.0,1416147759\n133,1247,2.0,1416151683\n133,1259,5.0,1416147060\n133,1265,2.0,1416147111\n133,1270,2.5,1416147040\n133,1271,2.0,1416149794\n133,1302,1.0,1416151786\n133,1354,2.0,1416148867\n133,1357,1.5,1416148459\n133,1527,0.5,1416150265\n133,1653,1.5,1416149433\n133,1704,4.0,1416147114\n133,1732,0.5,1416167074\n133,1784,0.5,1416149415\n133,1884,2.0,1416149825\n133,1968,2.5,1416147765\n133,2005,2.0,1416149643\n133,2081,4.0,1416152156\n133,2087,1.0,1416152218\n133,2090,2.0,1416152182\n133,2096,1.0,1416152187\n133,2297,3.5,1416151493\n133,2324,4.0,1416151832\n133,2329,3.0,1416147085\n133,2692,0.5,1416166658\n133,2739,2.0,1416149829\n133,2762,0.5,1416147045\n133,2918,2.0,1416147101\n133,2920,3.0,1416166743\n133,2959,3.0,1416149349\n133,3317,0.5,1416150251\n133,3897,2.0,1416148801\n133,3949,0.5,1416147215\n133,3977,1.0,1416151854\n133,4896,4.0,1416151762\n133,4973,3.0,1416147113\n133,4979,4.0,1416152326\n133,4993,0.5,1416152056\n133,5218,0.5,1416151747\n133,5464,1.0,1416150738\n133,5608,2.5,1416148463\n133,5816,4.0,1416151667\n133,5992,2.0,1416150569\n133,6218,0.5,1416151745\n133,6724,3.5,1416148555\n133,6874,0.5,1416151669\n133,6953,1.5,1416150273\n133,7034,2.0,1416149089\n133,7042,1.5,1416150896\n133,7147,0.5,1416148619\n133,7254,2.5,1416150482\n133,7323,0.5,1416148052\n133,7371,4.0,1416148500\n133,8368,4.0,1416149457\n133,8464,0.5,1416151035\n133,8533,3.0,1416148805\n133,8638,0.5,1416147953\n133,8970,4.0,1416149122\n133,27178,0.5,1416150855\n133,27721,2.0,1416148791\n133,30707,3.5,1416148256\n133,30810,2.0,1416151800\n133,33166,4.0,1416152334\n133,36535,1.0,1416149227\n133,39183,0.5,1416150529\n133,40629,3.0,1416148375\n133,40815,4.0,1416151712\n133,40819,1.5,1416167044\n133,40870,3.5,1416148707\n133,41566,1.0,1416151820\n133,43376,3.0,1416148514\n133,45722,2.0,1416151753\n133,46578,1.5,1416147889\n133,46723,1.0,1416150791\n133,47099,2.0,1416148883\n133,47423,1.0,1416150781\n133,48082,3.0,1416152236\n133,48394,0.5,1416147175\n133,53123,3.5,1416167222\n133,54001,4.0,1416151665\n133,55247,3.0,1416166737\n133,55269,4.0,1416151542\n133,55442,3.0,1416166854\n133,55444,1.5,1416148953\n133,56367,5.0,1416148322\n133,56587,2.0,1416151937\n133,57669,4.0,1416148127\n133,59995,4.0,1416149894\n133,60069,0.5,1416147095\n133,60950,0.5,1416151020\n133,63853,4.5,1416151462\n133,63876,2.0,1416148342\n133,64614,2.0,1416147321\n133,64701,2.0,1416150287\n133,64716,4.5,1416150651\n133,64957,2.0,1416151014\n133,65188,4.0,1416166822\n133,68157,5.0,1416147245\n133,69757,4.5,1416151741\n133,69844,4.0,1416151678\n133,71899,3.0,1416147749\n133,72011,0.5,1416149287\n133,72395,0.5,1416151053\n133,72641,4.0,1416148353\n133,73290,5.0,1416149511\n133,73321,1.5,1416152072\n133,79132,1.0,1416151620\n133,80969,4.0,1416150601\n133,81562,4.0,1416166749\n133,81591,3.0,1416148004\n133,81834,4.0,1416148157\n133,82459,0.5,1416151654\n133,85438,2.5,1416167104\n133,85612,3.5,1416151509\n133,86880,0.5,1416151960\n133,86882,1.5,1416151825\n133,88125,4.0,1416151647\n133,88810,3.0,1416147860\n133,89492,0.5,1416152127\n133,89864,2.5,1416148204\n133,90866,2.5,1416150536\n133,91500,1.0,1416151755\n133,91653,1.5,1416149735\n133,92259,2.5,1416151835\n133,94959,4.0,1416147324\n133,95510,0.5,1416151768\n133,96821,2.5,1416152378\n133,97304,3.0,1416151661\n133,97921,2.5,1416151890\n133,97938,4.5,1416148545\n133,98056,3.0,1416166671\n133,98961,4.0,1416151976\n133,99114,3.5,1416151617\n133,100383,1.5,1416151903\n133,100714,4.0,1416148059\n133,102792,1.0,1416150767\n133,102993,4.5,1416151920\n133,103048,4.0,1416166531\n133,103279,3.0,1416150940\n133,103372,0.5,1416166636\n133,104374,2.5,1416148065\n133,104841,2.0,1416152039\n133,104879,3.0,1416151814\n133,106100,4.0,1416146897\n133,106438,4.5,1416166856\n133,106441,5.0,1416151147\n133,106782,2.5,1416146932\n133,106916,1.0,1416152114\n133,106920,4.0,1416166520\n133,107141,2.0,1416146928\n133,107559,5.0,1416151292\n133,109374,2.0,1416146891\n133,110730,0.5,1416146955\n133,112290,2.5,1416146886\n133,116939,0.5,1416166965\n134,1,3.5,1361244876\n134,2,4.5,1361245855\n134,5,1.0,1361244162\n134,10,4.0,1361245744\n134,16,4.0,1361245969\n134,19,2.0,1361245876\n134,29,5.0,1361244735\n134,32,4.5,1361244318\n134,36,4.0,1361245841\n134,39,3.5,1361245791\n134,47,4.5,1361245167\n134,110,3.0,1361245653\n134,141,5.0,1361245810\n134,145,1.0,1361244182\n134,153,3.0,1361246182\n134,165,4.0,1361246178\n134,196,2.0,1361244165\n134,223,3.0,1361245161\n134,231,2.5,1361245725\n134,253,4.0,1361245770\n134,260,3.5,1361245346\n134,292,4.5,1361245780\n134,293,5.0,1361245227\n134,296,4.5,1361245254\n134,300,4.0,1361245883\n134,316,4.5,1361245717\n134,317,2.5,1361246029\n134,318,4.0,1361245496\n134,319,4.5,1361246780\n134,329,4.0,1361245761\n134,342,4.0,1361244190\n134,344,2.5,1361245689\n134,349,4.0,1361245733\n134,356,4.0,1361245469\n134,364,3.0,1361246175\n134,367,2.0,1361246185\n134,377,3.5,1361245691\n134,440,4.0,1361245940\n134,457,4.5,1361245658\n134,480,5.0,1361244829\n134,485,2.0,1361244151\n134,494,3.0,1361244172\n134,500,4.0,1361245714\n134,539,3.5,1361245759\n134,541,5.0,1361245289\n134,551,5.0,1361245119\n134,552,2.0,1361244168\n134,586,2.5,1361245768\n134,587,3.5,1361245754\n134,588,3.0,1361245676\n134,589,5.0,1361245153\n134,592,4.0,1361245665\n134,593,5.0,1361245451\n134,595,3.0,1361245704\n134,597,3.0,1361245727\n134,608,4.5,1361245683\n134,648,4.5,1361245694\n134,708,4.0,1361246034\n134,736,4.5,1361245707\n134,778,4.5,1361245287\n134,780,4.5,1361245661\n134,910,3.0,1361245112\n134,924,4.0,1361244392\n134,950,2.5,1361245321\n134,1036,3.5,1361245315\n134,1041,4.5,1361245448\n134,1073,5.0,1361245751\n134,1079,5.0,1361244502\n134,1080,5.0,1361245220\n134,1094,3.5,1361244188\n134,1097,4.0,1361245730\n134,1101,3.0,1361245892\n134,1127,4.0,1361245079\n134,1136,5.0,1361244634\n134,1175,4.5,1361245258\n134,1193,4.5,1361245538\n134,1196,4.5,1361245293\n134,1197,4.0,1361245241\n134,1198,5.0,1361245317\n134,1199,4.5,1361245323\n134,1200,5.0,1361244548\n134,1206,4.0,1361245326\n134,1208,3.0,1361245847\n134,1210,4.5,1361245231\n134,1214,4.5,1361244541\n134,1215,4.0,1361245114\n134,1219,4.5,1361245942\n134,1220,4.0,1361245638\n134,1222,2.5,1361245888\n134,1233,2.5,1361244155\n134,1240,5.0,1361245348\n134,1242,2.0,1361244184\n134,1246,3.5,1361245921\n134,1247,4.0,1361246026\n134,1249,5.0,1361245566\n134,1257,4.0,1361246755\n134,1258,4.5,1361245265\n134,1259,4.0,1361245907\n134,1261,3.5,1361245133\n134,1265,3.5,1361245107\n134,1270,4.0,1361245236\n134,1275,3.0,1361244819\n134,1278,5.0,1361245157\n134,1285,5.0,1361244815\n134,1291,5.0,1361244571\n134,1307,3.0,1361244856\n134,1345,4.5,1361246286\n134,1350,4.0,1361246284\n134,1356,4.0,1361245916\n134,1370,4.0,1361246076\n134,1374,4.0,1361245275\n134,1376,4.0,1361244145\n134,1380,2.5,1361246019\n134,1387,4.5,1361245872\n134,1391,4.5,1361245977\n134,1394,4.5,1361245198\n134,1407,4.5,1361245983\n134,1517,4.0,1361245835\n134,1527,4.5,1361245150\n134,1573,3.5,1361245956\n134,1580,4.5,1361245709\n134,1584,3.5,1361245898\n134,1610,4.0,1361245881\n134,1625,4.0,1361245171\n134,1653,4.0,1361245961\n134,1663,4.5,1361246843\n134,1676,4.0,1361246089\n134,1721,3.0,1361245711\n134,1748,4.5,1361245204\n134,1917,3.0,1361245851\n134,1921,4.0,1361246998\n134,1923,5.0,1361245805\n134,1961,4.0,1361245795\n134,1968,4.0,1361244798\n134,1994,5.0,1361245189\n134,1997,4.5,1361245251\n134,2000,4.0,1361245990\n134,2001,3.0,1361244148\n134,2005,4.5,1361244814\n134,2010,4.0,1361245339\n134,2011,3.5,1361245934\n134,2012,3.5,1361245906\n134,2054,3.0,1361245975\n134,2072,3.0,1361244270\n134,2100,3.0,1361244186\n134,2109,4.0,1361246769\n134,2115,5.0,1361244574\n134,2132,5.0,1361245435\n134,2144,4.5,1361246955\n134,2160,4.0,1361245556\n134,2174,5.0,1361244489\n134,2288,3.5,1361245203\n134,2289,4.0,1361244842\n134,2291,4.5,1361245104\n134,2302,4.0,1361246094\n134,2311,4.0,1361244401\n134,2355,3.0,1361245894\n134,2492,3.0,1361244382\n134,2502,4.0,1361245071\n134,2504,4.5,1361244387\n134,2517,4.5,1361244758\n134,2571,4.0,1361245337\n134,2572,3.0,1361244291\n134,2580,4.0,1361246917\n134,2599,5.0,1361246976\n134,2617,3.5,1361245986\n134,2628,4.0,1361245740\n134,2640,4.0,1361246047\n134,2664,4.0,1361246291\n134,2683,5.0,1361245802\n134,2692,4.5,1361246015\n134,2710,4.5,1361245914\n134,2716,4.5,1361244865\n134,2762,4.5,1361245343\n134,2791,4.5,1361244871\n134,2797,3.5,1361245927\n134,2804,4.5,1361245467\n134,2858,4.0,1361245681\n134,2916,4.5,1361245911\n134,2918,5.0,1361245273\n134,2947,4.5,1361244879\n134,2959,4.0,1361245193\n134,2985,4.0,1361246745\n134,2987,4.5,1361245860\n134,2997,4.5,1361245214\n134,3039,4.5,1361244850\n134,3052,4.0,1361246037\n134,3081,4.5,1361246463\n134,3095,3.0,1361245531\n134,3101,4.0,1361244178\n134,3114,3.5,1361245129\n134,3175,4.5,1361244157\n134,3253,4.0,1361246747\n134,3471,4.5,1361245249\n134,3476,4.5,1361246347\n134,3499,4.0,1361245185\n134,3527,4.5,1361245137\n134,3534,5.0,1361244428\n134,3546,4.5,1361246695\n134,3552,4.5,1361246993\n134,3578,3.0,1361245074\n134,3623,4.0,1361245997\n134,3671,4.5,1361244873\n134,3676,4.5,1361246392\n134,3702,4.5,1361246719\n134,3703,5.0,1361245175\n134,3751,3.5,1361246024\n134,3793,4.5,1361245788\n134,3868,4.5,1361246775\n134,3948,3.5,1361246072\n134,3977,3.0,1361246008\n134,4011,4.0,1361245126\n134,4027,5.0,1361245134\n134,4034,4.0,1361245994\n134,4128,4.5,1361246435\n134,4226,5.0,1361245237\n134,4262,4.0,1361245147\n134,4306,4.0,1361244845\n134,4343,5.0,1361244590\n134,4427,4.5,1361245417\n134,4720,4.5,1361246288\n134,4833,4.5,1361246390\n134,4878,4.5,1361245165\n134,4886,3.0,1361244834\n134,4896,4.0,1361246057\n134,4963,4.5,1361245862\n134,4973,5.0,1361245145\n134,4979,4.5,1361247011\n134,4993,3.0,1361245076\n134,5294,4.0,1361246356\n134,5349,4.5,1361245858\n134,5378,4.0,1361246062\n134,5418,5.0,1361244793\n134,5445,4.5,1361245832\n134,5528,4.5,1361246669\n134,5574,4.5,1361244676\n134,5782,5.0,1361244688\n134,5952,3.0,1361245069\n134,6235,4.5,1361245563\n134,6323,5.0,1361246401\n134,6333,5.0,1361244857\n134,6365,4.0,1361246050\n134,6377,3.0,1361244810\n134,6379,4.0,1361244604\n134,6383,3.0,1361244379\n134,6502,4.5,1361244435\n134,6539,3.0,1361244837\n134,6755,4.5,1361246471\n134,6807,5.0,1361244643\n134,6874,5.0,1361247167\n134,7044,4.5,1361247220\n134,7104,3.5,1361244363\n134,7153,3.0,1361245067\n134,7438,5.0,1361245173\n134,7444,1.5,1361244337\n134,8169,3.5,1361244279\n134,8464,4.0,1361246742\n134,8810,4.0,1361246386\n134,8874,4.5,1361245123\n134,8914,4.5,1361246778\n134,8950,4.5,1361246646\n134,8961,3.0,1361244869\n134,27751,3.5,1361244267\n134,33004,5.0,1361244658\n134,33794,3.0,1361245093\n134,34405,5.0,1361244621\n134,40732,5.0,1361244531\n134,48394,5.0,1361244748\n134,48516,4.0,1361244808\n134,48774,4.5,1361245217\n134,49272,4.5,1361244801\n134,51255,4.0,1361245109\n134,53000,4.5,1361244438\n134,53468,4.5,1361246394\n134,53953,5.0,1361244346\n134,54286,4.5,1361244795\n134,55820,4.0,1361245196\n134,56757,2.5,1361246377\n134,57669,4.5,1361246902\n134,58559,2.5,1361245099\n134,59315,4.5,1361244827\n134,59387,4.5,1361246730\n134,59615,4.0,1361244568\n134,60069,3.0,1361244853\n134,62049,4.5,1361244367\n134,66934,2.0,1361245355\n134,68135,1.0,1361244352\n134,68157,5.0,1361245488\n134,68237,4.5,1361245186\n134,68358,4.0,1361244848\n134,68954,4.5,1361245434\n134,71057,4.0,1361244468\n134,71535,5.0,1361246441\n134,74324,4.0,1361245607\n134,74458,5.0,1361246568\n134,76093,4.0,1361245512\n134,76251,4.0,1361247081\n134,78499,3.0,1361245454\n134,79132,4.5,1361245301\n134,83134,4.5,1361246337\n134,88125,4.0,1361245571\n134,89745,5.0,1361244788\n134,91529,1.0,1361244804\n134,93510,4.5,1361244409\n134,93840,5.0,1361244516\n134,94864,5.0,1361244557\n134,94959,3.5,1361245472\n134,96079,5.0,1361244666\n134,96610,2.0,1361244831\n134,97757,2.0,1361244263\n134,99114,4.5,1361245398\n135,10,3.0,844995924\n135,18,4.0,844996129\n135,20,3.0,844995987\n135,21,3.0,844995924\n135,27,3.0,844996094\n135,65,1.0,844996036\n135,102,3.0,844996094\n135,104,3.0,844995987\n135,121,4.0,844996191\n135,135,1.0,844996017\n135,209,3.0,844996159\n135,637,3.0,844996036\n135,662,3.0,844996171\n135,736,1.0,844995935\n135,737,1.0,844996003\n135,747,2.0,844996017\n135,754,3.0,844996213\n135,762,3.0,844996036\n135,778,5.0,844996017\n135,818,2.0,844996139\n135,849,1.0,844996105\n135,1103,3.0,844996304\n136,1,4.5,1405977265\n136,104,4.5,1405977509\n136,260,4.5,1405975997\n136,318,4.0,1405975931\n136,364,4.5,1405977316\n136,500,3.5,1405977333\n136,586,3.5,1405977381\n136,588,4.5,1405977300\n136,595,4.0,1405977321\n136,780,4.0,1405977278\n136,912,3.0,1405975956\n136,953,4.0,1405977627\n136,1099,4.5,1405975538\n136,1196,4.0,1405977294\n136,1210,3.5,1405977273\n136,1265,3.0,1405977357\n136,1682,4.0,1405977426\n136,1968,1.0,1405977464\n136,2014,3.5,1405975561\n136,2135,3.5,1405975526\n136,2153,4.0,1405975484\n136,2394,4.0,1405975260\n136,2422,3.0,1405975376\n136,2628,4.0,1405977361\n136,2797,3.5,1405977493\n136,2926,2.0,1405975398\n136,3114,4.5,1405977436\n136,3461,3.0,1405975454\n136,3552,3.0,1405975219\n136,3578,5.0,1405977354\n136,3793,4.0,1405977391\n136,3991,3.0,1405975645\n136,4006,4.0,1405975439\n136,4306,5.0,1405977351\n136,4886,3.5,1405977432\n136,4896,4.5,1405977551\n136,4993,4.0,1405977327\n136,5349,4.0,1405977459\n136,5378,4.0,1405977563\n136,5952,4.5,1405977346\n136,6377,4.5,1405977449\n136,6535,3.5,1405975580\n136,6539,5.0,1405977419\n136,6663,3.5,1405975698\n136,6794,3.5,1405975826\n136,7153,4.0,1405977371\n136,8636,3.5,1405977595\n136,8961,4.0,1405977506\n136,34332,3.5,1405975837\n136,58559,4.0,1405977519\n137,10,4.0,946411786\n137,32,5.0,946412547\n137,50,5.0,946412158\n137,60,3.0,946411893\n137,260,5.0,946412230\n137,296,5.0,946412180\n137,349,4.0,946411786\n137,364,5.0,946412403\n137,367,5.0,946412262\n137,380,5.0,946411809\n137,531,3.0,946411129\n137,541,4.0,946412480\n137,588,4.0,946412403\n137,589,5.0,946412517\n137,590,4.0,946411646\n137,594,3.0,946412403\n137,595,5.0,946412430\n137,736,4.0,946411786\n137,898,4.0,946411959\n137,899,4.0,946412362\n137,910,5.0,946411987\n137,919,3.0,946412362\n137,952,4.0,946411786\n137,986,2.0,946411524\n137,1009,4.0,946411809\n137,1017,4.0,946411646\n137,1073,3.0,946411524\n137,1077,3.0,946412547\n137,1097,5.0,946412262\n137,1136,4.0,946411987\n137,1196,5.0,946412480\n137,1200,3.0,946412517\n137,1210,5.0,946411653\n137,1214,3.0,946412480\n137,1240,5.0,946412480\n137,1244,1.0,946412054\n137,1259,5.0,946411610\n137,1265,5.0,946411375\n137,1270,5.0,946412054\n137,1282,2.0,946412430\n137,1287,5.0,946411567\n137,1291,5.0,946411646\n137,1292,2.0,946412015\n137,1375,4.0,946411833\n137,1537,3.0,946412054\n137,1580,5.0,946411685\n137,1617,4.0,946412180\n137,1653,4.0,946412570\n137,1784,3.0,946412072\n137,1848,2.0,946412302\n137,1976,1.0,946411077\n137,2006,4.0,946411720\n137,2009,5.0,946412603\n137,2011,5.0,946412603\n137,2013,4.0,946411720\n137,2021,3.0,946412302\n137,2043,2.0,946411646\n137,2054,2.0,946411893\n137,2080,4.0,946412403\n137,2094,2.0,946411077\n137,2118,5.0,946411354\n137,2135,3.0,946411893\n137,2161,2.0,946412262\n137,2174,3.0,946412230\n137,2279,1.0,946411077\n137,2396,4.0,946412015\n137,2522,2.0,946411129\n137,2528,4.0,946411786\n137,2529,5.0,946412517\n137,2571,4.0,946412517\n137,2628,4.0,946411858\n137,2791,3.0,946412031\n137,2797,4.0,946412262\n137,2858,3.0,946411180\n137,2918,4.0,946411987\n137,2987,3.0,946411610\n137,3032,4.0,946412547\n137,3156,2.0,946412517\n137,3169,4.0,946411129\n137,5060,4.0,946412015\n138,1,2.0,1440379001\n138,50,4.0,1440379088\n138,260,4.0,1440379476\n138,296,4.5,1440379472\n138,318,4.5,1440379086\n138,356,4.0,1440378996\n138,480,2.5,1440378998\n138,527,4.0,1440379092\n138,780,0.5,1440379483\n138,858,5.0,1440379089\n138,924,5.0,1440379938\n138,1193,4.0,1440379520\n138,1201,4.0,1440380633\n138,1203,4.5,1440379345\n138,1206,4.0,1440380329\n138,1213,4.0,1440379097\n138,1221,3.0,1440379096\n138,1258,4.5,1440380325\n138,1270,4.0,1440379003\n138,1584,3.5,1440379423\n138,2028,3.0,1440379493\n138,2329,3.0,1440379257\n138,2571,3.5,1440379002\n138,2959,4.0,1440379242\n138,3578,2.0,1440379156\n138,3793,2.5,1440379164\n138,4226,5.0,1440379161\n138,4306,0.5,1440379157\n138,4886,0.5,1440379171\n138,4993,3.5,1440379148\n138,4995,4.5,1440379184\n138,5349,0.5,1440379177\n138,5388,3.5,1440380097\n138,5816,3.0,1440379205\n138,5952,3.0,1440379149\n138,5995,4.0,1440379563\n138,6016,3.0,1440379211\n138,6333,0.5,1440379198\n138,6377,1.0,1440379175\n138,6539,2.5,1440379166\n138,7153,3.5,1440379152\n138,7502,4.0,1440379262\n138,8360,0.5,1440379203\n138,8368,3.0,1440379816\n138,8636,0.5,1440379200\n138,8961,0.5,1440379805\n138,33794,4.0,1440379809\n138,44555,3.5,1440379269\n138,48516,4.5,1440379207\n138,48780,5.0,1440379248\n138,55247,3.5,1440379576\n138,58559,4.0,1440379179\n138,59315,3.5,1440379218\n138,68157,4.5,1440379255\n138,77658,4.5,1440379355\n138,79132,5.0,1440379245\n138,80463,3.5,1440379410\n138,80906,4.0,1440380773\n138,81845,3.5,1440379572\n138,86880,2.5,1440380767\n138,86911,3.0,1440380782\n138,88810,3.0,1440380741\n138,89904,1.5,1440380784\n138,90866,2.0,1440380751\n138,91529,5.0,1440379247\n138,95510,0.5,1440380709\n138,97938,3.0,1440380727\n138,99114,4.0,1440379643\n138,103249,2.0,1440380794\n138,104841,3.5,1440379950\n138,105844,3.0,1440380763\n138,106100,3.0,1440380757\n138,106782,4.0,1440380722\n138,109374,1.0,1440379581\n138,109487,5.0,1440379056\n138,112552,3.0,1440379431\n138,115713,4.0,1440379062\n138,116797,4.0,1440379059\n138,122882,3.5,1440379061\n138,122900,1.0,1440379297\n138,134170,3.5,1440379307\n139,110,3.5,1066860908\n139,318,3.5,1066860904\n139,333,4.0,1066860647\n139,342,4.5,1066860617\n139,480,4.5,1066861186\n139,541,4.0,1066861224\n139,589,3.0,1066861159\n139,785,2.5,1066860664\n139,852,2.5,1066860594\n139,1011,3.5,1066861087\n139,1097,4.5,1066861156\n139,1196,5.0,1066861128\n139,1206,2.5,1066861232\n139,1210,5.0,1066861138\n139,1240,4.0,1066861175\n139,1242,3.0,1066860858\n139,1258,4.5,1066860569\n139,1259,4.0,1066860889\n139,1270,4.0,1066861118\n139,1461,2.5,1066861049\n139,1517,4.5,1066860555\n139,1580,3.5,1066861243\n139,1584,5.0,1066861183\n139,1653,3.5,1066860612\n139,1704,4.5,1066860897\n139,1917,0.5,1066860579\n139,1958,3.0,1066860952\n139,1961,4.5,1066860883\n139,1968,3.5,1066860861\n139,2011,4.0,1066860601\n139,2100,2.0,1066860669\n139,2174,3.0,1066860559\n139,2268,5.0,1066860609\n139,2302,3.5,1066860675\n139,2324,5.0,1066860586\n139,2395,3.5,1066860623\n139,2529,3.0,1066861192\n139,2571,4.5,1066861121\n139,2712,2.0,1066860605\n139,2791,2.0,1066860946\n139,2804,5.0,1066860658\n139,2916,4.0,1066861215\n139,2918,3.0,1066860979\n139,3098,4.0,1066860886\n139,3147,4.5,1066860820\n139,3386,4.5,1066860900\n139,3408,4.5,1066860638\n139,3471,4.0,1066861168\n139,3538,4.5,1066860969\n139,3702,3.0,1066861237\n139,3994,3.5,1066861206\n139,4149,3.5,1066861079\n139,4226,4.5,1066860833\n139,4247,0.5,1066861031\n139,4290,3.0,1066861058\n139,4394,3.0,1066861052\n139,4532,0.5,1066861066\n139,4929,1.0,1066861099\n139,4995,4.0,1066860912\n139,5054,3.5,1066861201\n139,5308,4.5,1066861006\n139,5349,3.5,1066861152\n139,5360,3.5,1066861002\n139,5377,4.0,1066860838\n139,5445,4.5,1066861132\n139,5502,4.0,1066861171\n139,5989,4.0,1066860827\n139,6796,5.0,1066860848\n140,5,4.5,1398068239\n140,60,2.0,1398068334\n140,216,1.0,1398068296\n140,256,3.5,1398068279\n140,267,3.5,1398068429\n140,318,5.0,1398068779\n140,342,0.5,1398068255\n140,356,4.5,1398069548\n140,364,4.0,1398069877\n140,552,0.5,1398068232\n140,593,4.5,1398069545\n140,765,4.5,1398068376\n140,1197,3.5,1398068846\n140,1203,4.5,1398068810\n140,1513,2.0,1398068298\n140,2059,4.5,1398068475\n140,2329,3.5,1398068868\n140,2470,4.0,1398068249\n140,2565,1.5,1398068441\n140,3247,3.5,1398068320\n140,3564,3.5,1398068624\n140,4022,4.5,1398070519\n140,4306,4.5,1398069816\n140,4896,4.0,1398070559\n140,4963,4.5,1398069792\n140,5349,4.0,1398070498\n140,5445,3.0,1398070522\n140,5618,1.5,1398068815\n140,5816,3.0,1398070657\n140,5989,4.0,1398069787\n140,6218,1.5,1398068331\n140,6539,4.0,1398069800\n140,6942,3.0,1398070514\n140,8368,4.5,1398070576\n140,31658,4.0,1398070578\n140,57504,3.5,1398070653\n140,72641,3.0,1398070681\n140,74458,3.5,1398069668\n140,81845,3.0,1398069605\n140,81847,3.0,1398069703\n140,88125,3.5,1398069632\n140,97895,3.5,1398069387\n140,103801,2.5,1398069406\n140,104374,4.0,1398069369\n140,104841,4.5,1398069325\n140,106540,4.0,1398069540\n141,318,5.0,944933710\n141,349,4.0,956540824\n141,356,3.0,944933710\n141,480,4.0,944933847\n141,648,3.0,979428119\n141,1061,3.0,959003310\n141,1210,3.0,949293748\n141,1544,3.0,998014490\n141,1693,4.0,958707490\n141,1876,2.0,945056203\n141,2028,5.0,944933710\n141,2427,2.0,947534592\n141,2571,4.0,949293609\n141,2628,2.0,979428220\n141,2724,2.0,979428203\n141,2881,3.0,952206207\n141,3147,4.0,949293748\n141,3185,2.0,979428221\n141,3256,4.0,979428134\n141,3354,1.0,979428095\n141,3513,2.0,959003302\n141,3623,3.0,979428119\n141,3753,4.0,979428134\n141,3755,3.0,979428204\n141,3793,2.0,979428037\n141,3916,5.0,979428077\n141,4022,3.0,998014346\n141,4033,4.0,998014346\n141,4034,4.0,998014346\n141,4310,4.0,991081955\n141,4638,3.0,998014490\n142,1,4.0,997731606\n142,150,3.0,997098002\n142,260,2.0,997731322\n142,296,2.0,997731488\n142,344,1.0,997097547\n142,356,3.0,997097201\n142,593,5.0,997731460\n142,904,3.0,997731488\n142,909,3.0,997098002\n142,919,5.0,997731439\n142,1097,3.0,997731585\n142,1136,1.0,997731439\n142,1196,1.0,997731406\n142,1219,4.0,997731439\n142,1270,4.0,997098178\n142,1327,3.0,997097862\n142,1379,1.0,997097126\n142,1387,4.0,997731540\n142,1499,2.0,997097887\n142,1984,1.0,997097104\n142,2011,3.0,997098179\n142,2012,3.0,997098179\n142,2028,3.0,997731406\n142,2133,2.0,997097602\n142,2262,2.0,997097547\n142,2378,1.0,997097175\n142,2522,2.0,997097663\n142,2699,2.0,997098027\n142,2791,3.0,997097663\n142,2846,3.0,997097602\n142,2971,3.0,997097731\n142,3107,4.0,997098179\n142,3114,4.0,997731514\n142,3147,4.0,997731488\n142,3250,3.0,997097710\n142,3362,4.0,997097201\n142,3363,3.0,997097801\n142,3421,3.0,997097922\n142,3471,2.0,997731439\n142,3524,3.0,997098048\n142,3534,3.0,997097461\n142,3543,3.0,997731565\n142,4238,3.0,997097753\n142,4291,1.0,997097510\n142,4465,3.0,997097547\n142,4564,2.0,997097774\n142,4673,3.0,999350539\n142,4677,2.0,999350539\n142,4679,3.0,999350539\n142,4686,1.0,999350510\n142,4709,3.0,999350465\n142,4714,1.0,997097967\n142,4720,3.0,999350418\n142,4744,3.0,1001762787\n142,4784,2.0,1001762723\n142,4787,4.0,1001762723\n142,4803,3.0,1001762672\n142,4814,4.0,1001762651\n142,4830,3.0,1001762599\n142,4834,1.0,1001762575\n142,4835,2.0,1001762575\n143,47,4.5,1149649707\n143,101,5.0,1149650173\n143,160,1.5,1149647922\n143,173,2.0,1149648223\n143,225,1.0,1149648213\n143,296,4.0,1149649318\n143,318,4.5,1149651150\n143,353,3.0,1149647927\n143,356,5.0,1149649352\n143,370,1.5,1149648270\n143,432,1.0,1149648209\n143,480,3.0,1149649360\n143,522,1.0,1149650329\n143,527,3.5,1149651175\n143,593,4.5,1149649343\n143,778,4.5,1149651154\n143,832,3.5,1149648233\n143,920,5.0,1149647934\n143,1084,4.0,1149649643\n143,1089,4.5,1149649880\n143,1188,4.0,1149652279\n143,1206,5.0,1149649966\n143,1245,1.5,1149650037\n143,1247,4.5,1149650168\n143,1252,3.5,1149650138\n143,1258,4.5,1149649889\n143,1288,2.0,1149650080\n143,1304,4.0,1149647915\n143,1358,4.0,1149650028\n143,1380,3.0,1149648260\n143,1449,1.5,1149650110\n143,1653,1.0,1149648217\n143,1673,4.5,1149649730\n143,1729,4.0,1149650090\n143,1884,4.0,1149649531\n143,2011,3.0,1149647890\n143,2054,1.0,1149648220\n143,2329,4.5,1149651144\n143,2333,5.0,1149650313\n143,2502,4.5,1149649957\n143,2599,3.0,1149648257\n143,2858,4.5,1149651146\n143,2908,3.5,1149650126\n143,2959,4.5,1149649718\n143,3019,3.0,1149650334\n143,3949,3.5,1149649869\n143,4011,5.0,1149651197\n143,4034,3.5,1149648743\n143,4235,4.5,1149649478\n143,4262,3.5,1149649918\n143,4308,4.5,1149652281\n143,4848,0.5,1149650208\n143,4855,4.5,1149649979\n143,4886,3.0,1149648266\n143,4973,4.5,1149649456\n143,4979,5.0,1149649247\n143,5225,4.5,1149650154\n143,5391,4.5,1149649786\n143,5445,0.5,1149648226\n143,5669,4.5,1149651166\n143,6711,4.5,1149649208\n143,6874,5.0,1149649302\n143,6953,4.0,1149649945\n143,7147,5.0,1149649503\n143,7438,5.0,1149649305\n143,8645,4.5,1149649993\n143,8784,4.5,1149649885\n143,8873,4.0,1149651186\n143,8970,5.0,1149650013\n143,30810,5.0,1149650322\n143,32587,5.0,1149649858\n143,33166,4.5,1149651189\n143,33794,2.5,1149651161\n143,34437,3.0,1149650183\n143,39414,5.0,1149649189\n143,44191,5.0,1149649076\n143,45499,3.5,1149649117\n144,10,5.0,837455462\n144,21,2.0,837455574\n144,32,5.0,837455646\n144,39,3.0,837455602\n144,47,4.0,837455508\n144,150,3.0,837455152\n144,153,3.0,837455212\n144,165,4.0,837455201\n144,185,2.0,837455463\n144,225,4.0,837455538\n144,253,3.0,837455463\n144,266,4.0,837455648\n144,282,2.0,837455702\n144,288,3.0,837455510\n144,292,3.0,837455389\n144,296,5.0,837455154\n144,315,3.0,837455702\n144,316,3.0,837455360\n144,329,3.0,837455359\n144,337,4.0,837455765\n144,344,3.0,837455207\n144,349,5.0,837455205\n144,356,3.0,837455538\n144,364,5.0,837455538\n144,377,5.0,837455646\n144,380,3.0,837455155\n144,410,2.0,837455505\n144,420,1.0,837455574\n144,432,2.0,837455642\n144,434,3.0,837455389\n144,454,5.0,837455537\n144,457,5.0,837455389\n144,480,4.0,837455574\n144,500,3.0,837455700\n144,527,4.0,837455762\n144,553,3.0,837455769\n144,588,3.0,837455203\n144,589,5.0,837455602\n144,590,4.0,837455151\n144,592,3.0,837455149\n144,593,5.0,837455389\n145,10,5.0,845421721\n145,19,5.0,845421886\n145,32,5.0,845421966\n145,47,5.0,845421789\n145,110,4.0,845421721\n145,150,3.0,845421514\n145,153,5.0,845421597\n145,161,5.0,845421721\n145,165,5.0,845421597\n145,185,5.0,845421758\n145,208,3.0,845421721\n145,225,5.0,845421966\n145,231,5.0,845421636\n145,253,3.0,845421758\n145,292,4.0,845421721\n145,296,3.0,845421514\n145,300,1.0,845421838\n145,316,5.0,845421676\n145,317,5.0,845421966\n145,329,3.0,845421636\n145,344,5.0,845421597\n145,356,5.0,845421676\n145,364,5.0,845421789\n145,367,5.0,845421838\n145,377,5.0,845421789\n145,380,5.0,845421515\n145,410,4.0,845421838\n145,434,5.0,845421676\n145,480,5.0,845421676\n145,500,5.0,845421838\n145,587,5.0,845421838\n145,588,4.0,845421597\n145,589,5.0,845421789\n145,592,5.0,845421514\n145,593,5.0,845421636\n145,595,4.0,845421636\n145,597,5.0,845421886\n145,780,5.0,845421991\n146,1,5.0,1256071139\n146,150,4.0,1256071106\n146,153,2.0,1256071554\n146,165,3.0,1256071535\n146,260,5.0,1256071143\n146,318,4.5,1256071030\n146,344,2.5,1256071403\n146,356,4.0,1256071022\n146,364,5.0,1256071598\n146,377,2.5,1256071385\n146,380,2.5,1256071313\n146,435,3.0,1256070632\n146,457,4.0,1256071062\n146,480,4.0,1256071213\n146,494,3.5,1256070637\n146,520,4.0,1256070626\n146,524,3.5,1256070798\n146,543,3.0,1256070669\n146,588,5.0,1256071447\n146,592,4.0,1256071159\n146,593,4.0,1256071052\n146,733,4.0,1256071636\n146,736,3.5,1256071551\n146,780,3.5,1256071087\n146,1097,3.5,1256071515\n146,1196,4.0,1256071274\n146,1198,4.0,1256071242\n146,1210,4.0,1256071366\n146,1270,4.5,1256071235\n146,1302,4.0,1256070700\n146,1569,1.5,1256070731\n146,1580,3.5,1256071497\n146,1721,3.0,1256071301\n146,1831,1.0,1256070809\n146,2006,2.5,1256070651\n146,2028,4.5,1256071156\n146,2302,3.5,1256070622\n146,2478,3.5,1256070833\n146,2628,3.0,1256071434\n146,2683,4.0,1256071580\n146,2716,4.0,1256071454\n146,2762,3.5,1256071125\n146,2804,4.0,1256070692\n146,2881,2.5,1256070791\n146,2959,3.5,1256071570\n146,3105,3.5,1256070838\n146,3247,3.0,1256070819\n146,3421,4.5,1256070712\n146,4226,4.5,1256071259\n146,4306,4.5,1256071075\n146,4886,3.5,1256071278\n146,4963,4.0,1256071486\n146,5378,3.0,1256071619\n146,6377,4.5,1256071103\n146,6711,3.0,1256071561\n146,6874,3.0,1256071208\n146,7438,2.5,1256071348\n146,8360,3.0,1256071512\n146,8961,4.5,1256071187\n146,33493,3.5,1256071623\n146,33794,3.5,1256071306\n146,44191,4.0,1256071471\n146,48516,4.0,1256071373\n146,49272,3.5,1256071427\n146,51662,3.0,1256071632\n146,56367,3.0,1256071408\n146,58559,5.0,1256071081\n146,59315,3.5,1256071479\n146,59945,3.0,1256071414\n146,60069,4.0,1256071467\n146,66915,3.0,1256071118\n146,71102,4.0,1256071640\n146,71460,1.0,1256071015\n147,50,5.0,1405201558\n147,111,5.0,1405202753\n147,207,3.5,1405201255\n147,296,5.0,1405201686\n147,381,3.5,1405201272\n147,527,4.5,1405202775\n147,608,5.0,1405202743\n147,778,5.0,1405202767\n147,934,4.0,1405201296\n147,1199,3.5,1405202676\n147,1258,5.0,1405202787\n147,1556,2.0,1405201244\n147,1588,4.0,1405201311\n147,1665,3.5,1405201384\n147,2116,4.0,1405201249\n147,2123,4.0,1405201435\n147,2324,4.5,1405202640\n147,2542,5.0,1405202792\n147,2565,4.0,1405201348\n147,2686,3.0,1405201225\n147,2692,5.0,1405202772\n147,2858,4.5,1405202798\n147,3034,4.0,1405201300\n147,3155,4.0,1405201361\n147,3159,4.0,1405201319\n147,3396,3.0,1405201208\n147,3825,2.0,1405201342\n147,3949,4.0,1405201615\n147,4011,5.0,1405201762\n147,4306,4.5,1405202645\n147,6016,5.0,1405201578\n147,7323,5.0,1405202632\n147,8873,4.0,1405203154\n147,35836,1.5,1405201645\n147,40819,5.0,1405202727\n147,46578,5.0,1405201783\n147,56367,5.0,1405201523\n147,58559,4.0,1405201572\n148,29,3.5,1059603929\n148,32,4.0,1059603935\n148,40,4.5,1059507590\n148,52,4.0,1059504972\n148,58,4.0,1059504946\n148,145,2.0,1059530841\n148,172,2.5,1059504993\n148,185,3.0,1059604099\n148,232,4.5,1059603866\n148,329,4.0,1059604036\n148,364,4.0,1059604221\n148,480,4.5,1059604007\n148,492,3.5,1059604535\n148,585,2.5,1059530882\n148,588,4.0,1059604244\n148,589,3.5,1059507607\n148,590,3.5,1059507635\n148,596,4.5,1059604241\n148,648,4.0,1059604568\n148,780,3.5,1059603985\n148,903,5.0,1059604409\n148,904,5.0,1059604392\n148,913,4.0,1059604403\n148,919,4.5,1059604212\n148,924,5.0,1059604500\n148,934,3.5,1059603845\n148,950,3.5,1059604425\n148,1022,4.5,1059604253\n148,1028,5.0,1059505000\n148,1037,3.0,1059604127\n148,1097,5.0,1059604303\n148,1136,4.5,1059604684\n148,1172,5.0,1059680324\n148,1175,4.0,1059603920\n148,1208,5.0,1059504953\n148,1234,4.0,1059604733\n148,1247,4.0,1059504938\n148,1249,3.5,1059507495\n148,1252,5.0,1059604431\n148,1258,2.0,1059504978\n148,1261,3.0,1059531137\n148,1269,5.0,1059604396\n148,1278,5.0,1059604712\n148,1284,4.0,1059604455\n148,1288,4.5,1059505008\n148,1304,4.0,1059504930\n148,1391,2.5,1059604044\n148,1394,4.5,1059504950\n148,1449,4.5,1059604760\n148,1517,4.5,1059504984\n148,1544,3.5,1059604070\n148,1580,4.0,1059603838\n148,1584,3.5,1059603976\n148,1610,5.0,1059507616\n148,1617,4.5,1059604383\n148,1625,4.0,1059604479\n148,1653,4.0,1059603970\n148,1676,3.5,1059604059\n148,1690,3.0,1059604077\n148,1711,4.0,1059604605\n148,1732,4.0,1059604507\n148,1779,3.5,1059604123\n148,1909,3.5,1059604016\n148,1921,4.5,1059603952\n148,1923,4.0,1059507622\n148,2046,4.5,1059603988\n148,2053,2.5,1059604160\n148,2080,4.5,1059604227\n148,2085,4.0,1059604267\n148,2087,4.0,1059604258\n148,2116,4.0,1059531240\n148,2174,4.0,1059504959\n148,2184,4.5,1059604513\n148,2324,4.0,1059504997\n148,2571,4.5,1059603925\n148,2599,5.0,1059504967\n148,2628,2.5,1059604051\n148,2706,1.0,1059504922\n148,2797,4.5,1059504963\n148,2858,5.0,1059604705\n148,2986,3.5,1059530938\n148,2997,4.5,1059604716\n148,3175,4.0,1059603944\n148,3176,3.5,1059604467\n148,3256,4.0,1059507647\n148,3262,3.0,1059604600\n148,3362,4.0,1059604747\n148,3386,3.5,1059604495\n148,3462,5.0,1059507502\n148,3476,4.5,1059604531\n148,3481,5.0,1059604744\n148,3504,4.0,1059604730\n148,3671,4.0,1059604766\n148,3730,4.5,1059604436\n148,3897,4.5,1059604694\n148,3911,4.5,1059604772\n148,3977,3.0,1059530858\n148,3996,5.0,1059504987\n148,4105,3.0,1059531133\n148,4226,5.0,1059604413\n148,4306,5.0,1059604208\n148,4734,2.0,1059680407\n148,4835,4.0,1059507563\n148,4848,2.0,1059604523\n148,4878,4.0,1059604483\n148,4886,5.0,1059604199\n148,4896,4.0,1059531179\n148,4993,5.0,1059531227\n148,5013,3.0,1059604443\n148,5060,4.5,1059604726\n148,5291,5.0,1059604388\n148,5444,4.0,1059604248\n148,5670,4.0,1059507612\n148,5791,4.0,1059507522\n148,5816,5.0,1059604290\n148,5878,4.5,1059530804\n148,5900,4.0,1059530921\n148,5902,3.0,1059507478\n148,5944,3.5,1059530891\n148,5945,4.5,1059507529\n148,5952,4.5,1059531235\n148,5956,3.5,1059507573\n148,5995,5.0,1059507470\n148,6170,4.0,1059604204\n148,6195,4.0,1059531188\n148,6269,5.0,1059531274\n148,6303,3.0,1059604518\n148,6333,3.5,1059505089\n148,6365,4.5,1059505092\n148,6440,4.0,1059507519\n148,6502,4.5,1059505081\n148,6561,4.5,1059507486\n149,1,3.0,1436919660\n149,39,3.5,1436923278\n149,47,3.5,1436922267\n149,50,3.0,1436922260\n149,104,1.0,1436923406\n149,231,4.0,1436923238\n149,253,3.5,1436920137\n149,260,3.5,1436919731\n149,293,4.5,1436922129\n149,296,4.0,1436923208\n149,318,4.5,1436919800\n149,337,3.5,1436923463\n149,356,3.5,1436919682\n149,480,2.0,1436919678\n149,541,3.5,1436922091\n149,586,3.0,1436923262\n149,593,3.0,1436919666\n149,610,1.0,1436923874\n149,780,3.5,1436923201\n149,908,3.0,1436922845\n149,1089,4.0,1436923271\n149,1090,2.5,1436923492\n149,1103,3.5,1436924020\n149,1193,3.0,1436922838\n149,1197,3.5,1436923241\n149,1222,3.0,1436923341\n149,1230,3.0,1436921940\n149,1259,4.0,1436923357\n149,1265,4.0,1436921617\n149,1270,3.0,1436919693\n149,1274,3.5,1436923824\n149,1347,3.5,1436923836\n149,1393,4.0,1436920227\n149,1517,4.0,1436923318\n149,1527,4.0,1436923259\n149,1676,3.5,1436923511\n149,1682,3.5,1436923301\n149,1704,4.0,1436922946\n149,1732,2.5,1436923361\n149,1968,4.0,1436921723\n149,1982,3.0,1437092078\n149,1994,3.5,1436923701\n149,2011,4.0,1436923386\n149,2161,4.0,1436923670\n149,2288,4.0,1436923762\n149,2291,3.0,1436923336\n149,2329,4.0,1436921024\n149,2360,2.0,1436920748\n149,2485,3.5,1437092289\n149,2541,3.5,1436923731\n149,2571,3.5,1436919662\n149,2572,4.0,1436923608\n149,2700,4.0,1436923445\n149,2706,3.0,1436923311\n149,2761,4.0,1436920245\n149,2791,2.0,1436924332\n149,2858,3.5,1436921212\n149,2918,4.0,1436921919\n149,2959,4.0,1436920755\n149,2978,4.0,1436920187\n149,2997,3.5,1436921174\n149,3000,3.0,1436921241\n149,3039,3.5,1436923694\n149,3147,3.0,1436921204\n149,3176,4.0,1436924153\n149,3409,3.5,1436924169\n149,3535,3.5,1436923770\n149,3556,4.0,1436924041\n149,3617,2.5,1436923897\n149,3882,4.0,1437092262\n149,3949,2.0,1436921198\n149,3969,2.5,1436924129\n149,3979,0.5,1436923433\n149,4002,3.5,1436923904\n149,4011,4.0,1436922388\n149,4014,3.0,1436922147\n149,4016,3.5,1436924098\n149,4226,4.5,1436920885\n149,4246,4.0,1436921922\n149,4262,3.0,1436920788\n149,4299,3.5,1436924086\n149,4308,4.0,1436920104\n149,4624,1.0,1436924457\n149,4641,2.5,1436924064\n149,4755,5.0,1436921673\n149,4816,4.0,1436923923\n149,4878,4.0,1436922987\n149,4886,3.5,1436923292\n149,4896,3.5,1436923452\n149,4973,3.5,1436920698\n149,4974,3.5,1437092382\n149,5481,1.0,1436923801\n149,5618,4.0,1436920691\n149,5679,3.5,1436923718\n149,5903,1.5,1436923984\n149,5971,3.5,1436920875\n149,5989,4.0,1436923456\n149,6593,3.0,1436924288\n149,6711,4.0,1436921627\n149,6942,4.5,1436922164\n149,7153,3.5,1436921220\n149,7316,3.0,1437092225\n149,7361,3.5,1436921237\n149,7380,4.0,1437092174\n149,7438,3.5,1437092060\n149,7451,4.5,1436924226\n149,8528,3.5,1436924140\n149,8529,3.5,1436924164\n149,8644,1.5,1436920426\n149,8784,3.5,1436922210\n149,8874,3.5,1436923619\n149,8917,3.5,1436924295\n149,26662,4.0,1436920792\n149,27773,2.0,1436921197\n149,30707,3.0,1436921489\n149,31658,4.0,1436921101\n149,32587,4.0,1436923514\n149,33679,2.5,1436923970\n149,34048,3.0,1436924006\n149,34162,3.5,1436923949\n149,34332,4.0,1436920082\n149,35836,1.5,1436920434\n149,36529,4.0,1436921517\n149,38061,4.0,1436921503\n149,40815,4.0,1436920421\n149,42418,5.0,1436919996\n149,44199,4.0,1436924115\n149,45720,4.0,1436922084\n149,45722,3.0,1436920430\n149,46578,3.5,1436923611\n149,46976,3.5,1437092098\n149,48385,4.0,1436923884\n149,48394,3.5,1436920411\n149,48516,2.5,1436920881\n149,48780,3.5,1436920417\n149,49286,4.0,1437091824\n149,50872,3.5,1436919763\n149,51662,3.5,1436920406\n149,52281,3.5,1436924283\n149,53519,4.5,1436920262\n149,54259,4.0,1436921554\n149,54503,3.0,1436923971\n149,54995,3.0,1436924285\n149,55247,4.0,1436924188\n149,56152,4.5,1436921929\n149,56367,4.0,1436921552\n149,56949,3.0,1436924293\n149,58559,4.0,1436920675\n149,59369,1.0,1436922011\n149,60684,3.5,1436924083\n149,60950,4.5,1436921950\n149,61071,3.0,1437092283\n149,63082,3.0,1437092038\n149,63992,3.0,1437092357\n149,64614,3.0,1436922181\n149,65193,4.0,1437092257\n149,65261,3.5,1436924372\n149,66097,4.0,1436920173\n149,68135,4.0,1437092263\n149,68157,3.5,1436920649\n149,68954,3.5,1436921076\n149,69757,3.0,1436924009\n149,70286,3.5,1436923816\n149,71535,2.0,1436920701\n149,71899,1.0,1436920763\n149,72998,3.5,1436923666\n149,74458,3.5,1436921688\n149,76093,3.0,1436920657\n149,76251,3.5,1437092374\n149,78499,4.0,1436921474\n149,79091,3.0,1436920699\n149,79132,5.0,1436919794\n149,79702,4.0,1436920119\n149,80463,4.0,1436921703\n149,80549,3.0,1437092345\n149,80969,3.0,1436921599\n149,81591,4.0,1436922188\n149,81834,4.0,1436920710\n149,81845,3.0,1436920647\n149,81847,4.5,1436920279\n149,84152,4.0,1436921427\n149,86347,4.0,1436920752\n149,86377,4.5,1437091929\n149,86882,4.5,1436921192\n149,88125,4.0,1436920686\n149,88810,2.0,1436920889\n149,89745,2.0,1436922387\n149,89864,2.0,1436921750\n149,89904,5.0,1436920020\n149,90061,5.0,1436920568\n149,90866,2.0,1436921752\n149,91500,5.0,1436920212\n149,91529,4.0,1436920695\n149,91542,2.5,1436920661\n149,92535,4.5,1437091917\n149,93510,4.0,1436920162\n149,94959,3.5,1436921332\n149,96588,4.0,1436920032\n149,96821,4.0,1436920294\n149,97913,4.0,1436920703\n149,98809,3.0,1436920652\n149,99114,1.5,1436920644\n149,100034,4.0,1436921131\n149,103249,3.5,1436921987\n149,103539,4.0,1436920364\n149,104069,4.5,1437092404\n149,104374,5.0,1436920051\n149,106100,3.5,1437091813\n149,106487,4.0,1436921972\n149,106920,4.0,1436920062\n149,108190,4.0,1436921652\n149,109374,4.0,1436923001\n149,109487,4.0,1436922074\n149,111921,5.0,1436919931\n149,112138,4.0,1437091831\n149,112515,4.0,1436921568\n149,112552,1.5,1436919773\n149,112852,2.0,1436920459\n149,114180,3.5,1436920672\n149,114935,1.5,1436922811\n149,115617,4.0,1436919979\n149,115713,4.0,1436920008\n149,116797,5.0,1436919856\n149,116823,4.0,1436920668\n149,117176,4.0,1437091480\n149,117444,3.5,1436921034\n149,117533,3.0,1436920450\n149,121231,5.0,1436919828\n149,122882,3.0,1436919888\n149,127152,3.5,1436920456\n149,134853,5.0,1436919867\n150,1,3.0,1114306148\n150,2,3.0,1114306834\n150,5,2.5,1114308628\n150,10,4.0,1114306741\n150,19,3.0,1114305732\n150,21,3.5,1338710602\n150,23,2.0,1114307220\n150,25,4.0,1114306776\n150,31,2.5,1130905954\n150,39,2.5,1114306777\n150,44,1.0,1114308273\n150,45,1.5,1113906883\n150,50,4.5,1114306168\n150,60,2.5,1114309836\n150,69,2.5,1114307227\n150,70,2.5,1113906876\n150,71,3.0,1114310004\n150,95,3.0,1116309622\n150,104,5.0,1114307365\n150,110,4.5,1113907087\n150,112,4.0,1140424494\n150,145,2.5,1116309027\n150,153,3.0,1114306717\n150,165,3.5,1113907638\n150,170,2.5,1140424747\n150,172,1.0,1113906767\n150,174,3.0,1114307200\n150,180,3.0,1114306408\n150,185,3.5,1114306762\n150,196,1.5,1113907546\n150,208,0.5,1114306763\n150,216,4.5,1114308366\n150,227,2.5,1114307190\n150,231,3.0,1114306739\n150,256,2.0,1113907543\n150,260,4.5,1113907415\n150,288,3.0,1114306793\n150,292,3.0,1116309076\n150,296,4.5,1113907407\n150,316,4.0,1114306719\n150,318,5.0,1113907633\n150,327,2.0,1114307194\n150,333,3.0,1114307088\n150,339,1.5,1130906351\n150,342,1.0,1113906795\n150,344,3.5,1113907646\n150,349,4.0,1114306193\n150,356,4.5,1113907410\n150,364,3.0,1114306733\n150,367,3.0,1114306743\n150,376,4.0,1130905961\n150,377,3.5,1114306710\n150,380,4.0,1114306685\n150,432,2.0,1114309590\n150,435,2.5,1114309597\n150,442,1.5,1140424503\n150,457,4.0,1113907785\n150,480,3.5,1114306136\n150,500,1.5,1113907512\n150,508,2.5,1113907507\n150,520,0.5,1114305827\n150,539,1.5,1130906332\n150,541,3.5,1114306799\n150,544,2.5,1114309144\n150,548,3.0,1114309149\n150,586,2.5,1116309673\n150,588,3.5,1113907403\n150,589,3.5,1113907611\n150,590,3.0,1114305997\n150,592,3.0,1114306681\n150,648,3.5,1116308883\n150,733,3.5,1113907841\n150,736,4.0,1113907502\n150,780,4.0,1114306687\n150,784,3.0,1113907501\n150,785,3.5,1113907509\n150,786,2.5,1113907499\n150,788,3.0,1114306821\n150,799,3.0,1116309174\n150,805,4.0,1114306038\n150,809,3.0,1114309361\n150,829,1.0,1114309340\n150,832,3.5,1113907497\n150,836,3.0,1140424715\n150,852,3.5,1113907486\n150,858,3.5,1113907480\n150,999,4.0,1114309130\n150,1005,0.5,1114309343\n150,1020,3.0,1114308357\n150,1027,4.0,1114305648\n150,1036,4.0,1113907074\n150,1047,2.5,1116309093\n150,1061,3.0,1114306312\n150,1064,3.0,1114305646\n150,1073,2.0,1130906339\n150,1097,3.0,1114306755\n150,1126,3.0,1140424695\n150,1196,4.0,1114306016\n150,1198,4.0,1114306013\n150,1210,4.5,1113907413\n150,1240,3.5,1113907614\n150,1246,3.0,1114308753\n150,1259,4.0,1114306194\n150,1265,3.5,1114306439\n150,1270,4.0,1114306018\n150,1291,4.5,1113907080\n150,1302,4.0,1114306213\n150,1370,3.5,1116309029\n150,1371,2.5,1114308250\n150,1373,2.5,1114309788\n150,1374,2.5,1114306405\n150,1375,2.5,1113907467\n150,1376,3.0,1140424472\n150,1377,1.0,1113907471\n150,1391,3.5,1114308253\n150,1393,3.5,1114306247\n150,1396,4.0,1130905780\n150,1405,3.0,1114305651\n150,1407,3.0,1114307068\n150,1409,3.5,1114310411\n150,1429,3.5,1116308716\n150,1485,3.5,1114309780\n150,1500,2.0,1130905926\n150,1515,2.0,1140424671\n150,1517,3.0,1114306438\n150,1518,3.5,1114309794\n150,1527,4.0,1114306426\n150,1544,3.0,1114305802\n150,1552,3.5,1113907463\n150,1573,4.0,1116309089\n150,1580,2.5,1113907470\n150,1584,4.0,1113907464\n150,1588,1.0,1114309118\n150,1590,4.5,1114308333\n150,1597,3.5,1113907173\n150,1608,3.0,1114308258\n150,1610,4.5,1113907613\n150,1616,3.0,1130906048\n150,1617,3.0,1114306474\n150,1620,4.0,1114310407\n150,1625,4.5,1113906867\n150,1641,3.5,1113907621\n150,1644,2.5,1114305644\n150,1645,4.0,1113907448\n150,1653,2.0,1113907429\n150,1668,2.5,1114309570\n150,1673,3.0,1113906862\n150,1676,0.5,1114308962\n150,1682,3.0,1113907620\n150,1704,4.0,1114307286\n150,1721,4.5,1113907435\n150,1722,4.5,1130905849\n150,1732,3.0,1140424835\n150,1746,3.5,1114310162\n150,1748,4.0,1114306492\n150,1752,3.0,1114309965\n150,1777,4.0,1116309070\n150,1784,2.5,1114308739\n150,1792,3.5,1114308327\n150,1831,2.5,1114308323\n150,1833,3.0,1140424655\n150,1876,4.0,1140425339\n150,1892,2.5,1114309121\n150,1894,2.0,1140424652\n150,1895,3.0,1114309099\n150,1909,3.0,1116309060\n150,1917,4.0,1114306890\n150,1918,3.5,1114309094\n150,1923,3.0,1113907434\n150,1954,4.0,1114306335\n150,1961,3.0,1114308749\n150,1967,3.0,1140424926\n150,2000,3.5,1113907755\n150,2001,3.0,1113906820\n150,2002,3.0,1114309102\n150,2004,2.0,1114305796\n150,2005,3.0,1114306506\n150,2011,4.0,1113907624\n150,2012,4.5,1114309769\n150,2028,4.5,1113907849\n150,2042,1.5,1114309314\n150,2054,1.0,1113906789\n150,2058,3.5,1114306170\n150,2082,2.0,1114309106\n150,2114,1.5,1114306418\n150,2115,4.0,1114305720\n150,2194,4.0,1113906808\n150,2253,2.0,1114309083\n150,2273,3.5,1114309756\n150,2294,2.5,1114309081\n150,2321,2.0,1114308243\n150,2334,2.5,1140425276\n150,2335,4.0,1114308325\n150,2338,3.0,1130906021\n150,2353,4.0,1113906815\n150,2355,2.5,1114305999\n150,2376,3.0,1114309068\n150,2396,1.5,1130905942\n150,2420,3.5,1116309062\n150,2421,3.0,1140424614\n150,2422,3.5,1130906013\n150,2424,1.5,1114309074\n150,2485,2.5,1140424609\n150,2490,3.5,1116309095\n150,2496,3.5,1130906025\n150,2502,3.5,1114306322\n150,2505,3.0,1114308297\n150,2541,2.5,1116309105\n150,2567,1.0,1114305779\n150,2571,5.0,1113907848\n150,2572,2.5,1116309128\n150,2580,3.0,1114306340\n150,2605,2.5,1140425211\n150,2617,4.0,1113906772\n150,2628,3.5,1116308629\n150,2640,2.5,1116309195\n150,2683,3.0,1116309037\n150,2694,3.5,1114307128\n150,2701,2.0,1140424450\n150,2706,3.5,1113907439\n150,2707,3.0,1114310351\n150,2716,2.0,1114306803\n150,2722,2.5,1114308289\n150,2762,4.5,1113907594\n150,2763,3.5,1114306436\n150,2770,2.0,1114307063\n150,2797,3.5,1114306285\n150,2858,3.5,1113907596\n150,2881,4.0,1114309051\n150,2916,3.0,1113907447\n150,2918,4.5,1114306156\n150,2947,2.5,1114306272\n150,2948,2.5,1114306338\n150,2949,2.5,1114306349\n150,2953,1.5,1130906007\n150,2959,3.5,1114306253\n150,2987,2.5,1116309776\n150,2989,2.5,1114306511\n150,2990,3.0,1114309060\n150,2991,3.0,1114306459\n150,2993,2.5,1114306295\n150,2997,3.5,1140424443\n150,3005,3.0,1130905997\n150,3039,3.5,1114306175\n150,3052,2.0,1114306402\n150,3082,4.0,1114310339\n150,3146,3.5,1116308763\n150,3147,4.0,1113906817\n150,3173,4.0,1140424887\n150,3208,2.0,1114309274\n150,3253,3.5,1114308255\n150,3254,3.5,1114309045\n150,3256,4.0,1114306032\n150,3261,3.0,1116309257\n150,3301,3.5,1114310328\n150,3316,2.5,1140424586\n150,3408,2.5,1114306379\n150,3452,4.0,1140424566\n150,3466,2.5,1114309258\n150,3477,3.0,1140424569\n150,3509,3.0,1114309532\n150,3510,3.5,1114306035\n150,3534,3.0,1114307344\n150,3536,3.0,1116309150\n150,3578,4.5,1113907076\n150,3617,4.5,1114307106\n150,3623,3.0,1113907405\n150,3635,3.0,1114306306\n150,3638,2.5,1114307106\n150,3639,2.5,1114306483\n150,3698,3.0,1140424875\n150,3753,3.5,1113907398\n150,3793,4.0,1114306145\n150,3798,2.5,1114309035\n150,3821,2.0,1114305883\n150,3861,2.5,1114309231\n150,3863,0.5,1114307111\n150,3897,5.0,1147599034\n150,3948,4.0,1114306278\n150,3955,4.0,1114309240\n150,3959,2.5,1114309032\n150,3975,1.5,1114308565\n150,3977,2.0,1113906866\n150,3984,3.5,1114306448\n150,3994,2.5,1140425267\n150,3998,3.0,1114308424\n150,4018,2.0,1114309026\n150,4020,3.5,1114307255\n150,4023,2.5,1114309029\n150,4025,2.5,1114308990\n150,4027,0.5,1130905933\n150,4040,2.0,1114305880\n150,4149,3.0,1140425059\n150,4153,3.5,1114308399\n150,4214,2.0,1114309224\n150,4223,3.0,1114306129\n150,4225,4.0,1114306496\n150,4226,2.0,1113907418\n150,4228,2.5,1114308408\n150,4229,3.5,1114309507\n150,4238,3.5,1130905973\n150,4265,0.5,1114307260\n150,4321,2.5,1114308268\n150,4343,3.5,1114307108\n150,4344,4.0,1114309715\n150,4351,3.0,1116309087\n150,4369,3.5,1114305764\n150,4448,3.5,1114306435\n150,4489,4.0,1116309091\n150,4545,2.5,1114308411\n150,4571,3.5,1116309199\n150,4616,3.5,1114306196\n150,4638,2.0,1114309000\n150,4701,3.5,1116309074\n150,4718,4.0,1114310291\n150,4727,2.0,1116308745\n150,4734,3.0,1114305746\n150,4757,1.0,1114307240\n150,4814,3.5,1140425035\n150,4816,4.0,1114307100\n150,4866,2.0,1116309045\n150,4878,4.0,1114308881\n150,4896,1.5,1114306226\n150,4901,3.5,1114306208\n150,4951,3.0,1114309217\n150,4963,4.0,1114306024\n150,4980,3.0,1116308752\n150,4993,4.5,1113907089\n150,5010,3.0,1114308733\n150,5025,3.0,1114308377\n150,5081,2.5,1114308518\n150,5093,2.5,1114309202\n150,5171,2.0,1114309198\n150,5219,2.5,1114308375\n150,5282,3.0,1140425335\n150,5283,3.5,1130905875\n150,5312,2.5,1114309192\n150,5349,2.5,1114306144\n150,5377,3.0,1114306442\n150,5378,3.5,1114309684\n150,5400,4.0,1140424535\n150,5418,4.5,1113907084\n150,5445,0.5,1113906878\n150,5449,3.5,1114307235\n150,5459,2.5,1113907675\n150,5502,2.0,1130905878\n150,5574,3.5,1140425041\n150,5816,1.5,1114306240\n150,5872,4.0,1113907672\n150,5952,4.5,1113906770\n150,5956,3.0,1114308996\n150,6059,3.0,1116309023\n150,6188,4.0,1114306358\n150,6250,3.0,1140425340\n150,6264,2.5,1114307223\n150,6265,3.0,1114308502\n150,6287,4.0,1140425015\n150,6294,3.0,1140425023\n150,6322,3.0,1130905862\n150,6323,3.0,1114306263\n150,6333,3.0,1113907846\n150,6365,4.5,1114308731\n150,6373,3.5,1116309020\n150,6378,4.5,1113907652\n150,6383,2.5,1140425017\n150,6502,4.0,1114307356\n150,6537,3.5,1116309048\n150,6539,4.0,1113907082\n150,6541,2.5,1140425226\n150,6708,3.5,1140424531\n150,6711,4.5,1233053813\n150,6764,3.5,1114306451\n150,6893,4.0,1114306002\n150,6936,3.0,1114308384\n150,6944,3.0,1130906087\n150,7101,2.5,1114308481\n150,7153,4.5,1114306021\n150,7173,3.0,1140425006\n150,7254,4.0,1114306244\n150,7293,4.0,1114308810\n150,7325,3.5,1114309184\n150,7346,4.0,1116309043\n150,7360,3.5,1140425002\n150,7381,3.0,1114309640\n150,7439,4.0,1114308483\n150,7569,3.0,1114306250\n150,7570,3.5,1114310030\n150,7573,2.0,1140425213\n150,8010,4.0,1140425327\n150,8368,2.0,1114306190\n150,8376,4.0,1140424519\n150,8493,3.0,1114306172\n150,8528,4.0,1116309158\n150,8614,2.5,1114310016\n150,8622,4.5,1113907658\n150,8665,4.5,1114305992\n150,8874,3.5,1140424514\n150,8957,4.5,1114308477\n150,8968,3.0,1140425194\n150,8972,4.0,1140424981\n150,27338,3.0,1233053797\n150,27808,3.0,1114306375\n150,27821,3.0,1140424985\n150,33493,4.0,1130905770\n150,34048,2.5,1140424802\n150,34319,4.0,1130905845\n150,44199,4.0,1338710639\n150,47610,4.0,1338710597\n150,48516,5.0,1233053823\n150,49530,4.5,1338710592\n150,54286,4.0,1338710631\n150,74458,4.0,1338710628\n150,79132,5.0,1338710636\n151,2,4.0,847296918\n151,10,5.0,847296716\n151,19,3.0,847296838\n151,21,5.0,847296838\n151,32,5.0,847296863\n151,34,3.0,847296802\n151,39,3.0,847296863\n151,47,5.0,847296774\n151,50,3.0,847296838\n151,95,3.0,847297041\n151,110,4.0,847296748\n151,150,5.0,847296585\n151,153,1.0,847296625\n151,160,3.0,847296891\n151,161,5.0,847296716\n151,165,4.0,847296624\n151,173,1.0,847296918\n151,185,3.0,847296716\n151,208,4.0,847296716\n151,225,3.0,847296838\n151,231,4.0,847296653\n151,253,3.0,847296748\n151,266,3.0,847296891\n151,288,4.0,847296748\n151,292,4.0,847296686\n151,296,5.0,847296586\n151,300,3.0,847296802\n151,315,2.0,847296945\n151,316,5.0,847296653\n151,317,3.0,847296891\n151,329,5.0,847296686\n151,339,3.0,847296716\n151,344,3.0,847296625\n151,349,4.0,847296653\n151,350,4.0,847296918\n151,356,5.0,847296653\n151,357,5.0,847296863\n151,364,5.0,847296775\n151,367,3.0,847296774\n151,377,5.0,847296775\n151,380,4.0,847296586\n151,410,3.0,847296802\n151,420,3.0,847296863\n151,432,2.0,847296918\n151,434,4.0,847296686\n151,435,5.0,847296891\n151,440,3.0,847296891\n151,442,4.0,847296945\n151,454,4.0,847296748\n151,457,5.0,847296624\n151,474,4.0,847296945\n151,480,5.0,847296686\n151,500,4.0,847296774\n151,509,3.0,847296945\n151,527,5.0,847296863\n151,539,3.0,847296838\n151,553,3.0,847297041\n151,587,5.0,847296802\n151,588,3.0,847296624\n151,589,5.0,847296747\n151,590,3.0,847296584\n151,592,3.0,847296583\n151,595,3.0,847296653\n151,597,3.0,847296802\n152,1,3.5,1335947960\n152,6,4.0,1335948353\n152,10,1.5,1335948177\n152,21,3.5,1335948369\n152,25,0.5,1335948417\n152,32,5.0,1335947997\n152,47,5.0,1335948042\n152,50,5.0,1335948008\n152,95,3.5,1335948357\n152,110,0.5,1335947944\n152,111,3.5,1335948381\n152,135,1.5,1335899920\n152,150,3.5,1335947956\n152,161,4.0,1335948346\n152,185,1.5,1335948277\n152,208,1.5,1335948220\n152,231,2.0,1335948114\n152,253,2.0,1335948227\n152,260,4.0,1335947940\n152,288,2.0,1335948404\n152,293,4.0,1335948387\n152,296,4.5,1335947920\n152,316,4.0,1335948100\n152,318,4.0,1335947939\n152,349,3.0,1335948140\n152,356,3.0,1335900437\n152,357,3.5,1335948229\n152,367,4.0,1335948107\n152,377,3.5,1335948034\n152,380,3.5,1335947993\n152,434,1.5,1335948250\n152,454,3.5,1335948259\n152,457,4.0,1335947953\n152,480,3.0,1335947928\n152,500,2.5,1335948104\n152,541,4.5,1335948214\n152,586,2.5,1335948233\n152,587,2.5,1335948190\n152,590,3.5,1335947977\n152,593,4.5,1335947925\n152,597,2.0,1335948123\n152,608,4.5,1335948018\n152,733,2.5,1335948136\n152,736,1.0,1335948087\n152,750,3.0,1335900366\n152,778,2.0,1335948451\n152,780,4.0,1335947970\n152,924,4.0,1335948399\n152,1019,3.5,1335899984\n152,1036,3.5,1335948212\n152,1089,3.5,1335948295\n152,1090,3.5,1335900642\n152,1097,2.5,1335948126\n152,1136,4.5,1335948172\n152,1175,5.0,1335948656\n152,1193,3.0,1335948194\n152,1196,4.0,1335948015\n152,1198,3.5,1335948027\n152,1200,4.0,1335948282\n152,1206,3.5,1335948427\n152,1210,4.0,1335947973\n152,1214,4.5,1335948202\n152,1222,3.0,1335900442\n152,1240,3.5,1335948146\n152,1263,3.5,1335900563\n152,1265,4.0,1335947847\n152,1270,3.5,1335948037\n152,1272,2.5,1335900548\n152,1296,1.0,1335899988\n152,1476,2.0,1335900032\n152,1500,3.5,1335949082\n152,1517,1.5,1335948429\n152,1527,3.5,1335948270\n152,1580,4.0,1335948091\n152,1590,4.5,1335899996\n152,1635,0.5,1335900055\n152,1653,5.0,1335947506\n152,1680,3.5,1335899930\n152,1682,3.5,1335948443\n152,1704,2.0,1335948255\n152,1721,1.5,1335948097\n152,1732,4.0,1335949447\n152,1923,4.0,1335948327\n152,1961,3.5,1335948291\n152,2028,5.0,1335948073\n152,2324,3.0,1335900376\n152,2396,3.5,1335948379\n152,2431,2.0,1335900014\n152,2571,5.0,1335948000\n152,2628,4.0,1335948160\n152,2683,2.0,1335948728\n152,2706,3.5,1335948421\n152,2762,2.5,1335948068\n152,2858,4.5,1335948022\n152,2944,3.0,1335899937\n152,2959,4.5,1335948082\n152,2997,4.5,1335948262\n152,3148,2.5,1335899940\n152,3257,3.0,1335900020\n152,3354,4.0,1335899980\n152,3481,2.5,1335949482\n152,3578,4.0,1335900859\n152,3826,2.0,1335899953\n152,3897,3.0,1335900864\n152,3910,4.5,1335901493\n152,3967,3.0,1335901749\n152,3996,4.0,1335948374\n152,4002,1.0,1335899914\n152,4011,3.0,1335901184\n152,4027,5.0,1335949459\n152,4223,3.5,1335902247\n152,4226,4.0,1335901129\n152,4239,2.0,1335902212\n152,4306,3.0,1335900931\n152,4720,3.5,1335902192\n152,4848,3.5,1335947708\n152,4878,4.5,1335902334\n152,4886,3.5,1335901317\n152,4896,4.0,1335947815\n152,4963,3.0,1335901901\n152,4973,4.5,1335901843\n152,4993,4.0,1335901299\n152,4995,3.0,1335900924\n152,5010,3.5,1335947578\n152,5013,2.5,1335900026\n152,5060,1.5,1335900702\n152,5349,2.0,1335948558\n152,5418,4.0,1335900758\n152,5445,4.0,1335902338\n152,5816,4.0,1335947718\n152,5903,4.0,1335901882\n152,5952,4.0,1335901226\n152,5989,3.0,1335900942\n152,6300,2.0,1335901802\n152,6333,4.0,1335948546\n152,6365,4.5,1335948525\n152,6539,3.0,1335901347\n152,6711,4.0,1335947808\n152,6934,4.5,1335949597\n152,6942,3.5,1335901818\n152,6953,3.5,1335902114\n152,7022,2.0,1335901696\n152,7147,4.0,1335901712\n152,7153,4.0,1335900949\n152,7254,3.5,1335902217\n152,7323,4.0,1335949090\n152,7361,4.0,1335901633\n152,7502,5.0,1335900352\n152,8117,1.5,1335902266\n152,8368,4.0,1335902075\n152,8533,2.5,1335901682\n152,8636,3.5,1335948549\n152,8665,4.0,1335900762\n152,8798,4.0,1335902244\n152,8961,3.5,1335901169\n152,26614,3.5,1335947549\n152,27611,4.0,1335900965\n152,30707,2.5,1335900800\n152,30749,3.5,1335900784\n152,31410,5.0,1335900450\n152,32587,4.0,1335900991\n152,33166,3.0,1335901270\n152,33493,4.0,1335948529\n152,33794,4.0,1335900790\n152,34405,4.0,1335901026\n152,34542,3.0,1335901666\n152,36517,3.5,1335901976\n152,36529,3.5,1335901772\n152,38061,2.5,1335901278\n152,40815,4.0,1335902257\n152,40819,3.0,1335901584\n152,41566,3.5,1335947593\n152,41997,3.5,1335902045\n152,44191,2.0,1335900892\n152,44195,3.0,1335900898\n152,44555,4.5,1335900817\n152,45950,4.0,1335902087\n152,46578,4.0,1335901057\n152,46723,3.0,1335902209\n152,47491,2.0,1335901071\n152,48774,3.0,1335948539\n152,49272,4.0,1335901478\n152,49530,4.5,1335900652\n152,50068,4.0,1335901513\n152,50872,3.5,1335901202\n152,54001,4.0,1335902260\n152,54286,4.0,1335900754\n152,54997,4.0,1335901908\n152,55820,4.0,1335900919\n152,56174,4.0,1335948691\n152,56367,4.0,1335901293\n152,56782,3.5,1335901035\n152,57669,3.0,1335901274\n152,58559,4.5,1335900808\n152,59315,4.0,1335900880\n152,59369,3.0,1335901427\n152,59784,3.5,1335902094\n152,60069,4.0,1335900839\n152,63082,4.0,1335900886\n152,67255,3.5,1335947842\n152,68157,3.0,1335900445\n152,68237,4.0,1335900774\n152,68954,4.5,1335900872\n152,69481,4.0,1335900821\n152,69844,4.0,1335902035\n152,70286,3.5,1335901210\n152,72998,4.5,1335901466\n152,73321,4.0,1335948695\n152,74458,3.5,1335947751\n152,76093,3.5,1335947573\n152,78499,3.5,1335947706\n152,79132,4.5,1335947742\n152,80463,3.5,1335947732\n152,81834,4.0,1335947613\n152,81845,2.5,1335947556\n152,85414,4.5,1335947588\n152,85736,4.0,1335901372\n152,88125,4.0,1335947546\n153,1,5.0,1046739645\n153,32,5.0,1046740237\n153,34,4.0,1046739068\n153,110,3.0,1046738981\n153,147,4.0,1046739545\n153,170,5.0,1046739505\n153,224,3.0,1046739844\n153,296,5.0,1046740124\n153,306,5.0,1046740081\n153,307,5.0,1046740081\n153,489,3.0,1046739156\n153,546,1.0,1046739765\n153,760,5.0,1046739825\n153,912,5.0,1046740112\n153,920,5.0,1046739691\n153,932,5.0,1046739002\n153,1097,5.0,1046739044\n153,1136,5.0,1046740112\n153,1206,5.0,1046740286\n153,1210,4.0,1046739068\n153,1255,5.0,1046739622\n153,1259,5.0,1046740337\n153,1277,4.0,1046739622\n153,1498,5.0,1046739486\n153,1617,3.0,1046739028\n153,1682,4.0,1046739044\n153,1777,5.0,1046739964\n153,2116,5.0,1046739545\n153,2336,5.0,1046740238\n153,2396,4.0,1046740305\n153,2562,5.0,1046739545\n153,2571,4.0,1046740276\n153,2692,5.0,1046740162\n153,2762,5.0,1046740098\n153,2858,5.0,1046740238\n153,2959,4.0,1046740372\n153,2995,2.0,1046739622\n153,2997,5.0,1046740315\n153,3269,3.0,1046739925\n153,3799,1.0,1046739925\n153,3825,3.0,1046739825\n153,3897,5.0,1046740060\n153,4270,2.0,1046739622\n153,4367,4.0,1046739002\n153,4886,5.0,1046739947\n153,4973,5.0,1046740081\n153,5099,5.0,1046739645\n153,5605,4.0,1046738981\n153,5841,2.0,1046739947\n153,5952,5.0,1046740481\n153,6093,5.0,1046740361\n154,1,4.0,850917310\n154,3,4.0,850917346\n154,5,3.0,850917346\n154,7,3.0,850917346\n154,18,5.0,850917480\n154,52,5.0,850917383\n154,62,3.0,850917310\n154,85,4.0,850917507\n154,92,3.0,850917507\n154,107,4.0,850917436\n154,608,5.0,850917346\n154,637,3.0,850917416\n154,648,5.0,853249060\n154,661,5.0,850917416\n154,671,4.0,853249033\n154,673,4.0,850917554\n154,708,3.0,850917383\n154,711,3.0,850917460\n154,762,4.0,850917416\n154,780,5.0,853249233\n154,783,3.0,850917383\n154,806,4.0,850917687\n154,1060,5.0,853249301\n154,1391,4.0,850917706\n154,1393,4.0,853249189\n154,1405,4.0,850917917\n155,32,3.0,943350048\n155,110,4.0,943350687\n155,198,4.0,943350250\n155,260,5.0,943350048\n155,480,2.0,943350184\n155,527,5.0,943351044\n155,541,5.0,943350184\n155,589,4.0,943350184\n155,593,5.0,943350686\n155,750,3.0,943350048\n155,780,2.0,943350327\n155,908,4.0,943350749\n155,912,4.0,943350905\n155,924,4.0,943350292\n155,965,4.0,943350953\n155,1097,4.0,943350184\n155,1127,3.0,943350327\n155,1129,4.0,943350400\n155,1148,5.0,943350687\n155,1175,3.0,943350140\n155,1193,5.0,943351044\n155,1196,5.0,943350101\n155,1197,4.0,943350749\n155,1198,4.0,943350868\n155,1199,3.0,943350140\n155,1200,5.0,943350140\n155,1206,4.0,943350327\n155,1210,5.0,943350140\n155,1214,4.0,943350048\n155,1240,3.0,943350572\n155,1396,3.0,943350366\n155,1527,3.0,943350292\n155,1573,2.0,943350366\n155,1580,5.0,943350292\n155,1704,3.0,943350687\n155,1957,3.0,943350789\n155,1965,1.0,943350292\n155,2011,2.0,943350250\n155,2012,2.0,943350184\n155,2028,5.0,943350749\n155,2288,4.0,943350292\n155,2401,3.0,943350687\n155,2455,4.0,943350366\n155,2528,3.0,943350101\n155,2529,3.0,943350101\n155,2571,5.0,943350048\n155,2628,4.0,943350101\n155,2699,3.0,943350250\n155,2739,3.0,943350749\n155,2791,5.0,943350804\n155,2916,3.0,943350250\n156,36,5.0,1277430241\n156,372,4.0,1277429637\n156,485,3.5,1277429506\n156,508,5.0,1277430118\n156,585,0.5,1277429585\n156,785,4.5,1277429569\n156,802,4.5,1277429489\n156,1042,4.5,1277429611\n156,1271,4.5,1277429617\n156,1285,4.5,1277429566\n156,1572,4.5,1277429999\n156,1673,5.0,1277429498\n156,1722,0.5,1277429539\n156,1747,4.5,1277429559\n156,1884,5.0,1277429786\n156,2395,4.0,1277429514\n156,2770,1.5,1277429575\n156,2797,5.0,1277430139\n156,2858,5.0,1277430057\n156,3101,4.5,1277429528\n156,3255,5.0,1277429591\n156,3556,4.5,1277430041\n156,3717,0.5,1277429624\n156,3948,5.0,1277429905\n156,4239,4.5,1277429941\n156,4262,4.5,1277430276\n156,4776,5.0,1277429930\n156,4816,4.5,1277429977\n156,4975,5.0,1277430183\n156,5103,4.5,1277430169\n156,5577,5.0,1277429860\n156,8533,5.0,1277429834\n156,8910,5.0,1277430028\n156,48516,5.0,1277429950\n156,55280,5.0,1277429804\n156,55765,5.0,1277430198\n156,56367,4.0,1277430018\n156,60756,5.0,1277430103\n156,66665,4.0,1277429774\n156,69122,4.5,1277429880\n156,69481,4.5,1277429888\n156,70286,4.0,1277429869\n156,72226,5.0,1277430304\n156,74458,4.5,1277429818\n156,77561,0.5,1277430461\n157,1,3.5,1291598726\n157,2,2.5,1291654669\n157,10,3.5,1291598989\n157,12,2.0,1291598164\n157,32,4.0,1308343617\n157,34,1.0,1323623560\n157,47,3.5,1292893066\n157,50,4.0,1323549288\n157,160,3.0,1293113893\n157,165,3.0,1291598753\n157,208,2.0,1365940346\n157,235,4.5,1291599967\n157,260,3.5,1291598691\n157,267,2.5,1291598182\n157,293,4.5,1291599434\n157,296,4.0,1293212841\n157,316,3.0,1365939855\n157,344,1.0,1365940218\n157,367,1.0,1365940267\n157,370,2.5,1292452031\n157,377,3.0,1292893321\n157,466,2.5,1292452011\n157,480,3.0,1365940159\n157,485,2.5,1293113928\n157,527,3.0,1291599281\n157,541,3.5,1362937775\n157,551,4.0,1293016220\n157,586,3.0,1292893387\n157,589,4.0,1291598937\n157,648,3.5,1291598930\n157,733,3.0,1291598910\n157,736,2.5,1291598746\n157,741,4.0,1291599847\n157,778,4.0,1291599703\n157,780,3.0,1291598762\n157,924,3.5,1291654589\n157,1036,3.0,1292893393\n157,1097,3.0,1291598808\n157,1127,3.5,1293016236\n157,1196,3.5,1291598784\n157,1198,3.5,1291598908\n157,1200,4.0,1291599001\n157,1206,4.0,1291599826\n157,1208,4.0,1291599797\n157,1210,3.5,1291598625\n157,1214,4.0,1291654582\n157,1222,4.0,1291599448\n157,1240,4.0,1291598885\n157,1258,4.0,1291599736\n157,1261,3.5,1365893094\n157,1265,3.0,1292893377\n157,1270,4.0,1291598828\n157,1274,4.0,1291599916\n157,1291,3.5,1320685313\n157,1320,3.5,1293113883\n157,1387,3.0,1291654595\n157,1391,2.5,1291665492\n157,1517,3.5,1291599035\n157,1527,3.5,1292893137\n157,1544,3.0,1293109610\n157,1573,2.5,1291654674\n157,1580,3.0,1291598819\n157,1590,3.5,1323617866\n157,1653,4.0,1291599973\n157,1676,2.5,1292893513\n157,1682,4.0,1365891786\n157,1690,3.0,1292451944\n157,1721,3.0,1291599080\n157,1732,4.0,1344511098\n157,1923,2.0,1294526056\n157,1961,3.5,1292893076\n157,1991,3.0,1291598335\n157,2003,3.0,1292521972\n157,2012,3.5,1291654575\n157,2025,3.0,1365939990\n157,2028,3.0,1295793889\n157,2054,3.0,1344510238\n157,2115,3.5,1292893361\n157,2162,2.5,1291598407\n157,2167,2.5,1365941887\n157,2288,4.5,1355865691\n157,2291,4.0,1291599122\n157,2355,3.0,1291599023\n157,2363,3.0,1291598299\n157,2382,2.0,1365941508\n157,2383,2.0,1365941511\n157,2421,2.5,1291598091\n157,2455,4.5,1344510553\n157,2470,2.5,1292451929\n157,2502,3.0,1365939927\n157,2571,4.5,1295749331\n157,2628,2.5,1323618008\n157,2683,3.0,1365940395\n157,2692,4.0,1291599810\n157,2706,3.0,1291598945\n157,2710,3.5,1344510213\n157,2716,3.5,1291598880\n157,2762,4.0,1291598742\n157,2810,4.0,1344510970\n157,2858,4.0,1292540589\n157,2890,3.5,1293109639\n157,2959,4.5,1295749344\n157,2985,3.0,1292451917\n157,3000,4.5,1291599722\n157,3020,3.5,1323649448\n157,3113,1.0,1365941844\n157,3271,3.5,1292893831\n157,3441,3.0,1291598272\n157,3527,3.5,1291654702\n157,3535,4.0,1295663802\n157,3623,1.5,1291599091\n157,3793,3.5,1291598864\n157,3917,3.5,1291598320\n157,3977,1.0,1344510369\n157,4011,4.0,1320684776\n157,4022,3.5,1294526030\n157,4036,3.0,1291598302\n157,4084,3.0,1291598172\n157,4226,4.5,1295749327\n157,4306,3.0,1291598859\n157,4310,2.5,1292451959\n157,4367,2.0,1344510529\n157,4370,3.5,1291665526\n157,4454,4.5,1291666053\n157,4545,3.0,1291598243\n157,4718,2.5,1292451971\n157,4878,4.5,1295749346\n157,4886,3.5,1291598976\n157,4902,3.5,1295749296\n157,4963,4.0,1291598901\n157,4973,4.0,1291598941\n157,4993,3.5,1292893258\n157,5010,3.5,1293016263\n157,5146,4.0,1365939667\n157,5254,2.5,1365941890\n157,5349,3.0,1365939875\n157,5378,2.5,1323618006\n157,5418,3.5,1362938388\n157,5445,3.5,1293016283\n157,5618,4.5,1308343658\n157,5679,2.5,1344510472\n157,5690,3.5,1291600250\n157,5903,3.5,1292893873\n157,5952,3.5,1291598877\n157,6016,4.0,1312671459\n157,6218,1.5,1344510189\n157,6283,4.0,1291599840\n157,6333,3.0,1323623646\n157,6365,3.0,1365939971\n157,6373,2.5,1291665485\n157,6377,3.5,1291598862\n157,6378,4.0,1291665463\n157,6502,4.5,1291599986\n157,6537,3.0,1293016287\n157,6539,3.0,1365939907\n157,6863,3.5,1291665403\n157,6874,3.5,1323617840\n157,6934,2.5,1365939958\n157,7022,4.0,1344510959\n157,7090,4.0,1291599851\n157,7153,3.5,1291598673\n157,7254,4.0,1291665568\n157,7360,4.0,1330113012\n157,7361,4.0,1295583661\n157,7438,2.5,1291598696\n157,7454,1.5,1365941863\n157,7981,3.5,1292499258\n157,8012,4.0,1291600170\n157,8117,4.0,1291599997\n157,8157,4.0,1362938231\n157,8360,3.0,1291599019\n157,8361,2.0,1365941322\n157,8370,4.0,1344509737\n157,8636,3.0,1291598711\n157,8644,2.5,1365940004\n157,8665,3.5,1362938408\n157,8861,2.0,1291598416\n157,8874,3.5,1365939715\n157,8914,4.0,1291599978\n157,8950,4.5,1291599751\n157,8961,3.0,1291598639\n157,8984,2.0,1365941516\n157,8985,1.0,1365941909\n157,26547,3.5,1291644796\n157,27317,4.0,1355865366\n157,27773,4.5,1291599694\n157,27801,4.0,1323549425\n157,27831,3.5,1292893101\n157,30745,3.5,1291644922\n157,30793,3.0,1291654728\n157,31364,4.0,1291644715\n157,31658,4.0,1291644679\n157,31878,3.5,1344509648\n157,32078,3.0,1344510654\n157,32587,4.0,1291598768\n157,32840,4.0,1323540498\n157,33004,3.0,1292452004\n157,33493,2.5,1323618003\n157,33794,4.0,1362938402\n157,34048,2.0,1291665551\n157,34150,2.0,1365941993\n157,34405,3.5,1293109672\n157,35836,3.0,1293016154\n157,36529,4.0,1291599930\n157,37731,4.5,1292893813\n157,42632,4.0,1325041713\n157,44665,4.5,1295749334\n157,45499,3.0,1293016163\n157,45722,3.0,1365939913\n157,46723,4.5,1344509323\n157,47491,4.5,1295749355\n157,47937,3.0,1291599363\n157,48082,3.5,1295576379\n157,48385,3.5,1293016134\n157,48394,4.0,1291599055\n157,48516,4.0,1344510341\n157,48780,4.5,1295749321\n157,49272,3.5,1292893280\n157,51255,3.0,1295662855\n157,51662,3.5,1292893170\n157,52328,3.0,1297193695\n157,52885,4.5,1295749323\n157,52952,4.0,1325028444\n157,53318,4.0,1295663448\n157,53464,2.0,1365942000\n157,53468,3.0,1292893998\n157,53519,3.5,1362938651\n157,53996,2.5,1365941359\n157,54286,3.5,1362938391\n157,54503,3.5,1308343647\n157,55684,3.0,1362938622\n157,55721,3.5,1362938345\n157,55765,3.5,1362937651\n157,55820,4.0,1291599005\n157,56174,2.5,1365940028\n157,56367,4.0,1291599050\n157,57274,4.0,1291599897\n157,57504,3.0,1355865379\n157,57669,4.5,1344510907\n157,58295,3.5,1365891207\n157,58376,3.5,1292893005\n157,58559,4.5,1295749357\n157,59315,3.0,1291598709\n157,59369,4.0,1344509870\n157,59814,4.5,1320685381\n157,60069,3.5,1323617792\n157,60074,2.0,1291598421\n157,60684,4.5,1295749312\n157,61160,2.5,1323617992\n157,61240,4.5,1295749337\n157,62394,0.5,1365941829\n157,64614,4.5,1295749342\n157,65514,4.5,1291644683\n157,65642,4.5,1295749315\n157,66097,3.5,1344509879\n157,66130,3.5,1323965285\n157,67255,4.0,1365940059\n157,68157,4.0,1291598986\n157,68237,4.5,1295749325\n157,68358,4.0,1291599112\n157,68954,4.0,1291599027\n157,69122,4.0,1291599135\n157,69481,3.5,1330113001\n157,70286,4.5,1295749347\n157,71106,3.5,1355865641\n157,71135,4.0,1293109715\n157,71304,2.5,1293212820\n157,71535,3.5,1291665385\n157,72171,4.0,1362938608\n157,72378,3.0,1292521924\n157,72998,3.5,1291598631\n157,73808,4.5,1292890961\n157,74458,3.5,1365939711\n157,74789,3.0,1293016250\n157,76091,4.0,1323622639\n157,76251,4.0,1291654648\n157,77561,2.5,1291654739\n157,79132,4.5,1295749340\n157,79553,4.0,1369334534\n157,79702,4.5,1295749318\n157,80350,0.5,1291599117\n157,80463,4.5,1323549222\n157,80489,4.0,1330113072\n157,81417,3.5,1292893081\n157,81834,3.5,1369334448\n157,82242,4.0,1295146250\n157,82667,4.0,1323623436\n157,83349,1.5,1365942027\n157,84952,4.5,1309103313\n157,85179,4.5,1323559112\n157,85342,4.0,1365893313\n157,85414,3.5,1320684703\n157,85510,0.5,1344510080\n157,86190,3.0,1365940034\n157,86320,3.5,1323620427\n157,86345,4.0,1365939981\n157,86377,4.0,1365892488\n157,86892,3.0,1323622974\n157,87232,4.5,1323623618\n157,88125,3.5,1369334443\n157,88129,4.0,1325812510\n157,88140,2.0,1344510027\n157,88163,4.0,1344509722\n157,88744,3.5,1344509886\n157,89745,3.0,1355865600\n157,89774,4.0,1344511155\n157,89864,4.0,1323993937\n157,89904,4.0,1365892345\n157,90469,1.5,1365941495\n157,91529,4.0,1344509506\n157,92259,4.0,1365939614\n157,92535,4.0,1365939979\n157,93838,4.0,1356654885\n157,93840,4.0,1355865512\n157,93855,4.0,1365892088\n157,94780,1.5,1344510618\n157,94864,3.5,1355865522\n157,95510,2.5,1365941277\n157,96079,4.0,1365892481\n157,96610,4.5,1355865507\n157,97306,4.0,1367356289\n157,97752,4.0,1362937379\n157,97921,4.0,1365887059\n157,98607,4.0,1366064367\n157,102125,3.5,1369334582\n157,102445,4.0,1371067235\n158,319,4.0,1231502686\n158,327,2.0,1231502691\n158,481,3.5,1231502746\n158,1388,2.5,1231502784\n158,1957,4.0,1231502707\n158,1967,4.0,1231502676\n158,2004,3.5,1231502801\n158,2376,2.5,1231502861\n158,2412,4.0,1231502856\n158,2533,3.0,1231502866\n158,2643,2.0,1231502844\n158,3264,1.5,1231502789\n158,3386,3.5,1231502682\n158,3984,4.0,1231502808\n158,30810,4.5,1231502827\n158,54286,3.5,1231502773\n158,58559,4.0,1231503014\n158,60069,1.5,1231502994\n158,60293,1.5,1231503042\n158,61323,3.5,1231503157\n158,62956,4.0,1231503023\n159,10,2.5,1183519921\n159,25,4.5,1183519288\n159,34,2.0,1183519883\n159,47,3.5,1183519855\n159,50,4.5,1183519004\n159,62,3.5,1183519692\n159,72,0.5,1183519180\n159,76,3.0,1183518573\n159,110,4.0,1183519810\n159,111,4.0,1183518995\n159,150,3.5,1183519814\n159,165,3.5,1183519849\n159,180,3.0,1183519514\n159,231,1.5,1183519900\n159,253,1.5,1183519943\n159,260,5.0,1183518958\n159,265,4.0,1183519388\n159,296,4.5,1183518896\n159,318,5.0,1183518940\n159,329,2.5,1183519918\n159,344,2.0,1183519845\n159,349,2.0,1183519867\n159,356,4.0,1183519794\n159,364,3.5,1183519399\n159,367,1.5,1183519905\n159,377,3.0,1183519839\n159,380,3.0,1183519821\n159,434,0.5,1183519940\n159,457,3.0,1183519802\n159,480,4.0,1183519798\n159,491,1.5,1183518385\n159,497,3.5,1183519707\n159,500,2.0,1183519898\n159,527,4.5,1183518932\n159,539,2.0,1183519929\n159,541,5.0,1183518700\n159,587,2.5,1183519923\n159,589,3.5,1183519818\n159,592,3.0,1183519807\n159,593,5.0,1183518946\n159,597,3.0,1183519890\n159,608,4.0,1183518764\n159,733,2.5,1183519887\n159,745,3.5,1183519013\n159,780,3.5,1183519823\n159,799,3.0,1183518371\n159,800,4.5,1183519437\n159,858,4.0,1183518780\n159,903,4.0,1183519007\n159,904,5.0,1183518916\n159,908,4.0,1183518868\n159,912,5.0,1183518707\n159,913,4.0,1183518836\n159,923,5.0,1183518729\n159,933,4.5,1183518534\n159,1080,3.5,1183519667\n159,1097,3.0,1183519916\n159,1136,4.5,1183518852\n159,1148,4.0,1183519019\n159,1196,4.0,1183518962\n159,1197,4.5,1183518890\n159,1198,5.0,1183518903\n159,1204,5.0,1183518813\n159,1207,4.0,1183518995\n159,1208,4.5,1183518676\n159,1210,4.0,1183519833\n159,1213,4.0,1183518786\n159,1217,4.0,1183518912\n159,1221,4.5,1183518783\n159,1228,4.0,1183518901\n159,1233,4.0,1183518704\n159,1240,4.0,1183519937\n159,1252,5.0,1183518725\n159,1254,4.0,1183518995\n159,1262,4.5,1183518791\n159,1267,4.0,1183518842\n159,1270,4.0,1183519863\n159,1580,3.5,1183519595\n159,1586,3.0,1183518377\n159,1721,4.0,1183519927\n159,1907,3.5,1183519710\n159,1911,1.0,1183518395\n159,1952,3.5,1183519612\n159,1955,3.5,1183519234\n159,1965,4.0,1183518389\n159,1974,3.5,1183518591\n159,2000,4.0,1183519353\n159,2019,4.5,1183518936\n159,2028,4.5,1183519880\n159,2302,3.5,1183519734\n159,2329,4.5,1183518667\n159,2527,4.0,1183518536\n159,2571,4.0,1183518845\n159,2688,3.5,1183518403\n159,2762,3.0,1183519914\n159,2858,4.5,1183518664\n159,2959,3.5,1183518768\n159,3000,3.5,1183518894\n159,3019,4.0,1183518568\n159,3022,3.5,1183518778\n159,3037,4.0,1183519404\n159,3070,3.5,1183518550\n159,3089,3.5,1183518696\n159,3098,4.0,1183518519\n159,3104,2.5,1183519617\n159,3498,3.5,1183519611\n159,3551,4.0,1183519553\n159,3698,3.0,1183518491\n159,3703,4.5,1183519500\n159,3763,3.0,1183518579\n159,3836,4.0,1183519171\n159,4226,3.5,1183518849\n159,4235,3.5,1183518670\n159,4308,2.0,1183519684\n159,4327,4.5,1183519506\n159,4848,3.0,1183519713\n159,4878,4.0,1183518745\n159,4973,4.5,1183518660\n159,4993,4.5,1183518820\n159,5015,3.0,1183519658\n159,5060,4.0,1183519490\n159,5299,4.0,1183519731\n159,5952,4.5,1183518833\n159,5971,3.5,1183518857\n159,6016,3.5,1183518733\n159,6350,4.0,1183518710\n159,6711,2.5,1183519466\n159,6786,2.5,1183519224\n159,6807,3.5,1183519665\n159,6874,4.0,1183519198\n159,6942,4.0,1183519470\n159,7143,3.0,1183519269\n159,7153,4.5,1183518832\n159,7445,4.5,1183519537\n159,8645,4.0,1183519558\n159,8873,3.5,1183519681\n159,8966,1.5,1183519215\n159,26294,3.5,1183519761\n159,26662,4.0,1183519187\n159,27831,2.5,1183519282\n159,27838,4.5,1183519581\n159,30810,1.0,1183519374\n159,31878,1.5,1183519243\n159,36529,3.0,1183519455\n159,46578,4.0,1183519416\n159,48394,3.5,1183518878\n159,48516,3.5,1183518740\n159,51255,3.5,1183518799\n160,34,2.0,974256306\n160,36,4.0,974256106\n160,111,4.0,974255599\n160,280,5.0,974258204\n160,318,5.0,974256031\n160,339,4.0,974256766\n160,350,4.0,974258113\n160,356,5.0,974256558\n160,454,4.0,974258259\n160,457,5.0,974258079\n160,490,4.0,974258351\n160,527,3.0,974255503\n160,539,5.0,974256628\n160,586,3.0,974257089\n160,587,5.0,974256809\n160,593,3.0,974256051\n160,597,5.0,974256628\n160,832,5.0,974258127\n160,858,3.0,974258948\n160,1079,3.0,974257297\n160,1088,4.0,974258881\n160,1092,4.0,974258307\n160,1124,5.0,974259358\n160,1135,4.0,974257516\n160,1193,5.0,974255556\n160,1213,3.0,974256205\n160,1230,5.0,974258923\n160,1244,4.0,974258923\n160,1265,4.0,974258618\n160,1270,3.0,974257259\n160,1302,4.0,974257680\n160,1307,5.0,974257378\n160,1358,5.0,974258079\n160,1380,4.0,974258923\n160,1393,5.0,974258587\n160,1395,3.0,974257516\n160,1409,3.0,974256830\n160,1485,3.0,974256784\n160,1500,4.0,974256766\n160,1569,3.0,974256864\n160,1617,3.0,974258079\n160,1674,5.0,974257782\n160,1678,4.0,974256180\n160,1704,5.0,974256122\n160,1721,4.0,974258635\n160,1727,3.0,974256416\n160,1784,4.0,974256588\n160,1923,4.0,974257038\n160,1955,5.0,974258996\n160,1956,4.0,974257697\n160,1958,5.0,974257391\n160,1961,5.0,974257680\n160,1962,4.0,974257730\n160,1968,4.0,974257362\n160,2002,4.0,974256809\n160,2245,4.0,974257871\n160,2247,3.0,974257475\n160,2313,4.0,974257808\n160,2352,4.0,974257712\n160,2369,4.0,974257516\n160,2375,3.0,974257547\n160,2424,4.0,974257038\n160,2431,4.0,974256864\n160,2469,2.0,974258881\n160,2520,4.0,974259049\n160,2639,4.0,974258004\n160,2716,2.0,974257362\n160,2736,4.0,974257437\n160,2739,5.0,974257730\n160,2762,5.0,974258079\n160,2791,3.0,974255599\n160,2858,3.0,974255556\n160,2875,3.0,974258728\n160,2881,5.0,974258307\n160,2918,4.0,974257297\n160,2942,4.0,974258004\n160,2987,2.0,974255556\n160,3068,5.0,974257855\n160,3100,4.0,974256221\n160,3111,5.0,974257888\n160,3157,2.0,974257056\n160,3178,4.0,974256628\n160,3194,4.0,974259013\n160,3244,4.0,974258923\n160,3249,5.0,974258142\n160,3252,5.0,974256394\n160,3362,5.0,974258996\n160,3363,4.0,974258974\n160,3421,3.0,974259106\n160,3430,4.0,974259049\n160,3448,3.0,974257297\n160,3450,3.0,974256661\n160,3524,3.0,974257516\n160,3584,4.0,974255599\n160,3591,4.0,974257475\n160,3688,3.0,974257600\n160,3690,2.0,974257630\n160,3791,4.0,974258004\n160,3809,5.0,974256977\n160,3844,5.0,974257950\n161,2,4.0,837629692\n161,10,4.0,837629446\n161,11,4.0,837629659\n161,17,5.0,837629711\n161,21,3.0,837629516\n161,25,3.0,837629819\n161,31,3.0,837629820\n161,32,3.0,837629562\n161,36,4.0,837629925\n161,39,3.0,837629544\n161,44,3.0,837629757\n161,47,4.0,837629464\n161,48,3.0,837629866\n161,62,4.0,837629820\n161,95,4.0,837629733\n161,141,5.0,837629733\n161,145,3.0,837630800\n161,150,4.0,837629353\n161,153,3.0,837629381\n161,158,4.0,837629757\n161,160,3.0,837629544\n161,161,5.0,837629427\n161,163,4.0,837630040\n161,165,3.0,837629381\n161,172,4.0,837629757\n161,173,3.0,837629586\n161,181,3.0,837630800\n161,185,4.0,837629446\n161,204,3.0,837629733\n161,224,3.0,837629820\n161,225,4.0,837629488\n161,227,3.0,837629973\n161,231,3.0,837629407\n161,236,3.0,837629615\n161,237,3.0,837629940\n161,252,4.0,837629692\n161,256,3.0,837629757\n161,261,3.0,837629733\n161,266,4.0,837629562\n161,277,3.0,837629896\n161,292,4.0,837629427\n161,293,3.0,837629711\n161,296,3.0,837629353\n161,300,4.0,837629464\n161,315,3.0,837629586\n161,316,3.0,837629406\n161,317,3.0,837629516\n161,318,5.0,837629406\n161,329,3.0,837629406\n161,337,3.0,837629692\n161,339,3.0,837629446\n161,344,4.0,837629381\n161,349,3.0,837629381\n161,350,5.0,837629659\n161,356,4.0,837629488\n161,357,5.0,837629692\n161,364,3.0,837629516\n161,367,3.0,837629516\n161,368,5.0,837630040\n161,370,3.0,837630800\n161,377,5.0,837629562\n161,380,4.0,837629354\n161,410,5.0,837629464\n161,420,3.0,837629544\n161,434,3.0,837629427\n161,440,4.0,837629586\n161,442,3.0,837629711\n161,454,4.0,837629488\n161,457,5.0,837629427\n161,474,4.0,837629866\n161,480,4.0,837629488\n161,485,3.0,837630094\n161,500,4.0,837629586\n161,508,4.0,837629925\n161,509,4.0,837629733\n161,515,3.0,837629973\n161,539,3.0,837629615\n161,553,4.0,837629615\n161,585,3.0,837629925\n161,586,3.0,837629659\n161,587,4.0,837629615\n161,588,3.0,837629381\n161,589,5.0,837629544\n161,590,3.0,837629353\n161,592,3.0,837629353\n161,593,5.0,837629427\n161,595,3.0,837629407\n161,597,3.0,837629659\n161,608,3.0,837630040\n161,648,3.0,837630094\n162,3,2.0,852791965\n162,5,4.0,852791965\n162,6,3.0,852791965\n162,7,3.0,852791965\n162,17,4.0,852792058\n162,36,3.0,852791965\n162,52,5.0,852791994\n162,62,5.0,852792058\n162,64,3.0,852792308\n162,100,3.0,852792221\n162,118,3.0,852792392\n162,140,4.0,852792019\n162,141,5.0,852792058\n162,376,4.0,852791965\n162,494,3.0,852792107\n162,605,3.0,852792452\n162,608,5.0,852791965\n162,637,3.0,852792019\n162,648,3.0,852792058\n162,650,3.0,852792354\n162,707,3.0,852792246\n162,708,3.0,852791994\n162,719,3.0,852792246\n162,736,2.0,852792058\n162,780,3.0,852792058\n162,788,3.0,852791994\n162,805,3.0,852792221\n162,852,3.0,852792272\n162,1353,3.0,852792392\n162,1393,5.0,852792372\n163,1,3.0,1390767736\n163,19,0.5,1390776289\n163,110,4.0,1390766930\n163,150,4.5,1390766905\n163,153,0.5,1390767109\n163,260,4.0,1390766833\n163,296,3.0,1390766954\n163,318,5.0,1294084408\n163,344,1.5,1390767810\n163,356,5.0,1294158771\n163,367,2.0,1390767129\n163,457,4.0,1390766921\n163,480,3.5,1390766825\n163,527,5.0,1294084403\n163,586,3.5,1390776274\n163,588,2.5,1390767042\n163,589,2.0,1390766869\n163,592,2.5,1390766860\n163,593,4.5,1390766814\n163,648,3.0,1390776270\n163,743,0.5,1294063848\n163,780,3.0,1390766855\n163,858,5.0,1294084360\n163,1092,3.5,1294063744\n163,1196,4.0,1390767035\n163,1210,4.0,1390766848\n163,1221,5.0,1294084374\n163,1370,1.5,1390776630\n163,1704,4.5,1294158881\n163,1721,3.5,1390767124\n163,1735,4.5,1294064044\n163,1835,3.5,1294063913\n163,1882,1.5,1294063829\n163,1994,3.5,1390767684\n163,2028,4.0,1390767157\n163,2278,4.0,1294063761\n163,2324,3.0,1294158283\n163,2404,0.5,1294159272\n163,2412,0.5,1294063996\n163,2541,4.0,1294063793\n163,2571,2.0,1390766977\n163,2858,4.5,1294158301\n163,2997,4.5,1390767211\n163,3438,2.0,1294063921\n163,3578,3.5,1390767582\n163,3615,2.0,1294064126\n163,3717,3.5,1390776583\n163,3793,3.5,1390776260\n163,4718,2.5,1390776566\n163,4963,4.0,1390767742\n163,4993,3.5,1390767117\n163,5349,2.5,1390776249\n163,6059,0.5,1294064112\n163,6565,4.5,1294159057\n163,7153,3.0,1294158525\n163,8636,2.5,1390776545\n163,33493,3.5,1390776540\n163,55247,3.5,1390767791\n163,56174,1.5,1294158761\n163,60069,4.0,1294158603\n163,64034,4.5,1390768421\n163,66544,3.0,1294158232\n163,72378,0.5,1390767164\n163,73290,4.5,1320604494\n163,74688,2.5,1320602141\n163,78499,2.5,1294158583\n163,79132,2.5,1294064035\n163,82202,2.5,1294064607\n163,87485,1.5,1320618115\n163,88744,4.5,1321732673\n163,91077,3.5,1390776168\n163,92751,4.0,1390766615\n163,93422,4.0,1390767537\n163,97938,4.0,1390775823\n163,98809,3.5,1390767498\n163,103249,3.0,1390775312\n163,104337,4.0,1390775779\n163,104925,3.5,1390775955\n163,105844,4.0,1390766794\n163,106489,4.0,1390767502\n163,106782,4.5,1390767414\n164,1,3.5,1179531301\n164,10,4.0,1182287578\n164,104,4.0,1180653733\n164,110,3.0,1182619735\n164,111,4.5,1182619786\n164,223,4.5,1182287392\n164,231,2.0,1179531233\n164,260,3.0,1179531305\n164,293,4.0,1178928230\n164,296,4.5,1182619724\n164,317,1.0,1178927026\n164,318,4.5,1182619722\n164,364,4.0,1179530417\n164,441,4.0,1182287459\n164,480,3.0,1182620144\n164,608,4.5,1182619843\n164,609,2.0,1178926978\n164,788,2.5,1178926928\n164,904,3.5,1179031670\n164,908,4.5,1178927749\n164,913,4.0,1179891195\n164,922,4.0,1179030022\n164,954,5.0,1182619887\n164,1073,4.0,1182387701\n164,1089,5.0,1178927475\n164,1136,3.5,1179533887\n164,1203,5.0,1178927651\n164,1206,5.0,1178926943\n164,1207,4.0,1179031702\n164,1208,4.0,1182287518\n164,1210,2.5,1182619757\n164,1240,2.5,1182620184\n164,1265,4.0,1179531237\n164,1285,4.0,1178927539\n164,1517,4.0,1179531366\n164,1580,3.5,1179530356\n164,1688,3.0,1178926883\n164,1704,4.0,1182287580\n164,1722,3.5,1178926971\n164,1732,3.5,1182619909\n164,1907,3.0,1178926953\n164,1923,3.5,1179530384\n164,1968,4.0,1179031968\n164,2109,4.0,1178927123\n164,2321,4.0,1178927517\n164,2683,4.0,1179531258\n164,2791,4.0,1179890279\n164,2858,4.0,1180653109\n164,2947,4.0,1178927090\n164,3114,3.5,1178926925\n164,3253,3.5,1179890296\n164,3751,3.5,1179890318\n164,4022,4.0,1179530376\n164,4027,4.0,1179031032\n164,4306,4.0,1178928048\n164,4447,3.0,1178926889\n164,4641,4.5,1178927454\n164,4878,5.0,1179890521\n164,4973,4.0,1182619921\n164,4993,3.0,1179531357\n164,5349,3.5,1182619938\n164,5418,4.0,1178927008\n164,5810,3.5,1178926870\n164,5952,2.5,1179531309\n164,6218,4.0,1179031139\n164,6331,4.5,1182619942\n164,6373,3.5,1179891094\n164,6377,3.5,1179530369\n164,6502,3.5,1182619905\n164,7153,3.0,1178927037\n164,8360,2.5,1182620196\n164,8464,4.0,1182287570\n164,8600,4.0,1182287586\n164,8636,3.0,1182619936\n164,8665,3.5,1179531245\n164,8784,5.0,1178927228\n164,8961,3.5,1178927070\n164,26974,4.0,1182619873\n164,33166,4.0,1182387710\n164,34048,3.5,1182287590\n164,43396,3.0,1182619927\n164,45728,4.0,1182287395\n165,1,2.5,1111482682\n165,2,3.0,1111981462\n165,3,2.5,1111981538\n165,10,2.5,1111482847\n165,19,1.0,1111482570\n165,21,2.5,1111479425\n165,22,3.5,1111479044\n165,31,3.5,1111981801\n165,44,4.0,1111482102\n165,47,3.5,1111479971\n165,50,2.0,1111482816\n165,62,3.5,1111981437\n165,70,5.0,1111480089\n165,81,3.0,1111482441\n165,104,4.0,1111482096\n165,110,4.5,1111912930\n165,111,4.0,1111981448\n165,112,2.0,1111981621\n165,145,3.5,1111981751\n165,158,2.0,1111479041\n165,163,4.0,1111981715\n165,165,5.0,1111612298\n165,173,1.5,1111981610\n165,181,1.0,1111482443\n165,185,2.5,1111482873\n165,196,2.0,1111981642\n165,198,3.0,1111479127\n165,216,3.5,1111981940\n165,225,2.0,1111981559\n165,231,4.0,1111482094\n165,246,3.0,1111980924\n165,276,2.0,1111982099\n165,280,3.5,1111982190\n165,292,3.0,1111482854\n165,293,5.0,1111479305\n165,296,3.5,1111480525\n165,317,2.5,1111981484\n165,318,4.0,1111479639\n165,322,4.5,1111609877\n165,338,2.0,1111982333\n165,339,2.5,1111482645\n165,344,4.0,1111482800\n165,350,3.0,1111482557\n165,356,3.5,1111480611\n165,364,3.5,1111482824\n165,367,3.5,1111482856\n165,370,3.0,1111981697\n165,377,3.0,1111480633\n165,380,4.0,1111480618\n165,393,1.0,1111611009\n165,413,3.0,1111982342\n165,424,3.5,1111610567\n165,428,3.0,1111480423\n165,432,2.0,1111981613\n165,434,2.0,1111482554\n165,442,2.5,1111981478\n165,457,3.0,1111479900\n165,466,4.0,1111482079\n165,470,3.0,1111612047\n165,480,3.0,1111480613\n165,485,3.5,1111482300\n165,500,3.0,1111482850\n165,502,1.5,1111479498\n165,508,4.5,1111479855\n165,514,3.0,1111479736\n165,520,5.0,1111479064\n165,524,3.0,1111982109\n165,527,4.0,1120068294\n165,529,3.5,1111482724\n165,538,3.5,1111982281\n165,539,2.0,1111981315\n165,543,4.5,1111612357\n165,546,1.0,1111611453\n165,586,4.5,1111482718\n165,587,3.0,1111482864\n165,588,4.0,1111480626\n165,589,4.5,1113267986\n165,592,4.0,1111480537\n165,593,3.0,1111480609\n165,595,3.0,1111482813\n165,596,3.0,1111612353\n165,608,3.0,1111480631\n165,648,3.5,1111482809\n165,653,1.0,1111482551\n165,671,3.5,1111482370\n165,673,1.5,1111981824\n165,733,3.0,1111482833\n165,736,2.5,1111482822\n165,741,1.0,1112679125\n165,780,4.0,1111480621\n165,784,2.0,1111981662\n165,802,2.5,1111482731\n165,805,4.5,1111981721\n165,810,2.5,1111483539\n165,832,2.5,1111981626\n165,834,3.0,1111544586\n165,866,3.0,1111982104\n165,919,3.5,1111482179\n165,968,5.0,1111480014\n165,1022,3.0,1111981968\n165,1027,3.0,1111482392\n165,1032,3.0,1111982266\n165,1036,2.5,1111479916\n165,1047,3.0,1111981835\n165,1059,4.0,1111612225\n165,1061,2.5,1111610189\n165,1073,5.0,1111482359\n165,1092,2.5,1111981773\n165,1097,4.0,1111482860\n165,1198,4.0,1111482627\n165,1200,3.5,1111981454\n165,1208,3.0,1111981544\n165,1215,3.5,1111482290\n165,1222,2.0,1111981603\n165,1240,3.0,1111609894\n165,1257,1.5,1111479962\n165,1258,1.0,1111981565\n165,1259,3.5,1111479987\n165,1265,4.0,1111482033\n165,1270,3.5,1111481917\n165,1291,3.0,1111480417\n165,1307,2.5,1111482635\n165,1320,3.5,1111479101\n165,1333,2.5,1111981816\n165,1347,4.5,1111982292\n165,1370,2.5,1111480080\n165,1377,4.0,1111482012\n165,1380,2.0,1111479020\n165,1391,3.0,1111481945\n165,1393,5.0,1111612302\n165,1405,4.0,1111981890\n165,1430,2.5,1111544609\n165,1447,3.5,1111544605\n165,1485,4.0,1111981711\n165,1490,0.5,1111611335\n165,1500,4.0,1111482493\n165,1517,2.5,1111481904\n165,1527,4.0,1112176015\n165,1532,2.5,1111544615\n165,1544,3.0,1111482601\n165,1552,2.5,1111482228\n165,1562,0.5,1111982007\n165,1573,3.5,1111482648\n165,1580,2.5,1111609797\n165,1597,2.5,1111482168\n165,1599,3.0,1111481213\n165,1625,3.0,1111479081\n165,1632,2.5,1111544629\n165,1639,4.0,1111482544\n165,1645,2.5,1111482162\n165,1661,1.5,1111544643\n165,1681,0.5,1111611428\n165,1682,3.0,1111482297\n165,1704,4.0,1111479936\n165,1721,3.0,1111482007\n165,1729,2.0,1111981828\n165,1739,0.5,1111481183\n165,1747,1.0,1111482560\n165,1753,4.0,1111479403\n165,1777,3.5,1111482502\n165,1784,3.0,1111481912\n165,1805,2.0,1111982193\n165,1840,3.0,1111479764\n165,1863,3.5,1111610272\n165,1876,3.0,1111482039\n165,1882,1.0,1111982294\n165,1886,1.5,1111611940\n165,1917,5.0,1111481969\n165,1921,3.5,1111982185\n165,1923,3.5,1111482007\n165,1970,3.0,1112679242\n165,1972,3.5,1111482343\n165,1997,2.5,1111481937\n165,2003,3.5,1111981798\n165,2005,3.5,1111479677\n165,2012,2.5,1111481863\n165,2018,3.0,1111982351\n165,2025,2.5,1111612199\n165,2028,4.0,1111481983\n165,2054,3.0,1111479052\n165,2078,3.0,1111982010\n165,2081,2.0,1111479088\n165,2087,3.0,1111982307\n165,2115,3.0,1111482251\n165,2134,3.0,1111612190\n165,2174,3.5,1111479770\n165,2231,3.0,1111610238\n165,2232,5.0,1111609799\n165,2248,2.0,1111980163\n165,2253,3.5,1111480641\n165,2278,1.0,1111981918\n165,2302,3.0,1111481853\n165,2321,3.0,1111481929\n165,2329,4.5,1111480370\n165,2338,2.0,1111482351\n165,2353,4.0,1111479079\n165,2395,3.5,1111482199\n165,2420,4.5,1111479346\n165,2421,4.0,1111479353\n165,2422,3.0,1111479385\n165,2424,3.0,1111981819\n165,2449,3.0,1111610900\n165,2455,3.0,1111981837\n165,2462,3.0,1111481241\n165,2490,0.5,1111981929\n165,2502,3.0,1111479056\n165,2541,5.0,1111982121\n165,2571,5.0,1111480428\n165,2580,4.0,1111479966\n165,2617,3.5,1111481985\n165,2628,2.5,1111482668\n165,2662,2.0,1111482591\n165,2683,2.5,1111482027\n165,2686,4.5,1111482431\n165,2692,3.5,1111481961\n165,2699,3.0,1111479011\n165,2700,4.5,1111481861\n165,2706,3.5,1111481975\n165,2710,0.5,1111482114\n165,2716,3.5,1111981451\n165,2746,3.0,1111482574\n165,2762,5.0,1111480419\n165,2791,3.0,1111981616\n165,2797,4.0,1111482437\n165,2799,2.5,1111481181\n165,2804,2.5,1111482692\n165,2841,3.0,1111610514\n165,2845,0.5,1111544698\n165,2858,3.5,1111481873\n165,2881,1.0,1111982102\n165,2890,2.5,1111482060\n165,2916,3.0,1111481989\n165,2918,5.0,1111479924\n165,2953,3.5,1111482608\n165,2959,5.0,1111480653\n165,2979,2.0,1111544701\n165,2987,4.0,1111479767\n165,2997,3.0,1111482042\n165,3000,3.5,1111609915\n165,3020,4.5,1111479759\n165,3033,4.0,1111479682\n165,3046,2.0,1111544716\n165,3052,2.0,1111481749\n165,3081,2.0,1111482099\n165,3101,2.5,1111479106\n165,3147,4.0,1111479859\n165,3148,3.5,1111482598\n165,3160,3.5,1111981804\n165,3253,3.5,1111479715\n165,3255,3.0,1111482585\n165,3257,2.0,1111479356\n165,3271,3.0,1111479931\n165,3300,1.5,1111612105\n165,3328,3.5,1111482407\n165,3350,3.0,1120068354\n165,3354,0.5,1111982354\n165,3437,5.0,1111611824\n165,3438,3.0,1111611097\n165,3439,4.0,1111611099\n165,3440,2.5,1111611103\n165,3471,2.5,1111482158\n165,3481,3.0,1111481949\n165,3510,3.0,1111480425\n165,3535,2.0,1111982349\n165,3554,4.0,1112679158\n165,3555,3.0,1111982299\n165,3578,3.5,1111479902\n165,3593,0.5,1111610943\n165,3617,2.5,1111982357\n165,3623,0.5,1111479113\n165,3696,5.0,1111544780\n165,3751,2.0,1111482054\n165,3752,2.0,1111982324\n165,3761,2.5,1111976030\n165,3773,3.0,1111612043\n165,3774,3.5,1111612045\n165,3785,3.5,1111982301\n165,3793,4.0,1111481856\n165,3823,1.5,1111544774\n165,3863,2.5,1111982128\n165,3869,3.5,1111482367\n165,3897,3.5,1111479994\n165,3914,1.0,1111544796\n165,3916,3.0,1111610539\n165,3943,4.0,1111544813\n165,3948,2.0,1111482140\n165,3949,2.5,1111980153\n165,3973,0.5,1111611914\n165,3977,1.0,1111482127\n165,3996,5.0,1111481866\n165,4011,1.0,1111609765\n165,4019,3.5,1111609772\n165,4022,2.5,1111482063\n165,4025,1.5,1111479360\n165,4034,3.5,1111479094\n165,4054,3.5,1111974579\n165,4066,3.5,1111612079\n165,4105,3.0,1111609926\n165,4128,4.0,1111610175\n165,4217,2.5,1120068379\n165,4226,3.5,1111479248\n165,4235,4.0,1111980518\n165,4255,3.0,1111611899\n165,4262,2.0,1111609900\n165,4306,4.0,1111479940\n165,4369,2.0,1111482425\n165,4370,1.0,1111982123\n165,4446,3.5,1111482418\n165,4532,2.5,1120068461\n165,4533,4.5,1120068453\n165,4571,4.0,1111479751\n165,4616,3.0,1111610138\n165,4623,2.5,1111610270\n165,4630,5.0,1111611982\n165,4649,2.5,1111544905\n165,4720,3.5,1111610250\n165,4732,2.5,1111544926\n165,4734,2.5,1111482568\n165,4749,2.0,1111481171\n165,4750,1.5,1111481174\n165,4765,3.0,1111544922\n165,4775,2.0,1111481159\n165,4875,1.0,1111610955\n165,4878,3.5,1111479322\n165,4886,3.0,1111480753\n165,4963,3.0,1112862161\n165,4968,1.5,1111544939\n165,4995,3.5,1111610361\n165,5053,3.0,1111611965\n165,5080,2.5,1111609693\n165,5094,1.0,1111611733\n165,5095,3.0,1111612120\n165,5103,3.5,1111479713\n165,5106,1.5,1111611419\n165,5152,1.0,1111610214\n165,5165,3.5,1111480053\n165,5170,2.5,1111544956\n165,5294,1.5,1111610103\n165,5323,3.5,1111611803\n165,5329,2.0,1111545166\n165,5349,4.0,1111481920\n165,5378,0.5,1111981923\n165,5387,1.0,1111544973\n165,5418,2.0,1111479893\n165,5443,2.0,1111610890\n165,5445,3.5,1111479887\n165,5448,2.5,1111611144\n165,5464,1.0,1111483124\n165,5501,3.0,1111545003\n165,5502,4.5,1111982312\n165,5507,1.0,1111482454\n165,5531,2.5,1111544994\n165,5556,1.0,1111611741\n165,5562,2.0,1111544998\n165,5569,2.0,1111545007\n165,5577,3.0,1111612163\n165,5597,4.0,1111610879\n165,5609,0.5,1111611730\n165,5615,1.5,1111545018\n165,5625,1.0,1111479721\n165,5628,2.0,1111545012\n165,5630,3.0,1111480432\n165,5669,4.5,1111980113\n165,5679,3.5,1111609738\n165,5765,5.0,1111479691\n165,5880,0.5,1111611312\n165,5883,2.0,1111611979\n165,5901,2.5,1111545046\n165,5902,0.5,1111980416\n165,5903,3.5,1111480402\n165,5945,2.5,1111482091\n165,5955,5.0,1111479949\n165,5959,4.0,1111610222\n165,5962,0.5,1111611889\n165,5989,3.5,1111480414\n165,6016,3.0,1111479653\n165,6057,2.5,1111545061\n165,6063,4.5,1111479742\n165,6157,3.0,1112679205\n165,6188,4.0,1111610235\n165,6204,2.5,1111611955\n165,6218,2.5,1111609912\n165,6242,2.0,1111979893\n165,6284,0.5,1111479753\n165,6323,4.0,1111610524\n165,6333,3.5,1111479877\n165,6365,2.0,1111982019\n165,6378,1.5,1111610528\n165,6464,2.0,1111483520\n165,6482,0.5,1111611916\n165,6502,3.5,1111482107\n165,6587,0.5,1111481156\n165,6620,1.5,1111980536\n165,6731,4.0,1111480034\n165,6796,4.5,1111610549\n165,6827,2.0,1111481221\n165,6867,1.0,1111980432\n165,6870,3.0,1111980126\n165,6872,0.5,1111610819\n165,6874,5.0,1111480750\n165,6909,3.0,1111912447\n165,6936,2.5,1111482460\n165,6942,4.0,1111609760\n165,6947,1.0,1111482458\n165,6953,1.0,1111610395\n165,7022,3.5,1111609775\n165,7090,3.5,1111610377\n165,7117,3.0,1111611208\n165,7137,2.5,1111610228\n165,7139,3.0,1111980236\n165,7143,5.0,1111479870\n165,7160,1.5,1111479295\n165,7189,1.5,1111483453\n165,7254,3.5,1111479987\n165,7263,2.5,1111480374\n165,7315,2.0,1111611968\n165,7343,1.5,1112176029\n165,7360,4.0,1111480043\n165,7361,4.0,1111479326\n165,7387,1.5,1111480042\n165,7438,4.0,1111480654\n165,7445,4.0,1111480366\n165,7458,2.5,1111479400\n165,7802,4.0,1112679238\n165,7899,3.0,1111610107\n165,8130,3.0,1111544466\n165,8225,2.5,1111480022\n165,8360,4.0,1111480666\n165,8363,1.0,1111611403\n165,8366,2.0,1111979070\n165,8367,2.0,1112095574\n165,8372,1.0,1111611905\n165,8528,2.0,1111479699\n165,8529,3.5,1112078947\n165,8533,2.0,1111912388\n165,8534,2.5,1113813088\n165,8636,4.0,1111480382\n165,8641,2.5,1111479407\n165,8645,5.0,1111980134\n165,8665,3.5,1111479979\n165,8667,2.0,1111610219\n165,8720,2.5,1111611992\n165,8781,3.0,1111479704\n165,8783,1.5,1111479377\n165,8784,4.0,1111479298\n165,8798,4.0,1111610172\n165,8807,3.5,1111479419\n165,8810,1.0,1111479349\n165,8832,1.5,1111610198\n165,8835,1.5,1111479362\n165,8836,0.5,1111479487\n165,8839,2.5,1111481229\n165,8860,1.0,1111479436\n165,8861,0.5,1111479388\n165,8864,3.5,1111479342\n165,8865,1.5,1111479431\n165,8870,4.0,1111479473\n165,8874,4.0,1111480068\n165,8907,2.0,1111912408\n165,8908,1.0,1111479466\n165,8910,1.5,1111479442\n165,8911,2.5,1113813097\n165,8918,2.5,1111479446\n165,8937,4.5,1111479434\n165,8947,1.0,1111912422\n165,8957,4.5,1112176043\n165,8958,3.5,1120068362\n165,8961,3.0,1111479242\n165,8974,2.5,1112679141\n165,8984,1.0,1112862150\n165,9010,5.0,1111480338\n165,9018,2.5,1112078957\n165,27317,3.0,1111610390\n165,27604,2.0,1113411108\n165,27773,4.0,1111479561\n165,27808,3.0,1112679214\n165,27822,0.5,1111479464\n165,27838,3.0,1112679117\n165,27869,3.0,1113167865\n165,30749,1.0,1120068332\n165,30820,2.5,1112982315\n165,31221,3.5,1112679197\n165,31445,2.0,1111479484\n165,31696,2.5,1111479578\n165,31724,1.0,1111479503\n165,32587,4.0,1112840368\n165,33794,3.5,1120068275\n166,34,4.0,1064888506\n166,147,4.5,1064888637\n166,163,3.5,1064888606\n166,293,4.5,1064888812\n166,342,4.0,1064887336\n166,356,4.0,1064889082\n166,376,4.0,1064887032\n166,435,0.5,1064886959\n166,480,3.5,1064889111\n166,524,4.0,1064888483\n166,590,5.0,1064889120\n166,608,3.0,1064888510\n166,653,3.0,1064887021\n166,785,2.0,1064887460\n166,912,2.0,1064888582\n166,1242,5.0,1064887402\n166,1246,4.5,1064889089\n166,1393,4.0,1064889126\n166,1584,4.0,1064889136\n166,1676,3.0,1064889007\n166,1682,4.0,1064887297\n166,1732,1.0,1064887367\n166,1917,3.0,1064887265\n166,1968,4.0,1064889114\n166,2096,4.0,1064888456\n166,2302,4.0,1064887417\n166,2355,4.0,1064886953\n166,2797,4.5,1064887245\n166,3114,4.0,1064887231\n166,3404,3.0,1064888661\n166,3489,4.0,1064888994\n166,3578,5.0,1064887026\n166,3624,4.0,1064887949\n166,3751,3.0,1064887383\n166,3897,4.5,1064887435\n166,4223,4.0,1064889094\n166,4262,4.0,1064888885\n166,4367,2.5,1064888102\n166,4886,4.5,1064889159\n166,4963,3.5,1064887933\n166,5349,4.0,1064887939\n166,5445,4.5,1064887945\n166,5669,5.0,1064888495\n166,5952,4.5,1064888405\n166,5989,4.5,1064887927\n166,6156,4.0,1064888066\n166,6157,2.5,1064889000\n166,6287,3.0,1064888682\n166,6333,4.0,1064887923\n166,6383,2.0,1064888685\n166,6535,4.0,1064888374\n166,6539,4.5,1064887792\n166,6564,2.5,1064887823\n166,6595,4.0,1064887801\n166,6596,2.5,1064887827\n166,6686,2.0,1064888366\n167,480,5.0,954114978\n167,575,5.0,954115144\n167,1097,5.0,954114904\n167,1199,4.0,954115020\n167,1210,3.0,954114958\n167,1214,4.0,954114958\n167,1240,4.0,954114958\n167,1270,5.0,954114930\n167,2002,4.0,954053457\n167,2053,4.0,954053457\n167,2078,5.0,954053212\n167,2081,4.0,954115144\n167,2174,2.0,954053165\n167,2355,4.0,954115544\n167,2365,2.0,954115062\n167,2407,4.0,954114998\n167,2454,5.0,954115020\n167,2455,5.0,954115040\n167,2571,2.0,954114904\n167,2640,3.0,954114998\n167,2699,3.0,954115524\n167,2985,3.0,954114978\n167,3101,5.0,954051710\n167,3157,4.0,954115163\n168,1,5.0,848866772\n168,4,3.0,848879299\n168,20,2.0,848879311\n168,21,4.0,848879039\n168,32,3.0,848866720\n168,39,4.0,848866720\n168,50,4.0,848866691\n168,93,2.0,848879389\n168,110,3.0,848866642\n168,111,5.0,848866943\n168,122,3.0,848879277\n168,145,3.0,848879177\n168,150,4.0,848866570\n168,151,3.0,848879076\n168,153,3.0,848866602\n168,163,3.0,848879158\n168,164,3.0,848879389\n168,165,3.0,848866602\n168,173,1.0,848866744\n168,175,3.0,848879449\n168,196,2.0,848879076\n168,198,2.0,848879256\n168,204,3.0,848879090\n168,217,3.0,848879608\n168,225,3.0,848866720\n168,227,2.0,848879167\n168,234,2.0,848879242\n168,235,4.0,848866964\n168,237,3.0,848879151\n168,252,3.0,848879090\n168,255,1.0,848879412\n168,259,3.0,848879449\n168,260,5.0,848879311\n168,269,4.0,848879781\n168,287,3.0,848879874\n168,288,3.0,848866666\n168,292,3.0,848866631\n168,296,4.0,848866570\n168,300,4.0,848866683\n168,318,5.0,848866631\n168,322,4.0,848879585\n168,329,3.0,848866631\n168,333,2.0,848879115\n168,356,4.0,848866615\n168,357,3.0,848866720\n168,358,2.0,848879527\n168,364,4.0,848866666\n168,371,3.0,848879231\n168,377,4.0,848866653\n168,378,3.0,848879424\n168,380,3.0,848866570\n168,384,3.0,848879761\n168,391,3.0,848879900\n168,410,3.0,848866683\n168,417,4.0,848879377\n168,419,1.0,848879222\n168,420,1.0,848866720\n168,426,3.0,848879364\n168,427,3.0,848879256\n168,428,3.0,848879489\n168,432,3.0,848866744\n168,434,3.0,848866631\n168,440,4.0,848866730\n168,442,3.0,848866757\n168,445,3.0,848879489\n168,450,2.0,848879449\n168,454,3.0,848866653\n168,457,4.0,848866602\n168,474,4.0,848866744\n168,485,2.0,848879115\n168,489,2.0,848879333\n168,493,4.0,848879513\n168,500,3.0,848879030\n168,505,2.0,848879570\n168,508,3.0,848866772\n168,509,3.0,848866757\n168,510,2.0,848879661\n168,514,3.0,848879318\n168,515,4.0,848866861\n168,516,3.0,848879396\n168,519,1.0,848879299\n168,524,3.0,848879333\n168,535,3.0,848879349\n168,538,3.0,848879389\n168,540,2.0,848879201\n168,541,4.0,848879462\n168,553,3.0,848866772\n168,555,4.0,848879127\n168,569,3.0,848879585\n168,587,3.0,848866683\n168,589,4.0,848866653\n168,590,4.0,848866570\n168,592,3.0,848866570\n168,593,5.0,848866954\n168,597,3.0,848866683\n168,608,5.0,848866823\n168,639,3.0,848879799\n168,648,3.0,848866900\n168,750,5.0,848879829\n168,780,4.0,848866900\n168,912,5.0,848879874\n168,924,5.0,848879838\n168,1021,3.0,848879822\n168,1028,5.0,848879600\n168,1035,3.0,848879553\n168,1036,5.0,848866980\n168,1073,5.0,848879424\n168,1079,4.0,848879585\n168,1089,4.0,848879874\n168,1092,3.0,848879886\n168,1097,4.0,848879667\n168,1101,2.0,848879730\n168,1136,4.0,848879812\n168,1196,4.0,848879846\n168,1198,5.0,848879900\n168,1210,4.0,848879900\n169,1,4.0,1234228717\n169,60,1.5,1234227391\n169,262,3.5,1234228429\n169,274,2.0,1234227686\n169,502,3.5,1234227478\n169,527,5.0,1234228124\n169,780,5.0,1234228422\n169,838,3.5,1234228513\n169,914,3.5,1234228764\n169,1021,3.0,1234227487\n169,1197,4.0,1234228105\n169,1270,3.5,1234228754\n169,2059,4.0,1234227516\n169,2346,1.0,1234227572\n169,2422,3.5,1234227474\n169,2424,4.0,1234228215\n169,2571,5.0,1234228070\n169,2572,4.0,1234227791\n169,2762,4.5,1234228613\n169,2962,3.0,1234228370\n169,3114,3.5,1234228773\n169,3594,3.5,1234227692\n169,3791,2.5,1234227497\n169,3793,5.0,1234228796\n169,4016,4.0,1234228306\n169,4069,2.0,1234227463\n169,4306,5.0,1234228634\n169,4886,5.0,1234228604\n169,4896,3.5,1234228309\n169,4963,5.0,1234228703\n169,4993,5.0,1234228062\n169,4995,3.5,1234228640\n169,5103,4.5,1234228737\n169,5418,5.0,1234228624\n169,5816,3.5,1234228295\n169,5903,4.0,1234228827\n169,5952,5.0,1234228530\n169,5989,4.5,1234228679\n169,6333,5.0,1234228677\n169,6377,4.5,1234228584\n169,6378,5.0,1234228759\n169,6539,5.0,1234228608\n169,6593,4.5,1234228236\n169,6881,1.0,1234227698\n169,7139,3.5,1234227565\n169,7143,4.5,1234228728\n169,7153,5.0,1234228064\n169,7163,5.0,1234228200\n169,7444,3.5,1234227812\n169,8131,5.0,1234228470\n169,8360,5.0,1234228302\n169,8368,3.0,1234228925\n169,8373,2.5,1234227650\n169,8636,4.0,1234228789\n169,8643,3.0,1234228162\n169,8644,4.5,1234228488\n169,8665,5.0,1234228667\n169,8808,3.0,1234228178\n169,8961,4.5,1234228586\n169,8970,5.0,1234228592\n169,8982,3.5,1234228391\n169,26198,3.5,1234228341\n169,27808,3.0,1234227608\n169,31225,5.0,1234228749\n169,32587,4.0,1234228835\n169,33166,5.0,1234228978\n169,33794,5.0,1234228540\n169,34332,4.0,1234228501\n169,34405,5.0,1234228611\n169,36525,3.0,1234228242\n169,37475,4.5,1234228411\n169,40815,3.0,1234228944\n169,40819,5.0,1234228974\n169,42732,2.0,1234228185\n169,43936,4.0,1234227822\n169,44191,5.0,1234228823\n169,44665,4.5,1234228629\n169,45499,5.0,1234228476\n169,46578,2.5,1234229002\n169,47099,5.0,1234228254\n169,47610,5.0,1234228652\n169,48516,4.5,1234228857\n169,48774,5.0,1234228994\n169,48780,5.0,1234228867\n169,48982,4.5,1234228692\n169,49278,3.5,1234228981\n169,49530,5.0,1234228905\n169,50872,5.0,1234228589\n169,51935,5.0,1234228300\n169,52458,3.5,1234228417\n169,52722,4.5,1234228224\n169,53121,5.0,1234228245\n169,53123,3.0,1234228913\n169,53972,5.0,1234228427\n169,54001,3.5,1234228263\n169,54259,5.0,1234228383\n169,54286,4.0,1234228570\n169,54736,5.0,1234228757\n169,55290,4.5,1234227677\n169,56152,5.0,1234228437\n169,56174,4.5,1234227525\n169,56949,4.0,1234228168\n169,58299,5.0,1234228443\n169,58559,5.0,1234227999\n169,58803,5.0,1234227839\n169,59784,5.0,1234228650\n169,60069,3.5,1234228849\n169,60126,4.0,1234228440\n169,61729,4.0,1234228373\n169,63515,4.5,1234228843\n169,63859,5.0,1234227768\n169,64249,3.5,1234228257\n169,64957,3.5,1234228939\n170,29,2.5,1220532219\n170,524,2.5,1220532237\n170,616,2.0,1220532233\n170,849,1.0,1220532210\n170,1093,2.0,1220532230\n170,1240,3.0,1263219169\n170,1270,1.0,1263219174\n170,1272,3.0,1220532208\n170,1299,3.5,1220532234\n170,1373,4.0,1220532238\n170,1527,2.0,1263219159\n170,1682,3.0,1263219164\n170,1805,4.5,1220532240\n170,1962,1.5,1220532200\n170,2020,3.0,1220532223\n170,2078,2.0,1220532202\n170,2144,3.0,1220532233\n170,2355,2.5,1263219154\n170,2723,2.5,1220532222\n170,2881,2.5,1220532231\n170,3107,1.5,1220532229\n170,3174,3.0,1220532245\n170,3510,2.0,1220532233\n170,3702,3.0,1220532228\n170,3703,3.0,1220532205\n170,5952,3.0,1263219135\n171,16,5.0,950556329\n171,47,4.0,950996333\n171,110,5.0,950556269\n171,111,5.0,950556231\n171,223,5.0,950556680\n171,296,5.0,950996299\n171,555,5.0,950996381\n171,608,5.0,950996299\n171,785,5.0,950556788\n171,1034,5.0,950996358\n171,1089,5.0,950996299\n171,1093,3.0,950556231\n171,1179,3.0,950996333\n171,1198,5.0,950556329\n171,1213,5.0,950996299\n171,1466,4.0,950996299\n171,1500,4.0,950996381\n171,1513,4.0,950556889\n171,1729,5.0,950996333\n171,1732,4.0,950996358\n171,1747,3.0,950556329\n171,1805,3.0,950996381\n171,2231,4.0,950996408\n171,2268,4.0,950996408\n171,2301,4.0,950556329\n171,2336,5.0,950556723\n171,2355,4.0,950556652\n171,2395,5.0,950556889\n171,2396,5.0,950556911\n171,2541,4.0,950556680\n171,2598,3.0,950556889\n171,2599,5.0,950556705\n171,2683,3.0,950556611\n171,2686,4.0,951774844\n171,2688,2.0,951139528\n171,2694,4.0,950556652\n171,2699,4.0,950556611\n171,2702,4.0,950556911\n171,2707,4.0,950556611\n171,2710,2.0,950556652\n171,2716,3.0,950556751\n171,2724,4.0,950556889\n171,2734,4.0,950556821\n171,2770,4.0,950556652\n171,2858,5.0,950556611\n171,2881,3.0,950556705\n171,2987,3.0,950556960\n171,3039,3.0,950556231\n172,17,4.0,843290928\n172,32,3.0,843290818\n172,34,3.0,843290717\n172,50,5.0,843290785\n172,107,5.0,843291455\n172,141,3.0,843291407\n172,150,4.0,843290451\n172,296,5.0,843290451\n172,300,4.0,843290752\n172,318,4.0,843290567\n172,356,3.0,843290566\n172,364,3.0,843290717\n172,377,3.0,843290752\n172,457,4.0,843290534\n172,480,3.0,843290645\n172,509,4.0,843290928\n172,527,4.0,843290844\n172,539,3.0,843290844\n172,586,4.0,843290786\n172,588,3.0,843290496\n172,590,3.0,843290451\n172,592,3.0,843290451\n172,663,5.0,843291455\n172,806,5.0,843291455\n173,1,4.0,875357598\n173,6,5.0,875357288\n173,32,4.0,875356677\n173,40,4.0,875356897\n173,62,4.0,875460345\n173,100,4.0,876821498\n173,107,3.0,875357448\n173,112,4.0,875460476\n173,260,5.0,875356589\n173,494,4.0,876821269\n173,605,5.0,876821382\n173,647,4.0,875357143\n173,653,3.0,876821405\n173,673,4.0,876821773\n173,708,3.0,876821338\n173,733,5.0,875356897\n173,736,4.0,876821462\n173,745,5.0,875356590\n173,762,3.0,876823420\n173,778,5.0,875356505\n173,780,4.0,876821249\n173,799,4.0,875356898\n173,804,4.0,876821747\n173,805,4.0,876821177\n173,832,4.0,875357143\n173,852,5.0,875357504\n173,999,3.0,876821773\n173,1003,3.0,876821498\n173,1047,4.0,875357598\n173,1073,4.0,876822636\n173,1210,4.0,875356506\n173,1367,4.0,875357504\n173,1485,3.0,875356096\n173,1517,4.0,876821366\n173,1542,5.0,876821338\n173,1552,4.0,876821250\n173,1562,3.0,876822114\n173,1569,5.0,875356677\n173,1580,4.0,875357289\n173,1591,3.0,876821028\n174,48,4.5,1109621256\n174,163,1.5,1109621187\n174,168,4.0,1109621240\n174,172,2.0,1109621197\n174,186,3.5,1109621215\n174,246,1.0,1109621190\n174,342,2.5,1109621247\n174,370,3.5,1109621206\n174,543,3.0,1109621260\n174,552,4.0,1109621268\n174,1094,2.0,1109621184\n174,1252,0.5,1109621175\n174,1376,4.5,1109621264\n174,1380,4.5,1109621244\n174,1639,4.0,1109621237\n174,2302,2.5,1109621251\n174,2699,3.5,1109621233\n174,3751,3.0,1109621170\n174,3897,4.0,1109621166\n174,5060,3.5,1109621201\n174,6534,3.0,1109623540\n175,1,4.0,1052837092\n175,47,4.0,1052884279\n175,48,3.0,1052884607\n175,73,4.0,1052884561\n175,95,4.0,1052836094\n175,107,4.0,1052884580\n175,199,4.0,1052883340\n175,260,5.0,1052836298\n175,261,4.0,1052836837\n175,262,5.0,1052836450\n175,276,2.0,1052836139\n175,296,5.0,1052836094\n175,308,3.0,1052884351\n175,364,4.0,1052884561\n175,480,4.0,1052884652\n175,588,3.0,1052884328\n175,595,4.0,1052884561\n175,647,3.0,1052835782\n175,783,3.0,1052884580\n175,919,4.0,1052837107\n175,1022,4.0,1052884387\n175,1029,4.0,1052835824\n175,1097,4.0,1052884090\n175,1196,5.0,1052836299\n175,1197,4.0,1052884057\n175,1198,4.0,1052836981\n175,1207,4.0,1052883110\n175,1210,5.0,1052836299\n175,1211,5.0,1052883365\n175,1242,4.0,1052837129\n175,1260,4.0,1052883957\n175,1265,3.0,1052884237\n175,1270,3.0,1052835731\n175,1291,4.0,1052884115\n175,1348,3.0,1052883909\n175,1416,4.0,1052884607\n175,1479,3.0,1052835996\n175,1487,3.0,1052884607\n175,1527,4.0,1052884668\n175,1537,4.0,1052837118\n175,1562,2.0,1052836139\n175,1580,4.0,1052884652\n175,1584,4.0,1052884668\n175,1653,4.0,1052835698\n175,1688,4.0,1052884561\n175,1704,5.0,1052884216\n175,1721,3.0,1052883663\n175,1784,4.0,1052884252\n175,1961,4.0,1052884134\n175,1968,4.0,1052884134\n175,2010,4.0,1052883909\n175,2028,1.0,1052835797\n175,2059,4.0,1052836094\n175,2077,4.0,1052884101\n175,2083,4.0,1052884561\n175,2084,4.0,1052884580\n175,2089,4.0,1052836112\n175,2092,2.0,1052884607\n175,2115,4.0,1052884171\n175,2125,4.0,1052884387\n175,2248,4.0,1052884134\n175,2291,3.0,1052835757\n175,2324,4.0,1052837138\n175,2394,4.0,1052884580\n175,2424,2.0,1052835824\n175,2542,4.0,1052884306\n175,2571,5.0,1052837064\n175,2628,3.0,1052836299\n175,2791,4.0,1052884134\n175,2858,4.0,1052837064\n175,2907,3.0,1052835680\n175,2918,4.0,1052884090\n175,2953,2.0,1052836058\n175,2959,5.0,1052836746\n175,3114,4.0,1052884243\n175,3159,4.0,1052884370\n175,3160,4.0,1052883399\n175,3350,4.0,1052836024\n175,3565,3.0,1052883579\n175,3668,2.0,1052835996\n175,3844,4.0,1052883399\n175,3910,5.0,1052835893\n175,3948,2.0,1052883487\n175,3977,2.0,1052883562\n175,3996,3.0,1052836544\n175,4016,5.0,1052836491\n175,4018,3.0,1052836125\n175,4025,3.0,1052883600\n175,4054,4.0,1052836665\n175,4161,4.0,1052883579\n175,4226,4.0,1052836233\n175,4246,2.0,1052836656\n175,4306,4.0,1052836491\n175,4308,5.0,1052836601\n175,4447,4.0,1052883522\n175,4459,5.0,1052883264\n175,4519,4.0,1052835712\n175,4700,4.0,1052883635\n175,4823,4.0,1052883635\n175,4896,4.0,1052836491\n175,4963,4.0,1052836734\n175,4993,5.0,1052836265\n175,5103,4.0,1052836151\n175,5299,4.0,1052836656\n175,5349,4.0,1052836544\n175,5378,2.0,1052836299\n175,5444,5.0,1052836491\n175,5460,4.0,1052883600\n175,5524,4.0,1052836558\n175,5577,4.0,1052883446\n175,5679,2.0,1052884713\n175,5810,4.0,1052884516\n175,5812,5.0,1052836346\n175,5816,4.0,1052836491\n175,5839,4.0,1052884893\n175,5840,4.0,1052884865\n175,5882,4.0,1052836544\n175,5943,4.0,1052883648\n175,5952,5.0,1052836265\n175,5957,3.0,1052883635\n175,5989,4.0,1052883861\n175,5991,3.0,1052836408\n175,6006,1.0,1052883562\n175,6157,3.0,1052836572\n175,6323,4.0,1052884734\n176,1,2.0,1340720798\n176,2,3.0,1341047637\n176,19,2.0,1340915742\n176,34,2.0,1341001737\n176,39,1.0,1341002026\n176,48,3.0,1341050021\n176,253,2.0,1340720267\n176,260,4.0,1340714702\n176,296,4.0,1368312442\n176,337,2.5,1341051741\n176,344,2.0,1340915739\n176,364,3.0,1341048908\n176,480,2.5,1340915680\n176,541,3.0,1364721985\n176,551,2.5,1340717480\n176,588,3.5,1341001015\n176,593,4.0,1340714712\n176,595,4.0,1341001312\n176,596,0.5,1341001883\n176,648,2.5,1340916038\n176,709,2.5,1340713490\n176,783,3.5,1341049379\n176,1022,2.0,1341048898\n176,1028,4.0,1340913845\n176,1035,3.0,1340913798\n176,1196,4.5,1340714717\n176,1198,3.0,1340720756\n176,1210,5.0,1340715454\n176,1232,0.5,1340715213\n176,1246,3.5,1340715420\n176,1259,2.0,1340715553\n176,1291,3.0,1340720595\n176,1380,3.0,1341050757\n176,1381,1.5,1340721359\n176,1391,2.0,1341047743\n176,1485,3.0,1341047497\n176,1517,1.5,1341001785\n176,1527,4.0,1340715371\n176,1566,3.5,1340713303\n176,1580,2.5,1340720372\n176,1682,3.0,1340715465\n176,1721,2.0,1341000961\n176,1760,0.5,1340721274\n176,1907,3.5,1341048915\n176,1921,3.0,1364722231\n176,1923,1.0,1341002141\n176,1947,2.5,1341056101\n176,2018,2.0,1341050051\n176,2054,1.5,1341047061\n176,2078,2.0,1341050029\n176,2080,3.0,1341049365\n176,2081,2.0,1341048783\n176,2087,2.0,1341050036\n176,2096,2.0,1341048925\n176,2115,3.0,1340720823\n176,2571,4.5,1340714691\n176,2617,1.5,1341002882\n176,2628,4.0,1340914514\n176,2671,2.5,1342857564\n176,2683,1.0,1341001087\n176,2700,1.0,1341002755\n176,2701,1.5,1340713142\n176,2706,1.5,1341001492\n176,2716,2.5,1340720739\n176,2987,3.5,1340912716\n176,2997,2.0,1340902346\n176,3000,4.5,1340715628\n176,3034,2.0,1340713347\n176,3054,1.0,1340721399\n176,3355,4.0,1340713421\n176,3408,3.5,1341002809\n176,3752,0.5,1340713193\n176,3785,0.5,1340721192\n176,3825,2.5,1340747831\n176,3948,0.5,1341002119\n176,3988,2.0,1343335492\n176,3996,4.0,1340715471\n176,3997,1.0,1340713554\n176,4246,3.5,1340914843\n176,4306,3.5,1340916569\n176,4308,4.0,1341050244\n176,4310,3.0,1340913211\n176,4367,2.0,1340721222\n176,4383,2.0,1364722317\n176,4446,1.0,1340713233\n176,4447,3.5,1340914405\n176,4700,1.0,1340914730\n176,4720,3.5,1340715834\n176,4816,0.5,1341002155\n176,4896,3.0,1340715346\n176,4963,4.0,1340715408\n176,4973,3.5,1340714662\n176,4993,4.5,1340714789\n176,5064,2.5,1340716670\n176,5072,0.5,1340713734\n176,5128,2.0,1343335570\n176,5218,3.0,1340918054\n176,5349,3.0,1340715341\n176,5378,4.0,1341001419\n176,5445,3.5,1378384744\n176,5502,3.0,1341047860\n176,5618,4.0,1340716921\n176,5690,3.0,1340713498\n176,5816,3.0,1341002040\n176,5903,3.5,1340917181\n176,5952,5.0,1340714904\n176,5971,4.0,1340717474\n176,5989,3.0,1340715530\n176,6016,4.0,1377799393\n176,6283,3.0,1340720444\n176,6287,1.5,1341003081\n176,6350,4.0,1340719768\n176,6365,3.5,1340917301\n176,6378,3.5,1340716737\n176,6539,4.0,1340715375\n176,6541,2.0,1340721386\n176,6754,2.5,1340720299\n176,6794,0.5,1340747921\n176,6874,3.5,1340715623\n176,6934,2.5,1340917347\n176,7022,1.5,1340916972\n176,7090,4.5,1340715365\n176,7099,4.0,1340719701\n176,7143,4.5,1340715325\n176,7147,4.0,1340715415\n176,7153,5.0,1340714791\n176,7438,3.5,1340715612\n176,7458,2.5,1341055462\n176,7649,3.5,1340713901\n176,8360,3.5,1341056045\n176,8368,3.5,1340715337\n176,8622,3.5,1341001212\n176,8957,0.5,1340721882\n176,8969,3.5,1340914846\n176,8970,3.5,1345915332\n176,8972,3.0,1341055400\n176,8981,1.5,1340746374\n176,8983,4.0,1340716647\n176,26662,3.5,1340715128\n176,26776,4.0,1340713725\n176,27660,3.5,1340720451\n176,27689,1.0,1364722311\n176,27815,4.0,1341055663\n176,27850,3.0,1340748665\n176,30793,2.5,1340717676\n176,30816,3.5,1340914509\n176,31410,4.0,1340911312\n176,31658,5.0,1340716841\n176,33004,3.5,1343335486\n176,33493,3.5,1340916558\n176,33794,2.5,1340720656\n176,36401,2.0,1343335392\n176,36529,3.5,1340913567\n176,37830,4.0,1341002201\n176,38061,2.5,1340811802\n176,40597,2.0,1341047338\n176,40815,3.0,1340715333\n176,41566,2.5,1340748142\n176,41571,3.0,1340720952\n176,43419,2.0,1342949753\n176,44191,3.5,1340715546\n176,44195,4.0,1340748200\n176,44665,4.0,1340716274\n176,44849,3.5,1340917675\n176,45447,3.0,1343335399\n176,45720,2.0,1340914687\n176,45722,3.0,1340916181\n176,45880,2.0,1344347678\n176,45950,3.5,1340748640\n176,46976,4.0,1340748088\n176,47610,4.0,1345577132\n176,47999,4.0,1340748485\n176,48043,4.5,1340716497\n176,48738,4.0,1364721926\n176,48997,3.5,1340913756\n176,49649,2.0,1343335247\n176,50068,5.0,1340715275\n176,51662,3.0,1340747499\n176,52579,3.5,1340714267\n176,53125,3.5,1340916173\n176,53894,2.5,1340748506\n176,54259,3.0,1340716832\n176,54999,3.5,1340747539\n176,55167,3.5,1341002428\n176,55721,2.5,1341056232\n176,55820,3.0,1340913712\n176,56152,3.0,1340915519\n176,56171,3.0,1343335280\n176,56367,3.5,1345237994\n176,56757,4.0,1340717629\n176,56949,2.5,1340912864\n176,58559,3.0,1340714650\n176,59333,2.0,1340912969\n176,59615,3.0,1341056136\n176,60069,4.5,1340715076\n176,60397,3.5,1340914801\n176,62849,3.5,1368312386\n176,63082,4.0,1345667861\n176,63276,3.5,1340916711\n176,63853,3.0,1343333689\n176,63992,1.0,1340720312\n176,66198,2.5,1340747587\n176,66203,2.5,1347306212\n176,66317,3.0,1340720957\n176,66808,1.0,1368307751\n176,68073,3.0,1340918200\n176,68157,4.0,1340715172\n176,69275,1.5,1344167211\n176,69640,3.5,1340916241\n176,69757,3.0,1340914244\n176,70183,4.0,1340914570\n176,71282,4.0,1340748467\n176,72737,3.5,1343333718\n176,73017,2.5,1341047285\n176,73319,3.0,1340915442\n176,74458,4.0,1340913552\n176,77201,2.0,1366545291\n176,79132,4.0,1340714683\n176,79293,2.5,1364722469\n176,79702,4.0,1341001585\n176,80463,2.5,1340715537\n176,80864,3.0,1341001174\n176,81591,4.0,1340715600\n176,81845,5.0,1340714943\n176,81847,3.0,1366545246\n176,82167,2.5,1340914719\n176,82202,2.5,1378384504\n176,82463,3.0,1343334260\n176,86142,3.0,1340916679\n176,86190,2.5,1340911697\n176,86835,2.0,1368307787\n176,86882,5.0,1340715390\n176,88129,4.0,1340715435\n176,89102,2.0,1340916326\n176,89745,3.0,1340714765\n176,89761,3.5,1340911985\n176,89804,3.5,1345237982\n176,90405,2.5,1340714469\n176,90866,4.0,1340714108\n176,91500,2.0,1340917043\n176,91529,3.5,1343334119\n176,92259,5.0,1340714592\n176,93805,3.5,1340912551\n176,94478,2.5,1340717602\n176,94480,1.0,1340915855\n176,94864,3.0,1340720332\n176,95875,3.5,1366545262\n176,96079,3.0,1378384538\n176,96737,3.0,1368307805\n176,97304,3.5,1378384885\n176,99114,4.0,1364721906\n176,99320,2.0,1368307727\n176,100556,3.5,1384107215\n176,101864,3.5,1377799692\n176,103253,3.0,1377799432\n176,104841,3.0,1384107175\n177,1,5.0,907515679\n177,2,5.0,907380055\n177,6,5.0,907380682\n177,10,4.0,907380744\n177,18,4.0,907380994\n177,22,4.0,907380781\n177,23,3.0,907380781\n177,32,4.0,907380000\n177,47,5.0,907380653\n177,50,5.0,907380653\n177,66,1.0,907380378\n177,70,4.0,907380745\n177,76,2.0,907380055\n177,89,4.0,907380994\n177,95,4.0,907380781\n177,107,3.0,907380964\n177,111,4.0,907380710\n177,150,5.0,907380653\n177,160,2.0,907380369\n177,161,4.0,907380781\n177,163,4.0,907380964\n177,164,4.0,907380964\n177,165,5.0,907380918\n177,170,4.0,907381025\n177,172,4.0,907380321\n177,173,3.0,907380056\n177,185,4.0,907380138\n177,196,3.0,907380056\n177,198,5.0,907380055\n177,200,4.0,907381306\n177,223,5.0,907516215\n177,225,3.0,907381025\n177,230,4.0,907380884\n177,240,3.0,907381064\n177,256,3.0,907380138\n177,258,2.0,907380138\n177,288,3.0,907381132\n177,292,4.0,907380820\n177,293,5.0,907380710\n177,316,4.0,907380138\n177,319,4.0,907380682\n177,327,3.0,907380138\n177,329,4.0,907380055\n177,332,4.0,907381178\n177,338,4.0,907380203\n177,349,4.0,907380710\n177,350,4.0,907380820\n177,353,4.0,907380745\n177,356,5.0,907515749\n177,376,4.0,907381132\n177,377,4.0,907380964\n177,379,3.0,907380203\n177,405,2.0,907380203\n177,407,2.0,907381096\n177,422,5.0,907381097\n177,423,5.0,907381178\n177,426,3.0,907380203\n177,435,4.0,907380203\n177,442,3.0,907380203\n177,454,4.0,907380884\n177,457,5.0,907380710\n177,474,5.0,907380781\n177,480,5.0,907379910\n177,481,4.0,907380884\n177,482,4.0,907380884\n177,494,3.0,907381132\n177,497,5.0,907515749\n177,504,3.0,907380321\n177,512,4.0,907380246\n177,519,2.0,907380369\n177,540,3.0,907381218\n177,541,5.0,907380504\n177,546,3.0,907380138\n177,547,1.0,907381218\n177,587,4.0,907380820\n177,588,4.0,907516093\n177,589,4.0,907379910\n177,593,5.0,907380682\n177,600,4.0,907381025\n177,608,5.0,907380653\n177,610,5.0,907380567\n177,611,3.0,907380369\n177,628,5.0,907380849\n177,662,5.0,907380994\n177,691,4.0,907515750\n177,733,4.0,907380745\n177,736,4.0,907381097\n177,741,4.0,907380000\n177,748,3.0,907380246\n177,780,5.0,907380000\n177,786,4.0,907380849\n177,788,4.0,907380246\n177,798,4.0,907381064\n177,832,4.0,907380820\n177,839,3.0,907381218\n177,849,3.0,907380138\n177,861,4.0,907380745\n177,880,2.0,907380369\n177,882,3.0,907380964\n177,891,3.0,907381264\n177,1003,3.0,907380964\n177,1028,4.0,907515785\n177,1037,3.0,907380203\n177,1047,4.0,907380918\n177,1055,3.0,907381243\n177,1080,5.0,907516215\n177,1089,5.0,907380653\n177,1092,5.0,907380918\n177,1097,5.0,907380544\n177,1127,5.0,907380544\n177,1129,3.0,907380544\n177,1136,5.0,907515447\n177,1148,5.0,907515679\n177,1196,5.0,907380504\n177,1197,5.0,907515749\n177,1199,5.0,907380504\n177,1200,5.0,907380504\n177,1210,5.0,907379910\n177,1215,5.0,907380000\n177,1235,5.0,907515785\n177,1240,5.0,907380504\n177,1259,5.0,907516215\n177,1270,5.0,907380504\n177,1274,5.0,907380544\n177,1276,5.0,907516215\n177,1304,5.0,907516215\n177,1306,3.0,907380253\n177,1320,3.0,907380321\n177,1343,3.0,907380964\n177,1356,4.0,907380055\n177,1370,5.0,907380918\n177,1372,5.0,907380055\n177,1373,3.0,907380567\n177,1374,5.0,907380504\n177,1375,4.0,907380544\n177,1376,5.0,907380544\n177,1391,4.0,907380321\n177,1396,4.0,907379910\n177,1407,5.0,907380820\n177,1422,3.0,907381025\n177,1427,3.0,907381243\n177,1438,4.0,907381132\n177,1459,1.0,907380918\n177,1479,5.0,907380849\n177,1488,2.0,907381064\n177,1499,1.0,907381218\n177,1515,4.0,907381025\n177,1518,3.0,907380918\n177,1527,5.0,907380001\n177,1544,4.0,907380321\n177,1552,5.0,907380820\n177,1573,4.0,907379910\n177,1580,4.0,907379910\n177,1584,5.0,907379910\n177,1590,1.0,907380246\n177,1591,3.0,907380138\n177,1597,4.0,907380884\n177,1598,5.0,907381132\n177,1603,2.0,907380246\n177,1608,4.0,907380884\n177,1610,5.0,907380653\n177,1615,4.0,907380884\n177,1616,4.0,907380849\n177,1617,5.0,907380682\n177,1620,4.0,907380849\n177,1625,5.0,907380745\n177,1644,5.0,907381064\n177,1645,5.0,907380745\n177,1647,3.0,907381064\n177,1653,5.0,907379910\n177,1658,5.0,907380781\n177,1661,5.0,907381096\n177,1676,5.0,907380138\n177,1686,3.0,907380884\n177,1687,2.0,907381064\n177,1690,3.0,907380203\n177,1717,5.0,907380849\n177,1722,5.0,907380820\n177,1732,4.0,907380820\n177,1748,3.0,907380000\n177,1750,2.0,907380203\n177,1752,4.0,907380994\n177,1754,4.0,907380781\n177,1769,4.0,907380781\n177,1779,2.0,907380246\n177,1784,4.0,907515785\n177,1792,5.0,907380994\n177,1805,4.0,907380781\n177,1831,5.0,907380246\n177,1862,4.0,907380321\n177,1876,5.0,907380055\n177,1882,3.0,907380321\n177,1909,5.0,907380000\n177,1917,3.0,907379242\n177,1920,4.0,907379459\n177,1923,4.0,907379242\n177,1968,5.0,907516093\n177,2000,5.0,907515679\n177,2006,4.0,907379242\n177,2011,4.0,907380544\n177,2012,4.0,907380000\n177,2015,3.0,907516093\n177,2021,5.0,907380567\n177,2026,5.0,907379474\n177,2028,4.0,907379242\n177,2046,4.0,907380000\n177,2053,3.0,907380435\n177,2054,3.0,907380567\n177,2093,3.0,907380544\n177,2094,4.0,907380321\n177,2107,3.0,907379359\n177,2109,5.0,907516735\n177,2113,3.0,907381312\n177,2125,4.0,907379359\n177,2133,5.0,907516215\n177,2141,4.0,907516735\n177,2144,5.0,907516215\n177,2148,5.0,907516735\n177,2150,4.0,907515679\n177,2167,5.0,907379306\n177,2273,5.0,907379242\n177,2288,4.0,907380504\n177,2311,3.0,907380544\n177,4006,4.0,907380567\n178,1,4.0,1437425800\n178,110,3.5,1437422963\n178,111,4.5,1437424662\n178,260,5.0,1437422811\n178,293,3.5,1437422890\n178,296,5.0,1437422805\n178,318,5.0,1437422760\n178,356,3.0,1437422880\n178,364,4.0,1437428147\n178,551,3.5,1437428256\n178,555,3.0,1437428180\n178,593,4.0,1437422779\n178,595,3.5,1437428338\n178,608,4.0,1437422835\n178,750,3.0,1437422818\n178,778,4.5,1437424747\n178,858,4.0,1437422766\n178,899,3.0,1437424656\n178,919,3.0,1437424660\n178,920,4.5,1437428160\n178,951,2.5,1437422833\n178,1028,3.0,1437428244\n178,1036,3.0,1437424756\n178,1073,4.0,1437428247\n178,1080,4.0,1437424665\n178,1097,2.5,1437428108\n178,1120,4.0,1437428349\n178,1193,3.0,1437422776\n178,1196,5.0,1437422810\n178,1197,3.5,1437422824\n178,1198,5.0,1437422795\n178,1208,4.0,1437424637\n178,1210,5.0,1437424676\n178,1213,3.0,1437422775\n178,1220,5.0,1437425933\n178,1221,4.5,1437422769\n178,1228,5.0,1437425892\n178,1246,3.5,1437424537\n178,1247,3.5,1437424542\n178,1258,3.0,1437424658\n178,1259,5.0,1437422879\n178,1262,5.0,1437422856\n178,1265,4.0,1437425799\n178,1266,3.5,1437424710\n178,1269,2.0,1437424514\n178,1278,4.0,1437424720\n178,1282,4.0,1437428214\n178,1288,4.5,1437425824\n178,1302,2.5,1437428325\n178,1348,3.5,1437428224\n178,1387,3.5,1437428238\n178,1580,4.0,1437428274\n178,1682,4.0,1437425818\n178,1704,3.5,1437422848\n178,1873,2.5,1437428133\n178,1954,4.0,1437428303\n178,1968,5.0,1437425895\n178,2000,3.5,1437428222\n178,2028,4.0,1437422865\n178,2078,4.0,1437428249\n178,2096,3.5,1437428391\n178,2268,3.0,1437425881\n178,2329,4.0,1437422821\n178,2571,3.0,1437422802\n178,2716,3.0,1437428178\n178,2804,1.5,1437424699\n178,2858,4.0,1437422814\n178,2959,4.5,1437422799\n178,2997,5.0,1437425827\n178,3034,4.0,1437428211\n178,3052,4.0,1437428241\n178,3061,3.5,1437425865\n178,3089,2.5,1437424594\n178,3168,3.5,1437428230\n178,3210,3.0,1437428385\n178,3275,3.0,1437424701\n178,3408,1.5,1437428200\n178,3471,3.0,1437428141\n178,3552,2.5,1437428389\n178,3578,3.0,1437424533\n178,3629,3.5,1437424506\n178,3671,4.0,1437427720\n178,3949,3.5,1437424649\n178,4034,2.5,1437425897\n178,4262,2.5,1437425829\n178,4878,2.5,1437424604\n178,4979,5.0,1437428297\n178,5577,2.5,1437428346\n178,5669,2.0,1437425794\n178,6979,3.5,1437428144\n178,7022,2.5,1437425868\n178,7158,4.0,1437428088\n178,7386,3.0,1437428365\n178,7451,3.0,1437428328\n178,8874,3.0,1437425811\n178,8966,3.5,1437428168\n178,27773,2.5,1437422884\n178,30707,3.0,1437424588\n178,30812,4.0,1437428226\n178,34405,3.5,1437422956\n178,44195,4.0,1437424646\n178,45728,3.0,1437428336\n178,46578,3.0,1437424520\n178,47999,4.0,1437425934\n178,48394,5.0,1437422842\n178,51662,3.0,1437428208\n178,52435,3.0,1437427724\n178,54503,4.5,1437428171\n178,55442,3.0,1437422958\n178,56367,3.0,1437424530\n178,60684,3.5,1437428189\n178,61024,3.5,1437428372\n178,61323,4.0,1437428340\n178,63131,2.5,1437428278\n178,67267,3.5,1437428153\n178,69481,5.0,1437424744\n178,74458,2.5,1437424590\n178,74948,4.0,1437428126\n178,77455,2.0,1437424624\n178,77800,2.0,1437425808\n178,78574,3.0,1437424758\n178,81591,1.5,1437424684\n178,91658,3.0,1437424582\n178,93840,4.0,1437428254\n178,97921,2.0,1437424600\n178,99114,3.5,1437422854\n178,106487,2.5,1437425871\n178,106782,3.5,1437425856\n178,112552,4.5,1437422861\n178,112623,3.5,1437428138\n179,1,5.0,1436669947\n179,1197,5.0,1436670015\n179,1270,3.0,1436669953\n179,1682,3.0,1436670038\n179,3882,3.0,1436670351\n179,4226,4.0,1436670107\n179,4246,3.0,1436670156\n179,4306,2.5,1436670105\n179,4447,3.5,1436670189\n179,4896,5.0,1436670127\n179,5816,5.0,1436670137\n179,6377,4.0,1436670112\n179,6539,5.0,1436670114\n179,7361,3.5,1436670118\n179,7451,4.5,1436670359\n179,8368,5.0,1436670143\n179,8641,3.5,1436670323\n179,8644,0.5,1436670174\n179,8665,2.5,1436670145\n179,8972,4.0,1436670344\n179,34162,4.0,1436670214\n179,45722,5.0,1436670180\n179,46578,4.5,1436670048\n179,46976,3.5,1436670234\n179,49272,2.0,1436670152\n179,53125,5.0,1436670469\n179,55280,5.0,1436670452\n179,56367,3.5,1436670163\n179,64957,5.0,1436670353\n179,67734,3.5,1436670449\n179,69757,4.0,1436670228\n179,78499,5.0,1436670034\n179,80463,4.0,1436670311\n179,80693,4.0,1436670477\n179,81591,5.0,1436670309\n179,86377,4.0,1436670050\n179,86882,5.0,1436670432\n179,91529,2.0,1436670023\n180,24,4.0,945446829\n180,223,3.0,945446726\n180,527,4.0,945446508\n180,589,4.0,945446677\n180,700,3.0,945446980\n180,1073,5.0,945446652\n180,1127,4.0,945446618\n180,1193,4.0,945446483\n180,1197,4.0,945446462\n180,1225,4.0,945446901\n180,1240,4.0,945446677\n180,1265,5.0,945446581\n180,2013,3.0,945446829\n180,2145,3.0,945446462\n180,2474,3.0,945446462\n180,2490,4.0,945446804\n180,2502,2.0,945446804\n180,2541,3.0,945446740\n180,2581,4.0,945446804\n180,2699,2.0,945446708\n180,2700,2.0,945446845\n180,2710,1.0,945446726\n180,2716,4.0,945446754\n180,2987,4.0,945446861\n181,296,5.0,1154542932\n181,380,5.0,1154543016\n181,435,3.5,1154542675\n181,555,5.0,1154543020\n181,733,4.0,1154542861\n181,1089,5.0,1154542951\n181,1213,5.0,1154543059\n181,1396,4.5,1154542739\n181,1552,3.0,1154542755\n181,1597,4.0,1154542821\n181,1625,3.5,1154542746\n181,1729,4.0,1154542953\n181,2003,3.5,1154542815\n181,2302,5.0,1154542725\n181,2329,5.0,1154542765\n181,2353,4.0,1154542729\n181,2640,4.0,1154542691\n181,2700,4.0,1154542686\n181,3052,4.0,1154542736\n181,3753,4.0,1154542777\n181,4011,5.0,1154542915\n181,5418,4.5,1154542805\n181,5445,4.0,1154542682\n181,6874,5.0,1154542945\n181,7153,5.0,1154542709\n181,7438,5.0,1154542948\n181,8528,4.0,1154543028\n182,2,5.0,845744191\n182,3,4.0,845745032\n182,4,3.0,845745077\n182,5,4.0,845744805\n182,7,5.0,845745009\n182,8,5.0,845745710\n182,9,3.0,845746347\n182,11,5.0,845744166\n182,13,3.0,845745917\n182,17,3.0,845744218\n182,21,3.0,845744047\n182,25,1.0,845744316\n182,34,5.0,845743924\n182,36,3.0,845744347\n182,48,3.0,845744430\n182,60,4.0,845745009\n182,61,3.0,845746546\n182,62,5.0,845744284\n182,79,3.0,845745516\n182,95,3.0,845744218\n182,105,4.0,845744430\n182,110,5.0,845743855\n182,126,3.0,845745742\n182,141,4.0,845744250\n182,144,3.0,845745457\n182,146,5.0,845745929\n182,150,5.0,845743682\n182,165,3.0,845743728\n182,168,5.0,845744316\n182,169,3.0,845744976\n182,174,3.0,845745373\n182,185,4.0,845743855\n182,186,3.0,845746300\n182,195,4.0,845745289\n182,201,4.0,845746347\n182,207,5.0,845744884\n182,208,4.0,845743824\n182,224,3.0,845744545\n182,225,4.0,845744047\n182,231,1.0,845743763\n182,236,3.0,845744218\n182,237,3.0,845744603\n182,238,4.0,845745792\n182,243,4.0,845745917\n182,261,4.0,845744316\n182,262,3.0,845746126\n182,265,3.0,845744347\n182,266,3.0,845744141\n182,270,5.0,845745671\n182,271,3.0,845745685\n182,276,5.0,845744721\n182,277,5.0,845744575\n182,282,3.0,845744191\n182,292,4.0,845743824\n182,300,3.0,845743924\n182,313,4.0,845746347\n182,316,3.0,845743763\n182,317,4.0,845744141\n182,337,2.0,845744250\n182,339,5.0,845743824\n182,342,3.0,845744805\n182,343,3.0,845745671\n182,344,1.0,845743728\n182,349,4.0,845743763\n182,350,4.0,845744166\n182,351,5.0,845746421\n182,355,3.0,845744575\n182,356,5.0,845743798\n182,357,3.0,845744141\n182,360,3.0,845745613\n182,361,5.0,845745091\n182,362,5.0,845744842\n182,364,4.0,845743889\n182,368,4.0,845744347\n182,370,3.0,845744545\n182,377,4.0,845743889\n182,380,4.0,845743682\n182,381,3.0,845744842\n182,383,4.0,845745050\n182,410,3.0,845743924\n182,432,5.0,845744166\n182,440,4.0,845744141\n182,454,4.0,845743854\n182,455,3.0,845744864\n182,457,4.0,845743763\n182,480,5.0,845743798\n182,485,3.0,845744545\n182,489,3.0,845745440\n182,494,5.0,845744976\n182,500,5.0,845743924\n182,502,3.0,845745289\n182,508,3.0,845744250\n182,524,5.0,845745289\n182,529,3.0,845744864\n182,531,4.0,845745032\n182,539,5.0,845744047\n182,546,3.0,845745077\n182,553,3.0,845744218\n182,569,3.0,845745757\n182,587,5.0,845744047\n182,589,4.0,845743889\n182,590,5.0,845743682\n182,593,3.0,845743728\n182,594,5.0,845744575\n182,595,5.0,845746325\n182,597,5.0,845746090\n182,609,3.0,845745770\n182,616,5.0,845744884\n182,637,4.0,845745583\n182,647,5.0,845745642\n182,687,3.0,845746928\n182,688,4.0,845745373\n182,707,3.0,845745742\n182,708,4.0,845745077\n182,719,4.0,845746113\n182,733,5.0,845746076\n182,736,5.0,845744266\n182,765,5.0,845745957\n182,780,5.0,845744316\n182,801,3.0,845746773\n182,802,5.0,845745486\n182,818,2.0,845745856\n182,830,5.0,845746376\n182,835,3.0,845746155\n182,838,4.0,845745874\n182,852,4.0,845745991\n182,986,5.0,845746376\n182,1042,5.0,845746421\n182,1049,5.0,845746793\n182,1073,2.0,845745804\n182,1084,3.0,845745838\n183,32,5.0,983096875\n183,34,4.0,983097092\n183,36,4.0,983096307\n183,47,5.0,983096400\n183,50,5.0,983096683\n183,260,3.0,983096240\n183,296,5.0,983096739\n183,318,5.0,983096713\n183,345,4.0,983096267\n183,527,4.0,983096660\n183,593,4.0,983096752\n183,608,5.0,983096777\n183,924,4.0,983096954\n183,1046,5.0,983097135\n183,1089,5.0,983096739\n183,1111,4.0,983097040\n183,1136,4.0,983097028\n183,1193,4.0,983096713\n183,1196,2.0,983096892\n183,1199,4.0,983096764\n183,1208,4.0,983096820\n183,1247,3.0,983096695\n183,1354,5.0,983096660\n183,1617,3.0,983096806\n183,1673,5.0,983097183\n183,1721,4.0,983096280\n183,1952,3.0,983096843\n183,1961,5.0,983096307\n183,2360,5.0,983097228\n183,2542,5.0,983097061\n183,2692,5.0,983096914\n183,2762,4.0,983096752\n183,2858,4.0,983096713\n183,2959,5.0,983096992\n183,3556,4.0,983096400\n183,3646,1.0,983096472\n183,3751,3.0,983096370\n183,3821,1.0,983096431\n183,3994,3.0,983096541\n183,4011,4.0,983096517\n183,4027,3.0,983096505\n184,1,5.0,833524830\n184,161,3.0,833524819\n184,175,4.0,833525185\n184,180,3.0,833525271\n184,223,5.0,833524934\n184,231,3.0,833524803\n184,246,3.0,833524952\n184,256,2.0,833524925\n184,280,4.0,833524992\n184,288,4.0,833524839\n184,293,5.0,833524894\n184,296,5.0,833524768\n184,300,4.0,833524830\n184,318,5.0,833524803\n184,334,2.0,833525355\n184,337,4.0,833524877\n184,349,4.0,833524782\n184,356,3.0,833525056\n184,357,4.0,833525142\n184,364,5.0,833524911\n184,371,3.0,833525154\n184,377,4.0,833525123\n184,380,3.0,833524768\n184,413,3.0,833525000\n184,415,2.0,833525223\n184,431,4.0,833524992\n184,434,3.0,833524818\n184,440,4.0,833524952\n184,454,3.0,833524911\n184,457,4.0,833524857\n184,471,5.0,833525100\n184,474,5.0,833525204\n184,480,3.0,833525100\n184,485,2.0,833525330\n184,500,4.0,833525160\n184,508,3.0,833525233\n184,527,4.0,833525132\n184,555,4.0,833524925\n184,586,3.0,833525249\n184,588,4.0,833524782\n184,589,5.0,833525116\n184,593,4.0,833524848\n184,595,4.0,833524803\n184,597,3.0,833525212\n184,720,5.0,833525124\n185,1,5.0,1003523268\n185,2,4.0,1003523847\n185,24,4.0,1019787401\n185,29,5.0,1003523544\n185,48,3.0,1019787132\n185,50,5.0,1019787636\n185,110,4.0,1003523170\n185,150,3.0,1003524274\n185,172,2.0,1019787488\n185,223,4.0,1003524442\n185,239,2.0,1003523380\n185,256,2.0,1019787467\n185,260,3.0,1003523818\n185,296,3.0,1003524153\n185,316,4.0,1003523646\n185,317,4.0,1003523891\n185,318,5.0,1003524104\n185,329,4.0,1019787409\n185,353,5.0,1003525185\n185,356,4.0,1003524536\n185,364,3.0,1003523305\n185,367,4.0,1003523829\n185,418,3.0,1003523129\n185,440,3.0,1003524606\n185,450,4.0,1003524659\n185,527,5.0,1003524122\n185,543,4.0,1003524715\n185,551,4.0,1019787212\n185,588,4.0,1003523305\n185,589,4.0,1003523544\n185,593,4.0,1003524134\n185,594,3.0,1003523305\n185,595,5.0,1019787081\n185,596,3.0,1003523305\n185,610,4.0,1003523380\n185,653,4.0,1003523863\n185,661,4.0,1003523338\n185,709,3.0,1003523419\n185,720,4.0,1003523251\n185,741,5.0,1003523359\n185,745,5.0,1003524299\n185,750,4.0,1003523527\n185,778,4.0,1003524182\n185,780,4.0,1003523689\n185,783,3.0,1003523359\n185,788,2.0,1003523752\n185,910,3.0,1003524426\n185,914,4.0,1019787199\n185,919,3.0,1019787199\n185,924,3.0,1003523597\n185,1009,4.0,1003523863\n185,1022,3.0,1003523323\n185,1025,3.0,1003523380\n185,1028,3.0,1003524590\n185,1029,3.0,1019787095\n185,1032,3.0,1019787081\n185,1033,3.0,1003523404\n185,1035,4.0,1019787199\n185,1037,3.0,1019787475\n185,1073,4.0,1003523848\n185,1079,4.0,1003524508\n185,1080,4.0,1003524358\n185,1097,4.0,1003523818\n185,1104,2.0,1003524153\n185,1136,4.0,1003524397\n185,1148,5.0,1003523251\n185,1171,4.0,1003524482\n185,1175,4.0,1003523527\n185,1193,5.0,1003524122\n185,1196,3.0,1003523115\n185,1197,5.0,1003524311\n185,1199,4.0,1003523544\n185,1206,4.0,1003523576\n185,1210,3.0,1003523140\n185,1214,4.0,1003523527\n185,1215,4.0,1003523576\n185,1220,3.0,1003524548\n185,1223,4.0,1003523268\n185,1225,4.0,1003524134\n185,1242,4.0,1003524182\n185,1253,4.0,1003523544\n185,1265,3.0,1003524369\n185,1270,4.0,1003523556\n185,1274,4.0,1003523544\n185,1278,5.0,1003524407\n185,1282,3.0,1019787081\n185,1288,2.0,1003524190\n185,1301,4.0,1019787270\n185,1307,3.0,1003524299\n185,1320,3.0,1003523715\n185,1356,4.0,1003523611\n185,1376,4.0,1019787261\n185,1411,5.0,1003523195\n185,1441,5.0,1003524722\n185,1500,4.0,1003524378\n185,1527,5.0,1003523585\n185,1544,2.0,1003523741\n185,1566,3.0,1003523338\n185,1580,4.0,1003523611\n185,1584,3.0,1003523576\n185,1590,2.0,1003523766\n185,1641,4.0,1003524558\n185,1688,3.0,1003523404\n185,1690,3.0,1003523716\n185,1702,3.0,1003523930\n185,1734,4.0,1003523129\n185,1747,3.0,1003524699\n185,1748,3.0,1003523597\n185,1784,2.0,1003524616\n185,1883,4.0,1003523129\n185,1907,4.0,1003523268\n185,1916,4.0,1003524650\n185,1917,5.0,1003523698\n185,1921,3.0,1003523622\n185,1947,4.0,1019787180\n185,1967,3.0,1003523195\n185,2011,4.0,1003523646\n185,2012,4.0,1003523679\n185,2018,3.0,1019787081\n185,2021,3.0,1003523646\n185,2028,3.0,1003523195\n185,2033,3.0,1003523404\n185,2054,3.0,1003523767\n185,2078,3.0,1003523305\n185,2080,3.0,1003523305\n185,2081,3.0,1003524637\n185,2085,2.0,1003523380\n185,2087,3.0,1019787081\n185,2089,4.0,1019787117\n185,2090,4.0,1003523404\n185,2091,3.0,1003523788\n185,2094,3.0,1003523727\n185,2096,3.0,1003523305\n185,2105,3.0,1003523848\n185,2128,2.0,1003524415\n185,2137,3.0,1019787081\n185,2139,3.0,1003523323\n185,2141,3.0,1019787107\n185,2142,3.0,1019787132\n185,2161,4.0,1003523830\n185,2193,3.0,1003523848\n185,2253,5.0,1003523930\n185,2294,3.0,1019787081\n185,2324,5.0,1003524170\n185,2355,5.0,1003524558\n185,2359,3.0,1003524637\n185,2396,4.0,1003524369\n185,2450,2.0,1019787502\n185,2495,4.0,1003523323\n185,2565,3.0,1019787180\n185,2571,5.0,1003523544\n185,2599,3.0,1003524397\n185,2622,3.0,1003523891\n185,2628,3.0,1003523669\n185,2657,5.0,1003523658\n185,2686,4.0,1003524170\n185,2692,5.0,1003525148\n185,2700,5.0,1003523323\n185,2716,3.0,1003524508\n185,2747,3.0,1003524753\n185,2761,4.0,1003523251\n185,2797,4.0,1019787754\n185,2804,2.0,1003524144\n185,2858,5.0,1003524311\n185,2959,5.0,1003524134\n185,2987,3.0,1003523305\n185,2997,4.0,1003524311\n185,3000,5.0,1003523251\n185,3034,4.0,1003523359\n185,3052,4.0,1003525163\n185,3054,3.0,1019787143\n185,3095,3.0,1003524249\n185,3114,4.0,1003523154\n185,3159,4.0,1003523251\n185,3175,3.0,1019787278\n185,3255,3.0,1003524691\n185,3429,4.0,1003524358\n185,3438,3.0,1003523891\n185,3448,5.0,1003524637\n185,3477,4.0,1003524674\n185,3479,3.0,1003523830\n185,3489,3.0,1003523863\n185,3545,2.0,1019787199\n185,3549,3.0,1019787199\n185,3556,4.0,1003524768\n185,3751,5.0,1003523268\n185,3863,3.0,1003523634\n185,3910,2.0,1019787577\n185,3911,4.0,1003524497\n185,4016,3.0,1003523268\n185,4121,3.0,1003523658\n185,4275,2.0,1003523777\n185,4306,4.0,1019787052\n185,4321,3.0,1003524743\n185,4366,3.0,1003523848\n185,4446,4.0,1003523359\n185,4571,4.0,1003523818\n185,4655,3.0,1003524096\n185,4734,5.0,1003524650\n185,4886,5.0,1019787052\n185,4896,5.0,1019787607\n185,4941,2.0,1019787456\n185,4993,5.0,1019787591\n185,5159,3.0,1019787132\n186,31,3.0,1276205768\n186,555,4.0,1276205691\n186,836,1.5,1295458775\n186,924,5.0,1295459361\n186,1385,2.5,1295458745\n186,1921,5.0,1295459249\n186,2021,5.0,1295458665\n186,2136,1.0,1276205530\n186,2329,4.0,1295459628\n186,2571,5.0,1295459287\n186,2605,2.0,1276205797\n186,2863,3.5,1295458819\n186,2959,4.5,1295459572\n186,3504,5.0,1295458792\n186,3578,4.0,1295460096\n186,3617,1.0,1295458718\n186,3959,4.0,1276205558\n186,3996,3.5,1295460021\n186,4019,5.0,1276206397\n186,4226,5.0,1295459225\n186,4238,2.5,1276205604\n186,4306,4.0,1295460103\n186,4639,1.5,1276205429\n186,4873,4.5,1295459170\n186,4993,5.0,1295459393\n186,5618,4.5,1295459618\n186,5952,4.5,1295459397\n186,6365,4.5,1295459290\n186,6539,2.0,1295460254\n186,6934,4.5,1295459291\n186,7002,4.5,1295459191\n186,7153,4.5,1295459398\n186,7361,3.0,1295459509\n186,8783,5.0,1295459270\n186,27660,4.5,1295460283\n186,31658,4.5,1295459978\n186,46976,2.0,1276205381\n186,58559,3.0,1295459570\n186,60069,3.0,1295459523\n186,68237,4.5,1295459335\n186,72998,5.0,1295459318\n186,79132,5.0,1295459201\n187,1,4.0,1228072644\n187,2,3.0,1237164142\n187,16,4.0,1230360891\n187,39,4.5,1228083642\n187,104,4.0,1241225121\n187,141,4.0,1233516836\n187,147,4.0,1241388228\n187,162,4.0,1241931376\n187,175,4.0,1233459044\n187,180,4.5,1233448960\n187,208,2.5,1241388856\n187,223,4.5,1230362008\n187,231,3.5,1228072708\n187,239,3.0,1228071856\n187,272,2.0,1241225088\n187,290,3.0,1241225489\n187,296,4.5,1228072628\n187,317,4.0,1230417239\n187,318,5.0,1228072636\n187,329,1.0,1228072734\n187,337,5.0,1241224512\n187,344,3.0,1228072670\n187,356,4.5,1228072373\n187,362,3.0,1237164136\n187,364,4.5,1228072687\n187,367,3.5,1228072720\n187,372,3.0,1233449807\n187,410,4.0,1230417209\n187,427,2.0,1233450000\n187,441,3.5,1233448869\n187,448,3.0,1233449697\n187,454,4.0,1228072772\n187,480,3.5,1228072634\n187,500,3.5,1228072703\n187,524,4.0,1233459078\n187,551,4.0,1230360992\n187,562,4.5,1230361549\n187,575,2.5,1237164197\n187,586,3.5,1228073327\n187,588,4.5,1228072659\n187,593,4.0,1228072631\n187,594,4.0,1233458835\n187,595,4.5,1228072685\n187,596,3.5,1233458937\n187,597,4.0,1228072697\n187,609,3.5,1237164040\n187,628,4.0,1230361515\n187,661,2.5,1237164098\n187,705,2.5,1233449634\n187,724,4.0,1228071645\n187,780,4.0,1228072650\n187,783,3.5,1230417334\n187,805,4.5,1230417313\n187,837,2.5,1237164243\n187,919,4.5,1230361966\n187,926,4.0,1228072218\n187,953,3.0,1230361942\n187,1005,5.0,1233517052\n187,1006,3.5,1233449627\n187,1015,3.5,1237164038\n187,1022,4.0,1228073424\n187,1027,4.0,1228073419\n187,1028,4.5,1241416598\n187,1032,3.5,1233458848\n187,1047,3.0,1233449906\n187,1059,3.5,1237160042\n187,1060,4.0,1237159148\n187,1073,4.0,1228072744\n187,1088,4.0,1241388285\n187,1089,4.0,1228072453\n187,1097,3.5,1228072722\n187,1193,5.0,1228072435\n187,1197,3.5,1228072739\n187,1203,3.5,1228072190\n187,1208,3.0,1233458483\n187,1246,5.0,1233449323\n187,1285,4.5,1230361560\n187,1345,4.0,1228071668\n187,1356,0.5,1228083634\n187,1366,4.0,1233458974\n187,1372,0.5,1230417324\n187,1380,3.5,1237163986\n187,1407,3.5,1230417235\n187,1485,3.5,1230417226\n187,1502,2.0,1233449963\n187,1513,4.0,1228071671\n187,1517,3.5,1228073319\n187,1580,4.0,1228072725\n187,1639,4.0,1230360619\n187,1653,3.0,1241225002\n187,1672,3.5,1233459023\n187,1673,5.0,1230360554\n187,1682,4.5,1233458808\n187,1704,5.0,1228072924\n187,1717,3.5,1241388444\n187,1721,4.0,1228072729\n187,1729,4.0,1241415970\n187,1732,5.0,1230361502\n187,1734,4.0,1230360984\n187,1735,4.0,1237163990\n187,1884,4.0,1233448784\n187,1885,2.5,1241225070\n187,1895,4.5,1241388065\n187,1917,3.5,1233516622\n187,1923,3.5,1230417187\n187,1954,0.5,1230417281\n187,1968,5.0,1230361003\n187,1997,4.0,1233448875\n187,2000,2.5,1230417250\n187,2005,4.0,1230416453\n187,2018,3.5,1228071707\n187,2042,5.0,1233517050\n187,2078,3.5,1233448914\n187,2080,2.5,1233458858\n187,2081,4.5,1233448953\n187,2082,5.0,1233517049\n187,2084,3.5,1237164292\n187,2085,5.0,1241388033\n187,2096,3.5,1241415892\n187,2124,4.0,1228073393\n187,2132,4.0,1233449418\n187,2136,2.5,1228071867\n187,2146,3.0,1233449374\n187,2181,4.0,1241416624\n187,2231,3.5,1230360941\n187,2269,3.0,1241931401\n187,2316,4.0,1228071918\n187,2321,4.0,1230417276\n187,2329,5.0,1228072229\n187,2356,4.0,1233450018\n187,2396,4.5,1233458944\n187,2485,4.0,1237164621\n187,2502,4.0,1233448238\n187,2541,4.5,1228073388\n187,2571,1.0,1228072412\n187,2572,4.0,1237162862\n187,2580,4.0,1228071638\n187,2581,4.0,1237164285\n187,2599,4.5,1228073080\n187,2628,2.5,1233515950\n187,2683,3.5,1230417185\n187,2706,5.0,1233516195\n187,2710,2.5,1233516579\n187,2712,4.0,1233449823\n187,2759,4.0,1241388272\n187,2762,5.0,1228072467\n187,2803,3.5,1228071763\n187,2804,4.5,1228072860\n187,2858,5.0,1228072224\n187,2997,2.5,1230360779\n187,3005,3.5,1241388583\n187,3101,3.5,1233449591\n187,3108,3.0,1233449947\n187,3114,4.0,1228083629\n187,3176,5.0,1228073376\n187,3186,4.0,1228071787\n187,3210,5.0,1230361226\n187,3251,4.0,1241416050\n187,3252,4.0,1233448853\n187,3253,4.0,1230417315\n187,3258,4.0,1228071839\n187,3273,3.0,1241388448\n187,3275,4.0,1228072333\n187,3408,4.0,1233516872\n187,3476,4.0,1233449981\n187,3489,4.0,1228073371\n187,3535,3.5,1233459015\n187,3556,3.0,1233447535\n187,3608,0.5,1233459107\n187,3707,3.0,1233449767\n187,3793,3.0,1230417193\n187,3897,5.0,1230361495\n187,3916,4.0,1237159283\n187,3949,4.0,1228072451\n187,4308,2.5,1228073359\n187,4389,4.0,1228072544\n187,4409,3.0,1259371717\n187,4447,4.0,1237164175\n187,4450,4.0,1259371744\n187,4649,2.0,1233450060\n187,4700,3.5,1237164365\n187,4720,5.0,1228073355\n187,4734,4.5,1241225112\n187,4878,5.0,1228072919\n187,4963,4.0,1233515933\n187,4993,1.0,1228072764\n187,4995,4.5,1230361971\n187,5060,1.0,1230417287\n187,5065,4.0,1228071909\n187,5103,4.5,1237159350\n187,5379,4.0,1230360795\n187,5418,3.5,1233516041\n187,5419,1.5,1241388829\n187,5444,4.5,1233459092\n187,5459,3.0,1241388385\n187,5481,2.5,1228083856\n187,5505,4.5,1233448284\n187,5617,5.0,1230362022\n187,5668,4.0,1241388524\n187,5669,5.0,1228083856\n187,5785,4.0,1237164092\n187,5952,1.0,1228073314\n187,5989,4.0,1230417302\n187,5991,3.5,1228073156\n187,6040,2.5,1241388598\n187,6155,4.5,1237164054\n187,6187,5.0,1233458909\n187,6188,4.5,1241225062\n187,6207,4.0,1233449667\n187,6242,2.5,1237159334\n187,6323,4.0,1230416413\n187,6333,3.0,1228083851\n187,6365,0.5,1233515977\n187,6377,4.0,1230360827\n187,6436,4.5,1233447527\n187,6493,2.0,1241388736\n187,6502,3.0,1230416982\n187,6659,3.0,1241388708\n187,6711,3.5,1230361184\n187,6743,3.5,1241415977\n187,6874,3.0,1230360839\n187,6890,3.0,1237159319\n187,6930,3.5,1241225260\n187,6934,0.5,1233516626\n187,6942,4.5,1233458861\n187,6952,3.5,1237163983\n187,6987,3.0,1228072912\n187,7038,3.5,1233447509\n187,7045,3.5,1237161336\n187,7147,3.5,1230362003\n187,7153,1.0,1233515881\n187,7254,4.5,1237159957\n187,7265,4.5,1230361260\n187,7285,4.5,1228073122\n187,7317,3.5,1237163844\n187,7361,5.0,1230416336\n187,7438,3.0,1230360841\n187,7444,4.0,1237162920\n187,7451,5.0,1237162301\n187,7541,3.0,1237162916\n187,7624,4.0,1233449116\n187,8129,2.0,1233449745\n187,8366,5.0,1230360583\n187,8368,3.5,1233516741\n187,8531,3.5,1241388511\n187,8622,4.0,1230360598\n187,8636,3.5,1228073344\n187,8784,5.0,1230361955\n187,8807,4.0,1233449891\n187,8857,3.0,1233449875\n187,8874,4.0,1228073339\n187,8917,3.0,1237162835\n187,8947,2.0,1241388789\n187,8961,3.5,1233515791\n187,8970,3.5,1230361472\n187,8981,5.0,1230361237\n187,26116,3.5,1230361622\n187,26133,2.5,1230361340\n187,26422,5.0,1237164000\n187,26614,3.5,1228072339\n187,27020,3.5,1233449779\n187,27674,3.5,1230360607\n187,27706,3.0,1233459123\n187,27904,3.0,1230416400\n187,30707,4.0,1230361412\n187,31114,4.0,1259371560\n187,32587,4.0,1230361439\n187,33669,4.5,1237164640\n187,34162,5.0,1241416061\n187,34164,4.0,1233449549\n187,34532,3.5,1241388495\n187,35836,5.0,1230360635\n187,39446,1.5,1241388807\n187,40629,3.0,1230362102\n187,40815,3.5,1233516607\n187,40826,4.5,1237164389\n187,41566,3.5,1233516986\n187,42004,5.0,1230361206\n187,43177,1.0,1259371730\n187,43919,2.0,1241388761\n187,44191,5.0,1230361545\n187,44709,4.5,1233447888\n187,44761,2.0,1241225435\n187,45728,5.0,1237159237\n187,45950,3.5,1230361530\n187,46578,5.0,1228071723\n187,47423,3.0,1230361558\n187,47518,4.0,1237162935\n187,48322,4.5,1241225054\n187,48385,4.0,1233516564\n187,48516,4.5,1230361313\n187,49280,5.0,1228072108\n187,51174,4.0,1233450038\n187,51540,4.5,1233448746\n187,52245,2.5,1241388565\n187,52281,3.5,1230361482\n187,52973,5.0,1233458791\n187,53318,4.5,1233447922\n187,53519,3.5,1230416949\n187,54001,3.5,1228071900\n187,54004,3.5,1233449569\n187,54272,3.0,1233516732\n187,54503,4.5,1230361202\n187,55280,3.0,1230360964\n187,56169,3.5,1237163378\n187,56339,5.0,1230361720\n187,56367,4.0,1230361139\n187,56949,4.0,1241388210\n187,58559,4.0,1230360691\n187,59022,3.0,1233449888\n187,59315,4.0,1233515839\n187,59418,5.0,1233449519\n187,60037,2.5,1241388628\n187,60074,4.0,1237164008\n187,60487,2.5,1230361868\n187,61024,4.0,1230416904\n187,61075,3.0,1259371668\n187,61401,3.0,1233516540\n187,62434,4.0,1237161154\n187,62437,4.0,1237161148\n187,63131,5.0,1230360498\n187,63479,3.5,1259371684\n187,67087,4.0,1259371855\n187,68135,4.5,1241225462\n188,2,4.0,841064145\n188,10,4.0,841063568\n188,22,3.0,841064493\n188,24,4.0,841064046\n188,32,4.0,841063691\n188,34,4.0,841063623\n188,39,3.0,841063654\n188,47,3.0,841063606\n188,48,3.0,841063983\n188,60,4.0,841064073\n188,62,3.0,841063743\n188,93,3.0,841064610\n188,110,5.0,841063586\n188,112,4.0,841064029\n188,150,5.0,841063490\n188,153,3.0,841063511\n188,158,3.0,841064649\n188,160,3.0,841063654\n188,165,2.0,841063510\n188,173,3.0,841064943\n188,196,3.0,841064894\n188,208,2.0,841063568\n188,217,4.0,841064569\n188,231,3.0,841063527\n188,253,3.0,841063568\n188,262,3.0,841064705\n188,277,3.0,841063901\n188,282,4.0,841063954\n188,288,4.0,841063585\n188,292,3.0,841063550\n188,296,5.0,841063491\n188,312,4.0,841064943\n188,316,2.0,841063527\n188,317,3.0,841063637\n188,318,5.0,841063550\n188,329,3.0,841063550\n188,339,3.0,841063569\n188,344,4.0,841063511\n188,349,4.0,841063510\n188,350,3.0,841064111\n188,356,5.0,841063568\n188,357,4.0,841063974\n188,362,3.0,841064171\n188,364,4.0,841063606\n188,367,3.0,841063623\n188,368,4.0,841064018\n188,374,3.0,841064862\n188,377,3.0,841063623\n188,380,5.0,841063491\n188,410,3.0,841063606\n188,420,3.0,841063637\n188,435,3.0,841063691\n188,454,3.0,841063586\n188,457,3.0,841063527\n188,475,4.0,841063812\n188,480,4.0,841063586\n188,485,4.0,841064541\n188,500,5.0,841063637\n188,508,5.0,841063783\n188,509,3.0,841064089\n188,519,3.0,841064871\n188,527,5.0,841063691\n188,539,3.0,841063691\n188,543,4.0,841064722\n188,551,3.0,841064601\n188,575,3.0,841064758\n188,586,4.0,841063654\n188,587,5.0,841063654\n188,588,4.0,841063510\n188,589,5.0,841063606\n188,590,4.0,841063489\n188,592,3.0,841063489\n188,593,4.0,841063527\n188,594,5.0,841063996\n188,595,4.0,841063527\n188,596,5.0,841064111\n188,597,4.0,841063654\n188,648,3.0,841064202\n188,653,3.0,841064171\n188,661,4.0,841064618\n188,671,3.0,841064493\n188,733,4.0,841063996\n188,736,4.0,841064029\n188,780,3.0,841063954\n188,801,3.0,841064551\n188,802,4.0,841063783\n188,867,3.0,841064894\n188,1009,3.0,841065073\n188,1012,4.0,841065032\n188,1013,3.0,841065046\n188,1017,3.0,841065032\n188,1019,3.0,841065015\n188,1022,4.0,841065064\n188,1023,3.0,841065015\n188,1024,3.0,841065015\n188,1025,3.0,841065046\n188,1028,4.0,841065032\n188,1029,5.0,841064992\n188,1030,3.0,841065046\n188,1033,3.0,841065064\n189,145,2.0,968095049\n189,239,1.0,968095225\n189,253,2.0,968094991\n189,288,5.0,968092489\n189,299,4.0,968093274\n189,370,2.0,968095164\n189,434,3.0,968095141\n189,481,4.0,968095049\n189,541,5.0,968092650\n189,608,5.0,968094734\n189,673,1.0,968095189\n189,736,2.0,968095141\n189,737,1.0,968095281\n189,780,3.0,968095112\n189,785,4.0,968093150\n189,835,3.0,968094971\n189,913,3.0,968093184\n189,968,3.0,968093248\n189,1028,1.0,968094971\n189,1090,5.0,968094780\n189,1127,4.0,968092747\n189,1173,5.0,968092524\n189,1206,5.0,968092439\n189,1208,5.0,968092701\n189,1216,2.0,968094876\n189,1230,5.0,968094734\n189,1244,5.0,968094780\n189,1270,4.0,968092318\n189,1296,1.0,968094876\n189,1354,2.0,968094946\n189,1358,2.0,968092650\n189,1374,1.0,968094946\n189,1387,4.0,968094780\n189,1513,2.0,968093299\n189,1623,3.0,968093403\n189,1625,5.0,968094780\n189,1639,4.0,968094876\n189,1732,3.0,968094971\n189,1911,2.0,968092938\n189,1959,1.0,968093248\n189,2000,3.0,968094946\n189,2001,4.0,968095015\n189,2147,1.0,968092883\n189,2167,5.0,968092650\n189,2269,3.0,968092318\n189,2290,2.0,968095015\n189,2302,2.0,968094991\n189,2316,1.0,968092318\n189,2318,5.0,968093085\n189,2333,2.0,968093085\n189,2336,3.0,968092976\n189,2340,1.0,968094971\n189,2355,1.0,968092883\n189,2369,1.0,968092913\n189,2392,1.0,968093150\n189,2428,3.0,968092976\n189,2433,2.0,968092883\n189,2490,3.0,968093248\n189,2502,5.0,968093248\n189,2530,1.0,968095112\n189,2531,1.0,968095189\n189,2532,1.0,968095113\n189,2533,1.0,968095049\n189,2541,2.0,968092913\n189,2568,2.0,968093210\n189,2571,5.0,968092611\n189,2574,1.0,968093248\n189,2580,5.0,968093085\n189,2581,2.0,968093248\n189,2587,1.0,968095281\n189,2598,3.0,968093274\n189,2605,2.0,968092976\n189,2668,1.0,968095164\n189,2672,2.0,968093385\n189,2676,3.0,968093150\n189,2683,5.0,968092795\n189,2686,3.0,968093299\n189,2688,3.0,968093049\n189,2692,5.0,968093299\n189,2699,4.0,968092795\n189,2700,1.0,968093332\n189,2701,1.0,968093403\n189,2702,3.0,968093358\n189,2706,5.0,968092747\n189,2707,3.0,968092795\n189,2710,4.0,968092827\n189,2712,5.0,968092976\n189,2713,1.0,968093150\n189,2716,3.0,968093049\n189,2719,1.0,968093085\n189,2720,1.0,968093150\n189,2722,3.0,968092913\n189,2724,2.0,968093299\n189,2734,4.0,968093210\n189,2759,1.0,968092913\n189,2762,5.0,968093332\n189,2763,3.0,968093385\n189,2770,2.0,968092827\n189,2771,1.0,968092883\n189,2772,1.0,968092913\n189,2805,3.0,968093211\n189,2806,2.0,968093358\n189,2826,2.0,968092747\n189,2827,1.0,968092795\n189,2840,3.0,968093358\n189,2841,4.0,968093358\n189,2858,4.0,968092747\n189,2861,1.0,968093049\n189,2881,1.0,968092938\n189,2882,1.0,968093150\n189,2888,1.0,968092938\n189,2959,3.0,968092976\n189,2976,5.0,968092883\n189,2987,2.0,968093385\n189,2995,1.0,968093085\n189,2997,4.0,968092795\n189,3001,2.0,968092318\n189,3004,1.0,968092795\n189,3005,2.0,968092827\n189,3016,3.0,968092913\n189,3081,4.0,968093332\n189,3113,2.0,968092976\n189,3146,1.0,968094657\n189,3147,2.0,968094603\n189,3148,4.0,968094603\n189,3175,2.0,968093049\n189,3176,4.0,968093358\n189,3177,1.0,968094682\n189,3179,1.0,968094603\n189,3181,5.0,968094603\n189,3186,2.0,968094632\n189,3203,4.0,968092913\n189,3219,4.0,968093248\n189,3238,1.0,968092976\n189,3262,5.0,968092404\n189,3263,2.0,968095113\n189,3273,3.0,968093332\n189,3285,3.0,968092795\n189,3298,3.0,968092827\n189,3299,1.0,968094657\n189,3316,3.0,968094657\n189,3326,3.0,968094657\n189,3355,2.0,968094682\n189,3408,1.0,968092976\n189,3409,2.0,968093049\n189,3445,2.0,968095024\n189,3448,3.0,968092318\n189,3452,2.0,968094632\n189,3476,5.0,968092592\n189,3510,3.0,968093049\n189,3564,1.0,968093049\n189,3578,5.0,968093085\n189,3623,3.0,968093211\n189,3706,5.0,968092364\n189,3717,2.0,968093085\n189,3751,1.0,968093525\n189,3752,4.0,968093184\n189,3761,4.0,968095257\n189,3763,3.0,968094971\n189,3764,2.0,968095141\n189,3765,2.0,968095225\n189,3766,3.0,968095257\n189,3771,1.0,968094946\n189,3793,3.0,968093403\n189,3798,4.0,968093385\n189,3802,2.0,968095281\n189,3807,1.0,968094946\n189,3809,3.0,968095015\n189,3810,1.0,968095049\n189,3836,3.0,968094902\n189,3841,2.0,968095189\n189,3844,2.0,968095113\n189,3863,5.0,968092386\n189,3865,2.0,968093525\n189,3868,4.0,968094876\n189,3869,3.0,968095141\n190,43,4.0,975695042\n190,223,4.0,975693787\n190,314,5.0,975695150\n190,342,4.0,975693159\n190,785,5.0,975694561\n190,1097,5.0,975693159\n190,1513,4.0,975695042\n190,2067,4.0,975693108\n190,2070,4.0,975693108\n190,2294,3.0,975693159\n190,2310,4.0,975694759\n190,2333,4.0,975694498\n190,2336,3.0,975694137\n190,2390,4.0,975694648\n190,2394,3.0,975694955\n190,2395,4.0,975695150\n190,2396,5.0,975695150\n190,2433,3.0,975693787\n190,2434,5.0,975694030\n190,2502,4.0,975694849\n190,2575,5.0,975694030\n190,2580,5.0,975694498\n190,2585,4.0,975694648\n190,2598,3.0,975695042\n190,2599,4.0,975694137\n190,2600,3.0,975695345\n190,2607,4.0,975694309\n190,2622,4.0,975694759\n190,2629,3.0,975694648\n190,2630,4.0,975693657\n190,2683,3.0,975693352\n190,2686,5.0,975695042\n190,2690,4.0,975694561\n190,2692,5.0,975695150\n190,2702,4.0,975695197\n190,2712,5.0,975694137\n190,2716,4.0,975694498\n190,2724,3.0,975695150\n190,2734,3.0,975694759\n190,2759,4.0,975694030\n190,2762,5.0,975695150\n190,2770,3.0,975693657\n190,2858,4.0,975693291\n190,2861,3.0,975694309\n190,2881,3.0,975694030\n190,2908,5.0,975693787\n190,2975,4.0,975693657\n190,2976,5.0,975693787\n190,2987,4.0,975695345\n190,2997,5.0,975693352\n190,3051,2.0,975693352\n190,3114,5.0,975695243\n190,3117,3.0,978110441\n190,3160,5.0,975694648\n190,3174,5.0,975694648\n190,3176,5.0,975695243\n190,3298,3.0,975693657\n190,3408,4.0,975694137\n190,3512,4.0,975695042\n190,4022,3.0,978110391\n191,10,2.0,839925608\n191,34,2.0,839925667\n191,47,3.0,839925667\n191,110,3.0,839925631\n191,150,4.0,839925515\n191,153,2.0,839925540\n191,161,4.0,839925587\n191,165,3.0,839925540\n191,185,3.0,839925608\n191,208,3.0,839925608\n191,231,2.0,839925563\n191,292,2.0,839925587\n191,296,5.0,839925515\n191,300,4.0,839925667\n191,318,5.0,839925587\n191,339,4.0,839925608\n191,344,1.0,839925540\n191,349,3.0,839925540\n191,356,4.0,839925631\n191,380,3.0,839925515\n191,434,2.0,839925587\n191,454,3.0,839925667\n191,457,4.0,839925587\n191,480,3.0,839925631\n191,588,2.0,839925540\n191,590,4.0,839925515\n191,592,2.0,839925515\n191,593,4.0,839925563\n191,595,2.0,839925563\n192,2,4.0,843634025\n192,19,3.0,843633899\n192,34,5.0,843633865\n192,39,3.0,843633926\n192,44,3.0,843634056\n192,47,3.0,843633842\n192,48,3.0,843634125\n192,62,5.0,843634148\n192,158,3.0,843634056\n192,160,3.0,843633946\n192,181,2.0,843634228\n192,185,3.0,843633784\n192,208,2.0,843633809\n192,231,4.0,843633696\n192,237,5.0,843634187\n192,261,3.0,843634056\n192,266,5.0,843633967\n192,277,4.0,843634148\n192,316,3.0,843633696\n192,318,5.0,843633747\n192,344,4.0,843633649\n192,349,4.0,843633649\n192,350,3.0,843633967\n192,355,2.0,843634211\n192,356,4.0,843633747\n192,362,4.0,843634310\n192,364,5.0,843633842\n192,367,3.0,843633842\n192,370,3.0,843634211\n192,374,2.0,843634385\n192,377,3.0,843633865\n192,380,3.0,843633612\n192,432,4.0,843633967\n192,434,3.0,843633747\n192,442,2.0,843634025\n192,454,3.0,843633842\n192,455,3.0,843634419\n192,457,4.0,843633696\n192,474,3.0,843634025\n192,480,4.0,843633784\n192,500,4.0,843633865\n192,508,4.0,843634078\n192,527,5.0,843633946\n192,539,3.0,843633926\n192,551,1.0,843634056\n192,586,5.0,843633899\n192,587,4.0,843633926\n192,588,4.0,843633649\n192,590,5.0,843633612\n192,592,3.0,843633612\n192,593,3.0,843633696\n192,594,5.0,843634166\n192,595,5.0,843633696\n192,597,2.0,843633926\n192,736,3.0,843634105\n193,1,4.0,971216031\n193,16,4.0,971217498\n193,105,4.0,971217587\n193,111,5.0,971215659\n193,277,4.0,971215478\n193,296,3.0,971215907\n193,318,4.0,971217748\n193,337,5.0,971217205\n193,356,4.0,971215478\n193,428,5.0,971217447\n193,527,5.0,971217447\n193,543,5.0,971216244\n193,593,4.0,971215542\n193,608,5.0,971215638\n193,858,5.0,971215542\n193,904,4.0,971216851\n193,957,4.0,971215907\n193,1179,4.0,971217769\n193,1188,4.0,971216056\n193,1196,3.0,971215428\n193,1197,3.0,971215449\n193,1203,3.0,971215624\n193,1220,5.0,971216680\n193,1221,5.0,971215701\n193,1225,5.0,971215907\n193,1240,4.0,971215478\n193,1247,5.0,971215849\n193,1250,4.0,971215659\n193,1252,3.0,971216851\n193,1265,4.0,971216007\n193,1270,4.0,971216703\n193,1394,3.0,971216596\n193,1517,5.0,971216337\n193,1641,5.0,971216217\n193,1680,5.0,971217748\n193,1693,5.0,971215542\n193,1747,4.0,971216170\n193,2109,4.0,971215449\n193,2145,4.0,971216703\n193,2155,4.0,971216097\n193,2289,3.0,971217336\n193,2291,4.0,971217447\n193,2294,4.0,971215478\n193,2302,4.0,971216077\n193,2359,5.0,971216187\n193,2396,4.0,971215982\n193,2436,4.0,971217648\n193,2539,5.0,971216187\n193,2683,5.0,971216337\n193,2690,4.0,971216097\n193,2791,4.0,971216680\n193,2858,4.0,971217498\n193,2997,5.0,971216097\n193,3039,5.0,971216680\n193,3063,5.0,971216432\n193,3108,5.0,971216981\n193,3114,3.0,971215982\n193,3148,4.0,971215875\n193,3174,4.0,971216402\n193,3179,4.0,971215478\n193,3210,3.0,971216680\n193,3418,5.0,971215624\n193,3543,3.0,971215849\n193,3552,5.0,971216579\n193,3809,5.0,971216115\n193,3968,5.0,971216361\n194,19,3.0,848098383\n194,32,4.0,848098405\n194,44,3.0,848098576\n194,95,3.0,848098479\n194,110,4.0,848098284\n194,150,4.0,848098173\n194,151,3.0,848098528\n194,158,3.0,848098576\n194,160,3.0,848098427\n194,165,4.0,848098205\n194,172,3.0,848098592\n194,173,3.0,848098445\n194,196,3.0,848098500\n194,204,4.0,848098555\n194,208,3.0,848098284\n194,225,4.0,848098405\n194,231,3.0,848098235\n194,253,3.0,848098310\n194,292,3.0,848098264\n194,296,3.0,848098173\n194,316,4.0,848098235\n194,317,3.0,848098427\n194,329,4.0,848098264\n194,339,4.0,848098310\n194,344,3.0,848098205\n194,349,4.0,848098235\n194,353,3.0,848098576\n194,356,5.0,848098235\n194,364,5.0,848098339\n194,367,4.0,848098339\n194,368,3.0,848098555\n194,377,3.0,848098339\n194,380,4.0,848098174\n194,420,3.0,848098405\n194,432,3.0,848098445\n194,434,4.0,848098264\n194,442,3.0,848098464\n194,454,3.0,848098310\n194,457,3.0,848098205\n194,480,3.0,848098264\n194,500,3.0,848098339\n194,527,5.0,848098383\n194,551,3.0,848098555\n194,587,3.0,848098362\n194,589,4.0,848098310\n194,590,4.0,848098173\n194,592,4.0,848098173\n194,597,3.0,848098362\n194,736,4.0,848098500\n194,780,4.0,848098528\n195,6,4.0,975417247\n195,25,3.0,977756074\n195,34,4.0,976288815\n195,39,3.0,976288703\n195,42,2.0,975419204\n195,60,2.0,975416589\n195,95,3.0,975418995\n195,104,1.0,976289312\n195,110,3.0,975417183\n195,111,2.0,977743492\n195,112,1.0,977724281\n195,150,3.0,977743614\n195,164,4.0,975416383\n195,165,1.0,975418855\n195,196,2.0,978700402\n195,208,1.0,975419204\n195,235,4.0,976288515\n195,246,2.0,977724593\n195,258,2.0,975416759\n195,260,5.0,975416496\n195,281,3.0,977755886\n195,288,3.0,975417426\n195,296,3.0,977723922\n195,303,2.0,975418810\n195,318,3.0,977725027\n195,330,1.0,976288108\n195,349,3.0,975418706\n195,356,2.0,976289373\n195,368,3.0,975418706\n195,377,3.0,975417396\n195,379,2.0,975419267\n195,380,3.0,975418616\n195,405,1.0,975419407\n195,420,1.0,975419174\n195,426,3.0,978700358\n195,443,2.0,977724768\n195,457,4.0,975417105\n195,471,3.0,976289176\n195,480,4.0,975417396\n195,485,2.0,975419174\n195,527,4.0,977725070\n195,531,3.0,977743659\n195,541,3.0,975416263\n195,587,2.0,976289373\n195,589,3.0,975416970\n195,590,4.0,975763379\n195,593,4.0,977725070\n195,595,3.0,975748393\n195,597,3.0,976289451\n195,608,4.0,977723884\n195,661,4.0,975763096\n195,722,4.0,977724634\n195,724,2.0,978700358\n195,736,2.0,975419080\n195,788,1.0,975416589\n195,858,5.0,975415157\n195,898,3.0,977723786\n195,899,3.0,978700526\n195,900,3.0,978700555\n195,905,5.0,976288064\n195,908,3.0,977743568\n195,909,2.0,976288256\n195,910,5.0,976287996\n195,912,5.0,977725295\n195,913,5.0,975416305\n195,915,3.0,976288882\n195,916,2.0,976288064\n195,919,4.0,977743531\n195,920,4.0,977754632\n195,921,2.0,976288703\n195,922,5.0,975416263\n195,923,5.0,977724925\n195,924,5.0,977750661\n195,930,4.0,978699871\n195,942,5.0,975416305\n195,943,3.0,977755609\n195,944,3.0,977755742\n195,945,3.0,976287942\n195,951,3.0,977723565\n195,952,2.0,975763311\n195,953,4.0,977755092\n195,954,4.0,977755609\n195,960,3.0,977755525\n195,969,4.0,975763311\n195,971,3.0,977754744\n195,973,4.0,977743706\n195,1012,3.0,977754812\n195,1019,4.0,975416496\n195,1035,3.0,978700625\n195,1036,1.0,975417065\n195,1073,3.0,975416496\n195,1077,4.0,976288931\n195,1080,3.0,976288189\n195,1081,3.0,976289149\n195,1084,4.0,977723994\n195,1085,4.0,975763311\n195,1090,3.0,977743706\n195,1093,4.0,978700656\n195,1096,2.0,977755782\n195,1097,3.0,975416496\n195,1101,2.0,975418661\n195,1103,3.0,977754744\n195,1104,4.0,977743568\n195,1125,1.0,976289451\n195,1129,1.0,975417321\n195,1136,3.0,976287996\n195,1179,4.0,975416383\n195,1189,3.0,977724593\n195,1193,4.0,977725295\n195,1196,4.0,975416836\n195,1197,3.0,976288064\n195,1198,3.0,975416836\n195,1200,4.0,975416970\n195,1201,3.0,975416922\n195,1207,4.0,977725105\n195,1208,4.0,977750746\n195,1210,5.0,975415188\n195,1213,3.0,977723922\n195,1214,5.0,975416922\n195,1217,4.0,977725339\n195,1220,5.0,975417183\n195,1221,5.0,975416836\n195,1222,4.0,975417065\n195,1225,4.0,977725105\n195,1226,3.0,976288931\n195,1228,2.0,977743531\n195,1230,4.0,976287942\n195,1231,3.0,977754695\n195,1233,5.0,975416836\n195,1234,4.0,976288108\n195,1235,3.0,976288143\n195,1240,3.0,975417022\n195,1242,2.0,975416922\n195,1244,4.0,976288064\n195,1247,4.0,977743492\n195,1250,4.0,977725105\n195,1252,5.0,975416263\n195,1253,4.0,977750831\n195,1254,4.0,975763217\n195,1256,3.0,976288064\n195,1259,2.0,976288779\n195,1260,3.0,977723884\n195,1262,4.0,975763217\n195,1263,3.0,977743659\n195,1265,2.0,976288515\n195,1267,3.0,975416263\n195,1269,4.0,976288649\n195,1270,3.0,976288228\n195,1272,4.0,977754744\n195,1275,2.0,975763348\n195,1276,5.0,976287942\n195,1278,5.0,976288624\n195,1281,4.0,976288703\n195,1282,5.0,975748393\n195,1284,5.0,975416383\n195,1287,5.0,975417105\n195,1291,3.0,975417065\n195,1292,2.0,976288189\n195,1293,4.0,977743659\n195,1302,3.0,977755058\n195,1304,5.0,975416922\n195,1307,3.0,976288703\n195,1320,3.0,975418888\n195,1339,4.0,975415133\n195,1370,1.0,975417321\n195,1372,2.0,975418706\n195,1374,3.0,975417247\n195,1375,3.0,975418661\n195,1376,4.0,975418616\n195,1380,3.0,978700656\n195,1387,4.0,975416922\n195,1391,3.0,975418855\n195,1393,3.0,977750746\n195,1394,4.0,976287942\n195,1395,2.0,976289485\n195,1517,4.0,976288846\n195,1552,2.0,975418810\n195,1583,2.0,975416759\n195,1586,1.0,975419080\n195,1608,3.0,975418810\n195,1610,4.0,975417247\n195,1641,2.0,976288992\n195,1690,3.0,975418810\n195,1702,2.0,975416664\n195,1747,3.0,976289064\n195,1772,4.0,978700726\n195,1827,4.0,976288815\n195,1831,1.0,975419245\n195,1884,3.0,976289402\n195,1918,1.0,975419174\n195,1923,4.0,976288931\n195,1929,3.0,977743706\n195,1935,3.0,977754632\n195,1938,4.0,977756127\n195,1944,3.0,977750706\n195,1946,3.0,977755525\n195,1947,3.0,978700555\n195,1950,2.0,977750706\n195,1951,4.0,978700625\n195,1953,3.0,975416970\n195,1954,1.0,975417247\n195,1955,3.0,977750615\n195,1957,1.0,977755569\n195,1958,4.0,976288815\n195,1961,5.0,975415133\n195,1962,3.0,977755609\n195,1964,2.0,977755058\n195,1965,2.0,976288779\n195,2000,1.0,976288931\n195,2001,1.0,975417350\n195,2002,1.0,975419021\n195,2004,1.0,978700358\n195,2013,3.0,975418810\n195,2015,4.0,975416545\n195,2019,5.0,975416836\n195,2021,2.0,975416545\n195,2023,3.0,977724281\n195,2028,5.0,975416922\n195,2043,5.0,975416643\n195,2054,2.0,975416616\n195,2064,4.0,976288437\n195,2067,3.0,977755671\n195,2070,3.0,977755165\n195,2075,3.0,977743614\n195,2077,2.0,975763348\n195,2084,2.0,978700726\n195,2088,2.0,978700726\n195,2094,2.0,975419107\n195,2100,1.0,975416545\n195,2102,5.0,975748262\n195,2105,3.0,975416589\n195,2109,3.0,976289269\n195,2110,2.0,976289485\n195,2111,2.0,976289269\n195,2112,3.0,977724281\n195,2115,3.0,975417321\n195,2124,3.0,976288882\n195,2132,3.0,977755058\n195,2134,2.0,976289485\n195,2135,3.0,978700681\n195,2139,3.0,975748444\n195,2144,3.0,976289095\n195,2150,2.0,976289312\n195,2174,2.0,975416496\n195,2182,4.0,975416414\n195,2186,5.0,975416305\n195,2193,3.0,975416545\n195,2194,3.0,975417183\n195,2202,3.0,977755480\n195,2208,4.0,976288189\n195,2243,3.0,976288846\n195,2268,3.0,977724034\n195,2288,3.0,975417022\n195,2291,2.0,977756127\n195,2294,4.0,975763070\n195,2302,3.0,976289241\n195,2312,3.0,977755569\n195,2313,3.0,977755058\n195,2315,1.0,978700434\n195,2352,4.0,976288550\n195,2353,3.0,975417426\n195,2355,4.0,975748393\n195,2359,3.0,976288743\n195,2366,5.0,975417022\n195,2367,3.0,975419080\n195,2376,3.0,975418941\n195,2396,5.0,976288228\n195,2402,1.0,975419204\n195,2404,1.0,975419407\n195,2405,1.0,975419141\n195,2406,1.0,975417247\n195,2407,3.0,976289485\n195,2410,1.0,975419174\n195,2411,1.0,975419367\n195,2412,1.0,975419448\n195,2414,2.0,975418763\n195,2423,2.0,976289241\n195,2453,3.0,975416589\n195,2468,1.0,975419292\n195,2476,2.0,975418973\n195,2502,3.0,976289149\n195,2524,3.0,975419141\n195,2527,2.0,975417247\n195,2528,3.0,975418661\n195,2529,4.0,975417277\n195,2530,3.0,975419049\n195,2532,3.0,975419049\n195,2533,3.0,975418941\n195,2549,1.0,975419351\n195,2568,1.0,977724492\n195,2599,3.0,976288143\n195,2616,3.0,975418973\n195,2617,3.0,975418661\n195,2628,3.0,975416589\n195,2640,2.0,975417396\n195,2641,2.0,975418855\n195,2657,3.0,978700656\n195,2662,4.0,975417396\n195,2700,2.0,975748444\n195,2701,1.0,975419351\n195,2706,2.0,976289451\n195,2710,1.0,978700274\n195,2719,2.0,978700434\n195,2722,1.0,975419049\n195,2728,3.0,977743492\n195,2739,2.0,977755058\n195,2746,3.0,976289345\n195,2750,3.0,976288883\n195,2763,2.0,975418855\n195,2779,3.0,976289451\n195,2788,3.0,977723661\n195,2791,4.0,976288515\n195,2797,2.0,975416496\n195,2804,2.0,977723528\n195,2826,3.0,975418763\n195,2857,3.0,978700555\n195,2858,4.0,976288064\n195,2863,3.0,976288189\n195,2870,3.0,976289064\n195,2872,4.0,975416545\n195,2877,4.0,978700701\n195,2915,2.0,976288779\n195,2916,3.0,975763311\n195,2917,4.0,977723994\n195,2918,1.0,976289027\n195,2929,3.0,977755165\n195,2941,3.0,978700625\n195,2944,4.0,975417022\n195,2946,2.0,976289241\n195,2947,3.0,975417022\n195,2951,3.0,975417105\n195,2968,3.0,975416496\n195,2971,3.0,978700598\n195,2985,2.0,975418661\n195,2986,2.0,977724465\n195,2987,4.0,975416383\n195,2988,3.0,977756127\n195,2989,3.0,975418728\n195,2995,2.0,978700402\n195,3011,3.0,977725295\n195,3019,4.0,977724034\n195,3022,4.0,976287996\n195,3035,5.0,976287996\n195,3037,4.0,976288515\n195,3039,1.0,976289095\n195,3052,2.0,976289149\n195,3061,3.0,976288846\n195,3062,4.0,977755569\n195,3068,4.0,977743492\n195,3072,2.0,976288992\n195,3076,3.0,976288649\n195,3077,4.0,977724675\n195,3081,3.0,978700307\n195,3088,5.0,976288883\n195,3095,4.0,977725170\n195,3098,3.0,977750746\n195,3099,2.0,975415188\n195,3100,3.0,977750831\n195,3104,4.0,975417146\n195,3107,3.0,975418706\n195,3122,3.0,977750661\n195,3135,3.0,977755569\n195,3147,3.0,977754632\n195,3152,3.0,977750706\n195,3169,2.0,977755525\n195,3175,4.0,976289202\n195,3178,1.0,975417146\n195,3194,3.0,977756127\n195,3196,3.0,977743706\n195,3197,3.0,975417321\n195,3198,4.0,977754812\n195,3201,3.0,977743614\n195,3210,3.0,976289027\n195,3244,3.0,976289345\n195,3253,1.0,976289118\n195,3255,2.0,976289402\n195,3256,4.0,975417350\n195,3257,3.0,975419327\n195,3271,3.0,977754867\n195,3307,3.0,976288064\n195,3334,4.0,975416305\n195,3341,4.0,976288550\n195,3350,3.0,977743659\n195,3359,2.0,977750706\n195,3360,2.0,977755742\n195,3361,3.0,977723728\n195,3362,2.0,976288228\n195,3363,3.0,976288703\n195,3364,4.0,978699871\n195,3398,2.0,976289241\n195,3404,4.0,975419080\n195,3406,3.0,975417065\n195,3421,4.0,976288743\n195,3424,1.0,976288965\n195,3427,1.0,977724066\n195,3432,1.0,975419431\n195,3435,5.0,975416263\n195,3441,3.0,975419141\n195,3448,3.0,976289176\n195,3451,3.0,976288550\n195,3461,2.0,977755742\n195,3462,4.0,977723497\n195,3468,4.0,977725070\n195,3471,4.0,977755480\n195,3481,3.0,976288703\n195,3494,3.0,975763408\n195,3498,3.0,977754867\n195,3504,4.0,976288064\n195,3507,3.0,976288992\n195,3516,3.0,976288743\n195,3519,3.0,975418616\n195,3526,1.0,976288965\n195,3527,3.0,975417105\n195,3529,3.0,977724314\n195,3543,3.0,976288437\n195,3546,3.0,977754974\n195,3549,3.0,978700598\n195,3552,2.0,976289373\n195,3555,3.0,975417247\n195,3578,5.0,975417146\n195,3591,1.0,976289402\n195,3608,1.0,976288965\n195,3629,4.0,976288624\n195,3638,3.0,975418810\n195,3639,3.0,975417146\n195,3643,3.0,975419174\n195,3654,4.0,975416970\n195,3668,3.0,977750746\n195,3671,5.0,976288624\n195,3697,3.0,975419141\n195,3698,2.0,975418941\n195,3699,2.0,975763348\n195,3701,2.0,977724170\n195,3702,3.0,975417183\n195,3705,1.0,975419431\n195,3717,1.0,977724346\n195,3733,3.0,977750661\n195,3735,3.0,977723922\n195,3740,3.0,975417277\n195,3742,3.0,977743492\n195,3744,1.0,977724206\n195,3751,3.0,975748444\n195,3754,3.0,975763148\n195,3755,2.0,975418888\n195,3760,3.0,976289345\n195,3763,3.0,975417396\n195,3811,2.0,977743614\n195,3836,3.0,975417022\n195,3841,2.0,975419224\n195,3863,3.0,975415696\n195,3868,4.0,976288815\n195,3871,5.0,977750746\n195,3873,3.0,976289064\n195,3889,1.0,975416759\n195,3893,3.0,975415658\n195,3897,5.0,975415619\n195,3929,3.0,976288108\n195,3946,1.0,978700227\n195,3952,3.0,975416174\n195,3959,4.0,975763311\n195,3969,3.0,975415619\n195,3972,2.0,978700114\n195,3975,3.0,975415799\n195,3977,1.0,975418973\n195,3978,2.0,978700170\n195,3979,1.0,975415731\n195,3981,4.0,975415799\n195,3984,3.0,975417247\n195,3986,2.0,978700199\n195,3987,3.0,978700170\n195,3988,3.0,978700199\n195,3994,2.0,975416141\n195,3998,2.0,978700170\n195,3999,2.0,978700227\n195,4002,4.0,975748167\n195,4016,2.0,978700114\n195,4018,3.0,978700227\n195,4019,2.0,978700114\n195,4022,2.0,978700170\n195,4023,2.0,978700170\n195,4025,2.0,978700199\n195,4030,3.0,978700135\n195,4037,4.0,977723884\n195,4041,2.0,977743741\n195,5060,3.0,976288143\n196,5,4.0,959224062\n196,261,4.0,959223783\n196,265,5.0,959223757\n196,454,4.0,959223784\n196,809,2.0,958511618\n196,916,3.0,958511618\n196,1081,5.0,959223885\n196,1127,4.0,959223666\n196,1375,4.0,959223885\n196,1863,2.0,959224101\n196,1959,4.0,959223757\n196,2076,4.0,959223689\n196,2082,3.0,959224001\n196,2161,2.0,958511618\n196,2424,4.0,958511618\n196,2474,4.0,959223827\n196,2628,4.0,959224276\n196,2712,3.0,959223885\n196,2746,3.0,959223827\n196,2762,5.0,959223610\n196,2840,4.0,959223973\n196,2858,5.0,959224230\n196,2861,4.0,959223713\n196,2882,3.0,959224001\n196,2888,3.0,959224101\n196,2889,4.0,959223827\n196,2906,4.0,959224316\n196,2912,3.0,959223757\n196,2949,5.0,959223666\n196,2975,4.0,959223945\n196,2977,4.0,959224101\n196,3004,4.0,959224101\n196,3005,4.0,959223827\n196,3052,2.0,959223636\n196,3072,2.0,958511618\n196,3082,5.0,959223885\n196,3102,4.0,959223827\n196,3113,3.0,959224062\n196,3115,4.0,959223910\n196,3118,4.0,959223973\n196,3157,4.0,959224001\n196,3175,4.0,959224261\n196,3285,3.0,958511826\n196,3301,4.0,958511889\n196,3317,5.0,958511738\n196,3324,2.0,958511979\n196,3354,3.0,958511889\n196,3387,4.0,959223973\n196,3408,5.0,958511738\n196,3481,4.0,958511738\n196,3483,3.0,958511889\n196,3484,3.0,958511826\n196,3489,5.0,959224062\n196,3494,4.0,959223827\n196,3501,4.0,959223757\n196,3510,5.0,958511738\n196,3512,4.0,958511777\n196,3534,4.0,958511777\n196,3536,5.0,958511738\n196,3537,3.0,958511889\n196,3552,4.0,959223827\n196,3555,3.0,958511738\n196,3557,3.0,959224101\n196,3565,4.0,958512347\n196,3572,1.0,959224101\n196,3578,4.0,958511777\n196,3579,3.0,958511979\n196,3591,4.0,959223885\n196,3593,2.0,958511949\n196,3594,4.0,958511950\n196,3614,2.0,959223945\n196,3618,2.0,959223469\n196,3620,2.0,959223363\n196,3623,4.0,959223363\n196,3624,5.0,959223469\n196,3633,4.0,959223406\n196,3635,5.0,959223469\n196,3638,5.0,959223363\n196,3639,5.0,959223363\n196,3649,4.0,959223183\n196,3654,4.0,959223827\n196,3669,2.0,959223506\n196,3671,5.0,959223213\n196,3681,3.0,959223271\n196,3682,4.0,959223363\n196,3684,4.0,959223271\n196,3685,4.0,959223406\n196,3686,5.0,959223271\n196,3688,3.0,959223406\n196,3689,1.0,959223406\n196,3690,1.0,959223406\n196,3697,3.0,959223406\n196,3699,5.0,959223469\n196,3702,4.0,959223305\n196,3703,4.0,959223305\n196,3704,4.0,959223363\n196,3705,4.0,959223213\n196,3706,3.0,959223183\n196,3707,4.0,959223363\n197,32,3.0,975429339\n197,260,5.0,975429107\n197,295,2.0,975428980\n197,316,3.0,975429524\n197,329,5.0,975429480\n197,356,3.0,975428956\n197,367,3.0,975429132\n197,368,4.0,975428934\n197,379,4.0,975429588\n197,442,5.0,975429481\n197,541,4.0,975429292\n197,589,5.0,975429317\n197,610,5.0,975429433\n197,653,5.0,975429167\n197,674,3.0,975429568\n197,750,4.0,975429317\n197,780,5.0,975429453\n197,924,4.0,975429292\n197,1009,5.0,975429192\n197,1019,3.0,975429133\n197,1037,2.0,975429619\n197,1196,5.0,975429292\n197,1210,5.0,975428956\n197,1215,3.0,975429373\n197,1240,5.0,975429292\n197,1356,5.0,975429391\n197,1372,5.0,975429453\n197,1374,4.0,975429373\n197,1376,5.0,975429391\n197,1391,4.0,975429588\n197,1527,5.0,975429433\n197,1580,5.0,975429410\n197,1676,5.0,975429433\n197,1690,4.0,975429504\n197,1702,5.0,975429234\n197,1748,3.0,975429391\n197,1909,5.0,975429373\n197,2011,4.0,975429481\n197,2015,4.0,975429167\n197,2021,5.0,975429167\n197,2087,5.0,975429107\n197,2094,5.0,975429568\n197,2100,4.0,975429133\n197,2105,5.0,975429167\n197,2117,4.0,975429481\n197,2174,3.0,975429107\n197,2311,3.0,975429481\n197,2528,3.0,975429453\n197,2571,5.0,975429292\n197,2628,5.0,975428980\n197,2640,4.0,975429433\n197,2642,1.0,975428980\n197,2797,4.0,975429107\n197,2872,5.0,975429107\n197,2916,5.0,975429339\n197,2968,1.0,975429339\n197,3466,3.0,975429133\n197,3479,4.0,975429107\n197,3638,5.0,975429524\n197,3701,4.0,975429504\n197,3702,3.0,975429373\n197,3703,3.0,975429317\n197,3877,4.0,975429248\n198,36,5.0,1068823117\n198,608,3.5,1068822866\n198,858,5.0,1068822819\n198,912,5.0,1068822904\n198,1041,4.0,1068822266\n198,1042,1.0,1068822226\n198,1077,4.0,1068822270\n198,1089,2.0,1068822632\n198,1148,5.0,1068822816\n198,1172,3.5,1068822207\n198,1198,2.0,1068823363\n198,1199,5.0,1068822650\n198,1204,4.0,1068822127\n198,1208,5.0,1068822929\n198,1221,5.0,1068822896\n198,1222,5.0,1068823085\n198,1223,5.0,1068822853\n198,1244,5.0,1068822243\n198,1250,5.0,1068823038\n198,1252,5.0,1068822843\n198,1254,4.0,1068823358\n198,1259,5.0,1068823096\n198,1266,3.5,1068823099\n198,1273,2.0,1068822696\n198,1289,5.0,1068822699\n198,1405,3.0,1068822233\n198,1449,3.0,1068822980\n198,1732,4.5,1068822671\n198,1747,2.0,1068822200\n198,1900,2.5,1068822968\n198,2064,5.0,1068822263\n198,2108,5.0,1068822240\n198,2599,5.0,1068822958\n198,2692,4.0,1068823224\n198,2770,2.5,1068822148\n198,2858,5.0,1068822860\n198,2966,2.5,1068823216\n198,2973,0.5,1068822629\n198,2997,5.0,1068822844\n198,3006,3.0,1068823218\n198,3147,3.5,1068822174\n198,3160,5.0,1068823138\n198,3176,1.5,1068822131\n198,3198,5.0,1068823120\n198,3210,5.0,1068822692\n198,3246,3.5,1068823036\n198,3267,3.5,1068822701\n198,3359,4.5,1068822900\n198,3470,4.5,1068822689\n198,3481,4.5,1068822123\n198,3543,4.5,1068823063\n198,3811,5.0,1068823057\n198,3911,3.0,1068823004\n198,3925,2.0,1068822719\n198,3983,4.0,1068822774\n198,3996,3.5,1068822933\n198,4022,3.0,1068822149\n198,4027,4.5,1068823071\n198,4034,4.5,1068822841\n198,4226,4.0,1068822760\n198,4306,4.0,1068822156\n198,4641,1.5,1068823056\n198,4772,2.5,1068823126\n198,4886,4.5,1068823236\n198,4967,1.5,1068823188\n198,4973,4.5,1068822798\n198,5446,4.0,1068822788\n198,5669,4.5,1068822766\n198,5792,1.0,1068822709\n198,5812,3.0,1068823111\n198,5876,5.0,1068822832\n198,5902,5.0,1068822875\n198,5952,2.0,1068823353\n198,5995,2.0,1068823183\n198,6296,3.0,1068822990\n199,6,4.5,1398939340\n199,10,2.5,1214653475\n199,12,4.0,1214653108\n199,16,4.0,1229897881\n199,23,3.5,1214653088\n199,25,4.0,1398939318\n199,32,3.5,1214668938\n199,44,4.0,1302655511\n199,47,4.5,1252353822\n199,50,4.5,1398939345\n199,110,4.5,1214912749\n199,111,4.0,1214913146\n199,173,4.0,1214915015\n199,180,3.5,1214654817\n199,208,3.5,1214914943\n199,260,5.0,1240236363\n199,292,4.0,1214914241\n199,293,4.5,1214912822\n199,296,5.0,1214654105\n199,316,4.0,1214914498\n199,318,4.5,1246110774\n199,319,3.5,1344870428\n199,356,4.5,1219674099\n199,380,3.5,1219674129\n199,405,3.5,1214914983\n199,457,4.0,1219674110\n199,480,3.5,1214913846\n199,527,4.5,1403615210\n199,541,4.0,1399348452\n199,546,0.5,1214653017\n199,589,5.0,1240236360\n199,592,4.0,1214669072\n199,593,4.5,1214912989\n199,608,3.5,1398939437\n199,673,3.5,1214914642\n199,741,5.0,1214668931\n199,778,4.0,1309732550\n199,780,3.5,1214914176\n199,858,3.0,1214912828\n199,924,3.5,1214653527\n199,1036,4.5,1214655205\n199,1080,5.0,1214913125\n199,1127,4.0,1214915966\n199,1136,5.0,1214912843\n199,1165,1.5,1214653422\n199,1196,5.0,1214669103\n199,1198,3.5,1214912760\n199,1200,5.0,1240236332\n199,1210,5.0,1240236362\n199,1213,3.5,1214912898\n199,1214,5.0,1240236331\n199,1215,4.5,1214652837\n199,1240,4.0,1214669116\n199,1246,4.0,1398939304\n199,1252,4.0,1399560401\n199,1261,3.5,1214654850\n199,1265,4.0,1309387643\n199,1270,4.5,1214669158\n199,1274,3.0,1214668969\n199,1320,4.5,1214914556\n199,1356,3.0,1399348624\n199,1416,1.0,1214653024\n199,1527,4.0,1214669213\n199,1544,3.0,1214914617\n199,1580,4.0,1214914160\n199,1584,3.5,1214916040\n199,1587,4.0,1214652969\n199,1590,4.5,1214913804\n199,1616,2.5,1214653125\n199,1617,5.0,1399348898\n199,1625,4.0,1309386792\n199,1676,4.0,1214914656\n199,1682,4.0,1309387364\n199,1690,2.5,1214914513\n199,1704,4.5,1309733045\n199,1722,3.0,1214652862\n199,1732,3.5,1232588864\n199,1748,4.0,1215030826\n199,1882,3.0,1214915000\n199,1917,3.0,1214914523\n199,1982,3.0,1214652997\n199,2011,4.0,1214916735\n199,2012,4.0,1214914528\n199,2019,4.0,1214912802\n199,2021,4.0,1214916702\n199,2028,4.0,1309733329\n199,2231,4.0,1309919881\n199,2232,3.5,1214914147\n199,2288,5.0,1240236366\n199,2329,3.0,1246110925\n199,2336,4.0,1403615672\n199,2410,4.0,1214653058\n199,2411,3.5,1214653082\n199,2455,4.0,1214916746\n199,2467,4.0,1214654860\n199,2542,4.0,1309697035\n199,2571,5.0,1240236348\n199,2579,3.5,1232588784\n199,2628,3.5,1214914653\n199,2664,4.5,1398939259\n199,2701,2.5,1214652894\n199,2716,3.5,1242920789\n199,2788,4.5,1219266091\n199,2858,4.0,1214913104\n199,2913,3.0,1214914182\n199,2916,4.0,1214914154\n199,2959,5.0,1214654080\n199,2985,4.0,1214916772\n199,3147,4.5,1309733787\n199,3300,4.0,1242942801\n199,3355,4.5,1244708825\n199,3448,4.0,1398939283\n199,3499,4.0,1302678956\n199,3527,4.0,1214668996\n199,3576,3.0,1242920809\n199,3578,4.0,1228445210\n199,3581,3.0,1228445275\n199,3697,4.0,1214914625\n199,3793,2.5,1214916659\n199,3948,4.0,1317304364\n199,3984,3.0,1214653145\n199,3986,2.5,1214653104\n199,4011,4.0,1252258691\n199,4105,3.5,1214654864\n199,4161,3.0,1214653162\n199,4226,5.0,1246111303\n199,4370,3.5,1244632094\n199,4533,4.0,1214916673\n199,4553,3.5,1242920817\n199,4720,3.5,1399348891\n199,4735,2.5,1244632077\n199,4878,3.0,1242921062\n199,4887,3.0,1244632053\n199,4963,4.0,1310145490\n199,4993,4.0,1309696113\n199,4995,4.0,1309744312\n199,5046,3.5,1244632046\n199,5146,4.0,1228445241\n199,5171,3.0,1244632038\n199,5219,3.5,1244632033\n199,5349,1.5,1242925353\n199,5378,4.5,1244632021\n199,5418,4.0,1246111634\n199,5445,3.5,1214916646\n199,5502,4.0,1398939359\n199,5903,3.5,1214654473\n199,5952,3.0,1214912934\n199,5954,3.5,1252359427\n199,5995,3.5,1214913137\n199,6104,4.5,1214654839\n199,6188,4.0,1317304347\n199,6281,4.0,1214957551\n199,6283,4.0,1214654479\n199,6333,3.0,1214669163\n199,6350,2.5,1214654885\n199,6365,4.0,1244319731\n199,6378,3.5,1214654560\n199,6502,3.0,1214669044\n199,6537,3.5,1244319714\n199,6731,3.0,1242755992\n199,6807,4.5,1214654854\n199,6826,1.0,1214653280\n199,6870,3.5,1228344928\n199,6874,3.5,1215032354\n199,6934,4.0,1244319695\n199,6996,3.0,1399348760\n199,7001,4.0,1304732372\n199,7048,4.0,1317209176\n199,7099,2.5,1214654894\n199,7153,3.5,1309720217\n199,7254,4.0,1214669181\n199,7282,0.5,1214653717\n199,7360,3.5,1230436803\n199,7387,3.5,1309732737\n199,7438,3.5,1215033850\n199,7458,4.0,1252274571\n199,7649,2.5,1214654811\n199,7810,2.5,1214669134\n199,7841,3.5,1242921088\n199,7842,4.0,1214669187\n199,8225,4.0,1214653488\n199,8371,3.0,1242943352\n199,8403,2.0,1214654439\n199,8581,3.0,1214654799\n199,8636,1.5,1242925370\n199,8641,4.0,1317044850\n199,8644,2.5,1242925364\n199,8654,2.0,1214654443\n199,8665,4.0,1309734946\n199,8790,3.0,1219265793\n199,8810,2.5,1244319357\n199,8861,1.5,1244319344\n199,8874,4.0,1214913198\n199,8950,3.5,1309733825\n199,8957,4.5,1256387967\n199,26554,4.0,1242942657\n199,26603,4.0,1302722568\n199,26614,4.0,1309732989\n199,27005,3.5,1214912837\n199,27410,4.0,1219636901\n199,27660,3.5,1214669042\n199,27728,4.5,1214915208\n199,27773,4.0,1399349225\n199,27831,4.0,1229897877\n199,27922,4.0,1309696936\n199,31410,4.0,1214912887\n199,32587,4.0,1214654743\n199,32825,4.0,1242518308\n199,33493,5.0,1214916719\n199,33558,3.0,1229285008\n199,33660,4.0,1246111478\n199,33794,4.0,1214912961\n199,34162,3.5,1317045321\n199,34319,3.5,1214916710\n199,34405,3.0,1242517942\n199,37830,3.5,1214669077\n199,39446,4.0,1256387906\n199,40732,3.0,1304737195\n199,42197,3.5,1219674675\n199,43936,3.5,1214654578\n199,44191,4.5,1214654765\n199,44199,3.0,1228344863\n199,44665,4.0,1214654380\n199,44761,2.5,1230436250\n199,45447,4.0,1399349134\n199,45722,4.0,1401481169\n199,46976,3.5,1214913769\n199,47610,4.0,1252359464\n199,48516,4.0,1229897584\n199,48774,3.5,1228344915\n199,48780,4.0,1214654141\n199,48877,4.0,1256387898\n199,49272,4.5,1228344908\n199,51255,4.0,1214913086\n199,51357,4.0,1309905793\n199,51662,3.5,1228446268\n199,52281,3.0,1215032108\n199,52328,3.0,1242925102\n199,52606,4.0,1317045047\n199,53000,3.0,1242925393\n199,53129,4.0,1309387250\n199,53207,3.5,1245103026\n199,53519,3.0,1230436330\n199,53953,3.5,1228543860\n199,53956,3.5,1269659223\n199,53972,3.0,1400971299\n199,53996,4.0,1214916704\n199,54286,4.0,1246111471\n199,54771,3.0,1244317633\n199,54995,4.0,1214654425\n199,54997,4.0,1239292377\n199,55118,3.5,1309732614\n199,55232,2.5,1244317650\n199,55290,4.0,1228160566\n199,55363,3.0,1252238104\n199,55577,3.5,1256387894\n199,55765,3.5,1214654749\n199,55820,4.0,1214912860\n199,55908,4.5,1214654772\n199,56145,4.0,1214915945\n199,56169,4.0,1214654123\n199,56174,3.5,1214916053\n199,56587,3.5,1214654411\n199,56788,4.0,1309734942\n199,56801,2.5,1244317641\n199,57368,3.5,1242942789\n199,57669,4.0,1215054968\n199,58295,4.0,1229898168\n199,58432,3.0,1256388498\n199,58559,4.5,1219627288\n199,58998,4.0,1227983204\n199,59018,3.0,1214913351\n199,59126,4.5,1238361163\n199,59315,3.5,1227994813\n199,59369,4.0,1248801337\n199,59590,2.0,1214654359\n199,59810,3.5,1228073545\n199,60040,3.5,1242925340\n199,60069,1.5,1214653266\n199,60684,3.5,1248801345\n199,60756,3.5,1317123305\n199,60943,3.5,1238361169\n199,61132,3.5,1317123283\n199,61248,3.5,1231600156\n199,61323,3.5,1230436294\n199,62792,3.5,1252359503\n199,62849,4.0,1344680308\n199,63062,4.0,1238361176\n199,63436,3.5,1256387874\n199,63481,2.0,1256388597\n199,64957,3.5,1248801342\n199,65133,4.5,1309697099\n199,65682,3.0,1256388477\n199,66090,3.5,1340544965\n199,66509,3.5,1317045887\n199,67665,2.0,1256251935\n199,67867,2.0,1256251907\n199,68135,4.0,1256251670\n199,68157,4.0,1256251610\n199,68159,3.5,1309387306\n199,68194,3.5,1309730663\n199,68205,3.5,1256251926\n199,68237,3.5,1265915291\n199,68319,3.5,1256251923\n199,68358,4.0,1399348745\n199,68791,3.5,1263236080\n199,68932,2.0,1256251949\n199,69122,3.5,1265915315\n199,69278,3.5,1256388120\n199,69526,3.5,1258846542\n199,69844,3.5,1400971273\n199,70286,4.5,1399348657\n199,71135,4.0,1265915319\n199,71156,3.5,1264729899\n199,71535,4.0,1265915303\n199,72129,3.5,1260228448\n199,72998,3.0,1272842839\n199,73017,4.0,1264729743\n199,73211,3.5,1317509465\n199,73268,3.5,1268000977\n199,73321,3.5,1283388975\n199,73929,3.0,1269640369\n199,74452,3.5,1282429810\n199,74458,4.0,1283387896\n199,74532,3.5,1272841758\n199,74545,3.0,1283388485\n199,74685,3.5,1283389030\n199,74948,3.0,1283387901\n199,75813,3.5,1310045044\n199,75985,4.0,1283389066\n199,76210,3.0,1310045181\n199,76251,4.5,1398939824\n199,78034,3.0,1283389041\n199,78160,4.0,1309696123\n199,78209,3.5,1317045882\n199,78218,3.5,1309744461\n199,78544,4.0,1309696118\n199,79006,4.0,1310647351\n199,79057,3.5,1282419759\n199,79132,4.0,1304732271\n199,79134,3.5,1310044703\n199,79592,4.0,1310044593\n199,79695,3.5,1286975960\n199,79796,3.5,1340544998\n199,80363,3.0,1286976021\n199,80463,4.0,1293116475\n199,80489,3.5,1309732970\n199,80906,4.0,1303602834\n199,81229,3.5,1310044387\n199,81535,3.0,1291652381\n199,81562,4.0,1304735612\n199,81788,3.5,1309387345\n199,81845,4.0,1296818758\n199,81932,4.0,1398939823\n199,82459,3.5,1309194331\n199,82461,3.5,1309194348\n199,82854,3.0,1309194435\n199,83134,4.5,1317044938\n199,83349,3.5,1310044279\n199,83506,4.0,1309697063\n199,84152,4.0,1309387130\n199,84187,4.0,1302396566\n199,84374,3.5,1309194419\n199,84395,2.5,1303586336\n199,84601,3.5,1309194343\n199,84615,3.0,1317045017\n199,84954,3.5,1309387767\n199,85020,3.5,1309194365\n199,85022,3.5,1309194439\n199,85025,3.5,1304654795\n199,85131,3.5,1304654784\n199,85412,3.5,1309696063\n199,85414,4.0,1399349502\n199,85774,4.0,1398939569\n199,86142,4.0,1309695240\n199,86290,3.5,1309194324\n199,86332,4.0,1314452648\n199,86345,4.0,1310045211\n199,86347,4.0,1309695102\n199,86377,4.0,1309695097\n199,87232,4.0,1312102255\n199,87485,3.5,1314452550\n199,88140,4.0,1398939836\n199,88163,3.5,1398939852\n199,88405,3.5,1317045456\n199,88744,3.5,1320000245\n199,88785,3.5,1320000267\n199,88812,3.5,1320357301\n199,89492,4.0,1398939754\n199,89745,4.0,1398939868\n199,89753,3.5,1327437812\n199,90345,3.5,1399348480\n199,90405,3.5,1327437822\n199,91500,4.0,1398939873\n199,91529,4.5,1398939838\n199,91542,3.5,1327437817\n199,91630,3.5,1340543452\n199,91653,3.5,1340543463\n199,91658,4.0,1398939859\n199,92420,3.5,1340543440\n199,93443,4.0,1340543473\n199,94959,3.5,1398939563\n199,96079,4.5,1398939832\n199,96610,4.0,1398939944\n199,96829,4.5,1398939574\n199,97921,4.0,1398939843\n199,97938,4.0,1398939828\n199,98154,4.0,1398939943\n199,99114,4.0,1398939602\n199,103235,4.5,1401481231\n199,103253,4.0,1399348642\n199,104841,4.0,1398939891\n199,104879,3.5,1399349123\n199,104913,4.5,1398939609\n199,106100,4.0,1398939752\n199,106441,3.5,1401463668\n199,106487,4.0,1398939878\n199,106489,4.0,1398939883\n199,106696,3.5,1398939846\n199,106916,3.5,1398939907\n199,107141,3.5,1398939855\n199,112112,2.0,1403615167\n200,1,3.0,1437932719\n200,2,3.5,1457721108\n200,32,4.0,1437934584\n200,110,3.5,1438019199\n200,145,4.5,1437933154\n200,170,4.0,1437934118\n200,185,2.0,1438020091\n200,293,4.5,1437933335\n200,296,4.0,1437934292\n200,356,4.0,1437932699\n200,362,2.0,1438020132\n200,364,3.0,1438020001\n200,367,3.0,1457721047\n200,377,3.5,1438019501\n200,454,4.5,1437933180\n200,455,3.0,1438019776\n200,480,3.5,1438019480\n200,500,4.0,1437934173\n200,527,4.5,1437933687\n200,586,3.5,1438019530\n200,588,1.5,1438020304\n200,593,4.0,1437932704\n200,595,1.0,1438022848\n200,597,4.0,1438023488\n200,648,3.5,1438019541\n200,780,2.5,1457720765\n200,1020,4.5,1437933205\n200,1080,0.5,1438020533\n200,1088,1.0,1438020434\n200,1092,4.0,1438023365\n200,1097,3.0,1438026859\n200,1199,1.5,1438019794\n200,1222,4.5,1437933771\n200,1265,4.5,1437933144\n200,1270,5.0,1437932711\n200,1291,4.5,1438023102\n200,1307,4.0,1437934016\n200,1367,1.5,1457720512\n200,1380,2.5,1438023863\n200,1527,2.5,1438024193\n200,1544,3.0,1438019687\n200,1580,4.0,1437934472\n200,1584,2.0,1438020073\n200,1610,3.5,1438019190\n200,1619,2.5,1438024517\n200,1625,5.0,1437933483\n200,1645,4.5,1437933047\n200,1682,5.0,1437933004\n200,1702,3.0,1438019694\n200,1721,2.0,1438025229\n200,1801,1.5,1438025258\n200,1917,3.0,1438024391\n200,1954,4.0,1437934482\n200,2011,4.5,1437933259\n200,2012,4.0,1437933265\n200,2028,4.5,1437933564\n200,2321,4.0,1437934826\n200,2353,4.0,1437934164\n200,2378,0.5,1457720591\n200,2403,2.5,1438024000\n200,2420,3.5,1438025534\n200,2427,3.0,1438019650\n200,2470,4.5,1437933347\n200,2471,4.0,1437934384\n200,2496,4.0,1437934263\n200,2571,5.0,1437932708\n200,2605,4.0,1437934093\n200,2671,3.0,1438019826\n200,2687,1.5,1438022681\n200,2706,1.5,1438020327\n200,2724,1.0,1438023546\n200,2762,1.5,1438024902\n200,2953,2.5,1438019988\n200,2959,4.0,1438019521\n200,3020,4.5,1437933392\n200,3147,3.0,1438021867\n200,3408,4.5,1438021136\n200,3409,3.0,1438019677\n200,3462,4.0,1437934447\n200,3623,3.0,1438021130\n200,3639,3.0,1438019610\n200,3717,3.0,1438021228\n200,3785,0.5,1438020482\n200,3825,2.5,1438021572\n200,3827,3.0,1438021425\n200,4016,1.0,1438022765\n200,4018,2.0,1438020041\n200,4022,1.0,1438020390\n200,4025,3.0,1438019702\n200,4052,3.0,1438019663\n200,4161,4.5,1437933068\n200,4223,4.5,1437933190\n200,4226,4.5,1437933375\n200,4299,3.5,1438019300\n200,4306,4.5,1437933791\n200,4308,3.0,1438021180\n200,4310,2.0,1438020103\n200,4344,3.5,1438019437\n200,4369,3.5,1438021327\n200,4370,2.5,1438021196\n200,4447,0.5,1438020494\n200,4489,2.5,1438023811\n200,4519,3.0,1438019763\n200,4638,2.5,1438019912\n200,4661,2.5,1438019883\n200,4681,4.0,1437934282\n200,4886,4.0,1437934875\n200,4901,2.5,1438021417\n200,4963,4.5,1437933930\n200,4995,4.5,1437933666\n200,5010,4.0,1437934400\n200,5218,4.5,1437933821\n200,5349,4.0,1437934250\n200,5418,4.5,1437933310\n200,5445,4.5,1437933525\n200,5574,3.5,1438019427\n200,5620,4.0,1437934184\n200,5679,1.5,1438020284\n200,5809,1.0,1438024335\n200,5872,3.5,1438019509\n200,5956,2.5,1438021323\n200,5989,4.0,1437934888\n200,6059,3.5,1438019420\n200,6281,4.5,1437933101\n200,6365,2.0,1438019621\n200,6373,4.0,1437934307\n200,6377,4.5,1437934861\n200,6378,4.0,1437934457\n200,6539,4.5,1437933467\n200,6548,4.5,1437933162\n200,6550,2.5,1438019902\n200,6889,3.5,1438022656\n200,6934,1.0,1437933444\n200,7154,3.0,1438023475\n200,7155,4.0,1457123750\n200,7163,3.0,1437934203\n200,7293,3.0,1438019736\n200,7361,3.5,1438019343\n200,8360,4.0,1437934839\n200,8361,2.5,1438021370\n200,8369,4.5,1437933114\n200,8376,2.5,1438021349\n200,8529,3.5,1438019285\n200,8604,2.5,1438019943\n200,8622,1.5,1438020315\n200,8644,3.5,1437933517\n200,8665,4.5,1437933321\n200,8874,4.5,1437933843\n200,8957,1.0,1438020444\n200,8958,3.5,1438019161\n200,8961,3.0,1438021109\n200,8984,3.0,1438019594\n200,26686,3.5,1438019333\n200,26999,2.0,1438020152\n200,27193,2.0,1438020062\n200,27482,1.0,1438019854\n200,27821,3.5,1459700798\n200,30812,2.5,1438021386\n200,31685,2.5,1438019979\n200,32587,2.5,1438020017\n200,33004,4.5,1437933281\n200,33499,2.5,1438019970\n200,33679,3.0,1438019744\n200,33836,3.0,1438019713\n200,36289,2.0,1438026597\n200,36525,1.0,1438020362\n200,36529,5.0,1437933015\n200,40278,3.5,1438021715\n200,42015,3.5,1438019312\n200,44022,3.5,1438019394\n200,45186,3.0,1438019808\n200,45431,4.5,1437933214\n200,45447,3.0,1438019273\n200,45517,3.5,1438019470\n200,45720,3.0,1438019838\n200,45732,1.0,1438020402\n200,46578,4.0,1437934040\n200,46976,4.0,1437934230\n200,48516,1.5,1438023151\n200,48774,3.5,1438019237\n200,48780,4.5,1437933057\n200,49272,3.0,1438019818\n200,49530,4.5,1437933298\n200,50872,4.5,1437933614\n200,51084,1.0,1438020422\n200,52281,3.5,1438021635\n200,53121,4.0,1437933983\n200,53125,2.0,1438020116\n200,53322,4.5,1437933896\n200,53996,2.0,1438021378\n200,54272,0.5,1438020523\n200,54286,4.5,1437933424\n200,54995,4.0,1437934544\n200,54999,4.0,1437934495\n200,55247,4.0,1437934605\n200,56174,4.5,1437933411\n200,56367,4.0,1437934848\n200,57353,4.0,1437934081\n200,57528,1.5,1457720604\n200,57669,2.5,1438021457\n200,58047,3.5,1451158627\n200,58103,1.0,1438020378\n200,58295,4.0,1437934027\n200,58803,4.5,1437933124\n200,59369,2.5,1438020010\n200,60069,4.5,1437933860\n200,60074,2.0,1438020183\n200,62849,1.5,1451152938\n200,63082,3.0,1438021219\n200,63113,3.5,1438019495\n200,64716,4.5,1437933496\n200,64969,3.5,1438019382\n200,67923,3.5,1457720434\n200,68157,4.5,1438021207\n200,68954,4.0,1437934055\n200,69122,1.0,1438021278\n200,69644,4.0,1437934321\n200,73017,4.5,1437933601\n200,74946,2.0,1438020053\n200,76093,3.5,1438020823\n200,78637,3.5,1457720880\n200,79091,3.0,1457727550\n200,79132,3.5,1438019548\n200,79293,1.5,1460208561\n200,79695,4.0,1438024022\n200,81229,3.5,1438024241\n200,81847,4.5,1438022790\n200,85736,3.5,1438019406\n200,86298,3.5,1438019180\n200,87522,4.5,1437933225\n200,87975,3.0,1451143950\n200,90405,4.0,1437934107\n200,90647,1.5,1438020234\n200,90746,4.0,1437934533\n200,91542,4.5,1437933877\n200,91978,4.5,1451158649\n200,94015,4.5,1437933239\n200,95510,4.0,1457720671\n200,97225,3.0,1459713788\n200,97938,2.0,1438026480\n200,101142,3.5,1457720927\n200,102903,3.0,1438019599\n200,103141,4.0,1457720210\n200,103810,2.5,1457720226\n200,104374,3.5,1438019151\n200,106696,3.5,1438022807\n200,106782,3.0,1438022132\n200,106916,4.5,1438023118\n200,106920,3.5,1438025417\n200,111659,4.0,1438026414\n200,129354,4.0,1457720823\n200,134130,4.5,1457123787\n200,136592,1.5,1438020227\n201,1,5.0,1110421816\n201,6,5.0,1110421617\n201,32,5.0,1110497366\n201,34,4.0,1110498208\n201,47,5.0,1110497364\n201,50,5.0,1110421811\n201,58,4.0,1110498115\n201,104,3.0,1110498315\n201,110,5.0,1110497333\n201,150,5.0,1110497331\n201,153,4.0,1110497391\n201,165,4.0,1110498217\n201,186,3.0,1110421287\n201,235,1.0,1110421168\n201,260,5.0,1110497338\n201,293,5.0,1110421608\n201,296,5.0,1110497317\n201,316,4.0,1110498205\n201,318,5.0,1110421776\n201,349,4.0,1110498219\n201,356,4.0,1110498250\n201,377,4.0,1110497383\n201,380,4.0,1110498227\n201,416,4.0,1110497838\n201,457,4.0,1110498109\n201,480,5.0,1110497321\n201,494,3.0,1110498312\n201,527,4.0,1110498225\n201,589,4.0,1110498130\n201,592,4.0,1110497327\n201,593,4.0,1110497319\n201,608,4.0,1110498221\n201,648,4.0,1110498223\n201,736,4.0,1110498266\n201,741,5.0,1110497595\n201,780,4.0,1110498202\n201,832,4.0,1110421250\n201,1101,5.0,1110421653\n201,1136,5.0,1110498354\n201,1148,5.0,1110497180\n201,1196,5.0,1110498264\n201,1198,5.0,1110421783\n201,1210,5.0,1110497352\n201,1220,4.0,1110498423\n201,1270,5.0,1110497190\n201,1291,5.0,1110421804\n201,1396,4.0,1110497263\n201,1527,5.0,1110421649\n201,1653,4.0,1110498253\n201,1917,4.0,1110421212\n201,1957,5.0,1110421647\n201,2081,3.0,1110498492\n201,2115,5.0,1110421241\n201,2302,4.0,1110498147\n201,2329,4.0,1110421801\n201,2355,5.0,1110498383\n201,2406,3.0,1110498479\n201,2420,3.0,1110498317\n201,2599,4.0,1110421261\n201,2687,4.0,1110498475\n201,2690,3.0,1110498433\n201,2699,3.0,1110498308\n201,2716,4.0,1110498366\n201,2762,2.0,1110421795\n201,2797,5.0,1110421217\n201,2950,4.0,1110497834\n201,3114,4.0,1110498155\n201,3275,4.0,1110498370\n201,3498,4.0,1110498376\n201,3526,4.0,1110498443\n201,3793,4.0,1110421230\n201,3948,4.0,1110498145\n201,4085,4.0,1110497256\n201,4306,5.0,1110421227\n201,4878,4.0,1110421685\n201,4886,5.0,1110421828\n201,4993,5.0,1110421223\n201,5349,4.0,1110421545\n201,5418,4.0,1110498357\n201,5679,5.0,1110421423\n201,5903,4.0,1110498246\n201,5949,3.0,1110498495\n201,5952,5.0,1110421766\n201,5989,4.0,1110498167\n201,6333,4.0,1110421535\n201,6377,5.0,1110421778\n201,6539,4.0,1110498178\n201,6909,5.0,1110421402\n201,7147,5.0,1110497183\n201,7153,5.0,1110421590\n201,7155,1.0,1110421747\n201,7361,5.0,1110421610\n201,7458,4.0,1110421715\n201,8360,5.0,1110497187\n201,8368,5.0,1110421773\n201,8376,3.0,1110497605\n201,8600,4.0,1110421679\n201,8636,4.0,1110421548\n201,8644,4.0,1110421642\n201,8665,4.0,1110498238\n201,8666,0.5,1110421498\n201,8781,4.0,1110421712\n201,8783,4.0,1110498185\n201,8784,5.0,1110421599\n201,8798,4.0,1110421604\n201,8810,4.0,1110497817\n201,8827,4.0,1110498191\n201,8836,3.0,1110497762\n201,8860,4.0,1110421724\n201,8861,4.0,1110497774\n201,8865,4.0,1110498259\n201,8870,4.0,1110497789\n201,8873,0.5,1110421623\n201,8874,4.0,1110498257\n201,8947,5.0,1110421341\n201,8949,4.0,1110421368\n201,8958,5.0,1110421482\n201,8961,5.0,1110421389\n201,8970,4.0,1110498198\n201,27822,4.0,1110498255\n201,27882,5.0,1110421594\n201,30812,3.0,1110498310\n202,296,4.0,1046144523\n202,318,5.0,1046144523\n202,329,4.0,1046144576\n202,419,2.0,1046145872\n202,442,2.0,1046144383\n202,969,5.0,1046145571\n202,1019,4.0,1046145229\n202,1097,4.0,1046144125\n202,1127,5.0,1046145496\n202,1196,4.0,1046144150\n202,1210,4.0,1046144204\n202,1220,5.0,1046145955\n202,1250,4.0,1046146002\n202,1270,5.0,1046145766\n202,1304,5.0,1046146039\n202,1327,3.0,1046144150\n202,1333,4.0,1046145918\n202,1371,4.0,1046144576\n202,1461,4.0,1046144576\n202,1517,4.0,1046144310\n202,1587,4.0,1046146174\n202,1690,2.0,1046144283\n202,1953,4.0,1046144406\n202,1968,4.0,1046146002\n202,1997,5.0,1046146457\n202,1998,3.0,1046146457\n202,2002,4.0,1046144059\n202,2011,4.0,1046145766\n202,2012,4.0,1046145766\n202,2015,2.0,1046145496\n202,2122,2.0,1046146097\n202,2124,3.0,1046145518\n202,2393,3.0,1046144576\n202,2423,4.0,1046144340\n202,2474,4.0,1046146153\n202,2530,4.0,1046145847\n202,2531,4.0,1046145803\n202,2532,4.0,1046146174\n202,2533,4.0,1046146427\n202,2628,3.0,1046144087\n202,2683,3.0,1046145724\n202,2734,5.0,1046143639\n202,2739,4.0,1046146153\n202,2748,2.0,1046145613\n202,2794,5.0,1046144383\n202,2795,5.0,1046144576\n202,2944,5.0,1046146311\n202,3004,3.0,1046145766\n202,3101,4.0,1046144164\n202,3285,4.0,1046145833\n202,3401,2.0,1046145766\n202,3412,3.0,1046145833\n202,3471,5.0,1046146153\n202,3701,4.0,1046144283\n202,3766,4.0,1046144468\n202,3768,3.0,1046144310\n202,3930,2.0,1046146200\n202,4008,4.0,1046145972\n202,4042,4.0,1046145571\n202,4317,3.0,1046144468\n202,4327,4.0,1046144205\n202,4396,3.0,1046146054\n202,4466,5.0,1046145496\n202,4566,2.0,1046144283\n202,4589,4.0,1046146362\n202,4767,2.0,1046145496\n202,4915,3.0,1046145833\n202,4945,5.0,1046146413\n202,5055,5.0,1046146342\n202,5139,4.0,1046145782\n202,5141,3.0,1046145766\n202,5540,4.0,1046146122\n202,5568,3.0,1046144059\n202,5872,3.0,1046146311\n202,5910,1.0,1046144205\n202,5927,4.0,1046145872\n203,23,3.5,1226321189\n203,50,5.0,1226321329\n203,318,5.0,1226321327\n203,541,4.5,1226321444\n203,750,4.5,1226322072\n203,858,5.0,1226321325\n203,913,4.0,1226321449\n203,922,4.5,1226321130\n203,934,2.5,1226321225\n203,1049,3.5,1226321147\n203,1212,4.5,1226321861\n203,1221,4.5,1226322074\n203,1245,4.0,1226321604\n203,1248,3.5,1226321950\n203,1252,4.0,1226321446\n203,1284,3.5,1226321471\n203,1556,2.5,1226321160\n203,1617,5.0,1226321441\n203,1748,4.5,1226321610\n203,2085,2.0,1226321078\n203,2116,5.0,1226321153\n203,2410,3.0,1226321175\n203,2688,4.5,1226321113\n203,2707,3.5,1226321071\n203,3298,2.5,1226321194\n203,3435,4.5,1226321211\n203,3617,4.0,1226321092\n203,4226,4.5,1226322068\n203,4235,4.0,1226321209\n203,4848,4.5,1226321666\n203,5015,3.0,1226321171\n203,6016,4.0,1226322059\n203,32587,4.5,1226321660\n203,39292,3.5,1226321658\n203,44761,4.0,1226321663\n203,48872,3.5,1226321680\n203,58559,5.0,1226321322\n204,16,4.0,1096531183\n204,58,2.5,1096531266\n204,112,2.5,1096531212\n204,151,3.0,1096531207\n204,432,1.5,1096531189\n204,923,4.5,1096531237\n204,1086,2.5,1096531463\n204,1213,3.0,1096531447\n204,1230,4.0,1096531174\n204,1234,3.5,1096531281\n204,1246,2.0,1096531241\n204,1247,4.5,1096531199\n204,1304,4.0,1096531179\n204,1370,2.5,1096531246\n204,1374,3.5,1096531218\n204,1407,3.0,1096531273\n204,1682,4.0,1096531289\n204,2011,4.0,1096531232\n204,2066,5.0,1096531848\n204,2291,3.0,1096531254\n204,3552,4.0,1096532134\n204,3996,4.0,1096531194\n204,4306,3.5,1096531277\n204,4531,0.5,1096531676\n204,4700,1.0,1096531631\n204,6954,5.0,1096531803\n204,7438,3.0,1096531444\n204,8751,5.0,1096531492\n204,8754,5.0,1096531791\n204,8838,3.0,1096531437\n204,8899,4.0,1096531609\n205,1,4.5,1442148577\n205,10,3.5,1442136824\n205,47,4.5,1442137042\n205,50,5.0,1442136794\n205,110,3.0,1442148308\n205,260,3.0,1442136902\n205,356,2.5,1442148305\n205,480,4.5,1442890319\n205,589,2.5,1442148495\n205,593,3.5,1442887009\n205,720,1.0,1442148501\n205,741,4.5,1442148537\n205,745,1.0,1442146219\n205,858,4.0,1442137489\n205,919,3.0,1442148413\n205,1036,2.5,1442886992\n205,1148,1.0,1442146198\n205,1196,3.0,1442136904\n205,1197,4.0,1442136917\n205,1198,3.5,1442137496\n205,1210,3.0,1442148354\n205,1214,2.0,1442137072\n205,1221,3.5,1442137491\n205,1223,1.0,1442137206\n205,1240,4.5,1442148604\n205,1270,4.0,1442148563\n205,1291,3.5,1442148357\n205,1527,4.0,1442887259\n205,2571,2.5,1442886844\n205,2762,4.0,1442886871\n205,2916,4.5,1442890270\n205,2947,2.5,1442890213\n205,2959,3.0,1442886871\n205,3000,4.0,1442886997\n205,3996,4.5,1442890259\n205,4993,4.0,1442886841\n205,5418,3.0,1442887018\n205,5618,5.0,1442886948\n205,5952,3.5,1442886850\n205,5971,4.5,1442886950\n205,6333,3.0,1442890297\n205,6539,5.0,1442886719\n205,7090,4.0,1442890239\n205,7153,3.5,1442886842\n205,8368,3.0,1442890231\n205,8798,3.0,1442890292\n205,8961,4.0,1442148586\n205,26662,4.0,1442148486\n205,26776,3.5,1442148664\n205,27731,4.0,1442886944\n205,27839,0.5,1442152615\n205,30793,3.5,1442152212\n205,31221,2.5,1442152533\n205,31658,4.5,1442137049\n205,31685,3.5,1442152274\n205,31696,4.5,1442152271\n205,32031,3.0,1442152434\n205,32296,3.0,1442152668\n205,33493,4.5,1442152189\n205,33615,3.0,1442152295\n205,33679,4.0,1442152224\n205,33794,4.5,1442137184\n205,34162,3.0,1442152221\n205,34332,2.5,1442152658\n205,35836,2.0,1442152205\n205,36519,3.0,1442152464\n205,37386,3.5,1442152387\n205,37729,4.0,1442152266\n205,37830,4.0,1442152518\n205,37857,5.0,1442152664\n205,39446,0.5,1442152372\n205,39715,3.5,1442152678\n205,40278,1.5,1442152333\n205,40339,2.0,1442152633\n205,40815,4.5,1442152199\n205,41566,5.0,1442152215\n205,41571,4.5,1442152412\n205,42011,2.5,1442152486\n205,42723,0.5,1442152472\n205,43928,1.5,1442152594\n205,44022,2.5,1442152349\n205,44191,5.0,1442152164\n205,45186,3.5,1442152326\n205,45447,5.0,1442152240\n205,45501,1.5,1442152495\n205,45517,4.0,1442152261\n205,45668,2.5,1442152542\n205,45672,3.5,1442152374\n205,45720,2.5,1442152291\n205,45722,5.0,1442152201\n205,45730,3.5,1442152596\n205,46322,4.0,1442152580\n205,46965,2.0,1442152448\n205,46970,3.0,1442152355\n205,48322,0.5,1442152600\n205,48385,2.5,1442152210\n205,48394,3.5,1442137089\n205,48516,3.0,1442146184\n205,48780,4.5,1442137058\n205,48877,0.5,1442152465\n205,48982,3.0,1442152621\n205,49272,3.5,1442152179\n205,49530,4.5,1442148678\n205,50068,4.5,1442152385\n205,50872,5.0,1442152200\n205,51084,4.5,1442152512\n205,51086,3.5,1442152483\n205,51412,4.0,1442152511\n205,51662,4.0,1442152171\n205,52245,3.5,1442152421\n205,52281,5.0,1442152288\n205,52722,3.5,1442152262\n205,52973,3.0,1442152247\n205,53121,3.0,1442152396\n205,53464,2.0,1442152403\n205,53953,4.0,1442152356\n205,53993,2.0,1442152480\n205,54004,1.0,1442152636\n205,54259,5.0,1442152268\n205,54272,4.5,1442152234\n205,54286,2.5,1442137180\n205,54995,4.0,1442152364\n205,54997,5.0,1442152255\n205,55052,4.0,1442152381\n205,55232,3.5,1442152485\n205,55282,3.0,1442152494\n205,55577,0.5,1442152640\n205,55768,3.5,1442152645\n205,55995,4.0,1442152459\n205,56152,4.0,1442152396\n205,56171,4.0,1442152429\n205,56174,4.0,1442152226\n205,56367,3.5,1442152190\n205,56587,4.0,1442152433\n205,56757,5.0,1442152288\n205,57368,2.5,1442152301\n205,57528,4.0,1442152498\n205,57640,3.5,1442152378\n205,58025,4.0,1442152400\n205,58103,3.5,1442152604\n205,58293,3.0,1442152418\n205,58299,3.5,1442152619\n205,58559,3.0,1442136802\n205,58803,5.0,1442152397\n205,59315,4.0,1442887013\n205,59369,5.0,1442152238\n205,59615,3.0,1442152264\n205,59784,5.0,1442152249\n205,59900,3.0,1442152527\n205,60037,3.0,1442152545\n205,60040,3.5,1442152339\n205,60069,3.5,1442137080\n205,60074,2.5,1442152312\n205,60126,3.0,1442152441\n205,60397,3.5,1442152507\n205,61132,3.5,1442152303\n205,61323,3.5,1442152277\n205,62081,3.0,1442152587\n205,62999,2.0,1442152590\n205,63113,3.0,1442152310\n205,63859,4.0,1442152437\n205,63992,1.0,1442152368\n205,65261,5.0,1442152456\n205,65514,4.5,1442148475\n205,67255,4.5,1442148612\n205,68157,3.5,1442148329\n205,68954,4.0,1442137078\n205,69844,4.0,1442890218\n205,71379,0.5,1442152558\n205,71535,2.5,1442890229\n205,72378,3.0,1442137446\n205,72998,3.0,1442890222\n205,73017,3.5,1442890281\n205,76093,4.0,1442137157\n205,78499,3.0,1442148370\n205,79132,2.0,1442136916\n205,81229,4.5,1442890321\n205,81562,2.0,1442137442\n205,81834,4.0,1442887269\n205,83132,4.0,1442886945\n205,87232,3.5,1442887011\n205,88125,4.0,1442148527\n205,89745,4.0,1442148519\n205,91529,3.0,1442137155\n205,93721,5.0,1442148569\n205,95311,4.5,1442148583\n205,95858,4.0,1442148531\n205,96079,3.0,1442887273\n205,98491,5.0,1442148509\n205,102125,3.0,1442890241\n205,106489,4.0,1442887301\n205,111362,3.0,1442886996\n205,112171,3.0,1442137370\n205,112852,4.0,1442148661\n205,114552,4.5,1442137381\n205,115617,4.5,1442137321\n205,115713,4.0,1442137270\n205,116797,5.0,1442137124\n205,117529,3.5,1442137390\n205,117851,1.5,1442137409\n205,118696,4.0,1442137371\n205,119145,5.0,1442137325\n205,130073,3.0,1442137383\n205,133419,1.5,1442137397\n205,134170,3.5,1442137354\n205,135887,2.0,1442137400\n206,592,3.0,900784430\n206,1036,3.0,900784342\n206,1081,2.0,900784430\n206,1097,4.0,900784384\n206,1124,4.0,900784384\n206,1173,2.0,900784384\n206,1196,5.0,900784137\n206,1197,4.0,900784137\n206,1198,4.0,900784097\n206,1200,3.0,900784342\n206,1231,4.0,900784282\n206,1240,5.0,900784282\n206,1246,3.0,900784097\n206,1258,3.0,900784317\n206,1270,4.0,900784342\n206,1286,3.0,900784282\n206,1291,4.0,900784282\n206,1297,3.0,900784209\n206,1299,4.0,900784282\n206,1302,3.0,900784317\n206,1307,3.0,900784241\n206,1321,3.0,900784476\n206,1375,3.0,900784430\n206,1376,3.0,900784430\n206,1587,3.0,900784430\n206,1663,5.0,900784209\n206,1876,3.0,900783718\n206,1892,3.0,900783691\n206,1957,4.0,900784241\n206,1961,4.0,900784241\n206,1962,3.0,900784384\n206,1968,5.0,900784097\n206,1994,3.0,900784209\n206,2003,3.0,900784209\n206,2005,3.0,900784209\n206,2011,3.0,900784317\n206,2021,3.0,900784430\n206,2033,3.0,900784137\n206,2054,3.0,900784137\n207,24,0.5,1258439884\n207,44,0.5,1258439788\n207,69,5.0,1258440675\n207,256,3.0,1258439864\n207,296,5.0,1258440848\n207,333,3.0,1258439794\n207,431,0.5,1258439904\n207,608,5.0,1258440662\n207,673,0.5,1258439834\n207,779,0.5,1258440296\n207,899,0.5,1258439859\n207,902,0.5,1258439839\n207,910,0.5,1258439799\n207,914,0.5,1258439844\n207,1042,0.5,1258439899\n207,1120,3.0,1258439879\n207,1223,4.0,1258440810\n207,1275,0.5,1258440481\n207,1287,0.5,1258439894\n207,1339,4.0,1258439854\n207,1343,5.0,1258439849\n207,1367,0.5,1258440369\n207,1371,0.5,1258439869\n207,1405,2.5,1258439914\n207,1597,3.5,1258439804\n207,2058,0.5,1258439889\n207,2085,0.5,1258440374\n207,2336,0.5,1258439874\n207,2572,0.5,1258440344\n207,2968,2.0,1258439909\n207,3006,2.0,1258439926\n207,3256,3.0,1258439933\n207,3991,0.5,1258440380\n207,26564,0.5,1258440290\n207,27478,5.0,1258440877\n207,35836,4.0,1258441003\n207,45969,3.5,1258440769\n207,51372,0.5,1258440271\n207,58293,0.5,1258440351\n207,59834,0.5,1258440364\n207,67734,3.0,1258440219\n207,69122,4.0,1258440896\n207,69757,0.5,1258440315\n207,70121,0.5,1258440285\n207,71876,0.5,1258440240\n207,72209,0.5,1258440256\n208,16,4.0,1402255126\n208,231,5.0,1407813562\n208,296,4.5,1402191953\n208,356,4.5,1402192320\n208,924,3.5,1407812968\n208,1089,4.0,1402192047\n208,1203,4.5,1402191620\n208,1213,5.0,1402191643\n208,1232,2.0,1402191181\n208,1247,4.5,1407800396\n208,1259,4.5,1407800507\n208,1387,2.0,1407896569\n208,1569,5.0,1407800757\n208,1732,4.0,1425253162\n208,2060,3.5,1402191040\n208,2114,4.0,1402190969\n208,2858,5.0,1402511443\n208,2959,4.0,1402191626\n208,3210,3.0,1402190825\n208,3246,4.0,1402598447\n208,3484,3.0,1402598466\n208,3499,4.0,1407800441\n208,4027,4.0,1425253364\n208,4149,3.0,1402601089\n208,4238,4.0,1402192121\n208,4770,3.0,1407896581\n208,5364,4.0,1402598427\n208,6763,2.5,1407896571\n208,7348,4.0,1402191360\n208,7361,4.0,1402192005\n208,7502,4.0,1402191603\n208,37240,4.0,1402191423\n208,48516,4.0,1402191999\n208,69757,4.0,1402192192\n208,80463,4.5,1402598435\n208,86377,5.0,1407813013\n208,91658,4.5,1407812794\n208,94959,3.0,1407896565\n208,97921,5.0,1425253426\n208,104374,3.0,1425253353\n208,104879,4.0,1407800477\n208,105213,4.0,1402192294\n208,106782,4.5,1402255092\n208,106916,4.0,1407800463\n208,106920,4.5,1402191492\n208,111362,4.5,1402255071\n208,112183,5.0,1429476541\n208,112556,5.0,1413347280\n209,163,4.0,1265780034\n209,172,2.0,1265780108\n209,196,3.0,1265780086\n209,435,2.0,1265780046\n209,466,3.0,1265780055\n209,494,4.0,1265780066\n209,543,3.0,1265780091\n209,552,3.0,1265780116\n209,555,3.0,1265780039\n209,802,3.0,1265780144\n209,1233,4.0,1265780129\n209,1234,3.0,1265780071\n209,1278,2.0,1265780019\n209,1376,1.0,1265780172\n209,1625,4.0,1265780028\n209,2001,3.0,1265780098\n209,2395,2.0,1265780160\n209,2406,3.0,1265780062\n209,2657,2.0,1265780081\n209,2699,3.0,1265780009\n210,16,2.5,1070591352\n210,34,2.5,1070591483\n210,317,2.5,1070591317\n210,350,3.5,1070591308\n210,364,3.5,1070591443\n210,376,2.5,1070591346\n210,432,3.0,1070591354\n210,435,3.0,1070591342\n210,442,2.5,1070591327\n210,524,4.0,1070591598\n210,539,3.0,1070591456\n210,608,2.5,1070591427\n210,628,4.0,1070591378\n210,852,3.5,1070591382\n210,1136,3.0,1070591572\n210,1198,3.0,1070591432\n210,1259,3.0,1070591334\n210,1291,2.5,1070591449\n210,1307,2.5,1070591319\n210,1370,2.5,1070591373\n210,1394,2.5,1070591357\n210,1407,2.5,1070591368\n210,1968,3.5,1070591325\n210,1993,2.0,1070591532\n210,2115,2.5,1070591445\n210,2291,2.5,1070591364\n210,2355,3.5,1070591338\n210,2459,2.5,1070591511\n210,2461,2.5,1070591538\n210,2462,2.5,1070591536\n210,2804,4.5,1070591466\n210,6365,4.5,1070591464\n211,17,4.0,1460811260\n211,29,5.0,1460811791\n211,32,5.0,1460811900\n211,43,5.0,1460811873\n211,52,5.0,1460811527\n211,62,5.0,1460811099\n211,82,5.0,1460811588\n211,94,3.0,1460811622\n211,110,5.0,1460811378\n211,141,5.0,1460811761\n211,314,5.0,1460811701\n211,527,5.0,1460811746\n211,562,4.0,1460811237\n211,588,4.0,1460810847\n211,595,4.0,1460811488\n211,605,4.0,1460811556\n211,608,4.0,1460811808\n211,627,4.0,1460811735\n211,630,4.0,1460811831\n211,647,4.0,1460811358\n211,648,4.0,1460810957\n211,650,4.0,1460811772\n211,661,4.0,1460811719\n211,685,4.0,1460810866\n211,708,4.0,1460811571\n211,728,4.0,1460810993\n211,733,4.0,1460811414\n211,778,4.0,1460811331\n211,780,4.0,1460811399\n211,781,5.0,1460810888\n211,805,4.0,1460811859\n211,832,4.0,1460811318\n211,848,5.0,1460811636\n211,969,5.0,1460810939\n211,999,4.0,1460811608\n211,1041,5.0,1460811663\n211,1042,5.0,1460811115\n211,1073,5.0,1460811544\n211,1207,5.0,1460811137\n211,1225,5.0,1460811883\n211,1267,5.0,1460811016\n211,1270,4.0,1460811468\n211,1293,5.0,1460811686\n211,1357,5.0,1460811070\n211,1390,3.0,1460811345\n211,1391,2.0,1460811200\n211,1393,4.0,1460811514\n211,1399,5.0,1460811042\n211,1407,3.0,1460811915\n211,1479,4.0,1460810915\n211,1527,4.0,1460810432\n211,1580,3.0,1460810974\n211,1584,5.0,1460811675\n211,1617,4.0,1460811820\n211,1625,4.0,1460811844\n212,1,3.0,1218405007\n212,2,3.0,1218404003\n212,5,2.5,1218955060\n212,10,3.5,1218403807\n212,16,4.0,1218404198\n212,17,3.5,1228789756\n212,19,1.5,1218404015\n212,28,4.0,1218404673\n212,32,3.5,1254008544\n212,34,3.0,1218402042\n212,36,4.0,1218403917\n212,39,2.0,1218403872\n212,44,2.0,1260705118\n212,47,3.5,1218399790\n212,48,3.5,1218954970\n212,50,3.5,1228783190\n212,95,3.5,1218403885\n212,104,3.0,1218404119\n212,110,5.0,1218399244\n212,145,2.5,1260705114\n212,147,2.0,1228784984\n212,150,4.0,1218403258\n212,151,3.0,1218955011\n212,153,2.5,1218404711\n212,158,3.0,1218955077\n212,163,2.5,1218410254\n212,165,3.0,1227937953\n212,168,3.0,1218955124\n212,172,2.0,1260705034\n212,173,1.5,1218954991\n212,180,3.5,1228788958\n212,185,3.0,1218407304\n212,186,2.5,1218408337\n212,208,1.0,1218403841\n212,216,3.0,1227938587\n212,223,4.0,1218403976\n212,224,3.0,1227938321\n212,231,1.0,1218403790\n212,235,4.0,1218404204\n212,253,4.0,1218403846\n212,260,4.0,1218403651\n212,261,2.5,1228789183\n212,266,4.0,1218402220\n212,292,3.5,1218403822\n212,296,4.0,1218399743\n212,300,2.5,1218403969\n212,315,3.0,1218955383\n212,317,3.0,1218404202\n212,318,4.5,1218399810\n212,333,2.0,1218955809\n212,337,3.5,1218404165\n212,339,3.5,1218401641\n212,342,3.5,1218402777\n212,344,1.0,1218403754\n212,345,2.5,1218403136\n212,350,3.0,1260704788\n212,356,4.0,1228789362\n212,357,2.5,1218403826\n212,364,4.5,1218402239\n212,367,1.0,1218403792\n212,368,3.5,1218402737\n212,370,1.5,1218408333\n212,372,3.0,1227938492\n212,374,1.5,1218408458\n212,377,4.0,1218401602\n212,413,1.5,1218399009\n212,420,0.5,1218408383\n212,435,1.5,1260704800\n212,440,2.5,1260704021\n212,441,3.5,1228789202\n212,442,1.5,1227938061\n212,455,2.5,1227938597\n212,457,3.0,1218403664\n212,474,2.5,1228789067\n212,480,3.0,1218403623\n212,491,3.0,1218401907\n212,497,3.0,1218954867\n212,500,2.5,1218403787\n212,508,4.0,1218404057\n212,509,4.0,1218404104\n212,520,4.0,1218407449\n212,527,5.0,1218399784\n212,539,2.5,1218401241\n212,546,1.0,1218408479\n212,551,4.0,1218404110\n212,552,2.5,1218955161\n212,555,3.0,1218955112\n212,586,2.5,1218403867\n212,587,2.5,1218403811\n212,588,3.0,1218407218\n212,589,3.0,1218405143\n212,590,2.0,1218404771\n212,592,3.0,1218403706\n212,593,4.0,1218399822\n212,594,3.0,1218401253\n212,595,3.5,1218401003\n212,596,3.0,1218401957\n212,597,3.5,1218403778\n212,613,3.0,1228789330\n212,648,3.0,1218403759\n212,650,2.0,1228788753\n212,653,2.5,1218954782\n212,661,3.0,1227936989\n212,673,2.5,1253930188\n212,736,3.0,1218405291\n212,750,3.5,1218399346\n212,762,2.5,1218955732\n212,778,5.0,1218400587\n212,780,3.0,1218403727\n212,783,3.5,1218955418\n212,784,1.5,1218408385\n212,805,3.5,1227938232\n212,830,2.0,1218398895\n212,837,3.5,1218401491\n212,838,4.0,1218401751\n212,858,5.0,1218399403\n212,899,3.0,1227938309\n212,902,3.5,1227936983\n212,903,3.0,1218954935\n212,912,4.5,1218399268\n212,914,3.0,1254009228\n212,916,3.5,1218399029\n212,919,3.5,1218403980\n212,920,3.5,1218402653\n212,923,3.5,1227938077\n212,934,3.0,1218401138\n212,940,3.0,1218407459\n212,953,4.5,1218399500\n212,971,4.0,1228792130\n212,986,3.0,1218402149\n212,991,3.0,1228798783\n212,1012,2.0,1218402317\n212,1013,3.0,1218401208\n212,1022,3.0,1218400944\n212,1025,3.0,1218401992\n212,1027,4.0,1218407455\n212,1028,3.0,1218401487\n212,1032,3.0,1218402033\n212,1035,5.0,1218401597\n212,1036,3.0,1218403860\n212,1042,4.0,1218402386\n212,1059,3.5,1218955782\n212,1061,4.0,1253930115\n212,1073,4.0,1218403056\n212,1080,3.0,1218399632\n212,1088,3.5,1218955664\n212,1089,4.0,1218399762\n212,1090,3.0,1218954790\n212,1092,3.0,1218955372\n212,1101,3.0,1218404037\n212,1103,4.0,1218398987\n212,1104,3.5,1218398950\n212,1136,3.5,1218399629\n212,1148,3.5,1260704851\n212,1178,2.5,1218399700\n212,1183,4.0,1218404195\n212,1193,2.5,1218399677\n212,1197,4.0,1218403816\n212,1198,3.0,1218399748\n212,1200,3.0,1260704783\n212,1201,3.0,1218399417\n212,1203,3.5,1218955696\n212,1204,3.0,1218954979\n212,1206,3.5,1218399293\n212,1207,4.0,1218400550\n212,1208,3.5,1218399201\n212,1215,0.5,1218403266\n212,1220,3.0,1218404073\n212,1221,5.0,1218399406\n212,1222,4.5,1218399388\n212,1225,2.5,1228791147\n212,1230,4.0,1228789391\n212,1234,4.0,1228783210\n212,1240,3.5,1218403814\n212,1244,4.0,1253932167\n212,1246,4.0,1228789370\n212,1247,3.0,1218399423\n212,1250,2.5,1228792019\n212,1258,3.5,1227936978\n212,1259,3.0,1218404048\n212,1261,1.0,1227938686\n212,1262,3.0,1218399439\n212,1265,2.0,1218403838\n212,1266,3.0,1218954889\n212,1270,3.0,1218403561\n212,1271,4.0,1218401359\n212,1276,4.0,1218399298\n212,1278,4.0,1218400705\n212,1282,4.0,1260705098\n212,1287,3.5,1227938478\n212,1290,3.5,1218401260\n212,1291,3.0,1218399488\n212,1293,4.0,1218399391\n212,1302,3.5,1218955118\n212,1304,5.0,1218399259\n212,1307,2.5,1218403985\n212,1345,3.5,1227938591\n212,1370,2.5,1218954862\n212,1377,2.5,1218954975\n212,1380,4.0,1218954752\n212,1387,3.0,1218404023\n212,1391,3.0,1218404250\n212,1393,4.0,1218402703\n212,1407,2.0,1227938069\n212,1408,3.5,1218954892\n212,1411,4.0,1228788432\n212,1416,4.0,1227937142\n212,1441,4.0,1218402049\n212,1466,3.5,1218955584\n212,1485,2.0,1218404208\n212,1500,3.5,1270703248\n212,1517,1.5,1218403299\n212,1544,3.0,1260704117\n212,1562,2.5,1218955589\n212,1566,3.0,1218399067\n212,1569,3.0,1218955343\n212,1573,3.0,1218404181\n212,1580,1.5,1218402257\n212,1584,2.5,1228785044\n212,1586,3.0,1253930686\n212,1597,2.5,1218955043\n212,1608,3.0,1260704070\n212,1610,3.5,1218404008\n212,1619,3.5,1218402361\n212,1639,4.0,1218405272\n212,1644,2.5,1227938713\n212,1653,4.5,1218404246\n212,1673,3.0,1228793816\n212,1674,3.0,1218954785\n212,1682,4.0,1228789301\n212,1704,4.5,1218399414\n212,1717,1.5,1218408353\n212,1721,2.5,1218403801\n212,1722,2.5,1218954814\n212,1732,3.5,1253929366\n212,1777,3.5,1228789417\n212,1784,2.5,1218403271\n212,1873,4.0,1227937127\n212,1884,4.0,1253932255\n212,1907,3.5,1218400972\n212,1917,3.0,1218404021\n212,1918,2.5,1218408312\n212,1923,2.0,1218403962\n212,1927,2.0,1218399167\n212,1931,2.5,1228786974\n212,1947,4.0,1218403035\n212,1949,2.5,1218399598\n212,1951,3.0,1218402839\n212,1954,3.0,1227938183\n212,1955,2.5,1228788452\n212,1959,2.5,1228785018\n212,1960,3.0,1228792393\n212,1961,4.0,1218403920\n212,1962,3.0,1218955612\n212,1968,4.0,1218404027\n212,2000,3.5,1218404219\n212,2001,2.5,1218408176\n212,2002,3.0,1253929766\n212,2003,2.5,1229146351\n212,2005,3.0,1218409983\n212,2006,4.0,1218405356\n212,2011,2.5,1218404169\n212,2012,2.5,1218404097\n212,2020,3.5,1227938635\n212,2023,2.5,1218954953\n212,2028,4.0,1218399778\n212,2054,2.5,1218405004\n212,2080,2.5,1218955449\n212,2081,3.0,1218401037\n212,2083,2.0,1228789218\n212,2085,2.5,1218400982\n212,2087,4.0,1218401212\n212,2096,3.0,1218398999\n212,2100,2.0,1218954729\n212,2105,3.0,1260704942\n212,2114,2.5,1228798687\n212,2115,3.0,1218404116\n212,2117,3.0,1218409955\n212,2118,3.5,1228789115\n212,2125,4.0,1218401134\n212,2133,2.5,1218399052\n212,2134,3.0,1253932400\n212,2137,2.0,1218399037\n212,2139,3.5,1270703235\n212,2144,3.5,1218401981\n212,2145,3.0,1218398900\n212,2161,3.0,1218401934\n212,2167,3.0,1218955346\n212,2174,2.5,1218404076\n212,2193,2.5,1260705000\n212,2194,4.0,1218404379\n212,2236,2.5,1218401235\n212,2268,4.0,1218405283\n212,2273,3.5,1218401589\n212,2278,3.5,1218955174\n212,2291,3.5,1218404162\n212,2294,2.5,1218955199\n212,2296,1.0,1218408016\n212,2302,3.0,1218405425\n212,2310,2.0,1228788637\n212,2321,4.5,1218402898\n212,2324,4.0,1218399538\n212,2329,4.5,1218399186\n212,2336,3.0,1218955558\n212,2352,3.0,1218402519\n212,2355,2.5,1218401720\n212,2359,3.5,1253930047\n212,2383,0.5,1218408476\n212,2394,3.0,1228789780\n212,2396,3.5,1228789729\n212,2398,3.0,1228798125\n212,2406,2.0,1218401966\n212,2413,2.5,1218410207\n212,2420,3.5,1218955760\n212,2421,2.0,1253932268\n212,2424,2.5,1218954837\n212,2427,4.5,1218955624\n212,2428,2.5,1253932306\n212,2431,4.0,1218408340\n212,2455,2.0,1260704992\n212,2470,1.0,1218955052\n212,2485,1.5,1218408359\n212,2490,3.5,1260705039\n212,2501,3.5,1227938730\n212,2502,1.5,1218399669\n212,2529,2.5,1218954964\n212,2539,3.0,1218955244\n212,2541,3.5,1218955728\n212,2542,5.0,1227936491\n212,2565,4.0,1218401880\n212,2571,5.0,1218399610\n212,2572,4.0,1218401328\n212,2581,2.5,1227938706\n212,2599,3.0,1218955026\n212,2605,3.0,1218955497\n212,2617,3.0,1218955209\n212,2628,3.5,1218403836\n212,2640,3.0,1218404959\n212,2641,2.5,1253930414\n212,2642,2.0,1228087088\n212,2657,3.0,1218405307\n212,2671,3.0,1218401936\n212,2683,2.5,1218403960\n212,2687,4.0,1218401612\n212,2688,3.0,1253930511\n212,2692,4.0,1218399769\n212,2694,3.5,1218955279\n212,2699,2.0,1260703978\n212,2701,2.0,1218408481\n212,2706,2.5,1218404000\n212,2710,3.0,1218404090\n212,2716,2.5,1218403888\n212,2717,2.0,1218408266\n212,2719,2.5,1253933128\n212,2723,1.0,1227938612\n212,2724,3.0,1218955564\n212,2728,3.0,1228792230\n212,2761,3.5,1227938642\n212,2762,3.5,1227938032\n212,2791,2.0,1218404192\n212,2797,2.5,1218402054\n212,2804,3.0,1218399280\n212,2808,3.5,1228113385\n212,2819,4.0,1218403517\n212,2858,4.0,1218399183\n212,2881,3.0,1218407484\n212,2890,3.0,1218408077\n212,2908,4.0,1218955635\n212,2915,3.0,1218955438\n212,2918,4.5,1218404054\n212,2944,3.0,1218955789\n212,2953,2.0,1218408397\n212,2959,5.0,1218399374\n212,2987,2.5,1218403988\n212,2995,2.0,1227937089\n212,2997,4.0,1218403906\n212,3005,3.0,1253930439\n212,3006,3.5,1218955272\n212,3033,3.0,1218408159\n212,3034,3.0,1218401584\n212,3052,4.5,1218405169\n212,3053,2.0,1228113377\n212,3072,2.5,1218955016\n212,3079,4.0,1218401482\n212,3081,4.0,1218405379\n212,3082,3.0,1218955314\n212,3087,2.0,1253932411\n212,3101,2.5,1228113256\n212,3104,2.5,1228798064\n212,3108,3.5,1218955427\n212,3114,2.5,1218404018\n212,3135,4.0,1228788129\n212,3147,3.0,1218399442\n212,3148,4.0,1218398923\n212,3155,3.5,1218401107\n212,3168,3.0,1228794509\n212,3175,2.0,1260704012\n212,3176,3.5,1218405309\n212,3179,4.5,1218402473\n212,3186,4.0,1228789351\n212,3210,4.0,1218955460\n212,3243,0.5,1218408394\n212,3246,2.5,1228784385\n212,3247,2.0,1218955724\n212,3252,4.0,1218955704\n212,3253,1.5,1218408381\n212,3255,3.5,1218401457\n212,3256,3.5,1218409693\n212,3257,2.0,1253930535\n212,3263,1.0,1218408370\n212,3269,2.5,1228113367\n212,3273,2.5,1218398992\n212,3275,4.0,1228789293\n212,3300,3.5,1253929903\n212,3301,3.0,1253929789\n212,3354,1.5,1218398958\n212,3361,2.5,1218955472\n212,3362,3.0,1218955793\n212,3386,2.5,1218955485\n212,3408,3.5,1218401770\n212,3418,2.5,1227938253\n212,3421,1.5,1218403236\n212,3448,3.0,1218954772\n212,3452,2.0,1227937069\n212,3467,4.0,1228795370\n212,3468,4.0,1228795375\n212,3489,4.0,1228789342\n212,3526,2.5,1218410080\n212,3535,4.0,1218955407\n212,3549,3.5,1218402179\n212,3552,1.0,1218955135\n212,3555,4.0,1218955691\n212,3556,4.0,1218404568\n212,3578,5.0,1218403880\n212,3617,1.0,1218408348\n212,3623,3.0,1218405030\n212,3624,2.0,1218398904\n212,3671,2.5,1218954775\n212,3717,3.0,1218955023\n212,3745,2.5,1218408887\n212,3751,3.0,1218404819\n212,3752,2.0,1260705006\n212,3753,3.5,1218402875\n212,3785,1.5,1218408351\n212,3791,4.0,1227937048\n212,3793,4.0,1218403063\n212,3809,2.5,1253931197\n212,3868,1.5,1218408215\n212,3869,1.5,1218408331\n212,3882,2.0,1253932869\n212,3891,1.0,1229149491\n212,3897,4.5,1218403179\n212,3916,3.5,1218955225\n212,3936,2.5,1228788649\n212,3948,3.5,1218402747\n212,3967,3.0,1218955255\n212,3969,4.0,1253932843\n212,3977,2.5,1218956840\n212,3988,3.0,1218955743\n212,3996,3.5,1218403966\n212,4002,3.0,1260704969\n212,4011,5.0,1227936160\n212,4014,4.5,1218401726\n212,4015,0.5,1218408391\n212,4016,4.0,1218401755\n212,4018,2.5,1218954925\n212,4019,4.0,1218402140\n212,4022,2.5,1218404830\n212,4025,3.0,1218954850\n212,4027,2.5,1218404802\n212,4034,4.0,1218404777\n212,4041,3.5,1218401568\n212,4047,2.0,1228113530\n212,4069,2.5,1253933889\n212,4090,2.5,1228798710\n212,4103,3.5,1228791761\n212,4148,4.0,1218955215\n212,4161,2.5,1253932200\n212,4207,2.0,1228113519\n212,4212,2.5,1218409777\n212,4223,3.0,1218404408\n212,4226,5.0,1228370014\n212,4239,4.0,1228784640\n212,4246,4.0,1218401339\n212,4262,2.5,1218407891\n212,4270,2.5,1218408326\n212,4299,4.0,1218955651\n212,4306,4.0,1218403894\n212,4308,4.5,1218402772\n212,4310,4.0,1218954928\n212,4321,2.5,1260705071\n212,4322,2.0,1228787611\n212,4344,2.5,1218955606\n212,4367,3.0,1218955127\n212,4369,4.0,1218955295\n212,4370,4.0,1218405333\n212,4372,3.0,1228113510\n212,4388,1.5,1218408460\n212,4427,3.0,1228797160\n212,4447,2.5,1218408315\n212,4448,4.0,1218402350\n212,4558,1.0,1218408367\n212,4571,1.0,1218402512\n212,4616,3.5,1218401890\n212,4638,2.5,1260704980\n212,4641,3.0,1228794614\n212,4643,3.5,1218954747\n212,4701,3.5,1218955688\n212,4718,2.5,1260705010\n212,4720,4.0,1218954843\n212,4734,3.5,1218955359\n212,4735,1.0,1229149482\n212,4776,3.0,1218955171\n212,4816,2.0,1218408004\n212,4823,3.0,1227937025\n212,4855,3.0,1218955641\n212,4857,4.0,1228784319\n212,4865,4.0,1228798799\n212,4878,5.0,1218399339\n212,4886,4.0,1218404146\n212,4887,3.0,1227936446\n212,4896,2.5,1218401159\n212,4901,3.0,1218955364\n212,4963,4.0,1218404277\n212,4973,3.5,1218399180\n212,4979,4.0,1218404882\n212,4993,5.0,1218399565\n212,4995,4.5,1218404836\n212,5010,4.0,1218954078\n212,5013,3.5,1218409554\n212,5014,3.5,1227937020\n212,5015,3.5,1218955712\n212,5026,3.0,1228798876\n212,5047,0.5,1218408441\n212,5055,2.5,1228798654\n212,5064,4.0,1228789284\n212,5128,4.0,1228113497\n212,5134,3.5,1227936287\n212,5152,3.0,1228788778\n212,5218,4.0,1218401840\n212,5219,3.0,1253930577\n212,5254,2.5,1218955741\n212,5266,3.0,1260704868\n212,5296,1.5,1218408464\n212,5299,3.5,1218401197\n212,5308,1.5,1218408364\n212,5316,3.5,1218401767\n212,5349,4.0,1218402971\n212,5357,3.5,1228789865\n212,5377,4.0,1218403108\n212,5378,3.0,1218404733\n212,5388,2.0,1260704974\n212,5389,3.5,1218408878\n212,5400,3.0,1227937018\n212,5418,4.5,1218404916\n212,5421,3.5,1228784651\n212,5444,3.0,1218402230\n212,5445,4.0,1218404080\n212,5459,2.0,1218408296\n212,5479,3.0,1253933167\n212,5481,2.5,1253928645\n212,5502,3.0,1227936946\n212,5507,2.0,1253930330\n212,5574,3.5,1227936195\n212,5611,3.5,1228113759\n212,5630,4.0,1218402933\n212,5650,3.0,1218402980\n212,5669,1.0,1218404871\n212,5679,3.5,1260704173\n212,5747,2.5,1228786347\n212,5810,3.0,1218955647\n212,5816,2.5,1218401155\n212,5872,2.5,1218955155\n212,5876,2.5,1228788465\n212,5903,4.0,1228031836\n212,5941,1.5,1218408243\n212,5945,3.0,1218955083\n212,5947,3.5,1228787560\n212,5952,5.0,1218399570\n212,5956,3.0,1260704859\n212,5989,3.5,1227938227\n212,5992,2.0,1228794021\n212,5994,3.5,1228789810\n212,5995,4.0,1218399727\n212,6059,3.0,1218402334\n212,6157,2.0,1218955337\n212,6188,2.0,1218408008\n212,6218,3.5,1218401705\n212,6281,3.0,1218410311\n212,6297,3.5,1218401830\n212,6333,3.5,1228789408\n212,6365,3.0,1218409847\n212,6377,3.5,1218405371\n212,6378,3.5,1218401845\n212,6383,3.0,1228113483\n212,6482,0.5,1218407490\n212,6503,2.0,1253930097\n212,6534,2.0,1218955321\n212,6537,3.0,1218955089\n212,6539,5.0,1218402891\n212,6541,2.5,1218955714\n212,6565,3.5,1228789760\n212,6591,4.5,1228113743\n212,6662,3.0,1228788688\n212,6743,3.0,1218400959\n212,6753,3.0,1218402358\n212,6754,3.0,1228789191\n212,6763,1.5,1218408246\n212,6787,3.0,1228790939\n212,6796,2.0,1228783480\n212,6807,4.0,1218954802\n212,6863,3.5,1218402957\n212,6870,4.0,1228034541\n212,6874,3.5,1218955230\n212,6879,3.5,1228798581\n212,6888,1.5,1218408462\n212,6893,3.0,1228784975\n212,6934,3.5,1227938329\n212,6936,2.5,1218407988\n212,6942,2.5,1218405364\n212,6947,3.0,1260704846\n212,6953,3.0,1218955047\n212,6979,2.5,1218954997\n212,6985,3.5,1253931122\n212,7004,1.5,1218408318\n212,7009,3.0,1218401895\n212,7018,3.5,1228797967\n212,7046,2.5,1218956837\n212,7060,3.0,1228789174\n212,7139,5.0,1218404552\n212,7147,5.0,1218404538\n212,7149,3.0,1218401984\n212,7150,2.0,1218408882\n212,7153,5.0,1218399568\n212,7156,4.0,1228794537\n212,7160,3.5,1228113328\n212,7162,3.0,1218955672\n212,7164,4.0,1218402882\n212,7179,4.0,1228789296\n212,7255,1.5,1218408372\n212,7285,4.0,1228798584\n212,7293,4.0,1218401665\n212,7303,3.0,1228783270\n212,7317,1.0,1218408253\n212,7318,3.0,1228113320\n212,7324,3.5,1218402664\n212,7361,3.5,1218399359\n212,7373,3.0,1253929286\n212,7386,4.0,1218402383\n212,7438,3.5,1227938222\n212,7451,3.0,1218401917\n212,7454,3.0,1253930490\n212,7458,3.5,1228789650\n212,7579,2.0,1228783446\n212,7669,4.0,1270703345\n212,7714,3.5,1218401116\n212,7753,3.5,1228789654\n212,8132,4.5,1218954133\n212,8360,3.5,1228789725\n212,8368,2.5,1218401821\n212,8371,4.0,1228113477\n212,8376,2.0,1218408124\n212,8493,4.0,1228788459\n212,8528,2.0,1218408139\n212,8529,3.5,1218402992\n212,8530,5.0,1218399315\n212,8533,2.0,1218402835\n212,8636,3.5,1218404909\n212,8641,1.5,1218407990\n212,8644,4.0,1218402680\n212,8661,3.0,1228797677\n212,8665,4.0,1218404767\n212,8781,3.0,1218410309\n212,8783,3.0,1218955233\n212,8784,4.5,1218405181\n212,8807,1.0,1218402660\n212,8833,3.5,1260704639\n212,8860,3.0,1227936501\n212,8861,2.5,1253930660\n212,8873,4.0,1218955800\n212,8874,3.5,1260704059\n212,8910,3.0,1253930311\n212,8928,4.0,1253926712\n212,8935,1.5,1218955001\n212,8943,3.5,1218402046\n212,8949,3.0,1229149290\n212,8957,3.0,1218410095\n212,8961,3.5,1218405340\n212,8966,3.0,1228788609\n212,8970,4.0,1218402625\n212,8984,3.0,1218408865\n212,8998,3.5,1228797119\n212,25788,3.0,1228796260\n212,26680,3.5,1218402548\n212,26870,1.0,1218408443\n212,27706,3.0,1218402223\n212,27790,2.5,1228788180\n212,27831,4.0,1228784324\n212,27904,3.0,1253931231\n212,30707,3.0,1260704825\n212,30749,4.0,1228113290\n212,30793,3.5,1218402069\n212,30812,3.0,1260704866\n212,30816,4.0,1228789315\n212,30825,3.0,1218955620\n212,31193,3.0,1218400968\n212,31694,1.0,1218404649\n212,32174,2.0,1218955195\n212,32587,3.0,1218404902\n212,33004,2.5,1218954682\n212,33166,4.5,1218399307\n212,33493,3.5,1218404730\n212,33615,2.5,1218408155\n212,33621,3.5,1253926266\n212,33660,3.5,1218955354\n212,33669,3.5,1218400995\n212,33679,2.5,1218954716\n212,33794,4.5,1218954703\n212,33836,1.0,1218408014\n212,34048,3.0,1227937009\n212,34150,3.5,1218955751\n212,34319,2.0,1218955302\n212,34405,4.0,1253928613\n212,34532,3.5,1228789676\n212,35836,3.5,1279589129\n212,36401,2.5,1260704730\n212,36517,2.5,1228374424\n212,36519,3.5,1227936199\n212,36525,3.0,1218402709\n212,36529,3.0,1218954874\n212,37729,4.5,1218402080\n212,37733,3.0,1253929538\n212,38038,3.5,1218954909\n212,38499,4.0,1253934524\n212,38886,3.0,1253926617\n212,39231,3.5,1228113713\n212,39234,4.0,1218402822\n212,39435,3.5,1228113710\n212,39446,3.5,1228113468\n212,40148,4.0,1227936143\n212,40629,3.0,1218955778\n212,40815,2.5,1218401817\n212,40819,4.0,1218405105\n212,40826,3.5,1218402337\n212,41566,4.0,1218401123\n212,41997,3.0,1218955251\n212,42738,3.0,1253926669\n212,43908,3.5,1227936180\n212,43930,2.5,1228087080\n212,43936,1.0,1218402026\n212,44022,2.5,1218408149\n212,44191,3.0,1218954136\n212,44193,2.5,1227936555\n212,44199,2.0,1218955096\n212,44974,3.0,1228788739\n212,45186,3.5,1218955569\n212,45431,2.5,1218402850\n212,45447,3.0,1227937004\n212,45499,3.0,1218405166\n212,45668,2.5,1218404676\n212,45720,2.5,1218955551\n212,45722,3.5,1218399022\n212,45728,4.5,1218408112\n212,46322,3.5,1228113697\n212,46530,3.0,1218954744\n212,46578,4.0,1218399556\n212,46723,3.0,1218403330\n212,46948,2.5,1218402766\n212,46970,1.0,1218408000\n212,46972,2.5,1253932512\n212,46976,4.0,1218405411\n212,47200,3.0,1227936211\n212,47254,2.5,1229149478\n212,47382,2.5,1218408706\n212,47610,3.0,1218408947\n212,48304,3.0,1228784913\n212,48385,1.5,1218405016\n212,48394,5.0,1218399688\n212,48516,3.5,1218399321\n212,48738,4.0,1218408652\n212,48774,2.0,1218405124\n212,48780,4.0,1218399733\n212,48997,3.0,1228796083\n212,49272,4.0,1228031784\n212,49286,2.5,1218401171\n212,49530,4.0,1228789384\n212,49772,3.5,1218408952\n212,49822,2.5,1218408858\n212,49957,4.5,1218401030\n212,51077,2.5,1228113681\n212,51080,4.0,1228792317\n212,51255,4.0,1270703173\n212,51662,3.5,1218403092\n212,51834,2.5,1218401113\n212,52435,3.0,1227939154\n212,52722,2.0,1260704895\n212,52975,3.5,1218401810\n212,53121,3.0,1253932539\n212,53125,4.0,1218405369\n212,53322,2.5,1218408867\n212,53956,4.5,1233871131\n212,53972,3.0,1260704821\n212,53996,3.5,1260704833\n212,54001,2.5,1218405137\n212,54190,4.5,1218403121\n212,54259,3.5,1218402976\n212,54272,3.5,1218405024\n212,54286,3.5,1218399240\n212,54503,2.5,1218405134\n212,54775,3.5,1227936317\n212,55110,3.5,1218405121\n212,55247,3.0,1270703145\n212,55267,4.0,1218401011\n212,55442,4.5,1218954052\n212,55451,3.5,1218400728\n212,55872,2.5,1218403292\n212,56152,3.0,1218401759\n212,56174,3.0,1218404889\n212,56251,3.0,1218407929\n212,56339,4.0,1218409130\n212,56367,4.5,1218399511\n212,56715,4.0,1270702942\n212,56757,2.5,1218954938\n212,57326,2.0,1227936475\n212,57669,4.0,1254009201\n212,58105,3.0,1218401989\n212,58154,4.0,1218401204\n212,58295,3.5,1227936426\n212,58299,3.5,1228374469\n212,58347,4.0,1228029892\n212,58559,4.5,1218399880\n212,58998,2.5,1227938918\n212,59103,2.5,1227938934\n212,59315,4.0,1227937159\n212,59501,4.0,1218402998\n212,60040,3.0,1227938927\n212,60069,4.0,1227936901\n212,60072,2.0,1228815196\n212,60471,2.5,1253926273\n212,60684,3.5,1253926473\n212,61248,3.5,1227936275\n212,62113,3.0,1227938824\n212,62849,3.5,1227938788\n212,63082,3.0,1254009194\n212,63436,3.5,1227938836\n212,63540,0.5,1227939147\n212,63992,2.0,1253932449\n212,64034,4.0,1270703060\n212,64957,3.5,1253929128\n212,65682,3.0,1253926671\n212,66097,4.0,1253926317\n212,66934,4.0,1253926148\n212,68073,4.0,1260687978\n212,68157,4.0,1253926400\n212,68319,3.5,1253928975\n212,68358,4.5,1260688161\n212,68791,3.0,1253926279\n212,69122,3.5,1260688210\n212,69481,3.5,1270702973\n212,69526,2.5,1253929623\n212,69712,3.5,1260688041\n212,69757,3.5,1270703128\n212,69844,3.0,1260704910\n212,70286,4.0,1270703134\n212,70599,3.0,1260688196\n212,71057,3.5,1253926073\n212,72407,2.5,1260704676\n212,72605,3.0,1260704701\n212,72696,1.5,1260705013\n212,72998,4.0,1278727595\n212,74508,4.0,1270703038\n212,76054,3.5,1279587821\n212,76093,4.5,1278727614\n212,79091,4.5,1279587789\n212,79132,5.0,1279577116\n212,79134,3.0,1279588305\n213,1,3.0,1462637445\n213,2,3.0,1462637790\n213,7,2.0,1462639898\n213,13,2.5,1462644085\n213,15,3.0,1462635671\n213,19,2.0,1462644085\n213,24,2.5,1462644086\n213,32,1.5,1462640571\n213,34,1.5,1462638094\n213,39,2.0,1462638110\n213,47,2.5,1462637527\n213,48,2.0,1462638445\n213,60,2.0,1462644085\n213,89,3.5,1462644085\n213,95,2.0,1462639100\n213,104,2.0,1462638072\n213,110,2.5,1462640515\n213,141,2.0,1462639009\n213,150,1.5,1462640603\n213,153,4.0,1462644086\n213,158,3.0,1462638823\n213,160,3.0,1462635459\n213,165,3.5,1462634465\n213,168,3.5,1462640061\n213,170,3.0,1462639549\n213,172,2.5,1462644086\n213,173,2.0,1462638554\n213,185,3.0,1462638956\n213,196,2.5,1462639477\n213,204,2.5,1462640375\n213,208,4.0,1462634483\n213,216,1.0,1462638879\n213,239,1.5,1462644085\n213,253,2.5,1462644085\n213,256,0.5,1462639722\n213,260,5.0,1462633899\n213,292,4.0,1462639044\n213,293,3.0,1462637525\n213,313,3.0,1462644085\n213,316,4.5,1462638164\n213,317,2.0,1462638951\n213,339,2.5,1462638715\n213,344,1.0,1462637985\n213,349,2.5,1462634664\n213,355,1.5,1462639636\n213,356,2.0,1462637431\n213,357,1.0,1462638281\n213,364,2.5,1462637652\n213,367,1.0,1462637943\n213,368,3.0,1462638909\n213,374,1.5,1462640124\n213,377,4.0,1462637809\n213,379,3.0,1462640338\n213,380,2.0,1462640797\n213,435,1.0,1462639673\n213,440,2.5,1462639919\n213,442,3.0,1462634613\n213,455,1.5,1462639665\n213,457,4.0,1462637705\n213,474,3.5,1462644085\n213,480,5.0,1462637487\n213,494,4.0,1462644085\n213,500,2.0,1462638070\n213,520,1.5,1462638646\n213,539,2.0,1462638197\n213,541,2.0,1462634127\n213,552,4.0,1462640027\n213,586,2.0,1462644085\n213,587,2.5,1462638380\n213,588,3.0,1462640637\n213,589,4.0,1462634034\n213,590,1.0,1462638291\n213,592,3.5,1462634486\n213,593,2.5,1462637437\n213,594,2.0,1462634611\n213,595,3.0,1462637928\n213,596,2.0,1462639031\n213,597,3.0,1462637992\n213,608,2.0,1462640534\n213,616,1.5,1462639299\n213,648,3.0,1462634392\n213,653,4.0,1462635300\n213,661,1.5,1462639563\n213,673,2.0,1462638390\n213,709,2.0,1462644085\n213,719,2.5,1462644086\n213,724,2.5,1462639548\n213,733,4.0,1462637822\n213,736,4.0,1462634563\n213,741,2.5,1462644086\n213,748,3.5,1462644086\n213,780,5.0,1462634190\n213,783,2.5,1462638693\n213,786,4.0,1462635328\n213,788,1.5,1462644086\n213,799,3.0,1462644085\n213,802,1.5,1462638911\n213,805,2.5,1462639710\n213,810,2.0,1462644085\n213,832,4.0,1462635324\n213,837,3.0,1462639375\n213,919,2.5,1462638008\n213,953,2.5,1462637847\n213,986,2.0,1462644085\n213,1015,2.5,1462644086\n213,1020,1.5,1462639524\n213,1022,2.0,1462638928\n213,1025,2.0,1462644085\n213,1027,4.0,1462639280\n213,1028,3.0,1462644086\n213,1029,1.5,1462639478\n213,1032,1.5,1462638863\n213,1033,1.5,1462639823\n213,1035,2.0,1462638208\n213,1036,3.5,1462634041\n213,1047,3.0,1462644085\n213,1064,2.5,1462644085\n213,1073,1.5,1462638225\n213,1088,3.0,1462638479\n213,1097,2.5,1462637765\n213,1101,2.5,1462638315\n213,1127,2.5,1462638456\n213,1136,1.0,1462640574\n213,1196,5.0,1462633901\n213,1197,3.5,1462637559\n213,1198,3.0,1462633905\n213,1200,3.0,1462634054\n213,1210,5.0,1462633922\n213,1214,2.5,1462637613\n213,1219,2.0,1462640698\n213,1240,3.5,1462634066\n213,1253,3.0,1462639854\n213,1265,2.5,1462640563\n213,1270,3.0,1462637492\n213,1271,1.5,1462639964\n213,1274,2.5,1462644087\n213,1275,2.5,1462639102\n213,1282,1.0,1462638483\n213,1286,2.0,1462644085\n213,1291,3.0,1462634006\n213,1321,2.5,1462639987\n213,1333,2.0,1462638520\n213,1359,1.0,1462639884\n213,1367,1.5,1462639084\n213,1370,3.0,1462634560\n213,1377,3.0,1462634621\n213,1385,3.0,1462635476\n213,1387,2.5,1462637960\n213,1391,1.0,1462638171\n213,1393,1.0,1462638074\n213,1396,2.5,1462639889\n213,1407,2.0,1462644085\n213,1409,1.5,1462640420\n213,1422,4.5,1462635638\n213,1438,2.0,1462640181\n213,1479,3.0,1462639892\n213,1485,1.0,1462637952\n213,1499,3.0,1462635399\n213,1500,4.0,1462639175\n213,1513,1.0,1462640105\n213,1515,2.5,1462644085\n213,1517,1.0,1462638010\n213,1527,4.0,1462637631\n213,1544,4.0,1462634503\n213,1552,4.5,1462634535\n213,1556,1.5,1462640168\n213,1562,1.0,1462638485\n213,1566,4.0,1462638424\n213,1573,1.0,1462634445\n213,1580,4.0,1462637623\n213,1584,2.0,1462637958\n213,1586,2.0,1462639793\n213,1588,1.5,1462639993\n213,1590,2.5,1462644087\n213,1597,3.0,1462639443\n213,1603,3.0,1462644086\n213,1608,4.0,1462634565\n213,1610,3.5,1462638033\n213,1620,3.0,1462644086\n213,1644,2.0,1462644086\n213,1682,2.5,1462637551\n213,1687,4.0,1462640031\n213,1688,3.0,1462639448\n213,1690,3.5,1462644087\n213,1702,3.0,1462644086\n213,1704,4.0,1462637533\n213,1721,2.5,1462637608\n213,1726,3.5,1462644087\n213,1777,1.0,1462638404\n213,1779,2.5,1462639482\n213,1784,2.0,1462637897\n213,1792,4.0,1462640042\n213,1801,4.0,1462639272\n213,1831,2.0,1462639731\n213,1833,3.0,1462644085\n213,1835,2.0,1462644085\n213,1848,3.0,1462644085\n213,1862,2.5,1462644086\n213,1876,2.0,1462638845\n213,1882,4.5,1462634660\n213,1892,2.5,1462640427\n213,1894,3.0,1462639988\n213,1907,4.0,1462638080\n213,1911,2.0,1462639119\n213,1917,1.5,1462634402\n213,1920,3.0,1462644087\n213,1923,1.0,1462638048\n213,1961,2.5,1462637738\n213,1967,1.0,1462634704\n213,2000,2.5,1462634507\n213,2006,1.5,1462634559\n213,2009,2.5,1462644086\n213,2018,1.0,1462639012\n213,2046,2.5,1462644086\n213,2052,3.5,1462640413\n213,2054,3.0,1462638835\n213,2058,3.5,1462639289\n213,2059,2.5,1462639711\n213,2078,2.0,1462638376\n213,2081,4.0,1462638416\n213,2085,2.5,1462638969\n213,2087,2.0,1462639250\n213,2089,2.0,1462644085\n213,2090,2.0,1462640367\n213,2094,2.5,1462644086\n213,2096,2.5,1462639206\n213,2100,2.5,1462640137\n213,2115,3.5,1462634342\n213,2125,3.5,1462639405\n213,2126,1.5,1462640439\n213,2140,2.5,1462644086\n213,2141,2.5,1462644085\n213,2143,1.5,1462644085\n213,2161,2.0,1462639138\n213,2167,3.0,1462634533\n213,2174,1.0,1462638198\n213,2193,2.5,1462635387\n213,2273,3.0,1462634497\n213,2291,2.5,1462644086\n213,2294,2.0,1462638358\n213,2321,3.0,1462638532\n213,2322,3.0,1462635583\n213,2334,3.5,1462644085\n213,2340,3.0,1462638898\n213,2353,3.0,1462644086\n213,2355,1.5,1462640712\n213,2405,2.5,1462644085\n213,2406,3.0,1462639638\n213,2407,2.5,1462640083\n213,2413,3.0,1462640254\n213,2428,3.0,1462639780\n213,2429,2.0,1462644085\n213,2470,2.5,1462639529\n213,2485,3.0,1462639381\n213,2490,3.0,1462635394\n213,2496,2.5,1462644087\n213,2528,2.0,1462640273\n213,2529,1.5,1462638374\n213,2539,2.5,1462638859\n213,2541,1.5,1462638703\n213,2571,4.0,1462633918\n213,2572,1.0,1462638022\n213,2581,2.5,1462639420\n213,2605,3.0,1462639282\n213,2617,4.0,1462634414\n213,2628,3.0,1462637699\n213,2671,2.0,1462638027\n213,2687,2.0,1462638504\n213,2688,2.5,1462644085\n213,2699,3.0,1462640462\n213,2701,2.0,1462638329\n213,2710,1.5,1462638126\n213,2716,2.0,1462644086\n213,2720,2.5,1462639894\n213,2722,2.0,1462639402\n213,2723,3.0,1462639935\n213,2762,2.5,1462637529\n213,2763,3.5,1462639169\n213,2791,1.0,1462638089\n213,2803,3.0,1462639990\n213,2807,2.0,1462644086\n213,2808,2.5,1462635510\n213,2826,2.0,1462644086\n213,2835,3.0,1462644085\n213,2881,4.0,1462640068\n213,2916,2.0,1462634470\n213,2953,1.5,1462644086\n213,2985,1.5,1462634549\n213,2987,2.5,1462644085\n213,3000,2.5,1462637734\n213,3005,2.0,1462639368\n213,3034,2.5,1462639068\n213,3052,1.0,1462638067\n213,3054,2.5,1462644085\n213,3113,2.0,1462639937\n213,3114,2.5,1462637690\n213,3147,2.5,1462637541\n213,3156,1.0,1462639106\n213,3157,1.5,1462639291\n213,3175,3.5,1462644087\n213,3213,3.5,1462644085\n213,3247,2.0,1462639537\n213,3256,3.0,1462639372\n213,3258,1.0,1462640169\n213,3269,2.5,1462644086\n213,3300,3.0,1462638152\n213,3301,3.5,1462638475\n213,3354,2.5,1462644086\n213,3408,2.0,1462640755\n213,3409,2.5,1462638229\n213,3471,3.5,1462638284\n213,3489,1.5,1462638496\n213,3510,3.5,1462644086\n213,3534,2.0,1462640097\n213,3578,2.0,1462640500\n213,3593,1.0,1462639508\n213,3615,3.5,1462635457\n213,3624,3.0,1462634569\n213,3705,3.5,1462635604\n213,3717,3.0,1462637980\n213,3745,4.0,1462639449\n213,3751,1.0,1462637893\n213,3793,4.0,1462637599\n213,3825,2.0,1462638566\n213,3826,2.5,1462644087\n213,3827,1.5,1462639240\n213,3882,2.0,1462638854\n213,3968,1.5,1462638883\n213,3977,2.5,1462634421\n213,3981,1.5,1462640046\n213,3986,1.5,1462635294\n213,3988,2.0,1462638205\n213,3994,2.5,1462637877\n213,3996,2.0,1462644087\n213,3999,2.0,1462640117\n213,4014,2.0,1462637895\n213,4016,5.0,1462638146\n213,4018,2.0,1462637868\n213,4022,2.0,1462637632\n213,4025,2.5,1462640685\n213,4069,3.0,1462638660\n213,4084,3.0,1462640140\n213,4085,3.0,1462634634\n213,4090,0.5,1462644085\n213,4121,2.5,1462644085\n213,4232,1.0,1462634605\n213,4238,2.5,1462639834\n213,4270,3.5,1462634412\n213,4299,3.0,1462638105\n213,4306,3.5,1462637520\n213,4343,5.0,1462644087\n213,4361,1.5,1462639852\n213,4366,4.0,1462644087\n213,4367,2.5,1462640817\n213,4370,2.5,1462637853\n213,4386,1.0,1462639796\n213,4446,2.5,1462634675\n213,4447,2.5,1462640682\n213,4506,4.0,1462635625\n213,4519,2.0,1462644085\n213,4545,3.0,1462640268\n213,4638,4.0,1462638038\n213,4643,3.0,1462644086\n213,4673,3.0,1462635549\n213,4676,2.5,1462644085\n213,4700,2.0,1462638356\n213,4720,2.0,1462637889\n213,4756,2.5,1462644085\n213,4823,2.5,1462644087\n213,4874,2.5,1462644086\n213,4876,2.0,1462639759\n213,4886,3.5,1462634082\n213,4890,1.5,1462638309\n213,4896,4.0,1462634117\n213,4993,4.5,1462633927\n213,4995,1.0,1462637538\n213,5064,4.0,1462638535\n213,5066,1.5,1462639258\n213,5108,3.0,1462644085\n213,5146,4.5,1462644086\n213,5171,2.5,1462639053\n213,5218,3.0,1462637633\n213,5219,2.5,1462634513\n213,5247,2.5,1462644085\n213,5254,1.5,1462634523\n213,5282,2.5,1462644085\n213,5293,3.0,1462640264\n213,5299,2.0,1462637956\n213,5313,3.5,1462634680\n213,5349,3.5,1462637593\n213,5378,2.5,1462637672\n213,5389,2.5,1462644085\n213,5400,4.0,1462639451\n213,5418,4.0,1462634084\n213,5419,1.5,1462639293\n213,5444,4.0,1462644087\n213,5445,3.0,1462634120\n213,5459,2.5,1462640626\n213,5463,4.0,1462635336\n213,5478,4.0,1462635556\n213,5502,3.5,1462644086\n213,5504,0.5,1462644086\n213,5506,3.0,1462644085\n213,5507,3.5,1462638311\n213,5528,1.5,1462639038\n213,5574,3.5,1462634481\n213,5618,2.5,1462637546\n213,5620,2.5,1462638651\n213,5621,2.0,1462639526\n213,5679,1.5,1462640714\n213,5784,2.5,1462644086\n213,5816,4.0,1462637621\n213,5882,4.0,1462639746\n213,5900,1.5,1462639534\n213,5943,2.0,1462639122\n213,5952,4.0,1462633934\n213,5957,2.5,1462639089\n213,6058,2.0,1462639407\n213,6155,3.0,1462638133\n213,6156,3.0,1462638965\n213,6157,3.5,1462634527\n213,6242,2.5,1462644085\n213,6264,1.5,1462639800\n213,6281,3.5,1462638097\n213,6283,3.5,1462639234\n213,6287,1.0,1462638217\n213,6297,2.5,1462639143\n213,6333,4.0,1462637696\n213,6350,3.5,1462644086\n213,6365,2.5,1462637629\n213,6373,1.0,1462640593\n213,6377,2.5,1462637522\n213,6378,4.0,1462634311\n213,6534,3.5,1462638150\n213,6537,2.5,1462637827\n213,6539,3.0,1462637508\n213,6541,3.5,1462638131\n213,6564,3.0,1462638323\n213,6566,0.5,1462644087\n213,6593,1.5,1462638313\n213,6659,4.0,1462635452\n213,6753,2.0,1462639812\n213,6754,5.0,1462634499\n213,6873,2.0,1462639692\n213,6879,4.0,1462639751\n213,6889,1.5,1462639826\n213,6934,2.0,1462634152\n213,6936,1.0,1462638029\n213,6942,2.0,1462637743\n213,6944,1.5,1462639971\n213,6958,2.5,1462644085\n213,6959,4.5,1462644086\n213,6979,3.0,1462639266\n213,6996,2.5,1462644086\n213,7001,2.0,1462644086\n213,7004,1.5,1462640242\n213,7017,3.5,1462644085\n213,7045,2.5,1462644085\n213,7149,2.0,1462639181\n213,7153,5.0,1462633907\n213,7163,4.0,1462639144\n213,7164,3.0,1462640400\n213,7293,2.0,1462637749\n213,7324,2.0,1462640004\n213,7360,0.5,1462644086\n213,7367,2.0,1462639699\n213,7373,4.0,1462637813\n213,7380,3.0,1462639760\n213,7439,1.5,1462639223\n213,7444,1.5,1462638250\n213,7445,2.0,1462637983\n213,7451,2.0,1462637838\n213,7454,3.5,1462638124\n213,7458,2.5,1462634314\n213,8169,2.5,1462644087\n213,8360,3.5,1462634183\n213,8361,4.0,1462637761\n213,8368,3.0,1462634103\n213,8371,2.0,1462634518\n213,8373,1.5,1462639544\n213,8529,2.5,1462637764\n213,8533,2.0,1462637771\n213,8607,4.0,1462644085\n213,8633,3.0,1462644086\n213,8636,4.0,1462634203\n213,8640,3.5,1462644085\n213,8643,3.0,1462639733\n213,8644,5.0,1462640562\n213,8665,2.5,1462637458\n213,8666,3.0,1462639385\n213,8783,2.0,1462644085\n213,8798,3.5,1462634433\n213,8808,2.5,1462639621\n213,8810,4.0,1462634650\n213,8814,1.0,1462644085\n213,8860,4.0,1462635492\n213,8870,2.5,1462644086\n213,8907,1.5,1462638833\n213,8957,2.0,1462644085\n213,8961,4.0,1462634056\n213,8965,3.0,1462638505\n213,8972,4.5,1462634345\n213,8985,2.0,1462638562\n213,26375,2.5,1462644084\n213,26662,2.5,1462644085\n213,27032,1.5,1462635654\n213,27660,2.5,1462638488\n213,27706,2.0,1462638247\n213,27821,3.0,1462640149\n213,27837,3.0,1462644085\n213,30793,2.5,1462640634\n213,31193,3.0,1462644085\n213,31221,1.0,1462639701\n213,31685,2.5,1462637776\n213,31696,3.5,1462637830\n213,32017,2.5,1462640087\n213,32029,3.0,1462640401\n213,32031,3.5,1462638838\n213,32296,2.0,1462639606\n213,32596,4.0,1462639738\n213,33004,2.0,1462637816\n213,33493,2.5,1462637627\n213,33615,2.0,1462637962\n213,33679,3.5,1462634157\n213,33681,0.5,1462644086\n213,33794,3.5,1462634020\n213,33836,1.5,1462639734\n213,34048,3.5,1462634320\n213,34150,4.0,1462644087\n213,34319,3.5,1462634423\n213,34332,3.0,1462640324\n213,34405,3.5,1462637701\n213,34534,1.5,1462640183\n213,35957,3.5,1462640164\n213,36401,2.0,1462638976\n213,36519,2.5,1462635282\n213,36525,3.0,1462639662\n213,36529,2.0,1462640681\n213,37380,2.5,1462644087\n213,37386,1.5,1462638684\n213,37727,3.5,1462644085\n213,37733,3.5,1462644086\n213,37830,3.0,1462639842\n213,40339,1.5,1462639642\n213,40815,3.5,1462634139\n213,40851,3.0,1462640369\n213,41566,3.0,1462637670\n213,41569,2.5,1462637939\n213,42721,1.0,1462644085\n213,42738,3.5,1462634590\n213,43560,3.0,1462640033\n213,43836,1.0,1462639973\n213,43928,1.5,1462639646\n213,43936,2.0,1462639624\n213,44004,2.5,1462639686\n213,44022,2.5,1462638121\n213,44191,3.5,1462637453\n213,44193,1.5,1462639302\n213,44199,5.0,1462637909\n213,44828,0.5,1462644087\n213,45062,3.5,1462635615\n213,45431,1.5,1462639024\n213,45447,4.0,1462637752\n213,45499,2.5,1462634322\n213,45517,3.0,1462637832\n213,45672,1.0,1462638043\n213,45720,1.5,1462640667\n213,45722,2.5,1462637645\n213,45732,2.0,1462640089\n213,46062,2.0,1462639928\n213,46530,2.5,1462644086\n213,46965,2.0,1462639429\n213,46972,2.5,1462637971\n213,46976,2.5,1462644087\n213,47124,3.0,1462635645\n213,47382,2.5,1462644085\n213,47384,2.5,1462644086\n213,47610,4.0,1462640599\n213,47952,3.0,1462644087\n213,48043,0.5,1462634541\n213,48774,2.0,1462637655\n213,48780,2.0,1462637461\n213,49274,1.5,1462638817\n213,49278,4.0,1462638091\n213,49286,3.0,1462638263\n213,49649,3.5,1462644087\n213,50162,3.0,1462644085\n213,50601,1.5,1462636624\n213,50802,2.5,1462637078\n213,50872,4.0,1462634078\n213,51077,2.5,1462636505\n213,51255,2.0,1462634199\n213,51412,4.5,1462636573\n213,51540,2.0,1462636440\n213,51575,2.5,1462636757\n213,51698,3.0,1462637082\n213,51925,2.0,1462636926\n213,51935,4.0,1462638176\n213,52287,3.5,1462636717\n213,52435,3.0,1462639668\n213,52456,3.5,1462637281\n213,52458,3.5,1462639074\n213,52604,3.0,1462639051\n213,52712,3.0,1462644085\n213,52722,2.0,1462634378\n213,52885,3.5,1462638917\n213,52950,4.0,1462644085\n213,53121,2.5,1462638179\n213,53125,2.5,1462634224\n213,53207,3.0,1462636885\n213,53464,2.5,1462638264\n213,53466,2.5,1462644085\n213,53956,2.0,1462639790\n213,53972,3.5,1462636438\n213,53993,1.0,1462638877\n213,53996,3.5,1462634317\n213,54001,3.5,1462636406\n213,54259,5.0,1462636430\n213,54276,3.0,1462636940\n213,54286,3.0,1462634038\n213,54648,2.5,1462639491\n213,54771,3.0,1462636952\n213,55259,2.5,1462644086\n213,55276,2.0,1462636368\n213,55282,2.0,1462636566\n213,55995,1.0,1462636518\n213,55999,2.5,1462636962\n213,56152,2.5,1462638454\n213,56171,3.0,1462636486\n213,56174,2.0,1462636402\n213,56176,1.5,1462640418\n213,56587,2.5,1462636469\n213,56775,4.0,1462638129\n213,56801,2.5,1462636660\n213,56915,2.5,1462637252\n213,56949,2.0,1462638461\n213,57326,3.0,1462637338\n213,57368,2.5,1462636454\n213,57401,3.5,1462644085\n213,57504,4.0,1462644086\n213,57526,2.5,1462637293\n213,57640,2.5,1462636380\n213,57669,1.5,1462636419\n213,57951,3.0,1462636949\n213,58025,3.0,1462638160\n213,58103,4.0,1462636667\n213,58105,2.5,1462636828\n213,58293,2.0,1462636488\n213,58295,4.5,1462636475\n213,58299,2.5,1462636644\n213,58347,2.5,1462640310\n213,58559,3.5,1462634001\n213,58803,2.5,1462636375\n213,58972,2.5,1462644085\n213,58998,1.0,1462638019\n213,59103,3.5,1462644087\n213,59315,5.0,1462634010\n213,59333,2.5,1462636955\n213,59369,4.0,1462634180\n213,59421,2.0,1462636747\n213,59501,2.5,1462644087\n213,59594,1.5,1462637366\n213,59615,2.0,1462634381\n213,59784,3.5,1462634149\n213,60040,3.5,1462636360\n213,60069,2.0,1462636390\n213,60072,2.5,1462634477\n213,60074,3.5,1462636444\n213,60397,1.5,1462636560\n213,60514,2.5,1462636806\n213,60516,2.5,1462637239\n213,60937,3.5,1462636740\n213,61323,0.5,1462640709\n213,61350,2.5,1462644086\n213,61705,1.5,1462637173\n213,61729,2.0,1462636749\n213,62081,4.0,1462636618\n213,62376,3.0,1462636798\n213,62394,2.5,1462644086\n213,62733,2.0,1462637112\n213,63853,2.5,1462636705\n213,63859,2.5,1462644086\n213,63992,1.5,1462636364\n213,64030,3.0,1462635362\n213,64116,1.0,1462644085\n213,64497,4.0,1462636615\n213,64957,2.0,1462640591\n213,65552,3.5,1462644086\n213,65567,2.5,1462644085\n213,65577,1.5,1462644085\n213,65585,2.0,1462644085\n213,65682,3.0,1462635287\n213,65685,3.0,1462637101\n213,66171,3.5,1462636760\n213,66198,2.0,1462635539\n213,67197,1.5,1462635312\n213,67408,4.0,1462634700\n213,68135,2.5,1462636528\n213,68319,3.0,1462634336\n213,68358,5.0,1462634014\n213,68554,3.5,1462638138\n213,68791,3.5,1462634509\n213,68793,3.0,1462636679\n213,68848,1.5,1462636839\n213,69253,3.0,1462637399\n213,69306,2.5,1462636787\n213,69406,2.5,1462636495\n213,69524,3.0,1462634543\n213,69526,3.0,1462634530\n213,69606,2.0,1462640448\n213,69805,2.5,1462635691\n213,69844,3.5,1462634124\n213,69951,2.0,1462644086\n213,70183,2.5,1462636691\n213,70282,3.5,1462644086\n213,70286,2.5,1462634092\n213,70305,2.5,1462637155\n213,70336,3.0,1462635323\n213,70599,1.5,1462636689\n213,70697,1.0,1462644085\n213,71252,3.0,1462637022\n213,71254,3.0,1462636744\n213,71318,2.5,1462644086\n213,71520,2.0,1462644086\n213,71530,2.5,1462634602\n213,72165,3.5,1462637349\n213,72209,4.0,1462637319\n213,72378,4.0,1462634442\n213,72701,2.5,1462644086\n213,72737,3.0,1462636677\n213,72919,2.5,1462637308\n213,72998,5.0,1462636393\n213,73015,2.0,1462636831\n213,73017,4.0,1462634113\n213,73042,1.5,1462637236\n213,73268,3.5,1462639582\n213,73319,3.0,1462637026\n213,74154,3.0,1462637115\n213,74530,3.0,1462636772\n213,74545,2.5,1462644086\n213,74580,3.0,1462635602\n213,74698,2.0,1462637352\n213,74789,3.5,1462635829\n213,74851,3.5,1462636911\n213,75805,2.5,1462644085\n213,75985,2.0,1462636899\n213,76093,4.0,1462634030\n213,76251,1.0,1462636414\n213,77561,3.5,1462636421\n213,78041,3.0,1462635526\n213,78105,4.0,1462634583\n213,78264,2.0,1462637358\n213,78266,1.5,1462636901\n213,78499,3.0,1462634070\n213,78893,2.0,1462636841\n213,79057,3.0,1462644087\n213,79091,3.5,1462636432\n213,79132,2.5,1462634045\n213,79139,4.0,1462635314\n213,79185,3.5,1462636648\n213,79224,2.5,1462636794\n213,79293,3.0,1462634478\n213,80489,2.0,1462644085\n213,80615,2.0,1462644085\n213,81229,5.0,1462634453\n213,81512,2.5,1462644085\n213,81564,3.5,1462634459\n213,81782,3.5,1462636764\n213,81784,2.5,1462637092\n213,81834,2.5,1462634109\n213,81847,4.0,1462635835\n213,82095,2.5,1462644085\n213,82202,4.0,1462636709\n213,82461,1.0,1462634462\n213,82854,2.0,1462644086\n213,83132,2.5,1462636810\n213,83349,1.0,1462644085\n213,83480,3.0,1462644086\n213,83613,3.5,1462634647\n213,84152,2.5,1462637638\n213,84187,2.5,1462644086\n213,84374,1.0,1462638491\n213,84392,2.5,1462644086\n213,84601,2.5,1462644086\n213,84772,1.5,1462638332\n213,84954,3.5,1462637997\n213,85056,3.5,1462638903\n213,85131,2.0,1462639164\n213,85179,4.0,1462644085\n213,85261,2.5,1462644086\n213,85414,4.0,1462634207\n213,86059,1.0,1462644086\n213,86190,1.5,1462638361\n213,86332,4.0,1462634189\n213,86835,3.0,1462644087\n213,86880,4.0,1462637872\n213,87232,4.0,1462640565\n213,87306,4.0,1462638052\n213,87430,3.5,1462644086\n213,87520,2.5,1462634571\n213,87876,2.0,1462639610\n213,88125,2.5,1462637569\n213,88140,4.0,1462640607\n213,88356,2.5,1462644087\n213,88380,3.5,1462644086\n213,88879,2.5,1462644086\n213,89087,2.5,1462635468\n213,89470,2.5,1462638730\n213,89745,5.0,1462634050\n213,91500,2.5,1462634098\n213,91529,3.5,1462637496\n213,91535,3.5,1462644085\n213,91542,4.0,1462637662\n213,91658,3.0,1462634186\n213,91660,2.5,1462644086\n213,91842,1.5,1462640406\n213,91974,3.0,1462639321\n213,92264,3.0,1462644085\n213,92420,3.0,1462644087\n213,92507,3.0,1462644086\n213,92681,2.5,1462644087\n213,93272,1.5,1462639902\n213,93326,3.0,1462635395\n213,93363,4.5,1462638353\n213,94015,1.5,1462635507\n213,94018,4.5,1462635338\n213,94478,3.0,1462638946\n213,94777,3.5,1462634425\n213,94780,4.0,1462644086\n213,94864,2.5,1462644085\n213,95167,2.5,1462637834\n213,95207,1.5,1462635443\n213,95510,3.5,1462634367\n213,95875,3.0,1462634587\n213,96417,3.0,1462635481\n213,96590,2.5,1462644086\n213,96610,1.0,1462634146\n213,96737,2.0,1462644084\n213,96861,2.0,1462638687\n213,97225,2.0,1462638919\n213,97742,2.5,1462644085\n213,97752,1.0,1462634369\n213,98243,3.5,1462634698\n213,98296,2.5,1462644085\n213,98809,4.0,1462637604\n213,99007,4.0,1462638570\n213,99112,2.5,1462634575\n213,100163,2.5,1462635357\n213,100487,2.5,1462635559\n213,100498,3.0,1462635377\n213,101025,2.5,1462640237\n213,101076,2.0,1462635422\n213,101112,2.5,1462635369\n213,101142,1.5,1462639042\n213,101362,3.5,1462635331\n213,101577,3.0,1462644084\n213,101864,1.5,1462637923\n213,102123,1.5,1462644084\n213,102125,3.0,1462634213\n213,102445,4.5,1462634229\n213,102880,2.5,1462644084\n213,102903,3.5,1462637881\n213,103042,1.5,1462634408\n213,103228,2.0,1462634428\n213,103249,3.0,1462634335\n213,103253,2.5,1462640737\n213,103335,2.5,1462637905\n213,103339,2.5,1462638974\n213,103341,1.5,1462638289\n213,103384,3.5,1462644084\n213,103655,1.5,1462640093\n213,103772,2.0,1462638192\n213,103810,3.5,1462639033\n213,103883,1.5,1462639592\n213,104074,3.0,1462640450\n213,104243,2.0,1462644084\n213,104312,3.0,1462644084\n213,104925,3.5,1462644084\n213,106002,2.0,1462634491\n213,106072,4.5,1462634399\n213,106487,3.5,1462644084\n213,106489,4.0,1462634256\n213,106642,3.5,1462638821\n213,106696,4.0,1462637720\n213,108188,2.5,1462635434\n213,108945,2.0,1462644084\n213,108979,3.5,1462638270\n213,109487,2.0,1462637434\n213,109578,3.5,1462639128\n213,109864,3.5,1462644084\n213,110102,4.0,1462634159\n213,110553,2.5,1462638300\n213,110730,1.0,1462638438\n213,111360,2.5,1462637887\n213,111362,4.0,1462634061\n213,111659,3.5,1462638170\n213,111759,3.5,1462634090\n213,112370,2.5,1462644084\n213,112556,1.0,1462640513\n213,112852,5.0,1462634018\n213,114795,3.5,1462639097\n213,115149,2.5,1462634437\n213,116823,3.0,1462637708\n213,117529,4.0,1462634196\n213,118997,1.0,1462638888\n213,122886,4.0,1462634008\n213,122892,4.0,1462634130\n213,122900,4.0,1462640625\n213,130520,4.0,1462635343\n213,132796,3.0,1462634627\n214,10,3.0,978131768\n214,25,3.0,978382211\n214,32,3.0,978468713\n214,36,4.0,978382062\n214,47,4.0,978128389\n214,50,5.0,950123067\n214,110,5.0,978128748\n214,111,5.0,978418166\n214,260,5.0,978131447\n214,265,3.0,978381970\n214,288,3.0,978131852\n214,292,3.0,979953037\n214,293,3.0,950123254\n214,296,4.0,978381970\n214,318,5.0,978381918\n214,319,5.0,950123514\n214,364,5.0,978469195\n214,377,2.0,978131711\n214,380,4.0,979953037\n214,455,2.0,946918697\n214,457,3.0,950123254\n214,480,4.0,978128437\n214,509,4.0,978382183\n214,527,5.0,978381970\n214,541,5.0,978382302\n214,588,4.0,978469223\n214,589,5.0,978128748\n214,590,5.0,979451667\n214,592,3.0,946919102\n214,593,5.0,950123152\n214,595,4.0,978469223\n214,608,5.0,950123104\n214,628,4.0,950123331\n214,648,3.0,978125778\n214,745,5.0,979451781\n214,750,5.0,978468585\n214,780,5.0,979953037\n214,800,4.0,979953296\n214,804,1.0,978128611\n214,832,4.0,978131748\n214,858,5.0,978418166\n214,912,3.0,946918789\n214,919,5.0,979451594\n214,924,5.0,950123179\n214,1028,5.0,978469256\n214,1029,3.0,978469274\n214,1036,4.0,946918970\n214,1077,4.0,978468662\n214,1079,4.0,978417812\n214,1089,5.0,950123104\n214,1090,5.0,978382391\n214,1092,4.0,978131748\n214,1097,4.0,978417916\n214,1101,4.0,946919243\n214,1127,4.0,946919189\n214,1179,3.0,978382183\n214,1185,5.0,978417867\n214,1186,4.0,978417867\n214,1193,4.0,978418166\n214,1196,4.0,946918970\n214,1198,5.0,946918746\n214,1199,5.0,978382391\n214,1200,4.0,946918970\n214,1206,5.0,978468610\n214,1210,4.0,946918970\n214,1213,5.0,978381970\n214,1214,5.0,978131467\n214,1219,4.0,950123104\n214,1220,4.0,946919060\n214,1221,5.0,978418166\n214,1222,4.0,946919060\n214,1225,5.0,978382302\n214,1231,4.0,978382603\n214,1233,4.0,978128748\n214,1240,4.0,946918970\n214,1242,3.0,978417867\n214,1246,4.0,978417983\n214,1249,4.0,950123179\n214,1252,5.0,950123067\n214,1258,5.0,978382352\n214,1259,5.0,978382683\n214,1262,5.0,979451594\n214,1267,5.0,979451812\n214,1270,4.0,978382603\n214,1272,5.0,950119070\n214,1275,4.0,946919102\n214,1291,4.0,946918970\n214,1296,4.0,978418107\n214,1299,5.0,978382391\n214,1302,5.0,978417948\n214,1304,5.0,979952540\n214,1307,4.0,978382683\n214,1321,5.0,978418047\n214,1343,5.0,950123515\n214,1380,5.0,978469288\n214,1387,3.0,979952540\n214,1394,2.0,978417680\n214,1525,2.0,979952720\n214,1580,5.0,978468790\n214,1584,5.0,978468663\n214,1610,5.0,950123179\n214,1617,5.0,978131637\n214,1674,4.0,950123425\n214,1704,5.0,978382040\n214,1722,3.0,978131812\n214,1748,2.0,950123477\n214,1769,2.0,978131916\n214,1784,3.0,978382183\n214,1947,4.0,978469176\n214,1951,4.0,978469256\n214,1953,5.0,950123179\n214,1954,5.0,978131467\n214,1956,5.0,978418107\n214,1957,3.0,978382631\n214,1961,4.0,978382683\n214,1962,5.0,978417948\n214,1965,4.0,978417983\n214,1997,5.0,978128348\n214,2000,3.0,946919060\n214,2001,2.0,946919060\n214,2020,5.0,978382603\n214,2023,5.0,946918903\n214,2028,5.0,978128748\n214,2064,4.0,978469014\n214,2076,3.0,978417916\n214,2078,4.0,978469223\n214,2094,4.0,979953080\n214,2105,4.0,946919102\n214,2115,5.0,946919102\n214,2174,4.0,978418129\n214,2194,5.0,946919060\n214,2278,5.0,950122999\n214,2346,2.0,978468790\n214,2348,3.0,978382683\n214,2352,5.0,978418047\n214,2353,3.0,979952720\n214,2376,3.0,946919189\n214,2391,3.0,950123254\n214,2405,4.0,946919243\n214,2406,5.0,979451707\n214,2407,4.0,978468790\n214,2455,4.0,978468713\n214,2467,5.0,978417948\n214,2501,5.0,978417616\n214,2529,3.0,978468610\n214,2540,2.0,978131916\n214,2565,4.0,978469223\n214,2571,4.0,950123331\n214,2640,3.0,946918697\n214,2692,5.0,983723424\n214,2716,4.0,978417916\n214,2735,3.0,946919269\n214,2739,4.0,978418047\n214,2762,5.0,978131637\n214,2797,5.0,978418107\n214,2819,4.0,950123268\n214,2857,4.0,978469195\n214,2858,5.0,978128348\n214,2915,3.0,978417916\n214,2916,4.0,978128781\n214,2917,4.0,950123331\n214,2918,5.0,978417867\n214,2919,4.0,978418107\n214,2976,3.0,978896819\n214,2984,5.0,978469131\n214,2985,4.0,946918970\n214,2987,4.0,978382683\n214,2989,3.0,946919189\n214,2990,3.0,946919189\n214,3005,3.0,978131852\n214,3018,4.0,978417916\n214,3032,4.0,978468900\n214,3071,5.0,978418047\n214,3072,3.0,978417772\n214,3098,4.0,978418107\n214,3101,5.0,950123425\n214,3147,4.0,978131637\n214,3176,5.0,978131711\n214,3178,5.0,978131583\n214,3204,4.0,950123152\n214,3210,4.0,978417812\n214,3219,4.0,978131916\n214,3256,4.0,978131711\n214,3316,2.0,983723539\n214,3360,4.0,978418047\n214,3361,4.0,978382603\n214,3418,5.0,978131570\n214,3424,5.0,978382391\n214,3452,2.0,978896845\n214,3471,4.0,978468610\n214,3527,5.0,978417948\n214,3551,4.0,979451830\n214,3552,3.0,978382683\n214,3555,4.0,978125778\n214,3578,5.0,978125653\n214,3608,3.0,978417916\n214,3623,1.0,983723508\n214,3624,4.0,978128482\n214,3653,4.0,978469055\n214,3686,3.0,978131768\n214,3699,3.0,978417983\n214,3702,3.0,978468663\n214,3703,3.0,978382391\n214,3717,2.0,978128611\n214,3745,4.0,978125778\n214,3753,3.0,978128437\n214,3793,5.0,978128460\n214,3821,2.0,978128664\n214,3916,4.0,983723379\n214,3927,5.0,978468762\n214,3984,3.0,978128482\n214,4007,5.0,978128348\n214,4008,3.0,978128437\n214,4041,3.0,978128389\n215,1,3.0,860559708\n215,6,3.0,860559733\n215,86,3.0,860559829\n215,111,4.0,860560442\n215,260,3.0,860559756\n215,265,5.0,860560462\n215,376,4.0,860559756\n215,480,3.0,860561159\n215,509,3.0,860560537\n215,527,4.0,860560427\n215,541,3.0,860561060\n215,608,4.0,860559733\n215,648,3.0,860559709\n215,653,3.0,860559756\n215,750,5.0,860561038\n215,852,3.0,860559784\n215,858,5.0,860559830\n215,899,3.0,860561133\n215,903,4.0,860561084\n215,904,4.0,860560554\n215,908,4.0,860561084\n215,912,5.0,860560513\n215,913,5.0,860561181\n215,919,4.0,860561060\n215,920,3.0,860561134\n215,924,5.0,860561134\n215,953,4.0,860561060\n215,969,5.0,860561105\n215,1028,4.0,860560513\n215,1073,3.0,860559733\n215,1077,5.0,860561105\n215,1079,3.0,860561060\n215,1080,3.0,860561134\n215,1082,4.0,860560578\n215,1084,4.0,860560462\n215,1085,4.0,860561158\n215,1086,5.0,860560490\n215,1103,5.0,860561083\n215,1104,4.0,860560537\n215,1136,4.0,860561214\n215,1193,5.0,860561038\n215,1198,3.0,860561159\n215,1203,4.0,860561083\n215,1207,4.0,860560554\n215,1210,3.0,860559797\n215,1219,4.0,860560995\n215,1221,4.0,860561181\n215,1234,4.0,860561105\n215,1246,4.0,860561236\n215,1247,4.0,860561181\n215,1391,3.0,860559842\n215,1393,4.0,860559809\n215,1429,3.0,860559955\n215,1479,4.0,860560253\n216,47,5.0,1095792731\n216,48,4.0,1095792192\n216,260,3.5,1095792591\n216,293,4.0,1095792807\n216,318,5.0,1095792470\n216,345,4.0,1095792226\n216,356,4.5,1095792565\n216,551,5.0,1095792933\n216,593,4.0,1095792528\n216,596,3.5,1095792215\n216,628,4.0,1095792171\n216,783,4.0,1095792235\n216,899,4.0,1095792673\n216,910,4.0,1095792260\n216,919,4.5,1095792549\n216,1032,4.5,1095792813\n216,1196,4.5,1095792598\n216,1197,5.0,1095792601\n216,1198,5.0,1095792491\n216,1207,4.0,1095792661\n216,1262,4.5,1095792657\n216,1270,5.0,1095792476\n216,1282,4.0,1095792897\n216,1302,4.0,1095792202\n216,1304,4.0,1095792939\n216,1307,3.5,1095792613\n216,1485,4.0,1095792185\n216,1500,4.5,1095792818\n216,1617,4.5,1095792780\n216,1639,4.5,1095792967\n216,1682,5.0,1095792629\n216,1704,5.0,1095792477\n216,1777,3.5,1095792264\n216,1961,4.0,1095792485\n216,1968,5.0,1095792681\n216,2006,4.0,1095792245\n216,2100,4.5,1095792207\n216,2248,4.5,1095792561\n216,2321,4.5,1095792248\n216,2396,4.5,1095792603\n216,2501,4.5,1095792503\n216,2502,5.0,1095792757\n216,2571,4.5,1095792642\n216,2617,3.5,1095792164\n216,2716,4.5,1095792546\n216,2791,5.0,1095793037\n216,2858,5.0,1095792887\n216,2918,5.0,1095792527\n216,2959,5.0,1095792798\n216,3317,4.5,1095792997\n216,3421,4.0,1095792788\n216,3481,4.5,1095793028\n216,3751,3.5,1095792836\n216,3950,4.5,1095792574\n216,3996,4.5,1095793025\n216,4022,4.0,1095792181\n216,4034,5.0,1095792845\n216,4226,5.0,1095792754\n216,4246,4.0,1095792859\n216,4326,4.0,1095792617\n216,4878,5.0,1095793010\n216,4886,4.5,1095792290\n216,4993,5.0,1095792668\n216,5377,4.5,1095792573\n216,5445,4.0,1095792648\n216,5669,5.0,1095792721\n216,5952,5.0,1095792532\n216,6377,5.0,1095792467\n216,6620,4.0,1095792871\n216,6870,4.0,1095792552\n216,6942,4.0,1095792596\n216,7147,5.0,1095792686\n216,7153,5.0,1095792498\n216,7156,4.5,1095792727\n216,7361,5.0,1095792555\n216,7438,4.5,1095792992\n216,8533,2.5,1095792378\n216,8622,5.0,1095792402\n216,8636,4.0,1095792375\n216,8783,4.5,1095792416\n216,8784,5.0,1095792371\n216,8830,2.0,1095792449\n217,3,4.5,1108160863\n217,16,4.0,1108160012\n217,104,4.5,1108160819\n217,110,4.0,1108160687\n217,112,3.0,1108160047\n217,135,3.5,1108160890\n217,236,2.5,1108160038\n217,260,5.0,1108160547\n217,282,1.0,1108160067\n217,315,1.0,1108160075\n217,329,4.0,1108160615\n217,370,5.0,1108160325\n217,457,4.5,1108160760\n217,466,3.5,1108160065\n217,589,5.0,1108160689\n217,784,3.5,1108160057\n217,858,5.0,1108160208\n217,904,3.0,1108160071\n217,1036,5.0,1108160655\n217,1101,4.5,1108160024\n217,1196,5.0,1108160550\n217,1210,5.0,1108160553\n217,1220,5.0,1108160841\n217,1270,5.0,1108160742\n217,1278,2.5,1108160079\n217,1291,5.0,1108160644\n217,1371,4.5,1108160587\n217,1373,3.5,1108160602\n217,1374,4.5,1108160589\n217,1375,3.0,1108160593\n217,1376,4.0,1108160595\n217,1407,2.5,1108160049\n217,1500,4.5,1108160062\n217,1517,5.0,1108160732\n217,1610,5.0,1108160734\n217,1653,1.5,1108160059\n217,1663,5.0,1108160675\n217,1917,3.0,1108160000\n217,1923,5.0,1108160722\n217,2000,4.0,1108160141\n217,2028,4.0,1108160776\n217,2115,5.0,1108160163\n217,2174,2.5,1108160004\n217,2194,5.0,1108160751\n217,2268,5.0,1108160744\n217,2371,4.5,1108160160\n217,2423,5.0,1108160802\n217,2502,5.0,1108160766\n217,2599,2.5,1108160036\n217,2628,4.5,1108160556\n217,2706,5.0,1108160815\n217,2716,5.0,1108160673\n217,2791,5.0,1108160504\n217,2792,4.5,1108160507\n217,2795,5.0,1108160638\n217,2797,3.0,1108160007\n217,2918,5.0,1108160666\n217,2948,4.0,1108160774\n217,2989,4.5,1108160781\n217,2991,4.5,1108160190\n217,2993,4.0,1108160705\n217,3039,5.0,1108160678\n217,3098,4.5,1108160795\n217,3147,3.0,1108160737\n217,3263,4.0,1108160867\n217,3421,5.0,1108160681\n217,3552,5.0,1108160650\n217,3578,4.0,1108160726\n217,3635,4.5,1108160194\n217,3639,4.5,1108160197\n217,3760,5.0,1108160522\n217,3793,4.0,1108160027\n217,3868,5.0,1108160321\n217,3869,5.0,1108160329\n217,3948,5.0,1108160848\n217,3984,4.0,1108160201\n217,4002,4.5,1108160799\n217,4085,5.0,1108160657\n217,4102,5.0,1108160184\n217,4306,5.0,1108160015\n217,4489,4.5,1108160778\n217,4623,5.0,1108160144\n217,4963,4.0,1108160807\n217,5049,4.5,1108160692\n217,5349,4.0,1108160702\n217,5378,4.5,1108160558\n217,5500,4.5,1108160664\n217,5816,3.0,1108160809\n217,6188,5.0,1108160180\n217,6333,4.5,1108160647\n217,6628,3.0,1108160955\n217,6827,3.0,1108160919\n217,6979,4.0,1108160700\n217,7004,4.0,1108160872\n217,7027,5.0,1108160728\n217,7317,4.5,1108160859\n217,7386,5.0,1108160786\n217,7569,4.0,1108160631\n217,8008,3.0,1108160719\n217,8360,5.0,1108160754\n217,8387,3.0,1108160981\n217,8493,4.5,1108160641\n217,30822,4.0,1108160265\n217,30825,4.5,1108160248\n218,2,2.5,1163106626\n218,223,4.0,1163106588\n218,260,4.0,1163106771\n218,318,4.0,1163106758\n218,410,3.5,1163106580\n218,442,3.5,1163106620\n218,508,3.0,1163106632\n218,541,4.5,1163107054\n218,593,4.0,1163106797\n218,750,5.0,1163106647\n218,919,3.5,1163106606\n218,1101,3.0,1163106666\n218,1136,4.0,1163106972\n218,1196,4.5,1163106801\n218,1197,4.0,1163106792\n218,1198,4.0,1163106762\n218,1200,4.5,1163107197\n218,1213,4.0,1163106595\n218,1214,4.0,1163107187\n218,1225,3.5,1163106642\n218,1231,4.0,1163106834\n218,1233,5.0,1163107017\n218,1259,4.0,1163106839\n218,1307,3.0,1163106602\n218,1320,3.5,1163107203\n218,1584,3.5,1163106617\n218,1610,4.0,1163106622\n218,1690,3.0,1163107229\n218,2186,4.0,1163107047\n218,2683,3.0,1163106585\n218,2762,3.5,1163106807\n218,2804,4.5,1163106815\n218,2918,4.5,1163106787\n218,3114,3.5,1163106635\n218,3701,3.5,1163107215\n218,3996,4.0,1163106592\n218,4226,4.5,1163106945\n218,4973,4.0,1163106955\n218,5618,5.0,1163107009\n218,6909,4.0,1163107262\n218,8798,4.5,1163107150\n218,27604,4.0,1163106865\n219,1,5.0,974475264\n219,11,4.0,974496320\n219,16,2.0,974476109\n219,19,3.0,974474798\n219,34,3.0,974496128\n219,39,4.0,974496214\n219,47,4.0,997730388\n219,50,4.0,974475979\n219,104,5.0,974474544\n219,122,4.0,974496506\n219,180,3.0,974496294\n219,216,5.0,974474559\n219,223,2.0,974475047\n219,231,5.0,974474776\n219,235,3.0,974496173\n219,260,3.0,974474487\n219,296,4.0,974475887\n219,317,3.0,974496453\n219,318,5.0,974477319\n219,333,5.0,974496359\n219,344,4.0,974474798\n219,356,4.0,974474429\n219,357,4.0,974474696\n219,367,4.0,974496320\n219,377,4.0,997730329\n219,414,3.0,974496453\n219,441,3.0,974474465\n219,457,3.0,997730318\n219,500,4.0,974496359\n219,527,4.0,974474449\n219,539,4.0,974496337\n219,588,5.0,974474523\n219,597,3.0,974474713\n219,608,2.0,974474908\n219,785,4.0,974496466\n219,788,4.0,974496453\n219,1020,5.0,974496397\n219,1036,4.0,997730318\n219,1042,2.0,997928985\n219,1060,5.0,974475673\n219,1073,4.0,1156788838\n219,1079,3.0,997730507\n219,1080,4.0,974476810\n219,1089,5.0,974477433\n219,1093,3.0,974475075\n219,1136,5.0,974476810\n219,1197,5.0,974476860\n219,1198,4.0,974474465\n219,1222,4.0,997928386\n219,1240,3.0,997730363\n219,1246,5.0,974478177\n219,1265,5.0,974477862\n219,1270,5.0,974477673\n219,1288,4.0,974477119\n219,1307,3.0,997730495\n219,1367,3.0,974496506\n219,1394,5.0,974478207\n219,1513,2.0,974475200\n219,1573,5.0,974475876\n219,1580,4.0,974474449\n219,1610,4.0,997730411\n219,1641,3.0,974476810\n219,1674,3.0,997730376\n219,1682,5.0,974477599\n219,1721,5.0,974474762\n219,1732,5.0,974475946\n219,1777,3.0,974474581\n219,1805,5.0,974478082\n219,1839,3.0,974474487\n219,1907,3.0,974475273\n219,1923,4.0,974475759\n219,2011,4.0,974477673\n219,2012,3.0,974477673\n219,2018,2.0,974475355\n219,2060,4.0,974496434\n219,2081,3.0,974475288\n219,2268,3.0,997929005\n219,2335,3.0,974474569\n219,2355,4.0,974475047\n219,2394,3.0,974475200\n219,2429,3.0,997928257\n219,2431,4.0,997929073\n219,2447,4.0,974475380\n219,2502,5.0,974474607\n219,2581,3.0,974475175\n219,2671,4.0,997929018\n219,2688,5.0,974475104\n219,2692,5.0,997730251\n219,2694,5.0,974474978\n219,2706,4.0,974474954\n219,2716,4.0,974475116\n219,2724,3.0,974475217\n219,2791,3.5,1156788800\n219,2804,5.0,974477532\n219,2858,5.0,974474866\n219,2875,1.0,974474683\n219,2918,4.0,1156788711\n219,2947,4.0,974474724\n219,2993,4.0,974474746\n219,2997,3.0,997928165\n219,3253,3.0,997929005\n219,3255,3.0,974496214\n219,3258,3.0,974496408\n219,3263,5.0,974474596\n219,3408,3.0,998245976\n219,3450,4.0,974496359\n219,3536,4.0,997928220\n219,3623,4.0,997929258\n219,3639,4.0,974474735\n219,3717,4.0,999032498\n219,3752,4.0,998246002\n219,3773,3.0,974496377\n219,3793,3.0,974474879\n219,3897,4.0,1156788991\n219,3948,4.0,974474626\n219,3996,4.0,997928147\n219,3998,3.0,999032478\n219,4018,4.0,997730570\n219,4022,5.0,997928187\n219,4027,4.5,1156788862\n219,4069,2.0,998246373\n219,4306,3.5,1156788727\n219,4351,3.0,997929005\n219,4361,2.0,997928371\n219,4447,4.0,997730756\n219,4886,4.5,1156788731\n219,4993,0.5,1156788815\n219,5110,4.5,1156788957\n219,5952,0.5,1156788819\n219,7153,0.5,1156788826\n219,8376,0.5,1156789022\n219,8528,5.0,1156788967\n219,8784,5.0,1156788841\n219,8961,3.5,1156788810\n219,33615,3.0,1156788925\n219,33794,5.0,1156788735\n219,46970,4.5,1156788898\n219,47640,5.0,1156788751\n220,1,2.0,970498319\n220,16,5.0,970594863\n220,17,5.0,982598447\n220,34,4.0,970498215\n220,36,4.0,970499031\n220,62,4.0,970516338\n220,110,4.0,970498296\n220,208,2.0,970501818\n220,231,2.0,970501776\n220,260,5.0,986676501\n220,272,5.0,970503636\n220,282,4.0,970501534\n220,293,5.0,982598447\n220,296,5.0,970595346\n220,306,4.0,970498867\n220,307,4.0,970499809\n220,308,4.0,970498562\n220,319,5.0,970499216\n220,337,4.0,970499391\n220,344,1.0,970501550\n220,345,4.0,970499809\n220,350,3.0,970500624\n220,356,4.0,970500060\n220,357,4.0,970500047\n220,367,4.0,970500819\n220,370,3.0,970502087\n220,377,3.0,970504173\n220,427,1.0,970502492\n220,434,3.0,970504395\n220,441,2.0,975512249\n220,454,3.0,970499391\n220,468,4.0,970501106\n220,480,2.0,970503606\n220,481,4.0,970501625\n220,500,3.0,970503675\n220,527,5.0,982598448\n220,537,1.0,970508020\n220,539,2.0,970508429\n220,586,1.0,970501884\n220,588,3.0,970515737\n220,589,4.0,970595408\n220,590,4.0,970594948\n220,593,4.0,970498143\n220,595,4.0,975512038\n220,597,3.0,970500694\n220,608,5.0,970498170\n220,637,2.0,970502087\n220,648,4.0,970504346\n220,665,2.0,970595600\n220,733,3.0,970525276\n220,745,5.0,970515718\n220,750,4.0,986242389\n220,778,5.0,970509273\n220,780,3.0,970525064\n220,804,3.0,970508839\n220,824,3.0,970498121\n220,832,3.0,970500906\n220,858,5.0,986913482\n220,898,5.0,983223766\n220,903,4.0,981570884\n220,904,2.0,975512481\n220,908,4.0,975086737\n220,910,5.0,970507613\n220,912,4.0,970497359\n220,923,3.0,988580894\n220,924,4.0,986242365\n220,991,4.0,970501074\n220,1027,3.0,970503733\n220,1035,2.0,975086737\n220,1037,3.0,970503606\n220,1056,5.0,970503606\n220,1059,4.0,970525373\n220,1079,4.0,970507667\n220,1089,4.0,970498236\n220,1090,5.0,986242417\n220,1092,2.0,970501158\n220,1100,1.0,970501845\n220,1148,5.0,970498121\n220,1200,4.0,970503990\n220,1204,5.0,979053869\n220,1208,3.0,970581901\n220,1213,5.0,982598163\n220,1219,5.0,982598448\n220,1220,5.0,970517479\n220,1221,5.0,982598163\n220,1225,4.0,970527584\n220,1230,4.0,986913520\n220,1245,4.0,970499174\n220,1247,5.0,970504789\n220,1249,4.0,971390382\n220,1258,2.0,970510984\n220,1265,4.0,970499160\n220,1271,3.0,970499758\n220,1288,5.0,970504953\n220,1300,5.0,970505032\n220,1307,5.0,994270413\n220,1333,4.0,979053628\n220,1357,5.0,970595408\n220,1379,2.0,982598558\n220,1380,2.0,970508488\n220,1391,2.0,970501506\n220,1393,3.0,970525064\n220,1407,2.0,970500017\n220,1411,4.0,970524962\n220,1517,4.0,970500089\n220,1542,4.0,970499262\n220,1554,1.0,970499488\n220,1580,4.0,970499880\n220,1601,4.0,975086094\n220,1610,4.0,970504003\n220,1617,4.0,970498143\n220,1641,5.0,970499216\n220,1643,4.0,970515981\n220,1645,4.0,970500624\n220,1680,4.0,970500878\n220,1682,3.0,970499924\n220,1690,3.0,970501300\n220,1694,4.0,979053720\n220,1702,1.0,986242337\n220,1721,3.0,971390192\n220,1729,4.0,980728322\n220,1732,4.0,970500624\n220,1795,4.0,993492210\n220,1805,3.0,993492152\n220,1844,4.0,970524395\n220,1856,4.0,980728361\n220,1923,2.0,975512596\n220,1953,3.0,970504047\n220,1961,4.0,970504853\n220,2003,2.0,970508211\n220,2012,1.0,970501262\n220,2023,4.0,988580945\n220,2054,1.0,970517626\n220,2110,3.0,970508345\n220,2111,4.0,970508110\n220,2178,4.0,980728543\n220,2186,3.0,975511927\n220,2232,4.0,970501106\n220,2268,4.0,970516044\n220,2269,1.0,982598163\n220,2294,5.0,970500114\n220,2324,5.0,970498363\n220,2329,5.0,976581285\n220,2336,4.0,970515875\n220,2390,5.0,970499426\n220,2396,3.0,970498383\n220,2427,3.0,987019380\n220,2436,5.0,970517882\n220,2482,4.0,991660198\n220,2487,3.0,982597968\n220,2529,2.0,971390114\n220,2542,5.0,970499247\n220,2569,4.0,970581809\n220,2571,5.0,970523042\n220,2600,2.0,970523257\n220,2617,1.0,970523006\n220,2624,3.0,974389124\n220,2628,3.0,995035271\n220,2657,2.0,982598448\n220,2671,4.0,970500996\n220,2677,4.0,970594863\n220,2686,4.0,970511102\n220,2690,5.0,970508020\n220,2696,2.0,975512249\n220,2704,2.0,995035235\n220,2706,2.0,984945711\n220,2710,4.0,970594863\n220,2712,2.0,970594948\n220,2746,4.0,970581731\n220,2762,5.0,970523138\n220,2763,4.0,970504156\n220,2791,3.0,975086737\n220,2805,4.0,970503676\n220,2858,5.0,970498143\n220,2881,3.0,970501458\n220,2893,4.0,970523104\n220,2908,5.0,970517480\n220,2912,4.0,974389248\n220,2948,3.0,975086737\n220,2959,4.0,975871618\n220,2962,4.0,970524225\n220,2995,1.0,970497975\n220,2997,3.0,970498215\n220,3006,5.0,970498940\n220,3020,5.0,970504296\n220,3044,4.0,970500047\n220,3045,3.0,970501458\n220,3053,4.0,970502108\n220,3060,5.0,970517480\n220,3082,3.0,970501194\n220,3083,3.0,970497635\n220,3108,3.0,970499120\n220,3127,3.0,1014306911\n220,3147,4.0,970500175\n220,3148,4.0,970594864\n220,3160,4.0,970497680\n220,3174,3.0,970499675\n220,3175,3.0,970499638\n220,3176,4.0,970499826\n220,3178,3.0,970508077\n220,3179,3.0,970511382\n220,3182,4.0,970517155\n220,3186,4.0,990303926\n220,3192,4.0,974389143\n220,3201,4.0,979595642\n220,3238,1.0,971879004\n220,3240,3.0,991660109\n220,3247,2.0,970508336\n220,3249,3.0,970500624\n220,3250,2.0,975083896\n220,3252,5.0,982598448\n220,3253,4.0,970595601\n220,3257,3.0,971389872\n220,3269,2.0,982598060\n220,3274,3.0,970500958\n220,3285,4.0,991660159\n220,3317,2.0,988581523\n220,3320,4.0,970594666\n220,3363,4.0,979595602\n220,3386,4.0,970504953\n220,3408,4.0,1014305182\n220,3418,4.0,976582683\n220,3435,4.0,970510523\n220,3481,5.0,970497635\n220,3510,3.0,970523379\n220,3535,4.0,982597702\n220,3536,3.0,979595514\n220,3538,5.0,970497635\n220,3539,4.0,970524740\n220,3555,3.0,970595601\n220,3556,4.0,988580970\n220,3566,3.0,991314643\n220,3569,3.0,974389101\n220,3578,3.0,970523424\n220,3581,5.0,970503569\n220,3623,4.0,970497834\n220,3683,4.0,970594864\n220,3686,2.0,970497335\n220,3702,3.0,970595195\n220,3721,3.0,970523232\n220,3751,5.0,970497756\n220,3753,5.0,970595266\n220,3755,1.0,979053669\n220,3783,4.0,970517480\n220,3793,2.0,971390213\n220,3795,4.0,1014305110\n220,3798,4.0,987516659\n220,3823,5.0,970497481\n220,3831,4.0,973270190\n220,3869,4.0,970595267\n220,3893,3.0,972483492\n220,3897,4.0,971276977\n220,3910,4.0,975512988\n220,3911,2.0,996156540\n220,3916,3.0,970668549\n220,3919,1.0,970502154\n220,3948,5.0,971879061\n220,3952,4.0,1029528920\n220,3967,4.0,988581109\n220,3983,4.0,984946368\n220,3987,2.0,990303943\n220,3993,4.0,986416996\n220,3994,3.0,975512819\n220,3996,4.0,984438812\n220,4005,3.0,975088607\n220,4008,4.0,975086737\n220,4011,4.0,982175257\n220,4014,4.0,981570641\n220,4017,4.0,988817144\n220,4022,4.0,980813242\n220,4025,3.0,992888705\n220,4027,5.0,982598448\n220,4029,1.0,980880746\n220,4033,4.0,991320726\n220,4034,5.0,982597808\n220,4052,2.0,991314573\n220,4148,2.0,984945809\n220,4161,4.0,984440289\n220,4166,4.0,988580995\n220,4223,4.0,985372994\n220,4225,4.0,990303865\n220,4239,4.0,987019354\n220,4246,4.0,988581764\n220,4306,4.0,1014305110\n220,4370,3.0,995035102\n220,4740,2.0,1029529137\n220,4973,5.0,1029528527\n220,5013,4.0,1029528527\n220,5316,4.0,1029528597\n221,16,3.0,1111551518\n221,112,3.0,1111551574\n221,163,2.5,1111551631\n221,172,2.5,1111551643\n221,173,2.5,1111551557\n221,315,1.0,1111551662\n221,432,2.0,1111551553\n221,466,2.0,1111551586\n221,832,3.0,1111551566\n221,1101,3.0,1111551533\n221,1258,3.0,1111551530\n221,1380,2.5,1111551634\n221,1485,4.0,1111551648\n221,1917,3.0,1111551492\n221,2012,3.5,1111551545\n221,2174,2.5,1111551498\n221,2406,3.0,1111551656\n221,2640,3.5,1111551611\n221,2797,3.0,1111551504\n221,3793,3.0,1111551535\n222,229,4.0,960919368\n222,899,5.0,960919866\n222,900,5.0,960919866\n222,901,5.0,960919866\n222,912,5.0,960920068\n222,923,4.0,960920068\n222,935,4.0,960919866\n222,938,5.0,960919866\n222,940,5.0,960919368\n222,943,5.0,960920116\n222,946,4.0,960920068\n222,953,3.0,960920116\n222,956,4.0,960920135\n222,1019,4.0,960919783\n222,1022,3.0,960919912\n222,1032,3.0,960919866\n222,1097,4.0,960919368\n222,1935,5.0,960920116\n222,1936,5.0,960920116\n222,1938,3.0,960920116\n222,1939,5.0,960920068\n222,1940,5.0,960920116\n222,1941,5.0,960920068\n222,1942,4.0,960920116\n222,2080,3.0,960919866\n222,2087,1.0,960919912\n222,2096,3.0,960919866\n222,2201,5.0,960920135\n222,2202,5.0,960920116\n222,2398,2.0,960920116\n222,2565,5.0,960919912\n222,2612,3.0,960920068\n222,2829,2.0,960919368\n222,2920,5.0,960920068\n222,2927,4.0,960920068\n222,2941,4.0,960919866\n222,3095,5.0,960920068\n222,3153,5.0,960919783\n222,3199,5.0,960919912\n222,3334,4.0,960919368\n222,3357,5.0,960919709\n222,3408,3.0,960919493\n222,3456,5.0,960919493\n222,3481,4.0,960919493\n222,3515,4.0,960919546\n222,3536,5.0,960919590\n222,3538,4.0,960919493\n222,3540,4.0,960919627\n222,3549,2.0,960919866\n222,3556,5.0,960919546\n222,3566,5.0,960919546\n222,3567,2.0,960919627\n222,3578,4.0,960919590\n222,3580,5.0,960919546\n222,3594,4.0,960919709\n222,3598,5.0,960919493\n222,3618,4.0,960919546\n222,3653,4.0,960920364\n222,3654,3.0,960920392\n222,3656,5.0,960920392\n222,3657,5.0,960920477\n222,3668,5.0,960920493\n222,3671,3.0,960920305\n222,3675,3.0,960919912\n222,3676,5.0,960920364\n222,3678,4.0,960920428\n222,3683,5.0,960920305\n222,3684,5.0,960920364\n222,3685,5.0,960920477\n222,3686,4.0,960920364\n222,3688,3.0,960920478\n222,3699,4.0,960920515\n222,3702,5.0,960920428\n222,3703,3.0,960920428\n222,3704,3.0,960920428\n222,3706,5.0,960920273\n222,3707,2.0,960920428\n222,3714,4.0,960920329\n222,3716,3.0,960920364\n222,3723,4.0,960920392\n222,3724,5.0,960920329\n222,3730,5.0,960920329\n222,3732,4.0,960920364\n222,3734,4.0,960920478\n222,3735,5.0,960920515\n222,3736,4.0,960920305\n222,3740,4.0,960920305\n222,3742,5.0,960920273\n223,5,4.0,856532203\n223,6,4.0,856532203\n223,7,3.0,856532203\n223,32,4.0,856532132\n223,36,4.0,856532203\n223,41,4.0,856532349\n223,62,4.0,856532133\n223,81,3.0,856532544\n223,86,5.0,856532509\n223,102,3.0,856532509\n223,113,2.0,856532642\n223,141,3.0,856532133\n223,260,5.0,856532244\n223,376,3.0,856532244\n223,494,5.0,856532203\n223,608,5.0,856532203\n223,613,5.0,856532598\n223,628,4.0,856532274\n223,640,3.0,856532399\n223,648,3.0,856532133\n223,653,2.0,856532244\n223,662,3.0,856532573\n223,731,3.0,856532691\n223,733,5.0,856532203\n223,736,3.0,856532133\n223,780,3.0,856532132\n223,786,5.0,856532203\n223,788,3.0,856532244\n223,802,4.0,856532308\n223,805,4.0,856532274\n223,832,5.0,856532308\n223,1073,4.0,856532203\n223,1183,5.0,856532598\n223,1356,5.0,856532274\n223,1359,2.0,856532626\n223,1393,5.0,856532572\n224,1,4.0,828213150\n224,2,4.0,828213150\n224,6,5.0,828213150\n224,10,3.0,830633216\n224,16,5.0,828213150\n224,17,5.0,828213150\n224,21,4.0,828213150\n224,25,4.0,828213150\n224,28,5.0,828213150\n224,29,4.0,839010002\n224,30,4.0,828786667\n224,32,5.0,828213150\n224,34,5.0,828214011\n224,35,4.0,828213150\n224,36,5.0,830633234\n224,43,4.0,828213150\n224,47,4.0,828214012\n224,50,4.0,828214012\n224,52,4.0,828213150\n224,55,4.0,839010002\n224,58,3.0,828213150\n224,82,4.0,845813990\n224,85,4.0,828213150\n224,94,4.0,830633251\n224,95,3.0,828213150\n224,100,4.0,828213150\n224,103,4.0,828213150\n224,110,5.0,828214011\n224,125,4.0,830633279\n224,149,5.0,828214011\n224,150,5.0,828214011\n224,151,4.0,828214012\n224,153,4.0,828214011\n224,154,4.0,828214011\n224,158,5.0,828214011\n224,162,5.0,828214011\n224,165,4.0,828214012\n224,173,4.0,828214012\n224,175,5.0,828214012\n224,193,4.0,828214012\n224,213,5.0,828214011\n224,223,5.0,828214011\n224,232,4.0,828214012\n224,233,5.0,828214012\n224,235,5.0,828214012\n224,242,4.0,828214012\n224,247,4.0,828214012\n224,249,4.0,828214012\n224,253,4.0,828214012\n224,260,4.0,828214012\n224,265,4.0,828214012\n224,272,4.0,828214012\n224,288,5.0,828214012\n224,296,5.0,828214012\n224,299,4.0,828214012\n224,302,4.0,828214012\n224,305,4.0,828214012\n224,306,4.0,828214012\n224,307,4.0,828214012\n224,308,4.0,828214012\n224,314,4.0,828214012\n224,329,4.0,828214012\n224,334,3.0,828214012\n224,335,4.0,828214012\n224,337,4.0,828214012\n224,339,4.0,828214012\n224,344,4.0,828214011\n224,347,5.0,828214011\n224,348,5.0,828214011\n224,380,4.0,828214012\n224,410,4.0,828214011\n224,427,3.0,828214011\n224,435,3.0,828214011\n224,452,4.0,828214012\n224,468,4.0,828214012\n224,494,4.0,828213150\n224,553,5.0,828214012\n224,555,4.0,828214012\n224,588,5.0,828214011\n224,608,5.0,828213150\n224,627,4.0,845813991\n224,628,4.0,845813971\n224,640,3.0,828213150\n224,671,4.0,844524239\n224,698,3.0,828214012\n224,736,4.0,844524239\n224,999,4.0,844524290\n224,1405,4.0,852123396\n225,47,5.0,845565857\n225,110,4.0,845565809\n225,150,4.0,845565685\n225,153,4.0,845565714\n225,185,3.0,845565809\n225,208,4.0,845565809\n225,231,3.0,845565739\n225,253,5.0,845565809\n225,296,3.0,845565686\n225,316,4.0,845565739\n225,329,4.0,845565783\n225,344,4.0,845565714\n225,356,5.0,845565783\n225,364,4.0,845565822\n225,367,5.0,845565857\n225,380,4.0,845565686\n225,410,3.0,845565857\n225,454,3.0,845565822\n225,457,5.0,845565739\n225,480,5.0,845565795\n225,588,5.0,845565714\n225,589,5.0,845565822\n225,590,5.0,845565685\n225,592,3.0,845565685\n225,593,4.0,845565739\n225,595,5.0,845565739\n225,661,3.0,845565888\n225,724,4.0,845565888\n226,318,4.0,1243762758\n226,531,1.5,1243762124\n226,673,1.5,1243762077\n226,2294,2.0,1243762068\n226,2340,4.0,1243762219\n226,2359,3.5,1243762134\n226,3301,2.5,1243762172\n226,3633,3.0,1243762382\n226,3999,3.0,1243762330\n226,4340,2.5,1243762582\n226,4844,2.0,1243762406\n226,4973,0.5,1243763244\n226,4994,3.5,1243762473\n226,4995,4.0,1243762720\n226,5064,4.0,1243763891\n226,5066,4.0,1243762882\n226,5151,3.0,1243762444\n226,6059,3.5,1243763886\n226,6942,4.5,1243762849\n226,7346,3.0,1243762511\n226,8533,4.0,1243762794\n226,8865,3.0,1243762368\n226,8972,4.0,1243763425\n226,37853,3.5,1243762823\n226,49278,4.0,1243763896\n226,50802,4.0,1243762742\n226,50804,1.5,1243763362\n226,51925,3.5,1243763430\n226,52604,3.0,1243763906\n226,56156,1.5,1243763401\n226,58103,3.5,1243763406\n226,58559,4.0,1243763261\n226,62081,2.0,1243763397\n226,63113,4.0,1243762564\n226,64716,4.5,1243762865\n226,65465,4.0,1243762781\n227,2231,5.0,913134477\n227,2236,1.0,913134321\n227,2273,4.0,913134321\n227,2279,5.0,913134514\n227,2296,2.0,913134567\n227,2306,4.0,913134539\n227,2315,5.0,913134606\n227,2316,4.0,913134567\n227,2321,1.0,913134235\n227,2328,5.0,913134321\n227,2333,4.0,913134539\n227,2334,5.0,913134477\n227,2335,5.0,913134432\n227,2336,3.0,913134321\n227,2338,5.0,913134477\n227,2339,3.0,913134606\n227,2340,4.0,913134321\n227,2353,5.0,913134235\n227,2354,1.0,913134567\n227,2355,3.0,913134235\n227,2384,1.0,913134321\n227,2385,2.0,913134432\n227,2386,5.0,913134606\n227,2387,5.0,913134567\n227,2389,5.0,913134321\n227,2392,4.0,913134321\n228,260,5.0,1449332254\n228,370,5.0,1449333925\n228,380,2.5,1449332391\n228,480,5.0,1449332387\n228,589,5.0,1449332363\n228,1036,4.0,1449332361\n228,1196,5.0,1449332248\n228,1197,5.0,1449332705\n228,1198,5.0,1449332258\n228,1200,5.0,1449332374\n228,1210,5.0,1449332347\n228,1220,5.0,1449334010\n228,1270,5.0,1449332622\n228,1291,5.0,1449332356\n228,1517,5.0,1449332778\n228,1527,5.0,1449332419\n228,1580,5.0,1449332499\n228,1682,3.5,1449332697\n228,2005,4.5,1449332941\n228,2011,5.0,1449333009\n228,2115,5.0,1449332742\n228,2134,4.0,1449332997\n228,2193,5.0,1449332950\n228,2413,5.0,1449334085\n228,2478,5.0,1449333053\n228,2571,5.0,1449332260\n228,2683,1.0,1449333035\n228,2716,5.0,1449332613\n228,2791,5.0,1449332943\n228,2792,5.0,1449333021\n228,2959,4.0,1449332395\n228,2987,4.0,1449332739\n228,3033,5.0,1449332729\n228,3868,5.0,1449333862\n228,3869,5.0,1449333892\n228,3948,2.0,1449332324\n228,4085,5.0,1449332406\n228,4993,4.0,1449332270\n228,5378,0.5,1449332320\n228,5445,5.0,1449332537\n228,5952,4.0,1449332353\n228,6365,1.0,1449332306\n228,7153,4.0,1449332265\n228,8961,4.0,1449332425\n228,33794,4.0,1449332376\n228,51255,5.0,1449332453\n228,54286,5.0,1449332366\n228,58559,4.0,1449332291\n228,68358,3.5,1449332380\n228,69524,3.5,1449332439\n228,77455,4.0,1449332444\n228,79132,3.0,1449332368\n228,89745,3.0,1449332382\n228,97913,3.0,1449332736\n228,103335,3.0,1449332725\n228,103341,4.0,1449334017\n228,108932,5.0,1449332634\n228,111362,4.0,1449332492\n228,112852,5.0,1449332358\n228,116797,4.0,1449332415\n229,372,3.0,1277402492\n229,468,3.5,1277402549\n229,858,4.0,1277403365\n229,904,4.0,1277403392\n229,920,4.5,1277403663\n229,953,4.5,1277403301\n229,1035,5.0,1277403675\n229,1042,3.5,1277402475\n229,1172,4.5,1277402495\n229,1193,4.5,1277403389\n229,1207,4.5,1277403376\n229,1221,4.5,1277403320\n229,1250,4.5,1277403287\n229,1262,4.5,1277403372\n229,1283,4.0,1277403324\n229,1287,5.0,1277402505\n229,1680,3.5,1277402911\n229,2427,3.5,1277402527\n229,2707,3.0,1277402875\n229,2949,3.0,1277402905\n229,2968,4.0,1277402487\n229,3006,4.0,1277402502\n229,3107,3.5,1277402536\n229,3108,4.0,1277402538\n229,3396,4.5,1277402891\n229,3435,4.0,1277403381\n229,3499,4.5,1277402514\n229,3510,4.0,1277402540\n229,4002,4.0,1277402894\n229,4406,4.0,1277403384\n229,8533,4.5,1277403699\n229,44204,4.0,1277403306\n229,63082,4.5,1277403641\n230,223,3.5,1424847209\n230,293,5.0,1424846921\n230,318,4.5,1424846788\n230,356,5.0,1424846892\n230,555,5.0,1424847059\n230,593,4.0,1424846876\n230,608,4.5,1424847191\n230,778,4.0,1424847123\n230,1089,5.0,1424847112\n230,1197,4.0,1424846895\n230,1206,3.0,1424847128\n230,1259,5.0,1424846902\n230,1265,4.0,1424847026\n230,1285,4.0,1424847283\n230,1673,5.0,1424847299\n230,1682,5.0,1424847259\n230,1704,4.0,1424846798\n230,1732,5.0,1424846972\n230,1784,5.0,1424846925\n230,1884,5.0,1424847168\n230,1961,5.0,1424847304\n230,2291,4.5,1424847281\n230,2318,5.0,1424847290\n230,2329,4.0,1424846877\n230,2395,5.0,1424847141\n230,2502,5.0,1424847126\n230,2542,4.5,1424847156\n230,2571,3.5,1424846794\n230,2692,5.0,1424846932\n230,2762,3.5,1424846800\n230,2858,5.0,1424846896\n230,2959,4.5,1424846881\n230,2997,5.0,1424847117\n230,3020,5.0,1424847343\n230,3160,5.0,1424847145\n230,3275,5.0,1424846967\n230,3362,4.5,1424847314\n230,3481,5.0,1424847137\n230,3535,4.0,1424847310\n230,3949,5.0,1424847122\n230,3967,4.5,1424847060\n230,4011,5.0,1424846912\n230,4027,5.0,1424847114\n230,4034,5.0,1424847366\n230,4226,5.0,1424847121\n230,4641,4.0,1424847172\n230,4848,4.0,1424847201\n230,4878,5.0,1424847194\n230,4979,5.0,1424847079\n230,5902,4.5,1424847151\n230,6016,5.0,1424846802\n230,6711,4.0,1424847119\n230,7361,5.0,1424847110\n230,8533,4.0,1424847049\n230,8873,3.5,1424847002\n230,8874,5.0,1424846990\n230,8949,3.5,1424847278\n230,27878,4.0,1424847011\n230,30810,5.0,1424847153\n230,33166,4.0,1424847029\n230,33171,4.0,1424847052\n230,36529,2.5,1424847296\n230,38061,5.0,1424849051\n230,38886,5.0,1424847320\n230,44195,5.0,1424847265\n230,44665,4.5,1424847206\n230,46578,4.5,1424846976\n230,46976,5.0,1424847038\n230,48560,4.5,1424847322\n230,48774,3.0,1424846995\n230,53956,5.0,1424847279\n230,55269,5.0,1424847268\n230,56715,5.0,1424847021\n230,61323,5.0,1424847263\n230,69122,2.5,1424846833\n230,69757,4.0,1424846836\n230,70286,4.0,1424846828\n230,72998,2.0,1424846823\n230,79132,5.0,1424846821\n230,80463,4.5,1424847317\n230,81591,3.5,1424849047\n230,89864,3.5,1424847035\n230,91658,4.0,1424847018\n230,94959,4.0,1424846943\n230,97921,5.0,1424847008\n230,97938,5.0,1424847358\n230,104841,4.5,1424847187\n230,106100,5.0,1424846998\n230,106782,4.5,1424847184\n230,106920,5.0,1424847108\n230,109374,5.0,1424846841\n230,111529,5.0,1424847056\n230,112183,4.0,1424846845\n230,112421,5.0,1424847095\n231,50,5.0,977005387\n231,111,4.0,977005465\n231,296,5.0,977005223\n231,357,4.0,977004911\n231,593,3.0,977005387\n231,608,5.0,977005223\n231,903,4.0,977005465\n231,904,5.0,977005465\n231,908,4.0,977005387\n231,912,3.0,977004911\n231,1089,4.0,977005429\n231,1193,4.0,977004875\n231,1200,3.0,977005465\n231,1213,5.0,977005223\n231,1221,4.0,977004941\n231,1240,5.0,977005465\n231,1252,3.0,977005387\n231,1267,5.0,977005429\n231,1617,3.0,977005387\n231,1625,3.0,977004941\n231,1834,4.0,977005540\n231,2183,3.0,977004875\n231,2762,5.0,977005495\n231,2858,5.0,977005223\n231,2952,4.0,977005495\n231,3481,4.0,977005286\n231,3515,4.0,977005286\n231,3546,3.0,977005540\n231,3751,4.0,977005286\n231,3897,5.0,977005012\n231,3911,5.0,977005012\n231,3948,3.0,977005057\n232,1,3.0,955088635\n232,11,4.0,955090745\n232,17,5.0,955092905\n232,25,1.0,955092749\n232,32,5.0,955093134\n232,50,5.0,955089337\n232,62,5.0,955093709\n232,95,4.0,955087429\n232,100,5.0,955094079\n232,102,2.0,955091997\n232,105,4.0,955093134\n232,110,5.0,955086825\n232,111,5.0,955092541\n232,126,3.0,955088485\n232,141,3.0,955091364\n232,150,4.0,955092811\n232,151,2.0,955085936\n232,153,4.0,955087749\n232,164,5.0,955086305\n232,208,4.0,955088485\n232,216,4.0,955091261\n232,224,5.0,955090687\n232,235,5.0,955090106\n232,252,4.0,955091068\n232,253,5.0,955094114\n232,260,5.0,955086726\n232,261,5.0,955093421\n232,265,5.0,955084805\n232,275,1.0,955091783\n232,282,4.0,955093785\n232,296,5.0,955089364\n232,314,5.0,955088162\n232,316,4.0,955087429\n232,317,1.0,955089040\n232,329,4.0,955087039\n232,345,5.0,955085082\n232,350,5.0,955086305\n232,356,3.0,955085994\n232,357,5.0,955090612\n232,367,5.0,955089484\n232,368,4.0,955086595\n232,370,4.0,955091737\n232,377,4.0,955086786\n232,379,4.0,955087496\n232,381,3.0,955093560\n232,383,4.0,955086621\n232,405,3.0,955087888\n232,412,5.0,955092697\n232,417,5.0,955090253\n232,420,2.0,955087810\n232,421,2.0,955088228\n232,428,4.0,955093560\n232,432,4.0,955086643\n232,440,4.0,955090442\n232,441,2.0,955090459\n232,444,4.0,955091578\n232,454,5.0,955093134\n232,458,4.0,955086621\n232,463,4.0,955089443\n232,466,3.0,955086058\n232,468,4.0,955091142\n232,473,1.0,955091760\n232,474,4.0,955086757\n232,475,5.0,955093253\n232,480,5.0,955086927\n232,500,4.0,955091142\n232,502,1.0,955087861\n232,505,3.0,955092085\n232,509,4.0,955093282\n232,514,5.0,955090580\n232,515,5.0,955093989\n232,517,4.0,955087200\n232,518,4.0,955091870\n232,520,4.0,955091901\n232,521,5.0,955089638\n232,527,4.0,955085423\n232,529,4.0,955092879\n232,531,5.0,955088998\n232,534,5.0,955092905\n232,537,5.0,955091503\n232,539,5.0,955091068\n232,551,4.0,955090720\n232,552,3.0,955087496\n232,580,4.0,955093756\n232,587,4.0,955090950\n232,588,5.0,955088673\n232,589,3.0,955084924\n232,590,5.0,955086595\n232,592,5.0,955086825\n232,593,5.0,955092379\n232,594,5.0,955088700\n232,595,4.0,955088897\n232,596,5.0,955088700\n232,597,2.0,955084992\n232,599,2.0,955086564\n232,608,5.0,955089337\n232,610,4.0,955086889\n232,647,3.0,955085994\n232,653,4.0,955087069\n232,674,3.0,955088437\n232,707,5.0,955089613\n232,715,4.0,955093684\n232,720,5.0,955088635\n232,733,4.0,955088228\n232,736,4.0,955087308\n232,750,4.0,955085423\n232,761,4.0,955088507\n232,778,5.0,955093134\n232,780,3.0,955086033\n232,788,3.0,955091302\n232,801,4.0,955088998\n232,838,5.0,955090637\n232,848,2.0,955093207\n232,858,5.0,955086697\n232,888,4.0,955088735\n232,898,5.0,955090333\n232,902,4.0,955093253\n232,903,3.0,955086164\n232,904,3.0,955086203\n232,905,5.0,955089938\n232,908,3.0,955092410\n232,909,1.0,955089938\n232,910,2.0,955089364\n232,911,4.0,955086203\n232,912,4.0,955084581\n232,913,4.0,955086164\n232,919,4.0,955088041\n232,920,4.0,955085465\n232,921,4.0,955089975\n232,923,5.0,955092359\n232,924,1.0,955086203\n232,926,4.0,955092436\n232,936,4.0,955090665\n232,940,5.0,955086697\n232,943,5.0,955093560\n232,944,4.0,955092811\n232,945,4.0,955089788\n232,946,3.0,955085965\n232,948,2.0,955093709\n232,949,2.0,955092697\n232,951,4.0,955089729\n232,952,3.0,955088123\n232,953,4.0,955092663\n232,954,5.0,955084884\n232,955,4.0,955090273\n232,961,5.0,955093825\n232,969,5.0,955085936\n232,970,5.0,955090665\n232,971,2.0,955092635\n232,973,4.0,955092599\n232,984,5.0,955091192\n232,1010,1.0,955091192\n232,1013,4.0,955089040\n232,1014,4.0,955089212\n232,1017,3.0,955088998\n232,1019,5.0,955088291\n232,1020,5.0,955091105\n232,1022,4.0,955088673\n232,1032,5.0,955088735\n232,1036,5.0,955086826\n232,1037,5.0,955087713\n232,1059,4.0,955092879\n232,1066,5.0,955089859\n232,1073,3.0,955088187\n232,1078,3.0,955085965\n232,1079,5.0,955089938\n232,1080,3.0,955090186\n232,1081,3.0,955084924\n232,1084,5.0,955089364\n232,1086,3.0,955086203\n232,1089,5.0,955089364\n232,1090,5.0,955093017\n232,1091,4.0,955091919\n232,1092,4.0,955086367\n232,1094,5.0,955085838\n232,1095,4.0,955093061\n232,1097,4.0,955088897\n232,1099,4.0,955092697\n232,1101,5.0,955087069\n232,1103,4.0,955093017\n232,1120,5.0,955093607\n232,1124,1.0,955093913\n232,1125,5.0,955090637\n232,1127,4.0,955085015\n232,1131,5.0,955093253\n232,1132,4.0,955092663\n232,1135,4.0,955091411\n232,1136,5.0,955084521\n232,1161,5.0,955093506\n232,1162,4.0,955090106\n232,1171,1.0,955090297\n232,1172,2.0,955090106\n232,1173,1.0,955094314\n232,1178,4.0,955092410\n232,1179,4.0,955089364\n232,1183,5.0,955085936\n232,1186,4.0,955093160\n232,1193,5.0,955092436\n232,1194,5.0,955090987\n232,1196,4.0,955085465\n232,1197,4.0,955086726\n232,1198,4.0,955084521\n232,1201,4.0,955086564\n232,1203,5.0,955092635\n232,1204,5.0,955085390\n232,1207,5.0,955092599\n232,1208,5.0,955085839\n232,1209,4.0,955086564\n232,1210,4.0,955085902\n232,1211,5.0,955090253\n232,1212,4.0,955086164\n232,1213,4.0,955092479\n232,1214,5.0,955086726\n232,1217,5.0,955085390\n232,1220,4.0,955087091\n232,1221,5.0,955086697\n232,1222,5.0,955085867\n232,1224,5.0,955085423\n232,1225,5.0,955092359\n232,1226,2.0,955090580\n232,1227,5.0,955089443\n232,1228,4.0,955092541\n232,1230,1.0,955089788\n232,1233,5.0,955085423\n232,1234,4.0,955089337\n232,1235,4.0,955090035\n232,1237,5.0,955092359\n232,1238,4.0,955090226\n232,1240,3.0,955084805\n232,1242,5.0,955085839\n232,1243,5.0,955084581\n232,1244,3.0,955090035\n232,1245,5.0,955092749\n232,1246,5.0,955092931\n232,1250,4.0,955085423\n232,1251,1.0,955092879\n232,1252,5.0,955086164\n232,1253,5.0,955092839\n232,1254,5.0,955088041\n232,1256,4.0,955085390\n232,1259,4.0,955088041\n232,1261,4.0,955088123\n232,1262,4.0,955085465\n232,1263,5.0,955085867\n232,1264,5.0,955086203\n232,1265,4.0,955089893\n232,1266,5.0,955086527\n232,1270,5.0,955089827\n232,1271,5.0,955093345\n232,1272,5.0,955085867\n232,1273,5.0,955090035\n232,1275,4.0,955087200\n232,1276,4.0,955089788\n232,1278,5.0,955089859\n232,1282,5.0,955088735\n232,1284,4.0,955084721\n232,1285,4.0,955090442\n232,1286,4.0,955093965\n232,1287,4.0,955086697\n232,1288,5.0,955092905\n232,1289,4.0,955085839\n232,1291,4.0,955088071\n232,1292,5.0,955089938\n232,1293,5.0,955092635\n232,1295,4.0,955092956\n232,1296,4.0,955093644\n232,1298,5.0,955086033\n232,1299,5.0,955085423\n232,1300,5.0,955092565\n232,1302,5.0,955092931\n232,1303,5.0,955088041\n232,1304,5.0,955086527\n232,1305,5.0,955093398\n232,1307,4.0,955089975\n232,1333,2.0,955084884\n232,1356,5.0,955088187\n232,1358,5.0,955092479\n232,1370,4.0,955087069\n232,1371,4.0,955088437\n232,1372,4.0,955087130\n232,1373,4.0,955087688\n232,1374,3.0,955086889\n232,1375,5.0,955088228\n232,1376,4.0,955086826\n232,1377,4.0,955087200\n232,1380,3.0,955090687\n232,1381,3.0,955084521\n232,1387,5.0,955086757\n232,1388,3.0,955087638\n232,1391,3.0,955086033\n232,1393,4.0,955092784\n232,1394,4.0,955089938\n232,1395,4.0,955090552\n232,1396,4.0,955089443\n232,1401,5.0,955093282\n232,1408,5.0,955085902\n232,1409,3.0,955091364\n232,1411,5.0,955092663\n232,1419,5.0,955092720\n232,1441,4.0,955091015\n232,1455,5.0,955090226\n232,1459,2.0,955086367\n232,1485,4.0,955091068\n232,1500,5.0,955089466\n232,1513,5.0,955091192\n232,1527,4.0,955087200\n232,1541,4.0,955091192\n232,1544,4.0,955087283\n232,1552,3.0,955088368\n232,1562,5.0,955087861\n232,1569,4.0,955090919\n232,1580,5.0,955086826\n232,1587,5.0,955087200\n232,1590,4.0,955086434\n232,1597,5.0,955086367\n232,1608,4.0,955087343\n232,1610,4.0,955086786\n232,1614,4.0,955091643\n232,1617,4.0,955086203\n232,1646,4.0,955091870\n232,1663,4.0,955090253\n232,1676,3.0,955087016\n232,1682,3.0,955092956\n232,1690,4.0,955087343\n232,1693,5.0,955093183\n232,1703,4.0,955091578\n232,1704,4.0,955092720\n232,1711,5.0,955086367\n232,1721,4.0,955093684\n232,1735,4.0,955084955\n232,1772,4.0,955087713\n232,1810,4.0,955093447\n232,1827,5.0,955092224\n232,1876,4.0,955087069\n232,1885,4.0,955090226\n232,1894,4.0,955091436\n232,1918,3.0,955089578\n232,1923,5.0,955090442\n232,1925,5.0,955086033\n232,1931,5.0,955088071\n232,1935,5.0,955084805\n232,1939,5.0,955085390\n232,1940,5.0,955092839\n232,1941,4.0,955093684\n232,1942,4.0,955092663\n232,1944,4.0,955085465\n232,1948,5.0,955089998\n232,1949,5.0,955092541\n232,1950,2.0,955086164\n232,1952,5.0,955093017\n232,1953,5.0,955092749\n232,1955,3.0,955093231\n232,1956,3.0,955092931\n232,1957,5.0,955093160\n232,1958,4.0,955091261\n232,1959,4.0,955093879\n232,1960,4.0,955085465\n232,1961,3.0,955092905\n232,1962,3.0,955092879\n232,1964,3.0,955086203\n232,1965,5.0,955090612\n232,1967,5.0,955088397\n232,1968,5.0,955090155\n232,2000,4.0,955086853\n232,2001,4.0,955089551\n232,2002,4.0,955087343\n232,2006,4.0,955087283\n232,2012,3.0,955086621\n232,2013,3.0,955087224\n232,2019,5.0,955086697\n232,2020,5.0,955092599\n232,2022,3.0,955093380\n232,2023,4.0,955087162\n232,2025,4.0,955093330\n232,2028,4.0,955086726\n232,2046,5.0,955088342\n232,2054,4.0,955088397\n232,2059,4.0,955089096\n232,2064,5.0,955089998\n232,2065,1.0,955093160\n232,2067,1.0,955085867\n232,2070,5.0,955093476\n232,2076,4.0,955086203\n232,2087,4.0,955088673\n232,2088,4.0,955088456\n232,2094,4.0,955087383\n232,2096,5.0,955088735\n232,2099,5.0,955088291\n232,2100,4.0,955090383\n232,2102,5.0,955088700\n232,2105,5.0,955088291\n232,2106,5.0,955086033\n232,2108,4.0,955090489\n232,2109,5.0,955090803\n232,2110,5.0,955089551\n232,2111,5.0,955091068\n232,2112,5.0,955089466\n232,2115,4.0,955087091\n232,2116,4.0,955088124\n232,2117,4.0,955094079\n232,2130,4.0,955089413\n232,2133,4.0,955085053\n232,2138,4.0,955088673\n232,2139,3.0,955088735\n232,2140,5.0,955089075\n232,2143,5.0,955088397\n232,2144,5.0,955090333\n232,2145,4.0,955090637\n232,2150,5.0,955090383\n232,2161,4.0,955088368\n232,2162,3.0,955088507\n232,2173,5.0,955088342\n232,2174,5.0,955090155\n232,2193,5.0,955087284\n232,2194,5.0,955086826\n232,2202,4.0,955085936\n232,2238,5.0,955089938\n232,2241,4.0,955091826\n232,2243,3.0,955090383\n232,2245,4.0,955090950\n232,2247,4.0,955090783\n232,2248,4.0,955089975\n232,2252,5.0,955094055\n232,2253,3.0,955087749\n232,2259,4.0,955091870\n232,2262,3.0,955093859\n232,2285,1.0,955093785\n232,2287,3.0,955085902\n232,2288,5.0,955087039\n232,2289,5.0,955089827\n232,2291,4.0,955093061\n232,2300,4.0,955089827\n232,2303,2.0,955092479\n232,2312,4.0,955093785\n232,2313,5.0,955093183\n232,2321,5.0,955090405\n232,2324,5.0,955089757\n232,2335,1.0,955091621\n232,2336,5.0,955092697\n232,2345,4.0,955093476\n232,2348,2.0,955092541\n232,2352,5.0,955093207\n232,2353,4.0,955086889\n232,2362,1.0,955085171\n232,2363,4.0,955087016\n232,2365,1.0,955087383\n232,2366,5.0,955086757\n232,2367,4.0,955087284\n232,2369,4.0,955091503\n232,2370,4.0,955087496\n232,2371,2.0,955090489\n232,2374,3.0,955091578\n232,2375,2.0,955091411\n232,2379,3.0,955091978\n232,2389,4.0,955089613\n232,2393,4.0,955087343\n232,2395,4.0,955084924\n232,2398,4.0,955093017\n232,2399,1.0,955088252\n232,2405,4.0,955087496\n232,2406,5.0,955086995\n232,2407,3.0,955090531\n232,2414,4.0,955086394\n232,2416,4.0,955084955\n232,2420,1.0,955093736\n232,2421,1.0,955087688\n232,2422,1.0,955087830\n232,2424,4.0,955090783\n232,2427,5.0,955085902\n232,2430,3.0,955088228\n232,2450,1.0,955088535\n232,2453,5.0,955094036\n232,2463,3.0,955090155\n232,2467,5.0,955086227\n232,2468,4.0,955087749\n232,2469,5.0,955091105\n232,2470,5.0,955090826\n232,2471,3.0,955088485\n232,2474,5.0,955085082\n232,2476,3.0,955085994\n232,2478,4.0,955086643\n232,2490,5.0,955086853\n232,2524,3.0,955087343\n232,2527,4.0,955086595\n232,2528,4.0,955087200\n232,2531,2.0,955087665\n232,2532,4.0,955087130\n232,2533,2.0,955087130\n232,2539,3.0,955091364\n232,2551,5.0,955093965\n232,2598,4.0,955091142\n232,2605,4.0,955085082\n232,2615,3.0,955088342\n232,2616,3.0,955087284\n232,2617,4.0,955087778\n232,2622,5.0,955091192\n232,2628,4.0,955087162\n232,2629,4.0,955091783\n232,2640,5.0,955086927\n232,2641,5.0,955088342\n232,2642,3.0,955087778\n232,2643,3.0,955087888\n232,2657,1.0,955091015\n232,2659,5.0,955090489\n232,2662,4.0,955085902\n232,2669,4.0,955086033\n232,2671,4.0,955090850\n232,2688,4.0,955093825\n232,2716,5.0,955089975\n232,2717,3.0,955091710\n232,2724,3.0,955085127\n232,2728,5.0,955092512\n232,2729,4.0,955093134\n232,2730,1.0,955093034\n232,2731,2.0,955092512\n232,2732,2.0,955092635\n232,2734,4.0,955094187\n232,2735,1.0,955087638\n232,2736,4.0,955091041\n232,2739,4.0,955093476\n232,2741,1.0,955087429\n232,2745,5.0,955092956\n232,2746,4.0,955090868\n232,2747,4.0,955091282\n232,2748,3.0,955087861\n232,2750,5.0,955090552\n232,2762,3.0,955084776\n232,2779,4.0,955091105\n232,2791,5.0,955089938\n232,2792,4.0,955091578\n232,2797,4.0,955089893\n232,2802,4.0,955087224\n232,2815,4.0,955087810\n232,2816,2.0,955086078\n232,2822,4.0,955088437\n232,2851,3.0,955088535\n232,2857,5.0,955088785\n232,2858,5.0,955089757\n232,2859,5.0,955092165\n232,2860,3.0,955091041\n232,2863,5.0,955090127\n232,2871,4.0,955088124\n232,2872,5.0,955086786\n232,2899,4.0,955088124\n232,2904,3.0,955093380\n232,2915,4.0,955090297\n232,2916,4.0,955088124\n232,2917,5.0,955089443\n232,2918,2.0,955089827\n232,2919,5.0,955092599\n232,2926,4.0,955090919\n232,2929,3.0,955093859\n232,2932,4.0,955092663\n232,2938,5.0,955092931\n232,2941,3.0,955086033\n232,2944,4.0,955085839\n232,2946,2.0,955090035\n232,2947,4.0,955086757\n232,2948,4.0,955086786\n232,2949,4.0,955086826\n232,2950,3.0,955088485\n232,2951,4.0,955086564\n232,2968,5.0,955088162\n232,2970,4.0,955088071\n232,2973,4.0,955089757\n232,2985,5.0,955087069\n232,2986,3.0,955087810\n232,2987,5.0,955088162\n232,2988,4.0,955093304\n232,3005,4.0,955085204\n232,3011,3.0,955093231\n232,3019,4.0,955089390\n232,3020,5.0,955094339\n232,3028,1.0,955090442\n232,3035,4.0,955085839\n232,3037,5.0,955086564\n232,3038,5.0,955092600\n232,3039,4.0,955090106\n232,3040,3.0,955090383\n232,3044,5.0,955086305\n232,3062,4.0,955085867\n232,3066,5.0,955085965\n232,3068,4.0,955092410\n232,3069,4.0,955093644\n232,3070,5.0,955088124\n232,3072,3.0,955090035\n232,3074,4.0,955086527\n232,3086,5.0,955091105\n232,3087,4.0,955090687\n232,3088,5.0,955090253\n232,3090,5.0,955092479\n232,3091,5.0,955085390\n232,3093,4.0,955086564\n232,3095,4.0,955092565\n232,3098,4.0,955092720\n232,3100,4.0,955093421\n232,3108,4.0,955093506\n232,3111,4.0,955092784\n232,3130,1.0,955091578\n232,3134,5.0,955085390\n232,3135,3.0,955093330\n232,3142,2.0,955092253\n232,3143,4.0,955085936\n232,3145,4.0,955084581\n232,3152,3.0,955093017\n232,3153,5.0,955086853\n232,3165,5.0,955087638\n232,3168,4.0,955088124\n232,3169,3.0,955093560\n232,3196,4.0,955085390\n232,3200,5.0,955090580\n232,3201,3.0,955092784\n232,3210,4.0,955090253\n232,3235,4.0,955085053\n232,3244,4.0,955085053\n232,3246,5.0,955084924\n232,3247,1.0,955089638\n232,3248,1.0,955085230\n232,3252,4.0,955093585\n232,3253,4.0,955090383\n232,3254,4.0,955091436\n232,3256,4.0,955086995\n232,3260,5.0,955093607\n232,3265,5.0,955086697\n232,3268,1.0,955087888\n232,3271,5.0,955093183\n232,3284,4.0,955084955\n232,3296,4.0,955085053\n232,3313,3.0,955091760\n232,3334,4.0,955084805\n232,3341,5.0,955090035\n232,3347,5.0,955084721\n232,3350,3.0,955093330\n232,3358,3.0,955090505\n232,3360,3.0,955084721\n232,3361,5.0,955089893\n232,3362,5.0,955089337\n232,3363,5.0,955090442\n232,3368,4.0,955086595\n232,3386,5.0,955086330\n232,3392,3.0,955091737\n232,3395,3.0,955091326\n232,3396,4.0,955088871\n232,3401,3.0,955088552\n232,3404,4.0,955087284\n232,3405,5.0,955092565\n232,3406,5.0,955085839\n232,3417,5.0,955088041\n232,3418,2.0,955086726\n232,3420,5.0,955093506\n232,3421,4.0,955089975\n232,3422,3.0,955090612\n232,3425,3.0,955094314\n232,3447,5.0,955093684\n232,3448,5.0,955090383\n232,3451,1.0,955090720\n232,3452,4.0,955087383\n232,3461,2.0,955084721\n232,3467,3.0,955086527\n232,3468,5.0,955092512\n232,3469,5.0,955092436\n232,3470,5.0,955088041\n232,3471,4.0,955092512\n232,3478,4.0,955093940\n232,3479,5.0,955088228\n232,3480,4.0,955093282\n232,3489,4.0,955085053\n232,3492,4.0,955084776\n232,3494,3.0,955084721\n232,3501,4.0,955090383\n232,3504,3.0,955089893\n232,3508,4.0,955086527\n232,3520,1.0,955091807\n232,3524,5.0,955090720\n232,3527,5.0,955086889\n232,3543,4.0,955084721\n232,3545,4.0,955085465\n232,3546,2.0,955093859\n232,3548,4.0,955090987\n232,3552,3.0,955084833\n232,5060,3.0,955085423\n232,6460,4.0,955092359\n233,3,3.0,854481667\n233,7,3.0,854481668\n233,14,3.0,854481720\n233,17,5.0,854481605\n233,58,3.0,854481720\n233,79,3.0,854481818\n233,86,3.0,854481964\n233,95,3.0,854481605\n233,100,3.0,854481871\n233,140,3.0,854481818\n233,141,4.0,854481605\n233,376,3.0,854481720\n233,494,3.0,854481668\n233,608,5.0,854481667\n233,612,3.0,854482094\n233,648,3.0,854481605\n233,707,3.0,854481904\n233,733,3.0,854481667\n233,736,3.0,854481605\n233,762,3.0,854481818\n233,780,4.0,854481605\n233,798,3.0,854482215\n233,802,3.0,854481871\n233,805,3.0,854481818\n233,832,3.0,854481871\n233,836,3.0,854482094\n233,839,3.0,854481931\n233,991,3.0,854482185\n233,1006,3.0,854482155\n233,1049,3.0,854482128\n233,1061,3.0,854482028\n233,1073,3.0,854481668\n233,1183,4.0,854482094\n233,1356,3.0,854481818\n233,1427,3.0,854482386\n233,1432,3.0,854483044\n234,260,4.5,1213808478\n234,344,2.5,1213808811\n234,356,4.0,1213808418\n234,367,2.5,1213812189\n234,480,3.5,1213808468\n234,500,4.0,1213808838\n234,541,4.0,1213850399\n234,595,3.5,1213808800\n234,661,3.5,1213807874\n234,720,3.5,1213807932\n234,745,4.0,1213850214\n234,953,4.0,1213850929\n234,1009,2.5,1213808119\n234,1073,4.5,1213808850\n234,1080,4.5,1213850599\n234,1097,4.0,1213808791\n234,1136,4.0,1213808935\n234,1148,4.0,1213850220\n234,1196,4.0,1213850207\n234,1197,4.0,1213808825\n234,1207,4.0,1213850391\n234,1210,4.5,1213808471\n234,1223,4.0,1213850249\n234,1235,5.0,1213851075\n234,1247,5.0,1213850812\n234,1253,5.0,1213807978\n234,1256,5.0,1213850734\n234,1258,4.5,1213849887\n234,1265,2.5,1213808817\n234,1278,4.0,1213850783\n234,1288,2.5,1213850711\n234,1517,4.0,1213809124\n234,1527,4.5,1213809053\n234,1580,4.0,1213808563\n234,1653,4.0,1213850048\n234,1704,5.0,1213808776\n234,1747,4.5,1213807884\n234,1961,5.0,1213808787\n234,1994,3.5,1213807909\n234,2009,3.5,1213808056\n234,2116,2.5,1213808014\n234,2135,2.5,1213808185\n234,2174,4.5,1213809131\n234,2355,3.5,1213809094\n234,2501,4.0,1213849910\n234,2571,5.0,1213808677\n234,2616,4.5,1213807987\n234,2628,5.0,1213809315\n234,2683,4.0,1213808734\n234,2706,3.0,1213808885\n234,2788,4.0,1213850255\n234,2857,4.5,1213808043\n234,2959,5.0,1213850281\n234,2987,3.5,1213809012\n234,2997,4.0,1213808624\n234,3088,4.5,1213850419\n234,3156,4.5,1213811295\n234,3451,3.0,1213808139\n234,3751,3.0,1213809032\n234,4015,0.5,1213812537\n234,4027,4.0,1213808757\n234,4247,2.0,1213812184\n234,4306,3.5,1213809332\n234,4878,5.0,1213850493\n234,4886,3.5,1213808943\n234,4963,4.0,1213808594\n234,4993,4.5,1213808402\n234,4995,5.0,1213808856\n234,5349,3.0,1213808437\n234,5378,4.5,1213808684\n234,5445,4.5,1213808409\n234,5446,4.5,1213850960\n234,5952,4.0,1213808556\n234,5989,5.0,1213808744\n234,6365,2.5,1213812196\n234,6377,3.0,1213808395\n234,6539,2.5,1213808525\n234,6773,3.0,1213851131\n234,6780,4.5,1213850480\n234,6807,4.0,1213850840\n234,6934,3.5,1213809047\n234,7075,5.0,1213850410\n234,7147,4.5,1213808994\n234,7153,4.0,1213808492\n234,7826,5.0,1213850449\n234,8360,2.5,1213808633\n234,8464,3.5,1213849993\n234,8961,3.0,1213850352\n234,33493,3.5,1213808659\n234,33794,4.0,1213808610\n234,37729,3.5,1213808156\n234,38038,2.0,1213850633\n234,44195,3.5,1213850557\n234,44788,4.0,1213850871\n234,45722,3.0,1213808730\n234,45928,4.0,1213850718\n234,45950,4.0,1213849987\n234,46578,4.0,1213808724\n234,46976,3.0,1213850458\n234,48385,3.5,1213808872\n234,48394,5.0,1213808784\n234,48516,4.5,1214019119\n234,48774,3.5,1213808901\n234,53894,3.5,1213851113\n234,54272,3.0,1213808921\n234,54503,3.0,1213808212\n234,54997,4.5,1213849828\n234,55820,5.0,1213808755\n234,56174,3.5,1213809072\n234,56367,4.0,1213808642\n234,56782,4.5,1213850703\n234,56885,3.0,1213849982\n234,59315,3.5,1213850200\n234,59900,1.5,1213808569\n234,60040,1.5,1213850463\n235,5,4.5,1113184535\n235,6,4.0,1111625738\n235,11,3.5,1111558168\n235,47,3.0,1111625682\n235,48,3.0,1111557883\n235,50,5.0,1111624791\n235,62,4.5,1112684858\n235,110,2.5,1111625366\n235,141,3.5,1112684837\n235,161,4.5,1111558307\n235,222,4.5,1113185196\n235,225,4.5,1113184522\n235,236,4.0,1113184650\n235,237,5.0,1112683901\n235,261,3.0,1113184861\n235,292,5.0,1112684815\n235,296,4.5,1112684715\n235,318,5.0,1111625666\n235,339,3.0,1111558147\n235,342,3.0,1111557878\n235,345,3.5,1113184836\n235,356,5.0,1111558324\n235,357,4.5,1112684826\n235,376,3.5,1113184553\n235,377,4.5,1112684769\n235,380,4.0,1112684736\n235,457,5.0,1111625394\n235,500,4.5,1112684805\n235,527,2.5,1112684757\n235,539,3.5,1112684824\n235,552,3.5,1111557887\n235,587,4.5,1112684820\n235,588,4.5,1112684754\n235,590,4.5,1112684729\n235,592,4.5,1112684726\n235,593,3.5,1112684720\n235,597,3.5,1112684800\n235,608,4.0,1112684762\n235,628,5.0,1111624825\n235,648,5.0,1112684775\n235,708,4.0,1113184332\n235,733,4.5,1111624806\n235,780,1.5,1112684742\n235,802,4.5,1113184569\n235,805,4.0,1111557865\n235,832,4.5,1111557824\n235,919,5.0,1113184252\n235,920,5.0,1113184517\n235,1028,5.0,1113184765\n235,1030,4.0,1112683857\n235,1035,5.0,1113184771\n235,1059,3.5,1111558201\n235,1073,4.5,1112684831\n235,1079,5.0,1113184284\n235,1183,2.5,1113184347\n235,1207,4.5,1113184787\n235,1246,4.5,1111625308\n235,1270,4.5,1111625478\n235,1271,5.0,1111625338\n235,1307,4.0,1111558142\n235,1380,4.0,1111557859\n235,1479,4.0,1113185192\n235,1513,3.5,1111558190\n235,1569,4.0,1113184939\n235,1610,4.5,1111625466\n235,1617,5.0,1112684850\n235,1625,5.0,1111557910\n235,1682,5.0,1111625561\n235,1721,5.0,1112684853\n235,1777,4.0,1111558040\n235,1923,5.0,1111625545\n235,1968,4.0,1111625400\n235,2001,3.5,1111557895\n235,2011,4.5,1113184557\n235,2012,4.0,1111557797\n235,2028,1.0,1111625611\n235,2058,4.5,1111624838\n235,2093,4.0,1112683986\n235,2137,5.0,1111625606\n235,2268,5.0,1111624821\n235,2398,4.5,1111625522\n235,2424,4.5,1113184953\n235,2470,4.0,1113184902\n235,2580,5.0,1111625707\n235,2605,3.5,1113185426\n235,2640,3.0,1111557849\n235,2671,4.5,1113184878\n235,2688,4.0,1111558171\n235,2706,5.0,1113184474\n235,2707,5.0,1111624909\n235,2762,5.0,1111625493\n235,2770,4.0,1111557951\n235,2858,5.0,1112684796\n235,2987,4.5,1113184343\n235,3105,4.5,1111558346\n235,3147,5.0,1111558315\n235,3176,4.5,1113184806\n235,3186,4.5,1111625256\n235,3248,4.0,1111558251\n235,3249,4.5,1111558180\n235,3271,4.5,1111625571\n235,3408,4.0,1113184664\n235,3418,4.0,1113184855\n235,3502,4.5,1111625539\n235,3510,5.0,1111624842\n235,3594,3.5,1112683878\n235,3623,3.5,1111557915\n235,3717,4.0,1113185462\n235,3897,4.0,1111557838\n235,3911,5.0,1113185127\n235,3916,4.5,1111624808\n235,3948,4.0,1113184895\n235,3977,3.5,1111557925\n235,4014,4.0,1111625270\n235,4034,4.0,1113184803\n235,4040,3.0,1112684562\n235,4225,4.5,1111625773\n235,4226,4.5,1113184683\n235,4239,4.0,1111625407\n235,4246,5.0,1113185136\n235,4306,4.5,1113184481\n235,4308,4.5,1113185418\n235,4326,3.5,1111625663\n235,4448,5.0,1111625302\n235,4464,4.0,1111558237\n235,4563,3.5,1112684567\n235,4867,4.0,1112683808\n235,4880,4.5,1111558319\n235,4963,4.5,1111558338\n235,4973,4.5,1113184957\n235,4975,3.5,1111625566\n235,4979,4.0,1113185409\n235,4995,5.0,1111625398\n235,5296,4.0,1112684000\n235,5349,4.5,1111625384\n235,5377,5.0,1111625591\n235,5418,4.5,1111625388\n235,5419,4.0,1112684539\n235,5445,5.0,1111557956\n235,5679,4.5,1111625786\n235,5989,4.0,1111625410\n235,6187,5.0,1111558545\n235,6503,3.0,1111558210\n235,6596,4.0,1112684315\n235,6708,5.0,1111625585\n235,6879,3.5,1111558305\n235,6942,4.5,1111558343\n235,8360,4.5,1111625506\n235,8368,4.5,1111625480\n235,8529,4.0,1111624869\n235,8636,4.5,1111625558\n235,8784,5.0,1111625700\n235,8970,4.5,1111625624\n235,8981,4.5,1111625696\n235,30825,4.0,1111625295\n236,6,3.0,1109968623\n236,7,3.5,1109968699\n236,10,3.0,1109969756\n236,30,4.5,1109969948\n236,32,4.0,1109968555\n236,47,2.5,1109968576\n236,111,4.5,1109968034\n236,260,3.0,1109968540\n236,273,2.0,1109968457\n236,296,3.0,1109968527\n236,364,3.0,1109968579\n236,431,4.0,1109966648\n236,480,3.0,1109968531\n236,500,2.5,1109968588\n236,527,3.5,1109968548\n236,541,4.5,1109968643\n236,588,3.5,1109969735\n236,590,3.0,1109968536\n236,593,4.0,1109968524\n236,599,4.5,1109968086\n236,750,5.0,1109971087\n236,780,2.0,1109969720\n236,841,4.0,1109967830\n236,898,3.0,1109968421\n236,899,4.5,1109966580\n236,903,5.0,1109966545\n236,904,5.0,1109966481\n236,908,4.5,1109967977\n236,909,4.5,1109969375\n236,910,5.0,1109968082\n236,912,4.0,1109968050\n236,913,4.0,1109967997\n236,915,3.5,1109970877\n236,922,4.5,1109968315\n236,923,4.5,1109967953\n236,924,5.0,1109970618\n236,926,4.5,1109968066\n236,928,4.0,1109967251\n236,930,5.0,1109967261\n236,931,3.5,1109970400\n236,933,4.0,1109970393\n236,936,5.0,1109969439\n236,942,4.5,1109970960\n236,943,4.5,1109970939\n236,945,4.0,1109970866\n236,946,5.0,1109969559\n236,951,4.5,1109967224\n236,954,4.0,1109969418\n236,955,5.0,1109967198\n236,969,4.0,1109970857\n236,1036,3.5,1109968647\n236,1086,3.5,1109969503\n236,1097,3.5,1109970487\n236,1136,4.0,1109968653\n236,1178,5.0,1109967629\n236,1196,3.5,1109968568\n236,1198,4.0,1109970484\n236,1199,5.0,1109969478\n236,1206,4.5,1109968692\n236,1208,5.0,1109968111\n236,1209,4.5,1109970597\n236,1210,3.0,1109968570\n236,1212,4.0,1109967947\n236,1214,4.0,1109968641\n236,1217,5.0,1109971090\n236,1219,4.5,1109968032\n236,1222,3.5,1109968727\n236,1230,5.0,1109970725\n236,1237,5.0,1109967103\n236,1244,5.0,1109966673\n236,1248,4.5,1109967666\n236,1250,3.5,1109966538\n236,1251,5.0,1109967728\n236,1252,4.5,1109966498\n236,1260,5.0,1109967631\n236,1281,5.0,1109967179\n236,1291,4.0,1109970489\n236,1293,3.0,1109968414\n236,1305,4.5,1109967832\n236,1333,4.5,1109970388\n236,1344,4.0,1109969595\n236,1345,4.0,1109967845\n236,1348,4.0,1109967681\n236,1354,2.5,1109968435\n236,1387,4.5,1109970492\n236,1617,2.5,1109968618\n236,1676,4.5,1109968758\n236,1693,3.0,1109970511\n236,1721,2.5,1109968614\n236,1809,4.5,1109969436\n236,1945,4.5,1109969660\n236,2000,0.5,1109968738\n236,2010,4.5,1109967675\n236,2019,5.0,1109966767\n236,2021,2.0,1109966683\n236,2028,3.0,1109968596\n236,2066,4.5,1109968058\n236,2115,3.5,1109970495\n236,2131,4.0,1109969831\n236,2176,3.5,1109970402\n236,2177,3.5,1109970434\n236,2178,3.5,1109970415\n236,2183,4.0,1109970408\n236,2186,4.0,1109967985\n236,2194,2.5,1109968451\n236,2200,4.0,1109970440\n236,2201,4.0,1109970426\n236,2294,3.5,1109966621\n236,2396,3.0,1109968637\n236,2539,2.0,1109968453\n236,2571,2.5,1109967118\n236,2575,2.5,1109968438\n236,2628,2.0,1109968633\n236,2712,4.5,1109968751\n236,2726,4.0,1109967658\n236,2729,4.0,1109969519\n236,2731,4.0,1109968380\n236,2732,4.0,1109969555\n236,2858,3.0,1109968584\n236,2940,4.0,1109967761\n236,3022,5.0,1109967974\n236,3089,4.0,1109968045\n236,3091,5.0,1109967456\n236,3095,5.0,1109969421\n236,3097,4.5,1109969445\n236,3134,5.0,1109967646\n236,3306,4.5,1109970368\n236,3307,5.0,1109967626\n236,3310,5.0,1109968106\n236,3334,3.5,1109969372\n236,3365,5.0,1109968980\n236,3435,4.0,1109967968\n236,3462,5.0,1109967189\n236,3470,5.0,1109967460\n236,3489,3.5,1109970507\n236,3559,4.5,1109969969\n236,3578,2.5,1109968673\n236,3632,5.0,1109970365\n236,3657,4.0,1109970036\n236,3730,4.5,1109967989\n236,3739,5.0,1109968072\n236,3741,5.0,1109969669\n236,3742,4.0,1109968381\n236,3872,4.0,1109970924\n236,3996,3.5,1109968127\n236,4034,3.0,1109969498\n236,4144,4.0,1109967746\n236,4190,4.0,1109969539\n236,4273,4.0,1109967813\n236,4308,2.5,1109968443\n236,4334,4.5,1109968118\n236,4406,4.5,1109969664\n236,4420,4.0,1109970928\n236,4422,4.5,1109967548\n236,4768,4.5,1109968355\n236,4848,4.5,1109967788\n236,4914,3.5,1109967701\n236,4993,2.5,1109967157\n236,5009,3.5,1109966931\n236,5017,4.0,1109968023\n236,5060,4.0,1109966503\n236,5114,5.0,1109969567\n236,5147,4.5,1109967637\n236,5177,4.0,1109967689\n236,5291,4.5,1109967445\n236,5333,4.0,1109969403\n236,5378,2.5,1109966680\n236,5440,4.5,1109968993\n236,5498,4.5,1109967921\n236,5613,3.0,1109968430\n236,5690,4.0,1109969080\n236,5878,3.5,1109967694\n236,5952,3.0,1109966553\n236,5989,4.5,1109970504\n236,5995,4.5,1109968307\n236,6001,4.5,1109969468\n236,6126,4.0,1109967739\n236,6273,5.0,1109968131\n236,6286,4.0,1109969551\n236,6331,3.5,1109969381\n236,6609,4.0,1109968495\n236,6643,5.0,1109968006\n236,6669,5.0,1109966788\n236,6711,4.5,1109967724\n236,6721,4.0,1109969602\n236,6783,4.5,1109967651\n236,6920,4.5,1109969547\n236,6993,4.5,1109969390\n236,7013,5.0,1109967936\n236,7064,3.0,1109968433\n236,7089,4.0,1109968140\n236,7090,3.5,1109968100\n236,7116,5.0,1109967943\n236,7135,4.0,1109967643\n236,7136,4.0,1109967715\n236,7153,2.5,1109968441\n236,7209,4.0,1109967756\n236,7210,4.0,1109968371\n236,7211,4.5,1109970922\n236,7215,4.0,1109969093\n236,7234,4.0,1109968003\n236,7327,4.5,1109968361\n236,7396,4.0,1109967575\n236,7577,4.0,1109967580\n236,7713,4.5,1109967836\n236,7766,4.5,1109967451\n236,7926,4.5,1109967475\n236,7943,4.5,1109969060\n236,8012,4.5,1109969578\n236,8125,5.0,1109967980\n236,8154,5.0,1109967678\n236,8157,4.0,1109970223\n236,8188,5.0,1109966867\n236,8199,5.0,1109966882\n236,8228,4.0,1109967850\n236,8370,4.5,1109970205\n236,8507,4.0,1109967707\n236,8584,4.5,1109970963\n236,8670,4.5,1109970303\n236,25952,4.5,1109970931\n236,27721,3.5,1109969335\n236,27801,0.5,1109966730\n236,30812,3.5,1109967877\n236,31437,4.0,1109970251\n237,1,3.0,1102009632\n237,32,2.0,1102009650\n237,110,1.5,1102009612\n237,153,2.5,1102009658\n237,198,4.0,1102009385\n237,260,4.0,1102009618\n237,272,4.5,1102009412\n237,292,3.5,1102009703\n237,296,4.5,1102009524\n237,316,2.0,1102009670\n237,318,4.5,1102009616\n237,329,2.5,1102009690\n237,344,2.5,1102009661\n237,345,4.0,1102009339\n237,364,3.5,1102009685\n237,380,2.5,1102009621\n237,588,3.5,1102009646\n237,589,2.5,1102009625\n237,590,1.0,1102009608\n237,592,3.0,1102009606\n237,593,4.0,1102009537\n237,595,3.5,1102009669\n237,608,5.0,1102009653\n237,780,2.0,1102009630\n237,1084,4.0,1102009369\n237,1196,4.5,1102009679\n237,1198,3.5,1102009688\n237,1210,3.5,1102009641\n237,1270,4.0,1102009692\n237,1285,4.0,1102009408\n237,1320,2.0,1102009364\n237,1372,3.5,1102009356\n237,1408,1.0,1102009348\n237,1673,4.0,1102009372\n237,1674,3.0,1102009392\n237,1777,3.0,1102009415\n237,2001,3.0,1102009379\n237,2353,2.5,1102009346\n237,2502,4.5,1102009382\n237,2657,3.0,1102009353\n237,2858,4.5,1102009697\n237,3052,3.5,1102009404\n237,4034,2.5,1102009388\n237,5952,5.0,1102009410\n238,231,3.0,1459368758\n238,318,3.5,1459365344\n238,356,4.5,1459365351\n238,480,3.5,1459368104\n238,527,3.0,1459365348\n238,593,3.5,1459365430\n238,1203,3.0,1459365520\n238,1246,4.0,1459365432\n238,1265,3.5,1459365485\n238,1307,4.5,1459365437\n238,1682,5.0,1459365433\n238,1721,4.5,1459365489\n238,2028,4.0,1459365358\n238,2424,3.0,1459365613\n238,2572,4.0,1459368780\n238,2706,3.0,1459368656\n238,3147,3.5,1459365410\n238,3949,1.5,1459365474\n238,4025,4.0,1459365549\n238,4246,2.0,1459365555\n238,4447,2.5,1459365553\n238,4700,4.0,1459365696\n238,4973,4.0,1459365441\n238,5445,5.0,1459368216\n238,5995,3.0,1459365450\n238,6155,2.5,1459365608\n238,6218,4.0,1459365619\n238,6942,2.5,1459365532\n238,7254,4.0,1459365492\n238,8464,2.0,1459368738\n238,8529,3.5,1459368499\n238,8533,5.0,1459365539\n238,27815,3.0,1459365779\n238,31685,4.5,1459365536\n238,33145,3.0,1459366339\n238,33679,3.5,1459368339\n238,34162,4.0,1459368514\n238,40629,4.0,1459365565\n238,43744,4.0,1459366702\n238,44191,3.5,1459368123\n238,45720,3.5,1459368498\n238,46578,3.5,1459365479\n238,47610,4.5,1459368367\n238,49286,2.5,1459365691\n238,50872,4.0,1459368144\n238,51084,2.0,1459365766\n238,55247,3.5,1459365444\n238,55269,3.0,1459365677\n238,56367,3.5,1459365480\n238,56949,2.5,1459365716\n238,57669,3.0,1459368375\n238,58998,4.0,1459368784\n238,60950,4.0,1459365681\n238,63082,4.0,1459365451\n238,64969,3.0,1459365578\n238,66203,3.0,1459365739\n238,67788,2.5,1459366302\n238,69757,4.0,1459368365\n238,72011,2.5,1459368747\n238,72998,2.5,1459368113\n238,74154,3.5,1459366320\n238,74458,5.0,1459368146\n238,74946,2.0,1459366291\n238,79132,2.0,1459365422\n238,80549,5.0,1459368731\n238,81845,3.0,1459365462\n238,84954,4.0,1459365592\n238,85414,3.5,1459368358\n238,86882,4.0,1459368512\n238,88163,2.5,1459445378\n238,88405,3.5,1459365680\n238,90576,3.5,1459366330\n238,91500,5.0,1459365468\n238,92259,3.5,1459365356\n238,94959,3.0,1459368371\n238,95088,5.0,1459365727\n238,95309,3.5,1459366117\n238,97921,4.5,1459368344\n238,99114,4.5,1459368103\n238,102903,4.0,1459368666\n238,104374,5.0,1459365542\n238,105246,4.0,1459366707\n238,105844,4.0,1459368527\n238,106782,4.5,1459365457\n238,108729,4.0,1459365771\n238,109483,3.0,1459366324\n238,112556,3.5,1459368134\n238,115569,4.5,1459368335\n238,116797,4.0,1459365418\n238,148626,3.0,1459365379\n238,148956,4.0,1459366931\n239,3,4.0,991861185\n239,4,3.0,991862027\n239,5,3.0,991862159\n239,11,4.0,991858087\n239,39,5.0,991858188\n239,65,2.0,991863117\n239,69,5.0,991858188\n239,88,2.0,991862480\n239,104,4.0,991858274\n239,135,4.0,991862216\n239,141,4.0,991858523\n239,153,3.0,991862983\n239,157,4.0,991862945\n239,180,4.0,991858310\n239,181,1.0,991857762\n239,203,4.0,991862715\n239,216,4.0,991860676\n239,223,4.0,991857956\n239,232,4.0,991858113\n239,248,4.0,991862882\n239,252,4.0,991862216\n239,276,3.0,991862789\n239,289,5.0,991860829\n239,317,3.0,991862159\n239,327,4.0,991857762\n239,339,4.0,991860848\n239,353,4.0,991857646\n239,356,5.0,991858310\n239,367,4.0,991860580\n239,368,5.0,991860952\n239,372,4.0,991860635\n239,378,4.0,991860635\n239,380,4.0,991860692\n239,387,4.0,991862830\n239,410,3.0,991861948\n239,413,4.0,991862649\n239,420,3.0,991863153\n239,429,5.0,991862309\n239,432,4.0,991863057\n239,433,4.0,991862789\n239,435,3.0,991862480\n239,440,4.0,991858227\n239,457,3.0,991855128\n239,476,4.0,991858087\n239,485,3.0,991863117\n239,486,3.0,991862715\n239,489,2.0,991863270\n239,497,5.0,991858341\n239,500,4.0,991860998\n239,514,4.0,991855174\n239,516,4.0,991861141\n239,520,4.0,991862913\n239,532,3.0,991859417\n239,539,3.0,991860657\n239,542,1.0,991862242\n239,543,5.0,991858523\n239,551,4.0,991855174\n239,587,4.0,991860611\n239,588,5.0,991858143\n239,656,3.0,991862945\n239,673,4.0,991862945\n239,688,2.0,991863270\n239,708,5.0,991859417\n239,719,3.0,991862620\n239,725,3.0,991862111\n239,733,4.0,991857646\n239,762,3.0,991863117\n239,785,4.0,991860873\n239,830,3.0,991862027\n239,837,5.0,991860611\n239,852,4.0,991862069\n239,892,4.0,991858523\n239,910,4.0,991858010\n239,915,5.0,991858469\n239,934,4.0,991859388\n239,1007,4.0,991862264\n239,1010,3.0,991855128\n239,1016,3.0,991862190\n239,1021,3.0,991862855\n239,1042,4.0,991858555\n239,1060,5.0,991857902\n239,1073,3.0,991858207\n239,1077,4.0,991858403\n239,1091,3.0,991862882\n239,1097,4.0,991855128\n239,1135,4.0,991861210\n239,1197,5.0,991857857\n239,1210,5.0,991855174\n239,1215,4.0,991859364\n239,1220,4.0,991858555\n239,1259,4.0,991857857\n239,1265,4.0,991858039\n239,1278,5.0,991857939\n239,1288,4.0,991857902\n239,1297,4.0,991858577\n239,1307,5.0,991857987\n239,1380,5.0,991860952\n239,1391,4.0,991862130\n239,1394,4.0,991857902\n239,1409,3.0,991862044\n239,1431,3.0,991862983\n239,1440,3.0,991862789\n239,1456,2.0,991859326\n239,1468,3.0,991862945\n239,1476,4.0,991858577\n239,1485,3.0,991860754\n239,1495,1.0,991857762\n239,1500,5.0,991857939\n239,1513,2.0,991861948\n239,1566,4.0,991860829\n239,1580,4.0,991859417\n239,1593,2.0,991862216\n239,1641,4.0,991858113\n239,1663,5.0,991858449\n239,1680,5.0,991855174\n239,1689,4.0,991862159\n239,1711,3.0,991860676\n239,1713,3.0,991860829\n239,1777,5.0,991858247\n239,1784,5.0,991858341\n239,1894,4.0,991862715\n239,1918,4.0,991862159\n239,1923,4.0,991858247\n239,1968,5.0,991857873\n239,2000,4.0,991858188\n239,2002,3.0,991862309\n239,2003,3.0,991860580\n239,2004,2.0,991862498\n239,2011,4.0,991860721\n239,2016,3.0,991862830\n239,2040,3.0,991862190\n239,2081,4.0,991858449\n239,2082,3.0,991862190\n239,2088,3.0,991862882\n239,2100,3.0,991859326\n239,2108,4.0,991858039\n239,2109,4.0,991860692\n239,2111,3.0,991855174\n239,2133,3.0,991860952\n239,2134,4.0,991860873\n239,2136,3.0,991860721\n239,2144,4.0,991858291\n239,2174,4.0,991858172\n239,2195,3.0,991862983\n239,2208,4.0,991858010\n239,2245,3.0,991860873\n239,2247,3.0,991861141\n239,2248,4.0,991857902\n239,2249,4.0,991862027\n239,2252,3.0,991862913\n239,2266,3.0,991862309\n239,2306,4.0,991862945\n239,2331,4.0,991862069\n239,2335,4.0,991862789\n239,2347,3.0,991857729\n239,2355,5.0,991858403\n239,2369,3.0,991862264\n239,2374,4.0,991862529\n239,2375,3.0,991861993\n239,2378,3.0,991862159\n239,2379,4.0,991863153\n239,2396,4.0,991857922\n239,2405,4.0,991862242\n239,2406,4.0,991859339\n239,2407,4.0,991860611\n239,2408,3.0,991862620\n239,2409,5.0,991857687\n239,2410,4.0,991857729\n239,2411,4.0,991857729\n239,2412,4.0,991857762\n239,2413,4.0,991861228\n239,2424,5.0,991861185\n239,2431,5.0,991862069\n239,2463,4.0,991858403\n239,2469,4.0,991860952\n239,2470,3.0,991860974\n239,2471,3.0,991863077\n239,2473,2.0,991862761\n239,2485,4.0,991859417\n239,2502,3.0,991858207\n239,2539,4.0,991860873\n239,2552,2.0,991862130\n239,2558,3.0,991862027\n239,2567,4.0,991860721\n239,2572,4.0,991858087\n239,2581,4.0,991860927\n239,2582,3.0,991862761\n239,2587,3.0,991861164\n239,2597,2.0,991862216\n239,2599,4.0,991858039\n239,2617,4.0,991857646\n239,2640,4.0,991857646\n239,2641,4.0,991857687\n239,2643,3.0,991857762\n239,2671,5.0,991858227\n239,2683,3.0,991861141\n239,2690,4.0,991857971\n239,2700,5.0,991858039\n239,2706,4.0,991858143\n239,2716,3.0,991857956\n239,2717,3.0,991862649\n239,2718,5.0,991860611\n239,2723,4.0,991860721\n239,2735,3.0,991862264\n239,2736,5.0,991858555\n239,2746,4.0,991860611\n239,2770,3.0,991861164\n239,2774,5.0,991857793\n239,2791,3.0,991858067\n239,2792,3.0,991862027\n239,2796,3.0,991861210\n239,2797,4.0,991858039\n239,2805,2.0,991862216\n239,2858,5.0,991857828\n239,2883,4.0,991858087\n239,2888,3.0,991862027\n239,2889,4.0,991860611\n239,2915,4.0,991858403\n239,2918,5.0,991857873\n239,2953,3.0,991863011\n239,3004,3.0,991862480\n239,3033,5.0,991860754\n239,3086,4.0,991858449\n239,3104,4.0,991858172\n239,3114,5.0,991857828\n239,3120,3.0,991862309\n239,3146,3.0,991863117\n239,3175,4.0,991858341\n239,3247,4.0,991861185\n239,3248,4.0,991863077\n239,3253,4.0,991858291\n239,3254,3.0,991861993\n239,3255,5.0,991859326\n239,3258,4.0,991862715\n239,3261,4.0,991858469\n239,3263,4.0,991860927\n239,3286,3.0,991862620\n239,3299,4.0,991862855\n239,3301,4.0,991859417\n239,3324,4.0,991862855\n239,3358,4.0,991858113\n239,3361,4.0,991858172\n239,3388,2.0,991862309\n239,3395,3.0,991862913\n239,3398,5.0,991858172\n239,3424,4.0,991858143\n239,3450,4.0,991860848\n239,3508,4.0,991855128\n239,3524,4.0,991861993\n239,3527,3.0,991857646\n239,3534,4.0,991861210\n239,3544,4.0,991860909\n239,3548,5.0,991857857\n239,3552,4.0,991859364\n239,3591,4.0,991858555\n239,3646,3.0,991863205\n239,3669,3.0,991863205\n239,3712,4.0,991862740\n239,3715,4.0,991862804\n239,3740,4.0,991857687\n239,3751,5.0,991857939\n239,3773,4.0,991863205\n239,3809,4.0,991859417\n239,3865,5.0,991858010\n239,3868,3.0,991858341\n239,3869,3.0,991862190\n239,3873,3.0,991858143\n239,3977,5.0,991857729\n239,4010,5.0,991861164\n239,4040,3.0,991861993\n239,4063,3.0,991860873\n239,4066,4.0,991860657\n239,4085,4.0,991860635\n239,4089,3.0,991863077\n239,4102,4.0,991861210\n239,4115,3.0,991862454\n239,4121,3.0,991860657\n239,4130,3.0,991862190\n239,4132,4.0,991863117\n239,4135,3.0,991861964\n239,4180,4.0,991857729\n239,4214,4.0,991860829\n239,4221,2.0,991862621\n239,4275,2.0,991857687\n239,4293,3.0,991862830\n239,4317,3.0,991863254\n239,4321,4.0,991858227\n239,4333,3.0,991862069\n239,4351,3.0,991857687\n239,4355,4.0,991857687\n239,5060,4.0,991857987\n240,1,4.5,1098943177\n240,16,3.5,1098940415\n240,17,4.0,1099263843\n240,21,3.0,1099264224\n240,32,4.5,1098943194\n240,34,4.5,1098943234\n240,36,4.0,1099264248\n240,39,4.5,1099264239\n240,47,4.0,1098943239\n240,50,2.5,1098943216\n240,58,4.0,1098940446\n240,111,5.0,1099264401\n240,141,3.5,1098943401\n240,150,4.0,1098943139\n240,165,3.5,1099264155\n240,236,4.5,1098940440\n240,261,4.0,1099263911\n240,282,3.0,1098940465\n240,296,3.5,1098943112\n240,318,4.0,1098943148\n240,348,4.0,1100891640\n240,356,2.5,1098943118\n240,357,4.0,1099264208\n240,367,3.0,1099264190\n240,377,3.0,1099264147\n240,380,1.5,1098943163\n240,410,4.0,1098943389\n240,440,3.5,1099264392\n240,457,3.5,1098943126\n240,480,3.0,1098943121\n240,500,4.0,1098943263\n240,508,4.0,1099264444\n240,527,4.5,1098943191\n240,588,4.0,1098943189\n240,592,3.0,1099264128\n240,593,4.0,1098943115\n240,595,3.5,1099264168\n240,597,3.0,1098943250\n240,608,5.0,1098943196\n240,648,3.5,1099264160\n240,708,4.0,1099264464\n240,736,2.5,1098943220\n240,785,4.0,1100891642\n240,898,4.5,1098943016\n240,904,3.5,1098940468\n240,905,4.5,1098942302\n240,908,4.0,1098940443\n240,913,4.5,1100891624\n240,919,5.0,1098942325\n240,923,4.0,1098940434\n240,924,4.5,1099264429\n240,927,3.5,1098942545\n240,936,4.0,1098942369\n240,947,4.0,1098942354\n240,950,4.0,1098942278\n240,951,4.5,1098943018\n240,954,3.0,1098942287\n240,955,4.0,1098942381\n240,965,4.0,1098942362\n240,1035,4.0,1100891607\n240,1036,4.0,1099264397\n240,1079,4.0,1098943357\n240,1086,4.0,1099263692\n240,1183,3.5,1098943365\n240,1193,4.5,1099264292\n240,1197,4.0,1099264243\n240,1200,4.0,1098943372\n240,1207,4.5,1100891613\n240,1230,4.5,1098940404\n240,1265,4.5,1098943368\n240,1269,3.5,1098943033\n240,1270,4.5,1098943245\n240,1278,4.0,1098940482\n240,1288,4.0,1098940479\n240,1300,4.5,1098944005\n240,1345,4.0,1098944013\n240,1358,3.5,1098940471\n240,1374,3.0,1098940424\n240,1391,4.0,1098944020\n240,1393,4.0,1099264433\n240,1500,4.0,1098940462\n240,1517,3.0,1098940408\n240,1580,4.0,1099264279\n240,1617,4.0,1099264252\n240,1643,4.5,1098943956\n240,1674,3.0,1100891593\n240,1680,4.5,1098943969\n240,1704,4.0,1099264460\n240,1719,4.0,1098943980\n240,1721,4.0,1099264266\n240,1885,4.5,1098943951\n240,1923,4.0,1100891588\n240,2100,4.0,1098943938\n240,2186,4.0,1098943923\n240,2187,4.0,1099263951\n240,2208,4.5,1098942320\n240,2321,4.0,1098943917\n240,2355,4.0,1098943350\n240,2396,4.0,1100891570\n240,2406,4.0,1100891552\n240,2580,4.5,1098944069\n240,2599,4.5,1098940438\n240,2700,4.0,1098940473\n240,2710,1.5,1100891560\n240,2716,4.5,1099264419\n240,2762,5.0,1099264284\n240,2797,3.5,1098940410\n240,2858,4.0,1098943257\n240,2935,3.5,1098943021\n240,2967,4.0,1099263884\n240,2987,3.0,1100891563\n240,2997,5.0,1098943346\n240,3081,3.5,1098943473\n240,3097,4.0,1098943036\n240,3114,4.0,1098940427\n240,3176,3.5,1100891566\n240,3408,3.5,1098941550\n240,3471,4.0,1098943449\n240,3481,4.5,1098940976\n240,3499,4.5,1098943441\n240,3624,2.5,1098943431\n240,3735,4.0,1100891675\n240,3751,5.0,1098941805\n240,3752,3.0,1098943444\n240,3783,4.0,1098941873\n240,3787,4.5,1098941980\n240,3793,3.5,1098940453\n240,3852,3.5,1098941320\n240,3897,3.5,1098942038\n240,3910,4.5,1098941614\n240,3911,4.5,1098940920\n240,3948,4.0,1098941264\n240,3967,5.0,1098941840\n240,3983,4.5,1098940857\n240,3994,3.5,1098941249\n240,3996,4.0,1098940892\n240,4011,4.0,1098941830\n240,4022,4.0,1098941349\n240,4027,4.5,1098940996\n240,4034,3.5,1098940885\n240,4226,4.5,1098942007\n240,4246,4.0,1098941559\n240,4306,3.5,1098940449\n240,4361,4.0,1100891663\n240,4380,4.5,1098941721\n240,4641,4.0,1098941927\n240,4642,4.5,1098941689\n240,4720,4.5,1098941779\n240,4734,3.0,1098941075\n240,4848,4.0,1098941594\n240,4878,4.5,1098940951\n240,4886,4.5,1098940840\n240,4896,3.5,1098941427\n240,4963,4.0,1098941457\n240,4973,4.5,1098940798\n240,4979,4.0,1098941819\n240,4995,3.5,1098941508\n240,5013,4.5,1098941683\n240,5135,4.5,1098941821\n240,5299,3.5,1098941294\n240,5349,3.5,1098941463\n240,5418,4.0,1098941460\n240,5421,3.5,1098941654\n240,5445,4.5,1098941802\n240,5505,3.5,1098941554\n240,5618,4.5,1098940845\n240,5679,4.0,1098941433\n240,5791,4.0,1098941702\n240,5812,4.0,1098941876\n240,5816,3.5,1098941479\n240,5902,4.0,1098940993\n240,5945,3.5,1098941627\n240,5952,4.0,1098940811\n240,5989,4.0,1098942043\n240,5991,4.5,1098941724\n240,5992,4.0,1098941622\n240,6003,4.0,1098941599\n240,6188,2.5,1098941172\n240,6218,4.5,1098941879\n240,6296,4.0,1098941756\n240,6333,3.5,1098941498\n240,6377,4.0,1098940801\n240,6378,4.0,1098941164\n240,6385,4.5,1098940878\n240,6412,4.5,1098942388\n240,6539,4.5,1098940971\n240,6565,4.5,1098941834\n240,6591,4.0,1098941896\n240,6593,4.0,1098941152\n240,6711,3.5,1098940999\n240,6773,4.5,1098940930\n240,6777,4.0,1099263679\n240,6867,4.0,1098940826\n240,6870,3.0,1098940906\n240,6874,3.0,1098941865\n240,6877,4.0,1098941221\n240,6881,4.0,1098941736\n240,6947,4.0,1098941911\n240,7061,4.5,1098942299\n240,7078,4.0,1098942385\n240,7090,5.0,1098940849\n240,7121,4.5,1098943008\n240,7139,4.0,1098940787\n240,7147,3.5,1098941010\n240,7153,4.0,1098941997\n240,7155,4.0,1098941383\n240,7160,4.5,1098940926\n240,7212,3.5,1098943048\n240,7361,3.5,1098940744\n240,7382,4.0,1098941308\n240,7437,3.0,1099264034\n240,7438,3.0,1098940863\n240,7451,3.5,1099263895\n240,7493,4.0,1099263684\n240,8228,4.5,1098942274\n240,8360,4.0,1098940835\n240,8368,4.5,1098940807\n240,8464,4.0,1098940766\n240,8507,3.5,1098942537\n240,8622,5.0,1099263824\n240,8636,4.5,1098940773\n240,8638,2.5,1098940761\n240,8644,3.0,1098941299\n240,8665,4.5,1098941014\n240,8784,4.0,1098940749\n240,8798,3.0,1098940934\n240,8833,4.0,1098941882\n240,8865,4.0,1098941471\n240,8879,4.5,1099263674\n240,8917,4.5,1098940658\n241,1,3.0,847339737\n241,2,3.0,847339662\n241,5,2.0,847340005\n241,34,4.0,847339564\n241,36,4.0,847339832\n241,47,3.0,847339539\n241,48,2.0,847339855\n241,50,4.0,847339589\n241,150,2.0,847339376\n241,153,3.0,847339409\n241,158,3.0,847339806\n241,160,2.0,847339639\n241,181,3.0,847340005\n241,194,5.0,847340261\n241,196,3.0,847339737\n241,223,3.0,847339930\n241,230,3.0,847340034\n241,231,3.0,847339439\n241,235,4.0,847339757\n241,247,3.0,847340345\n241,253,3.0,847339510\n241,261,3.0,847339806\n241,296,4.0,847339376\n241,316,3.0,847339439\n241,317,2.0,847339639\n241,318,4.0,847339462\n241,319,5.0,847340188\n241,342,3.0,847340005\n241,344,3.0,847339409\n241,353,2.0,847339832\n241,355,2.0,847339906\n241,356,2.0,847339439\n241,357,3.0,847339614\n241,362,3.0,847340064\n241,364,3.0,847339539\n241,367,3.0,847339538\n241,370,3.0,847339855\n241,377,3.0,847339539\n241,380,3.0,847339376\n241,410,3.0,847339564\n241,420,3.0,847339614\n241,457,3.0,847339409\n241,471,4.0,847340064\n241,474,3.0,847339686\n241,480,3.0,847339462\n241,500,3.0,847339539\n241,509,3.0,847339686\n241,535,5.0,847340320\n241,551,4.0,847339780\n241,555,4.0,847339884\n241,587,3.0,847339564\n241,589,4.0,847339510\n241,592,3.0,847339375\n241,595,3.0,847339439\n241,778,4.0,847340320\n241,780,3.0,847339780\n242,1,5.0,956682763\n242,6,4.0,956684268\n242,11,5.0,956682997\n242,16,5.0,956685888\n242,21,5.0,956683024\n242,22,4.0,956685619\n242,25,4.0,956683813\n242,31,4.0,956686556\n242,34,4.0,956682698\n242,36,5.0,956683601\n242,47,4.0,956685503\n242,50,5.0,956685336\n242,52,4.0,956682964\n242,95,4.0,956684660\n242,100,4.0,956686165\n242,110,5.0,956683581\n242,111,5.0,956688563\n242,141,3.0,956683116\n242,144,4.0,956683189\n242,150,5.0,956683697\n242,164,5.0,956685910\n242,165,4.0,956684962\n242,185,4.0,956686266\n242,198,4.0,956684523\n242,205,4.0,956682849\n242,208,5.0,956686438\n242,215,4.0,956683909\n242,248,3.0,956682826\n242,252,3.0,956683089\n242,257,4.0,956686146\n242,260,5.0,956684986\n242,280,4.0,956686092\n242,296,5.0,956685371\n242,300,4.0,956683725\n242,316,4.0,956684523\n242,318,5.0,956683421\n242,329,4.0,956684700\n242,337,5.0,956683697\n242,342,4.0,956683024\n242,348,5.0,956682849\n242,349,5.0,956685888\n242,350,4.0,956685998\n242,352,5.0,956682826\n242,356,5.0,956682894\n242,357,4.0,956682997\n242,361,5.0,956686736\n242,368,4.0,956684438\n242,371,4.0,956682911\n242,373,5.0,956685782\n242,377,5.0,956684268\n242,378,4.0,956682390\n242,380,5.0,956683116\n242,415,4.0,956686292\n242,422,5.0,956686226\n242,425,4.0,956683937\n242,432,4.0,956686838\n242,440,5.0,956682934\n242,448,4.0,956689050\n242,454,3.0,956685888\n242,457,5.0,956684185\n242,463,4.0,956685706\n242,471,5.0,956686752\n242,474,4.0,956684185\n242,480,5.0,956684268\n242,481,2.0,956686199\n242,507,5.0,956684403\n242,508,5.0,956684901\n242,527,5.0,956683421\n242,529,5.0,956683627\n242,534,4.0,956683581\n242,541,5.0,956688507\n242,554,3.0,956685834\n242,590,5.0,956688281\n242,592,5.0,956685475\n242,593,4.0,956683457\n242,597,5.0,956688220\n242,608,5.0,956683457\n242,628,4.0,956685782\n242,648,4.0,956684523\n242,691,3.0,956683189\n242,695,4.0,956682390\n242,733,5.0,956685910\n242,748,3.0,956684700\n242,750,5.0,956688480\n242,786,4.0,956686146\n242,800,5.0,956683697\n242,832,3.0,956685946\n242,838,3.0,956683881\n242,852,4.0,956686455\n242,858,5.0,956685336\n242,866,4.0,956683838\n242,898,5.0,956684901\n242,899,5.0,956688756\n242,900,5.0,956689131\n242,903,5.0,956688564\n242,904,5.0,956686633\n242,908,5.0,956688480\n242,912,5.0,956688410\n242,913,5.0,956688533\n242,919,5.0,956688378\n242,920,5.0,956686633\n242,923,5.0,956688410\n242,924,5.0,956688951\n242,926,5.0,956689000\n242,933,5.0,956689083\n242,949,5.0,956688825\n242,953,5.0,956689083\n242,969,5.0,956688849\n242,994,5.0,956683645\n242,1036,5.0,956684962\n242,1041,4.0,956683421\n242,1042,4.0,956683089\n242,1057,2.0,956683158\n242,1084,5.0,956685371\n242,1088,5.0,956687231\n242,1090,5.0,956687495\n242,1094,5.0,956683909\n242,1095,4.0,956683627\n242,1096,5.0,956687430\n242,1097,5.0,956682390\n242,1103,5.0,956688901\n242,1124,5.0,956687665\n242,1179,5.0,956685421\n242,1183,5.0,956683960\n242,1186,4.0,956687495\n242,1187,4.0,956689000\n242,1193,5.0,956688564\n242,1196,5.0,956685008\n242,1197,5.0,956687159\n242,1198,5.0,956685111\n242,1203,5.0,956688613\n242,1204,5.0,956688533\n242,1206,5.0,956689409\n242,1207,5.0,956688507\n242,1208,5.0,956685238\n242,1210,5.0,956685040\n242,1213,4.0,956683457\n242,1214,5.0,956688735\n242,1219,5.0,956688588\n242,1221,5.0,956685336\n242,1225,5.0,956687335\n242,1227,5.0,956685476\n242,1230,4.0,956688378\n242,1231,5.0,956687360\n242,1234,5.0,956685336\n242,1246,5.0,956687625\n242,1247,5.0,956688678\n242,1252,5.0,956688480\n242,1254,5.0,956688901\n242,1259,4.0,956687360\n242,1265,4.0,956682826\n242,1266,5.0,956688756\n242,1269,5.0,956689109\n242,1270,5.0,956689000\n242,1272,4.0,956689028\n242,1276,5.0,956688564\n242,1282,5.0,956688928\n242,1290,4.0,956687566\n242,1291,5.0,956685077\n242,1296,4.0,956687159\n242,1299,5.0,956687335\n242,1302,5.0,956687526\n242,1304,5.0,956688780\n242,1307,5.0,956687159\n242,1333,5.0,956689028\n242,1343,4.0,956685974\n242,1356,5.0,956684374\n242,1358,5.0,956683541\n242,1370,4.0,956684962\n242,1372,4.0,956684330\n242,1377,4.0,956684660\n242,1387,5.0,956688735\n242,1391,4.0,956684548\n242,1393,4.0,956683881\n242,1394,5.0,956688901\n242,1395,5.0,956687566\n242,1396,5.0,956685476\n242,1404,4.0,956683697\n242,1422,4.0,956686019\n242,1425,4.0,956683048\n242,1479,5.0,956686146\n242,1480,4.0,956684548\n242,1500,4.0,956682826\n242,1518,3.0,956684523\n242,1542,4.0,956683909\n242,1544,5.0,956686266\n242,1552,4.0,956684620\n242,1573,4.0,956684374\n242,1580,5.0,956684301\n242,1586,3.0,956684660\n242,1597,4.0,956684438\n242,1608,5.0,956684438\n242,1610,5.0,956684268\n242,1615,4.0,956685857\n242,1616,4.0,956686199\n242,1617,5.0,956685283\n242,1639,4.0,956683937\n242,1647,4.0,956686332\n242,1653,5.0,956685946\n242,1674,5.0,956687159\n242,1678,4.0,956688928\n242,1694,4.0,956682390\n242,1704,5.0,956683513\n242,1719,3.0,956683581\n242,1721,5.0,956683881\n242,1729,5.0,956685503\n242,1732,4.0,956682934\n242,1747,5.0,956682894\n242,1748,5.0,956685834\n242,1784,4.0,956682792\n242,1791,3.0,956685619\n242,1792,4.0,956686266\n242,1841,4.0,956686092\n242,1845,5.0,956683089\n242,1892,3.0,956685946\n242,1912,4.0,956683785\n242,1918,4.0,956684620\n242,1939,5.0,956688735\n242,1942,5.0,956689196\n242,1945,5.0,956685372\n242,1947,5.0,956689083\n242,1950,5.0,956688564\n242,1952,5.0,956688849\n242,1953,5.0,956685372\n242,1956,5.0,956687335\n242,1957,5.0,956687430\n242,1958,5.0,956687665\n242,1959,5.0,956687205\n242,1960,5.0,956687430\n242,1961,5.0,956686799\n242,1962,5.0,956687388\n242,1964,5.0,956688588\n242,1968,4.0,956687495\n242,2000,5.0,956684930\n242,2001,4.0,956684930\n242,2002,4.0,956684930\n242,2006,4.0,956684301\n242,2020,4.0,956686556\n242,2023,5.0,956684660\n242,2028,5.0,956684214\n242,2058,4.0,956684330\n242,2069,5.0,956687566\n242,2070,5.0,956687597\n242,2076,5.0,956687665\n242,2100,4.0,956687205\n242,2104,4.0,956687737\n242,2108,4.0,956683881\n242,2112,5.0,956685503\n242,2114,4.0,956687702\n242,2115,5.0,956685077\n242,2125,4.0,956683838\n242,2126,4.0,956685706\n242,2145,4.0,956687231\n242,2146,4.0,956687205\n242,2194,5.0,956687495\n242,2231,4.0,956685520\n242,2243,5.0,956687205\n242,2245,5.0,956687625\n242,2248,4.0,956687159\n242,2262,4.0,956687264\n242,2267,4.0,956685974\n242,2268,5.0,956685421\n242,2272,5.0,956689647\n242,2278,3.0,956684438\n242,2289,4.0,956682763\n242,2312,5.0,956688086\n242,2321,4.0,956682792\n242,2331,5.0,956683960\n242,2336,4.0,956683581\n242,2344,4.0,956687597\n242,2349,4.0,956689196\n242,2352,5.0,956687526\n242,2353,4.0,956684330\n242,2369,4.0,956687264\n242,2391,5.0,956685834\n242,2396,5.0,956683785\n242,2405,5.0,956687231\n242,2407,5.0,956685211\n242,2408,3.0,956685211\n242,2415,4.0,956687283\n242,2417,3.0,956687856\n242,2420,5.0,956687665\n242,2421,3.0,956687893\n242,2424,5.0,956683048\n242,2468,4.0,956687264\n242,2469,4.0,956687231\n242,2474,5.0,956686769\n242,2501,5.0,956683486\n242,2561,4.0,956686199\n242,2570,5.0,956686696\n242,2571,5.0,956684185\n242,2598,5.0,956689675\n242,2599,4.0,956682698\n242,2605,4.0,956685706\n242,2616,5.0,956684700\n242,2628,5.0,956684986\n242,2671,4.0,956682997\n242,2672,4.0,956688337\n242,2688,4.0,956686292\n242,2707,4.0,956686092\n242,2724,4.0,956688240\n242,2734,3.0,956687737\n242,2738,4.0,956687702\n242,2739,5.0,956687495\n242,2749,4.0,956687665\n242,2750,4.0,956687566\n242,2757,5.0,956687702\n242,2762,5.0,956684837\n242,2763,4.0,956684374\n242,2764,5.0,956685591\n242,2791,4.0,956689365\n242,2797,5.0,956689171\n242,2802,5.0,956686579\n242,2803,4.0,956685947\n242,2804,5.0,956688432\n242,2819,5.0,956689365\n242,2857,5.0,956689109\n242,2858,5.0,956682671\n242,2863,5.0,956688780\n242,2875,5.0,956689480\n242,2881,4.0,956686226\n242,2916,3.0,956684301\n242,2917,5.0,956685445\n242,2918,4.0,956689324\n242,2919,5.0,956686556\n242,2929,5.0,956687566\n242,2942,3.0,956687264\n242,2950,3.0,956687283\n242,2997,5.0,956682720\n242,3005,5.0,956686112\n242,3006,4.0,956684817\n242,3035,5.0,956688825\n242,3044,5.0,956683881\n242,3060,4.0,956682826\n242,3068,5.0,956687388\n242,3069,5.0,956686681\n242,3071,5.0,956687430\n242,3072,5.0,956686681\n242,3095,5.0,956689028\n242,3098,5.0,956687597\n242,3100,5.0,956689521\n242,3102,4.0,956682390\n242,3104,5.0,956685397\n242,3105,4.0,956683601\n242,3106,4.0,956689409\n242,3107,4.0,956684301\n242,3108,4.0,956683627\n242,3109,4.0,956687893\n242,3110,4.0,956687526\n242,3111,5.0,956687388\n242,3138,4.0,956687737\n242,3147,4.0,956684857\n242,3148,3.0,956684796\n242,3152,5.0,956688870\n242,3160,5.0,956684746\n242,3169,4.0,956687665\n242,3176,5.0,956685998\n242,3198,5.0,956689131\n242,3201,5.0,956688735\n242,3214,4.0,956687856\n242,3247,4.0,956685648\n242,3251,4.0,956687625\n242,3255,5.0,956686486\n242,3256,5.0,956684214\n242,3257,4.0,956686332\n242,3259,3.0,956683486\n242,3260,4.0,956683663\n242,3270,4.0,956688410\n242,3301,4.0,956682599\n242,3308,4.0,956687566\n242,3317,5.0,956682599\n242,3330,5.0,956688825\n242,3342,5.0,956686594\n242,3354,2.0,956684085\n242,3359,5.0,956688678\n242,3360,4.0,956687430\n242,3361,5.0,956689324\n242,3363,5.0,956689409\n242,3394,3.0,956687283\n242,3408,4.0,956684031\n242,3418,5.0,956688143\n242,3421,4.0,956689083\n242,3422,4.0,956687264\n242,3424,5.0,956687360\n242,3448,5.0,956687597\n242,3450,2.0,956683089\n242,3467,5.0,956688655\n242,3469,5.0,956686633\n242,3471,5.0,956688480\n242,3478,4.0,956687526\n242,3481,5.0,956682599\n242,3501,5.0,956687205\n242,3504,5.0,956688735\n242,3512,5.0,956684031\n242,3513,4.0,956684031\n242,3526,4.0,956687450\n242,3543,5.0,956687335\n242,3591,4.0,956687737\n242,5060,5.0,956689427\n243,10,3.5,1094223893\n243,19,3.0,1094224146\n243,34,3.5,1094223856\n243,44,1.5,1094220921\n243,47,4.0,1094220912\n243,48,2.5,1094220014\n243,93,2.0,1094222014\n243,110,4.0,1094223796\n243,150,2.5,1094223791\n243,151,3.0,1094224324\n243,153,2.0,1094223550\n243,158,2.0,1094220049\n243,168,3.0,1094224529\n243,172,2.0,1094224499\n243,173,2.5,1094224318\n243,177,3.0,1094227283\n243,186,3.0,1094224527\n243,208,2.5,1094223966\n243,231,4.0,1094220958\n243,253,4.0,1094222420\n243,260,5.0,1094223802\n243,261,4.0,1094224616\n243,273,3.0,1094224914\n243,296,4.5,1094223766\n243,316,3.0,1094223839\n243,344,3.0,1094222408\n243,353,3.5,1094224269\n243,356,4.0,1094223770\n243,364,3.5,1094223532\n243,367,3.0,1094223914\n243,368,3.5,1094224157\n243,370,2.5,1094224486\n243,380,3.0,1094223807\n243,382,3.0,1094227148\n243,434,2.5,1094223929\n243,442,3.0,1094224151\n243,480,2.5,1094220737\n243,485,3.0,1094224510\n243,500,3.5,1094223921\n243,520,3.0,1094222950\n243,527,3.5,1094223526\n243,541,3.5,1094224056\n243,551,4.5,1094224162\n243,552,3.5,1094224559\n243,586,3.5,1094224034\n243,588,4.0,1094223540\n243,589,4.0,1094222383\n243,592,4.0,1094220752\n243,593,5.0,1094222392\n243,648,3.0,1094220888\n243,653,3.0,1094224280\n243,733,4.0,1094223881\n243,750,4.0,1094224247\n243,780,1.5,1094223815\n243,784,3.0,1094224428\n243,832,3.0,1094220903\n243,903,4.0,1094224626\n243,904,4.0,1118865291\n243,910,4.5,1094220190\n243,914,4.0,1094232624\n243,919,4.0,1094224100\n243,920,4.0,1094220893\n243,924,2.5,1094224093\n243,1028,4.0,1094224521\n243,1035,5.0,1094220875\n243,1047,2.5,1094416712\n243,1080,4.0,1094224354\n243,1089,4.5,1094224236\n243,1097,4.0,1094222371\n243,1101,2.5,1094224368\n243,1136,4.0,1094224071\n243,1193,4.0,1094224025\n243,1196,5.0,1094220871\n243,1198,4.5,1094223871\n243,1206,4.0,1094220839\n243,1210,5.0,1094223504\n243,1213,4.0,1094224114\n243,1219,4.0,1094220849\n243,1222,4.0,1094224358\n243,1240,3.0,1094223995\n243,1246,4.0,1094220827\n243,1250,4.0,1094220104\n243,1255,3.5,1118865350\n243,1258,4.5,1094224339\n243,1261,3.5,1094225401\n243,1265,4.0,1094220852\n243,1270,3.5,1094220844\n243,1275,4.0,1094220183\n243,1281,5.0,1094221378\n243,1282,3.0,1094224730\n243,1291,4.5,1094224074\n243,1333,3.5,1094224871\n243,1339,4.5,1094226942\n243,1347,3.5,1094222923\n243,1350,4.0,1094226896\n243,1356,3.5,1094224064\n243,1374,3.5,1094224302\n243,1377,3.5,1094220094\n243,1387,4.0,1094224124\n243,1391,2.5,1094220823\n243,1393,3.5,1094220796\n243,1407,3.0,1094220765\n243,1485,3.0,1094224575\n243,1517,3.0,1094220770\n243,1527,4.0,1094220786\n243,1580,3.0,1094223987\n243,1584,3.5,1094224214\n243,1587,4.0,1094221355\n243,1590,3.5,1094221352\n243,1610,3.5,1094222365\n243,1623,3.5,1094227828\n243,1625,3.5,1094220138\n243,1645,3.0,1094220341\n243,1676,3.5,1094224472\n243,1682,4.0,1094224396\n243,1690,3.0,1094220364\n243,1717,3.0,1094227097\n243,1721,3.5,1094223975\n243,1722,2.0,1094220319\n243,1747,3.5,1094224807\n243,1748,3.5,1094220375\n243,1801,3.0,1094222898\n243,1917,2.0,1094224349\n243,1923,3.0,1094224223\n243,1931,4.0,1094225714\n243,1961,4.0,1094224120\n243,1994,3.5,1094226874\n243,1997,3.5,1094220179\n243,2000,3.5,1118865641\n243,2003,3.5,1094220382\n243,2004,3.0,1094222865\n243,2005,4.0,1094225739\n243,2006,3.0,1094220158\n243,2011,2.5,1094222857\n243,2012,3.0,1094224434\n243,2019,4.0,1118865297\n243,2021,4.0,1094226789\n243,2028,3.5,1094220777\n243,2033,4.0,1094221947\n243,2093,4.0,1094226223\n243,2107,3.0,1094227399\n243,2115,4.0,1094224446\n243,2116,3.0,1094225975\n243,2121,2.0,1094227198\n243,2122,2.0,1094227385\n243,2124,3.5,1094221286\n243,2143,2.5,1094221304\n243,2161,2.5,1094225796\n243,2163,3.0,1094227378\n243,2167,3.0,1094220368\n243,2174,3.5,1094261196\n243,2193,3.5,1094221319\n243,2232,4.0,1094229515\n243,2291,4.0,1094220791\n243,2328,3.0,1094227252\n243,2329,3.5,1094221265\n243,2394,4.0,1094232638\n243,2405,3.5,1094226129\n243,2421,2.0,1094416669\n243,2436,3.0,1094221909\n243,2456,2.0,1094227543\n243,2470,1.5,1094220334\n243,2513,4.0,1094227125\n243,2529,3.0,1094220731\n243,2571,3.5,1094223957\n243,2617,2.5,1094224514\n243,2628,5.0,1094224015\n243,2683,3.5,1094224187\n243,2700,5.0,1094224467\n243,2701,1.5,1094224922\n243,2706,3.5,1094224266\n243,2710,3.5,1094224287\n243,2712,4.0,1094224442\n243,2716,4.0,1094224078\n243,2717,2.5,1094227078\n243,2719,3.0,1094221127\n243,2722,2.5,1094221251\n243,2762,4.0,1094223998\n243,2790,3.0,1094223478\n243,2826,3.5,1094227051\n243,2840,2.5,1100510473\n243,2858,4.0,1094223904\n243,2890,3.5,1094224763\n243,2916,3.5,1094224193\n243,2944,4.0,1094226511\n243,2959,4.0,1094224263\n243,2985,3.0,1094224588\n243,2987,3.5,1094224232\n243,2997,4.0,1094224110\n243,3033,3.0,1094224926\n243,3052,3.0,1094224777\n243,3081,3.5,1094221237\n243,3087,3.5,1100510452\n243,3147,3.0,1094224690\n243,3159,3.0,1094221081\n243,3175,2.5,1094225061\n243,3176,2.5,1094224650\n243,3256,3.0,1094221073\n243,3273,3.0,1094227356\n243,3471,3.5,1094220516\n243,3489,4.5,1094225998\n243,3499,4.0,1094221046\n243,3527,3.5,1094224716\n243,3535,3.0,1094227031\n243,3578,4.5,1094224130\n243,3623,3.0,1094224709\n243,3693,1.5,1094221782\n243,3694,1.0,1094227611\n243,3698,2.5,1094225951\n243,3745,3.5,1094225981\n243,3751,3.5,1094224540\n243,3753,3.0,1094224721\n243,3755,2.0,1094220995\n243,3785,3.0,1094227117\n243,3793,3.5,1094224389\n243,3826,1.5,1094227370\n243,3977,3.5,1094224773\n243,3993,3.0,1094221759\n243,3994,4.0,1094220388\n243,3996,3.0,1094220712\n243,3997,0.5,1094221731\n243,4022,2.5,1094219990\n243,4036,3.0,1094226912\n243,4105,3.5,1094226865\n243,4128,3.0,1094226856\n243,4148,3.5,1094227040\n243,4226,3.5,1094224605\n243,4270,2.0,1094220987\n243,4275,1.5,1094226197\n243,4306,3.5,1094224405\n243,4308,5.0,1094232603\n243,4356,4.0,1100510591\n243,4446,3.5,1094222550\n243,4467,4.0,1094225695\n243,4526,3.5,1094223413\n243,4643,3.0,1094221003\n243,4682,4.0,1094227188\n243,4720,4.0,1094427227\n243,4857,4.0,1094221537\n243,4865,3.5,1094226951\n243,4886,3.5,1118865439\n243,4896,3.5,1094225381\n243,4963,3.5,1094224938\n243,4973,5.0,1094220991\n243,4993,5.0,1094224463\n243,5254,2.5,1094227328\n243,5299,3.0,1100510443\n243,5349,3.0,1094224846\n243,5378,5.0,1094225921\n243,5388,2.5,1100510434\n243,5418,3.0,1118866131\n243,5433,3.0,1094222221\n243,5445,3.0,1094224910\n243,5478,2.0,1094222146\n243,5618,4.0,1094221014\n243,5630,3.5,1094229471\n243,5669,4.0,1118865261\n243,5679,3.0,1094226885\n243,5785,3.5,1094221492\n243,5816,3.5,1094225372\n243,5944,2.0,1094221501\n243,5952,4.0,1094224835\n243,5971,4.0,1094226686\n243,6157,3.0,1094226179\n243,6242,4.0,1094226880\n243,6243,3.0,1094227090\n243,6286,4.0,1094226704\n243,6333,4.0,1094222484\n243,6350,4.0,1094226654\n243,6377,4.0,1094225314\n243,6502,3.0,1094220967\n243,6503,3.0,1100510571\n243,6534,2.0,1094226136\n243,6539,4.0,1094225340\n243,6615,2.0,1094227348\n243,6711,4.0,1118865282\n243,6754,3.0,1100510305\n243,6768,3.5,1100510285\n243,6808,4.0,1094225360\n243,6888,2.5,1094222096\n243,6947,4.0,1094225637\n243,7022,4.0,1094225394\n243,7046,4.0,1094226785\n243,7099,4.0,1094226682\n243,7143,3.5,1094225351\n243,7147,4.0,1094232680\n243,7153,5.0,1094220973\n243,7318,3.0,1094223295\n243,7438,5.0,1094226439\n243,7454,2.0,1094226213\n243,7458,3.0,1094225779\n243,7649,4.0,1100510920\n243,7809,3.5,1094226538\n243,7925,3.5,1094225670\n243,8253,4.0,1094225656\n243,8368,4.0,1094225332\n243,8371,4.0,1094223270\n243,8373,3.5,1094222441\n243,8464,3.0,1096915748\n243,8589,4.5,1094226371\n243,8596,4.0,1094223624\n243,8622,4.0,1094226630\n243,8636,3.5,1118865651\n243,8640,1.0,1094261336\n243,8783,3.5,1096915704\n243,8798,4.0,1118865455\n243,33493,5.0,1118865476\n244,110,3.5,1448175818\n244,260,5.0,1448175099\n244,318,5.0,1448175706\n244,356,5.0,1448175557\n244,457,0.5,1448175608\n244,527,5.0,1448175803\n244,589,4.0,1448175552\n244,1036,4.0,1448175204\n244,1080,4.0,1448175446\n244,1196,5.0,1448175098\n244,1198,5.0,1448175103\n244,1200,4.0,1448175223\n244,1210,5.0,1448175150\n244,1214,4.0,1448175248\n244,1240,3.5,1448175634\n244,1265,3.5,1448175667\n244,1270,5.0,1448175177\n244,1356,4.0,1448175259\n244,1374,4.0,1448175350\n244,1376,4.0,1448175304\n244,1387,2.0,1448175244\n244,1544,3.5,1448175420\n244,2005,4.0,1448175261\n244,2011,5.0,1448175319\n244,2028,5.0,1448175186\n244,2174,3.5,1448175257\n244,2420,4.0,1448175281\n244,2502,5.0,1448175443\n244,2571,2.5,1448175719\n244,2641,3.0,1448175411\n244,2717,4.0,1448175473\n244,2762,0.5,1448175563\n244,3114,3.5,1448175272\n244,3489,4.5,1448175353\n244,3578,3.0,1448175200\n244,4571,4.5,1448175298\n244,4886,4.0,1448175269\n244,4993,4.5,1448175723\n244,5459,4.5,1448175456\n244,5952,4.5,1448175508\n244,7153,4.5,1448175721\n244,7293,4.0,1448175930\n244,7360,4.5,1448176042\n244,7373,3.0,1448175966\n244,7458,2.5,1448175933\n244,7502,5.0,1448175201\n244,8361,3.0,1448175944\n244,8371,3.0,1448176065\n244,8783,2.0,1448175986\n244,8807,4.5,1448176058\n244,8917,2.0,1448176035\n244,30825,5.0,1448176020\n244,31685,2.0,1448175992\n244,31696,1.5,1448175996\n244,33004,5.0,1448175948\n244,34162,4.0,1448175903\n244,34319,3.5,1448176028\n244,35836,5.0,1448175130\n244,39183,0.5,1448175972\n244,41569,4.0,1448175961\n244,44555,0.5,1448175934\n244,45447,0.5,1448175968\n244,46530,3.5,1448176055\n244,51255,3.5,1448175895\n244,52722,3.5,1448175983\n244,53996,3.5,1448175957\n244,54001,5.0,1448175913\n244,54272,4.0,1448175964\n244,54503,4.5,1448175905\n244,56174,4.5,1448175902\n244,58559,5.0,1448175118\n244,79132,1.0,1448175166\n244,94466,0.5,1448175610\n244,134130,5.0,1448175735\n245,22,3.0,1011238620\n245,36,4.0,1012187265\n245,46,3.0,1011238743\n245,47,2.0,1011319164\n245,50,4.0,1011318662\n245,62,5.0,1011238743\n245,110,5.0,1011238790\n245,219,4.0,1011317486\n245,246,4.0,1011318757\n245,296,2.0,1011319008\n245,333,4.0,1011238517\n245,337,3.0,1011317502\n245,356,5.0,1011237948\n245,412,2.0,1011316949\n245,457,5.0,1011319080\n245,480,5.0,1011237937\n245,527,5.0,1011318686\n245,556,5.0,1011238790\n245,588,1.0,1011317535\n245,590,5.0,1011319038\n245,733,5.0,1012191706\n245,858,5.0,1011318713\n245,909,4.0,1011317711\n245,1008,4.0,1011318975\n245,1035,3.0,1011319038\n245,1059,2.0,1011238160\n245,1073,5.0,1011319291\n245,1089,2.0,1011317642\n245,1092,3.0,1011238606\n245,1094,3.0,1011318090\n245,1097,5.0,1011238160\n245,1104,3.0,1011317452\n245,1120,4.0,1012105157\n245,1193,5.0,1011317334\n245,1203,3.0,1011317261\n245,1207,4.0,1011317228\n245,1208,3.0,1011317261\n245,1221,5.0,1011238061\n245,1225,5.0,1012187240\n245,1228,5.0,1011318292\n245,1246,5.0,1011318492\n245,1252,5.0,1011319038\n245,1270,5.0,1011238218\n245,1302,3.0,1011317697\n245,1358,4.0,1012187337\n245,1393,5.0,1011318514\n245,1408,4.0,1011850123\n245,1608,4.0,1011318388\n245,1610,5.0,1011238014\n245,1625,5.0,1011318090\n245,1653,4.0,1011316854\n245,1682,5.0,1011238654\n245,1684,3.0,1011318446\n245,1704,5.0,1011317334\n245,1721,5.0,1011237984\n245,1732,4.0,1011849984\n245,1747,4.0,1011318330\n245,1954,5.0,1011238141\n245,2028,5.0,1011317228\n245,2053,1.0,1011319358\n245,2054,3.0,1011319358\n245,2058,5.0,1011847874\n245,2268,5.0,1011317387\n245,2324,5.0,1011317415\n245,2329,5.0,1011238631\n245,2340,4.0,1012187307\n245,2359,5.0,1011238558\n245,2396,5.0,1011317297\n245,2427,3.0,1011318002\n245,2447,3.0,1011318214\n245,2571,5.0,1011316822\n245,2672,4.0,1011848389\n245,2692,3.0,1011238866\n245,2712,5.0,1011319314\n245,2762,5.0,1011316822\n245,2858,5.0,1011317486\n245,2908,4.0,1011317854\n245,2918,3.0,1011317372\n245,2959,5.0,1011317774\n245,2997,5.0,1011317516\n245,3148,5.0,1011848362\n245,3156,5.0,1011847960\n245,3174,4.0,1011851839\n245,3176,3.0,1011318468\n245,3178,4.0,1011317885\n245,3183,4.0,1011847934\n245,3186,5.0,1011317828\n245,3255,4.0,1011319222\n245,3386,5.0,1011317749\n245,3408,4.0,1011317797\n245,3421,3.0,1011317372\n245,3450,4.0,1011850225\n245,3507,4.0,1011848836\n245,3556,1.0,1011318180\n245,3566,5.0,1012105157\n245,3578,5.0,1012191817\n245,3753,5.0,1012191817\n245,3755,1.0,1011411744\n245,3798,2.0,1011411608\n245,3897,5.0,1011319135\n245,3916,4.0,1011317727\n245,3949,1.0,1011318121\n245,3980,5.0,1011317903\n245,3996,2.0,1011317334\n245,4011,3.0,1011319405\n245,4019,3.0,1012192045\n245,4033,5.0,1011237937\n245,4034,3.0,1011317261\n245,4226,4.0,1011317261\n245,4239,4.0,1011319386\n245,4262,3.0,1011317441\n245,4306,5.0,1011238392\n245,4308,5.0,1011238408\n245,4371,1.0,1011317057\n245,4452,2.0,1011238408\n245,4857,2.0,1011317697\n245,4890,5.0,1011238328\n245,4901,5.0,1011238301\n245,4963,5.0,1011238285\n245,4975,5.0,1011238328\n245,4993,4.0,1011238285\n245,4995,4.0,1011238285\n245,5009,3.0,1011238301\n245,5103,4.0,1012105343\n245,6474,2.0,1011848070\n246,208,3.0,956565708\n246,329,3.0,956565501\n246,380,3.0,956565426\n246,421,3.0,956565501\n246,455,2.0,956565730\n246,480,4.0,956565426\n246,539,5.0,956565279\n246,552,3.0,956565688\n246,589,5.0,956565845\n246,590,4.0,956565501\n246,595,3.0,956565341\n246,673,4.0,956565688\n246,1544,4.0,956565620\n246,1552,4.0,956565620\n246,1566,4.0,956565501\n246,1580,5.0,956565591\n246,1881,4.0,956565554\n246,1907,3.0,956565253\n246,1917,3.0,956565688\n246,2006,4.0,956565554\n246,2028,4.0,956565845\n246,2429,4.0,956565620\n246,2617,3.0,956565591\n246,2762,4.0,956565341\n246,2916,4.0,956565591\n246,3015,2.0,956565279\n247,1,4.0,953361586\n247,7,3.0,953361791\n247,9,3.0,953272452\n247,10,4.0,953271993\n247,11,4.0,953361740\n247,12,3.0,953270877\n247,19,4.0,953362704\n247,39,3.0,953361663\n247,44,3.0,953272667\n247,45,3.0,953361856\n247,69,4.0,953189620\n247,70,3.0,953272226\n247,104,4.0,953361934\n247,110,5.0,953101834\n247,145,3.0,953271790\n247,153,3.0,953189022\n247,160,3.0,953272787\n247,163,4.0,953272077\n247,165,4.0,953102260\n247,185,3.0,953361244\n247,196,4.0,953361274\n247,198,3.0,953271790\n247,204,3.0,953272812\n247,208,4.0,953272667\n247,216,3.0,953362071\n247,231,4.0,953362342\n247,260,5.0,953101887\n247,288,2.0,953272416\n247,292,4.0,953272040\n247,293,4.0,953189620\n247,296,3.0,953189571\n247,316,4.0,953272304\n247,317,3.0,953361934\n247,327,2.0,953272304\n247,333,4.0,953362032\n247,344,4.0,953362312\n247,349,4.0,953101941\n247,353,4.0,953272896\n247,356,5.0,953100431\n247,357,3.0,953361934\n247,367,3.0,953361895\n247,368,3.0,953272112\n247,370,3.0,953362484\n247,376,3.0,953272186\n247,377,4.0,953272040\n247,379,4.0,953272416\n247,380,4.0,953272040\n247,405,3.0,953101790\n247,410,3.0,953362225\n247,413,3.0,953362510\n247,414,3.0,953362312\n247,434,4.0,953272304\n247,435,2.0,953361244\n247,441,4.0,953361740\n247,442,3.0,953272186\n247,454,4.0,953362911\n247,457,5.0,953271790\n247,466,2.0,953272304\n247,474,5.0,953271790\n247,480,4.0,953100279\n247,487,4.0,953361410\n247,500,3.0,953361972\n247,504,3.0,953361305\n247,517,3.0,953272226\n247,520,3.0,953362652\n247,527,5.0,953189299\n247,533,3.0,953272226\n247,542,3.0,953362510\n247,544,3.0,953272667\n247,546,2.0,953272853\n247,552,4.0,953272304\n247,553,5.0,953270759\n247,575,2.0,953362749\n247,586,4.0,953362377\n247,588,3.0,953361586\n247,589,4.0,953271790\n247,592,4.0,953189022\n247,593,5.0,953189523\n247,597,3.0,953362168\n247,648,5.0,953102465\n247,671,2.0,953361200\n247,673,3.0,953362342\n247,692,2.0,953272764\n247,733,4.0,953271934\n247,737,3.0,953272812\n247,748,3.0,953361154\n247,780,4.0,953272112\n247,784,3.0,953362606\n247,786,4.0,953272112\n247,833,3.0,953362750\n247,852,3.0,953362128\n247,915,2.0,953100371\n247,1005,1.0,953362793\n247,1020,3.0,953362091\n247,1028,3.0,953100431\n247,1036,5.0,953102260\n247,1049,4.0,953272040\n247,1091,3.0,953271548\n247,1101,4.0,953188957\n247,1197,4.0,953271023\n247,1215,5.0,953271934\n247,1220,4.0,953271054\n247,1265,4.0,953361633\n247,1270,4.0,953271023\n247,1275,4.0,953101790\n247,1288,4.0,953271197\n247,1291,5.0,953102080\n247,1320,3.0,953361274\n247,1339,4.0,953270877\n247,1356,4.0,953271934\n247,1370,4.0,953102260\n247,1372,4.0,953272077\n247,1376,4.0,953100431\n247,1377,3.0,953189022\n247,1378,4.0,953271517\n247,1379,4.0,953272521\n247,1382,3.0,953272416\n247,1385,4.0,953272304\n247,1387,4.0,953270832\n247,1388,3.0,953270832\n247,1389,2.0,953270832\n247,1391,4.0,953361200\n247,1396,4.0,953361060\n247,1405,3.0,953362052\n247,1409,3.0,953362377\n247,1431,4.0,953272764\n247,1432,4.0,953272226\n247,1453,2.0,953362793\n247,1476,4.0,953362010\n247,1479,4.0,953102642\n247,1499,2.0,953188893\n247,1517,5.0,953102554\n247,1527,4.0,953272112\n247,1544,3.0,953272112\n247,1556,3.0,953272853\n247,1562,3.0,953189022\n247,1573,4.0,953271993\n247,1580,4.0,953271823\n247,1584,4.0,953348274\n247,1599,2.0,953272667\n247,1608,4.0,953272077\n247,1610,5.0,953102419\n247,1617,5.0,953189593\n247,1663,5.0,953100431\n247,1676,4.0,953271993\n247,1687,4.0,953272304\n247,1690,2.0,953272362\n247,1722,3.0,953271993\n247,1744,2.0,953272707\n247,1746,3.0,953189571\n247,1747,4.0,953361663\n247,1769,3.0,953272304\n247,1792,3.0,953272186\n247,1862,3.0,953361333\n247,1866,4.0,953362484\n247,1876,4.0,953100371\n247,1894,3.0,953362225\n247,1912,4.0,953271790\n247,1917,3.0,953272336\n247,1918,4.0,953101988\n247,1920,3.0,953361517\n247,1923,4.0,953361633\n247,1968,4.0,953271054\n247,2000,4.0,953101988\n247,2001,4.0,953101988\n247,2002,4.0,953101988\n247,2003,3.0,953271281\n247,2004,3.0,953362342\n247,2005,4.0,953189114\n247,2006,4.0,953272040\n247,2011,4.0,953271405\n247,2012,4.0,953361200\n247,2028,5.0,953100215\n247,2042,2.0,953362704\n247,2046,4.0,953361103\n247,2050,2.0,953271472\n247,2054,3.0,953271517\n247,2058,4.0,953271935\n247,2060,2.0,953362823\n247,2082,2.0,953362377\n247,2088,3.0,953271610\n247,2094,3.0,953272141\n247,2100,3.0,953271368\n247,2115,4.0,953102080\n247,2124,4.0,953362192\n247,2133,3.0,953271405\n247,2134,3.0,953271368\n247,2141,4.0,953271442\n247,2167,4.0,953272040\n247,2174,4.0,953271281\n247,2193,4.0,953189256\n247,2253,3.0,953272521\n247,2273,4.0,953272077\n247,2278,4.0,953271993\n247,2302,4.0,953361740\n247,2334,3.0,953272186\n247,2335,4.0,953362626\n247,2353,4.0,953271790\n247,2371,4.0,953271232\n247,2372,4.0,953271517\n247,2378,4.0,953271442\n247,2379,3.0,953271610\n247,2380,3.0,953271664\n247,2381,3.0,953271690\n247,2382,3.0,953271690\n247,2383,2.0,953271690\n247,2393,4.0,953272186\n247,2405,3.0,953271610\n247,2406,4.0,953271323\n247,2423,4.0,953271323\n247,2458,4.0,953271664\n247,2463,5.0,953271368\n247,2468,4.0,953271638\n247,2469,2.0,953271442\n247,2470,4.0,953271368\n247,2471,4.0,953271610\n247,2478,4.0,953271548\n247,2490,5.0,953101442\n247,2540,3.0,953272521\n247,2541,3.0,953101212\n247,2571,4.0,953271732\n247,2599,3.0,953101288\n247,2616,3.0,953272304\n247,2617,3.0,953188922\n247,2628,4.0,953101887\n247,2640,4.0,953189081\n247,2641,3.0,953189081\n247,2642,3.0,953189081\n247,2643,2.0,953189081\n247,2683,5.0,953101146\n247,2688,4.0,953101341\n247,2694,4.0,953101179\n247,2699,3.0,953101146\n247,2700,4.0,953101518\n247,2706,5.0,953101146\n247,2714,2.0,953101595\n247,2716,5.0,953101341\n247,2717,3.0,953271517\n247,2719,2.0,953101341\n247,2720,2.0,953101375\n247,2724,3.0,953101482\n247,2735,4.0,953271610\n247,2746,3.0,953271323\n247,2762,5.0,953101518\n247,2763,4.0,953101548\n247,2791,3.0,953271023\n247,2794,4.0,953271472\n247,2797,4.0,953271197\n247,2798,3.0,953362842\n247,2817,2.0,953272764\n247,2867,3.0,953271323\n247,2881,3.0,953101252\n247,2915,4.0,953271232\n247,2916,4.0,953361103\n247,2918,5.0,953271023\n247,2953,3.0,953362678\n247,2959,5.0,953188857\n247,2986,2.0,953272764\n247,2987,3.0,953101595\n247,3033,4.0,953271405\n247,3081,4.0,953101518\n247,3082,4.0,953102179\n247,3087,4.0,953271323\n247,3107,5.0,953271993\n247,3173,4.0,953102208\n247,3243,3.0,953362550\n247,3253,4.0,953361687\n247,3255,4.0,953361769\n247,3256,4.0,953271823\n247,3258,3.0,953362550\n247,3263,3.0,953362010\n247,3264,2.0,953362150\n247,3268,2.0,953272853\n247,3270,3.0,953270924\n247,3388,3.0,953100674\n247,3396,3.0,953100755\n247,3398,3.0,953100755\n247,3421,4.0,953100543\n247,3438,4.0,953100836\n247,3439,3.0,953100836\n247,3440,2.0,953100836\n247,3444,4.0,953100587\n247,3448,5.0,953100636\n247,3450,3.0,953100674\n247,3479,4.0,953100707\n248,32,4.0,1031528116\n248,110,5.0,1031528748\n248,151,4.0,1031528925\n248,161,5.0,1031528829\n248,266,5.0,1031528925\n248,316,4.0,1031528337\n248,356,5.0,1031528582\n248,426,4.0,1031528234\n248,527,5.0,1031528526\n248,541,5.0,1031528009\n248,647,4.0,1031528925\n248,750,5.0,1031528009\n248,780,4.0,1031528948\n248,903,4.0,1031529065\n248,904,4.0,1031529065\n248,924,5.0,1031528042\n248,1090,4.0,1031528748\n248,1127,4.0,1031528151\n248,1129,5.0,1031528353\n248,1183,4.0,1031528856\n248,1193,5.0,1031527671\n248,1198,5.0,1031527555\n248,1200,5.0,1031528068\n248,1201,4.0,1031527644\n248,1204,4.0,1031528552\n248,1206,5.0,1031528042\n248,1208,5.0,1031528748\n248,1210,4.0,1031527624\n248,1214,5.0,1031528009\n248,1222,4.0,1031528856\n248,1233,5.0,1031528552\n248,1240,5.0,1031528068\n248,1250,5.0,1031528552\n248,1262,5.0,1031528552\n248,1263,5.0,1031528692\n248,1270,5.0,1031528042\n248,1272,5.0,1031528788\n248,1320,4.0,1031528372\n248,1580,3.0,1031528193\n248,1584,4.0,1031528098\n248,1690,4.0,1031528337\n248,1721,5.0,1031527506\n248,1876,4.0,1031528400\n248,1944,4.0,1031528526\n248,2011,4.0,1031528234\n248,2012,4.0,1031528295\n248,2054,3.0,1031527506\n248,2067,4.0,1031528692\n248,2076,5.0,1031529148\n248,2109,4.0,1031527720\n248,2311,4.0,1031529133\n248,2346,2.0,1031528400\n248,2427,3.0,1031528925\n248,2454,4.0,1031528295\n248,2467,5.0,1031529103\n248,2528,4.0,1031528257\n248,2529,5.0,1031528151\n248,2571,5.0,1031528009\n248,2640,3.0,1031528234\n248,2641,2.0,1031528400\n248,2669,3.0,1031528981\n248,2769,4.0,1031529133\n248,2944,5.0,1031528829\n248,3035,5.0,1031528692\n248,3062,5.0,1031528856\n248,3072,5.0,1031527590\n248,3101,5.0,1031527720\n248,3176,4.0,1031529133\n248,3196,5.0,1031528692\n248,3354,4.0,1031527590\n248,3448,3.0,1031528856\n248,3471,4.0,1031528009\n248,3527,5.0,1031528193\n248,3638,2.0,1031528337\n248,3654,5.0,1031528877\n248,3702,4.0,1031528098\n248,3704,4.0,1031528295\n248,3706,4.0,1031529133\n248,3724,4.0,1031528748\n248,3827,4.0,1031528312\n248,3836,4.0,1031528748\n248,3927,3.0,1031528209\n248,4103,5.0,1031528877\n248,4111,4.0,1031528981\n248,4338,5.0,1031528526\n248,4339,4.0,1031528925\n248,4353,4.0,1031528948\n248,4443,4.0,1031528193\n248,4473,4.0,1031528948\n248,4802,4.0,1031528582\n248,4842,4.0,1031528526\n248,4874,4.0,1031528372\n248,4923,4.0,1031528981\n248,4958,5.0,1031528981\n248,4990,4.0,1031527857\n248,4993,5.0,1031527808\n248,5010,5.0,1031527831\n248,5060,5.0,1031528582\n248,5107,5.0,1031528925\n249,10,4.0,839461544\n249,11,4.0,839462462\n249,153,2.0,839461338\n249,165,4.0,839461338\n249,231,3.0,839461386\n249,337,5.0,839463730\n249,339,3.0,839463358\n249,344,4.0,839461338\n249,356,5.0,839461615\n249,357,3.0,839462377\n249,367,3.0,839461701\n249,420,3.0,839461793\n249,480,3.0,839461615\n249,500,5.0,839461891\n249,508,4.0,839463782\n249,539,3.0,839462377\n249,589,4.0,839461701\n249,590,4.0,839461218\n249,593,3.0,839461386\n249,597,3.0,839461992\n250,111,4.0,1469700534\n250,165,4.5,1469700664\n250,318,5.0,1469697245\n250,356,5.0,1469700413\n250,527,5.0,1469697248\n250,593,5.0,1469697260\n250,858,5.0,1469697262\n250,1193,5.0,1469700415\n250,1221,5.0,1469807450\n250,1270,4.5,1469700556\n250,1517,4.0,1469807395\n250,1625,4.5,1469700623\n250,1645,4.5,1469807293\n250,1682,4.5,1469700651\n250,1704,4.5,1469697272\n250,1917,4.0,1469700456\n250,2028,4.5,1469697265\n250,2324,4.5,1469700531\n250,2329,4.0,1469700432\n250,2424,4.0,1469807405\n250,2542,4.5,1469807374\n250,2571,5.0,1469697267\n250,2716,4.0,1469807303\n250,2858,4.5,1469700626\n250,2916,4.0,1469807260\n250,2959,4.5,1469700423\n250,3147,5.0,1469700419\n250,3408,4.5,1469807287\n250,3578,4.5,1469700598\n250,3948,5.0,1469807352\n250,4011,4.5,1469697297\n250,4014,4.0,1469700702\n250,4034,4.0,1469807407\n250,4226,4.5,1469700561\n250,4306,5.0,1469700660\n250,4720,4.5,1469808221\n250,4886,4.5,1469700630\n250,4896,4.0,1469697301\n250,4973,5.0,1469700716\n250,4995,5.0,1469700610\n250,5010,4.5,1469807306\n250,5218,5.0,1469807335\n250,5989,5.0,1469697296\n250,5995,5.0,1469700414\n250,6016,4.0,1469700427\n250,6333,4.0,1469807358\n250,6539,4.0,1469700617\n250,7147,4.0,1469700552\n250,7254,5.0,1469700726\n250,7293,4.5,1469807350\n250,30707,4.5,1469807437\n250,30812,5.0,1469700609\n250,31685,4.5,1469808125\n250,31696,4.5,1469808128\n250,32031,4.0,1469808194\n250,33615,5.0,1469807586\n250,33660,4.0,1469807575\n250,33679,4.0,1469807465\n250,34048,4.0,1469807479\n250,34319,4.5,1469808114\n250,35836,4.0,1469808077\n250,36708,4.0,1469807946\n250,38061,4.0,1469808121\n250,41569,4.0,1469807545\n250,41571,4.5,1469807694\n250,42011,3.5,1469807937\n250,45081,4.0,1469807745\n250,45447,4.5,1469807539\n250,45672,4.0,1469807616\n250,46578,4.5,1469808075\n250,47099,4.5,1469700563\n250,47610,5.0,1469700574\n250,48043,4.0,1469807613\n250,48516,5.0,1469807456\n250,48780,5.0,1469700500\n250,48997,4.0,1469807715\n250,50872,4.0,1469700713\n250,51086,4.5,1469807735\n250,52975,4.0,1469807961\n250,53000,3.0,1469807592\n250,53121,4.5,1469807637\n250,53125,4.0,1469807522\n250,53953,4.0,1469807645\n250,53996,5.0,1469807517\n250,54995,4.0,1469807648\n250,55247,3.5,1469807528\n250,55820,4.5,1469700696\n250,56145,3.0,1469807690\n250,56174,4.0,1469808090\n250,56367,4.0,1469808081\n250,56587,5.0,1469807402\n250,56949,3.5,1469807659\n250,57640,3.0,1469807634\n250,57669,4.5,1469807533\n250,58025,3.0,1469807654\n250,58559,5.0,1469807440\n250,58803,4.0,1469807628\n250,59315,4.5,1469807278\n250,59725,3.5,1469807982\n250,59784,5.0,1469807361\n250,59900,3.5,1469807933\n250,60037,3.0,1469807989\n250,60069,5.0,1469807452\n250,60074,3.5,1469807577\n250,60126,4.0,1469807701\n250,60397,3.5,1469807913\n250,60950,3.5,1469807664\n250,61132,4.0,1469807589\n250,61323,4.5,1469808111\n250,62434,3.0,1469807672\n250,62999,4.5,1469807990\n250,64034,4.0,1469807741\n250,64957,4.0,1469700729\n250,64969,4.0,1469807619\n250,65130,3.0,1469808039\n250,65230,4.0,1469808033\n250,68157,5.0,1469700585\n250,68319,3.5,1470036916\n250,68358,4.0,1469807320\n250,72641,4.0,1469807444\n250,72998,5.0,1469807327\n250,73017,4.0,1469700628\n250,74458,4.5,1469700504\n250,74789,4.0,1470036919\n250,76093,4.5,1469700668\n250,76251,4.0,1469807333\n250,79132,5.0,1469697277\n250,81591,4.0,1469700596\n250,81845,5.0,1469700517\n250,84152,4.0,1469700605\n250,85414,4.0,1469700620\n250,88125,4.5,1469808257\n250,88140,4.0,1470036906\n250,88744,4.0,1470036911\n250,89745,4.0,1469808253\n250,91500,4.0,1469808240\n250,91529,5.0,1469808250\n250,91542,4.0,1469700614\n250,92259,5.0,1469808235\n250,99114,5.0,1469700601\n250,103335,4.0,1469807387\n250,106100,4.0,1469700568\n250,106782,4.5,1469700683\n250,109487,5.0,1469700645\n250,112556,4.0,1469808262\n250,112852,3.5,1469808247\n250,116797,4.0,1469808238\n250,122886,3.5,1469697324\n250,122904,3.0,1469697320\n250,122920,3.5,1470036946\n250,134130,3.5,1469697313\n250,139385,4.0,1469700469\n250,139644,4.0,1469807488\n250,150548,4.5,1470036938\n250,152081,5.0,1469700464\n251,110,4.0,1476478090\n251,260,4.5,1476478005\n251,296,4.0,1476478551\n251,356,5.0,1476478274\n251,367,4.0,1476550669\n251,551,5.0,1476551142\n251,589,4.0,1476478052\n251,1036,4.5,1476477994\n251,1196,4.5,1476478007\n251,1210,4.0,1476477989\n251,1240,4.0,1476478082\n251,1265,4.0,1476622980\n251,1270,5.0,1476550284\n251,1485,4.0,1476550459\n251,1580,5.0,1476550351\n251,1704,4.5,1476640644\n251,1907,4.5,1476478454\n251,1961,5.0,1476551305\n251,2011,4.0,1476550420\n251,2012,4.0,1476550612\n251,2167,4.0,1476478258\n251,2273,4.0,1476550386\n251,2291,5.0,1476551039\n251,2396,5.0,1476551191\n251,2571,5.0,1476478038\n251,2762,5.0,1476552557\n251,2959,5.0,1476478390\n251,3081,5.0,1476551370\n251,3578,5.0,1476478241\n251,4306,5.0,1476550143\n251,4701,4.0,1476550634\n251,4886,4.5,1476552471\n251,4973,4.0,1476551062\n251,4993,4.0,1476478045\n251,4995,5.0,1476551043\n251,5218,5.0,1476478230\n251,5459,4.5,1476550678\n251,5618,5.0,1476551037\n251,5872,2.0,1476478213\n251,5903,5.0,1476478461\n251,5952,4.0,1476478043\n251,5971,4.0,1476551238\n251,6377,4.5,1476623300\n251,6539,5.0,1476550161\n251,6564,2.5,1476550813\n251,7143,4.0,1476478226\n251,7147,5.0,1476551006\n251,7153,4.5,1476477999\n251,7254,5.0,1476623117\n251,7361,5.0,1476551057\n251,8360,4.5,1476478269\n251,8368,4.0,1476478204\n251,8371,5.0,1476550618\n251,8533,5.0,1476550963\n251,8644,5.0,1476478140\n251,8970,4.5,1476552477\n251,31658,5.0,1476550870\n251,31685,4.5,1476550408\n251,33004,4.0,1476564766\n251,34405,3.0,1476478574\n251,37729,5.0,1476550100\n251,40815,4.5,1476478223\n251,40819,4.0,1476555871\n251,42738,3.5,1476478157\n251,44191,3.0,1476623070\n251,45722,4.5,1476550347\n251,47099,4.5,1476550989\n251,51662,4.0,1476550263\n251,53125,4.0,1476550370\n251,53972,4.5,1476550361\n251,55232,3.5,1476550595\n251,56587,5.0,1476623131\n251,59315,5.0,1476478061\n251,59784,4.0,1476623034\n251,66097,2.0,1476555047\n251,68358,4.5,1476478069\n251,68954,4.5,1476550949\n251,72356,5.0,1476551350\n251,72641,5.0,1476550411\n251,72998,3.5,1476478509\n251,73321,5.0,1476478232\n251,76093,4.5,1476622829\n251,77561,5.0,1476478162\n251,78469,3.5,1476550279\n251,78637,3.5,1476478291\n251,81845,5.0,1476550886\n251,81847,4.5,1476623282\n251,86880,4.0,1476550556\n251,87232,5.0,1476478099\n251,89745,5.0,1476478130\n251,91485,4.0,1476550703\n251,91500,3.5,1476478205\n251,92259,5.0,1476622832\n251,94777,4.0,1476478303\n251,95167,4.0,1476550259\n251,95654,3.5,1476552210\n251,96610,4.5,1476478182\n251,97225,5.0,1476550466\n251,98491,5.0,1476478450\n251,102125,5.0,1476478200\n251,104243,4.5,1476550290\n251,104841,4.5,1476478193\n251,106002,5.0,1476478133\n251,106487,3.5,1476478295\n251,106491,3.0,1476550491\n251,106696,4.5,1476478261\n251,108190,2.5,1476478197\n251,109487,4.0,1476550252\n251,111362,4.5,1476478172\n251,111759,5.0,1476478092\n251,112175,4.5,1476550136\n251,112852,4.0,1476478074\n251,115617,5.0,1476478151\n251,115713,3.5,1476550322\n251,120799,4.0,1476478254\n251,122882,3.5,1476478294\n251,122886,3.0,1476478065\n251,122904,5.0,1476477990\n251,134853,5.0,1476623217\n252,1,3.0,869101312\n252,6,3.0,869101354\n252,7,4.0,869101615\n252,12,5.0,869101988\n252,25,5.0,869101312\n252,32,4.0,869101312\n252,79,2.0,869101734\n252,95,4.0,869101312\n252,104,3.0,869101615\n252,135,4.0,869101734\n252,260,4.0,869101354\n252,494,4.0,869101355\n252,647,4.0,869101988\n252,648,4.0,869101312\n252,653,4.0,869101615\n252,673,5.0,869101988\n252,719,3.0,869101781\n252,733,5.0,869101354\n252,736,5.0,869101312\n252,737,3.0,869101781\n252,743,3.0,869101781\n252,761,3.0,869102024\n252,762,3.0,869101734\n252,765,3.0,869102110\n252,780,3.0,869101312\n252,786,3.0,869101355\n252,788,3.0,869101615\n252,802,3.0,869101615\n252,830,3.0,869102024\n252,832,4.0,869101734\n252,849,4.0,869102110\n252,852,3.0,869101781\n252,858,4.0,869101781\n252,1061,3.0,869102110\n252,1073,3.0,869101354\n252,1210,4.0,869101734\n252,1356,4.0,869101615\n252,1391,3.0,869102110\n253,1,4.5,1215831130\n253,2,4.0,1215831526\n253,10,4.0,1215831215\n253,16,2.0,1215831682\n253,19,1.0,1215831546\n253,20,1.5,1215823643\n253,34,4.5,1215831195\n253,62,4.5,1215831457\n253,104,3.5,1215831650\n253,110,5.0,1215831113\n253,150,4.0,1215831121\n253,151,4.5,1215831823\n253,172,2.0,1215831868\n253,173,2.0,1215831772\n253,204,1.0,1215832175\n253,223,4.0,1215831499\n253,231,4.5,1215831199\n253,260,4.5,1215831109\n253,296,4.0,1215831098\n253,303,1.5,1215832398\n253,318,5.0,1215823680\n253,333,4.0,1215832057\n253,337,3.0,1215831664\n253,344,4.0,1215831149\n253,349,4.0,1215831182\n253,353,4.5,1215831720\n253,356,5.0,1215823900\n253,367,4.0,1215831211\n253,368,4.0,1215831647\n253,442,2.0,1215831608\n253,454,4.5,1215831241\n253,480,4.0,1215831104\n253,500,3.5,1215831197\n253,524,4.5,1215832370\n253,529,4.0,1215832012\n253,543,4.5,1215831903\n253,552,4.0,1215831899\n253,553,4.5,1215831747\n253,585,2.0,1215832111\n253,589,4.0,1215831127\n253,590,4.5,1215831124\n253,592,4.0,1215831118\n253,593,3.5,1215831101\n253,597,3.5,1215831193\n253,707,3.5,1215823599\n253,719,4.0,1215832276\n253,733,4.0,1215831190\n253,750,3.5,1215831575\n253,778,3.5,1215831578\n253,780,3.5,1215831132\n253,783,3.5,1215832019\n253,784,4.5,1215831789\n253,786,2.0,1215831636\n253,802,3.5,1215831863\n253,805,4.0,1215831931\n253,849,0.5,1215832322\n253,852,4.5,1215832005\n253,858,4.5,1215823875\n253,914,4.0,1215832168\n253,923,4.5,1215831711\n253,953,3.5,1215831872\n253,1025,3.0,1215823621\n253,1089,4.0,1215831506\n253,1090,4.0,1215832836\n253,1101,4.5,1215831587\n253,1136,4.5,1215831245\n253,1193,4.5,1215831247\n253,1196,4.0,1215832718\n253,1197,4.0,1215831221\n253,1198,4.0,1215831154\n253,1201,4.0,1215831961\n253,1207,4.5,1215831853\n253,1210,4.0,1215831136\n253,1215,4.5,1215831988\n253,1221,3.5,1215823884\n253,1225,4.5,1215831602\n253,1242,4.0,1215831981\n253,1246,4.5,1215831652\n253,1250,4.5,1215823815\n253,1259,4.5,1215831591\n253,1262,4.5,1215823829\n253,1265,4.5,1215831226\n253,1276,5.0,1215823745\n253,1288,4.0,1215823932\n253,1291,4.5,1215831254\n253,1302,4.0,1215831966\n253,1304,4.5,1215831742\n253,1320,1.5,1215831859\n253,1358,2.0,1215832853\n253,1387,4.0,1215831559\n253,1393,4.0,1215831509\n253,1396,4.0,1215831906\n253,1407,1.5,1215831698\n253,1449,4.5,1215823578\n253,1479,2.0,1215832314\n253,1485,3.0,1215831706\n253,1527,3.0,1215831467\n253,1552,3.5,1215831847\n253,1573,2.5,1215831671\n253,1580,3.5,1215831207\n253,1597,4.0,1215832089\n253,1617,4.0,1215831238\n253,1645,4.0,1215832049\n253,1653,3.0,1215831727\n253,1682,4.5,1215831599\n253,1693,4.5,1215823629\n253,1704,4.5,1215831462\n253,1717,1.0,1215832545\n253,1732,4.5,1215831753\n253,1747,4.5,1215832095\n253,1784,5.0,1215831520\n253,1882,2.5,1215832423\n253,1917,4.0,1215831554\n253,1923,3.5,1215831473\n253,1947,2.0,1215832318\n253,1957,4.5,1215832556\n253,1961,5.0,1215831454\n253,2005,4.5,1215832143\n253,2006,4.0,1215831890\n253,2012,3.5,1215831623\n253,2028,4.5,1215831185\n253,2046,3.5,1215823613\n253,2081,4.0,1215831834\n253,2115,2.5,1215831641\n253,2137,3.0,1215823607\n253,2193,3.0,1215832234\n253,2321,4.0,1215831838\n253,2324,5.0,1215831799\n253,2329,5.0,1215831780\n253,2423,3.5,1215823604\n253,2470,4.0,1215831992\n253,2502,4.5,1215831704\n253,2505,1.0,1215832649\n253,2528,4.0,1215823616\n253,2539,3.5,1215832246\n253,2617,4.5,1215831776\n253,2640,4.0,1215831740\n253,2671,1.0,1215831975\n253,2686,2.0,1215823590\n253,2688,1.5,1215832619\n253,2762,4.0,1215831187\n253,2763,4.0,1215832001\n253,2797,3.5,1215831619\n253,2803,4.0,1215823645\n253,2858,4.5,1215831157\n253,2890,2.0,1215831997\n253,2916,2.5,1215831606\n253,2918,4.5,1215831593\n253,2959,5.0,1215831251\n253,2987,3.5,1215831517\n253,3033,3.5,1215832065\n253,3098,4.5,1215823618\n253,3114,4.0,1215831551\n253,3147,4.0,1215831723\n253,3160,3.5,1215832039\n253,3174,4.0,1215832366\n253,3253,4.0,1215831947\n253,3255,4.5,1215832138\n253,3298,1.5,1215823637\n253,3450,4.5,1215823601\n253,3489,4.0,1215832348\n253,3527,4.0,1215831937\n253,3578,4.5,1215831270\n253,3745,2.0,1215823624\n253,3752,2.0,1215832404\n253,3753,4.5,1215831933\n253,3785,2.0,1215832333\n253,3809,5.0,1215823594\n253,3897,2.0,1215831685\n253,3996,4.0,1215831482\n253,4011,4.0,1215831971\n253,4027,5.0,1215831759\n253,4034,2.5,1215831730\n253,4226,3.5,1215831549\n253,4246,1.5,1215832054\n253,4306,4.0,1215831274\n253,4308,4.0,1215832120\n253,4310,4.0,1215832392\n253,4963,4.0,1215831717\n253,4973,4.0,1215832735\n253,4979,2.0,1215832115\n253,4993,5.0,1215831259\n253,4995,4.5,1215831757\n253,5103,4.5,1215823706\n253,5218,4.0,1215832227\n253,5299,3.0,1215832192\n253,5349,4.5,1215831678\n253,5445,3.0,1215831617\n253,5481,2.0,1215832531\n253,5952,4.5,1215832741\n253,5991,4.5,1215832343\n253,6333,4.0,1215831963\n253,6539,4.5,1215831691\n253,6711,1.0,1215832015\n253,6863,2.0,1215832409\n253,7153,4.5,1215831567\n253,7263,4.0,1215823702\n253,8636,4.0,1215832026\n253,8784,1.5,1215832533\n253,8961,4.0,1215831943\n253,37739,3.5,1215823718\n253,41566,4.5,1215823639\n253,43396,4.0,1215832841\n253,48394,2.0,1215832790\n253,56587,3.5,1215823854\n254,9,3.0,845159397\n254,19,3.0,845157322\n254,22,3.0,845157526\n254,23,2.0,845157762\n254,29,5.0,845158605\n254,31,3.0,845157538\n254,34,5.0,845157322\n254,39,2.0,845157349\n254,44,3.0,845157478\n254,47,3.0,845157307\n254,48,1.0,845157516\n254,50,5.0,845157367\n254,72,4.0,845159047\n254,82,5.0,845158605\n254,112,3.0,845157634\n254,122,3.0,845157670\n254,132,3.0,845157775\n254,145,3.0,845157552\n254,146,4.0,845158616\n254,147,3.0,845159135\n254,149,4.0,845158626\n254,150,3.0,845158754\n254,153,3.0,845157211\n254,154,5.0,845157988\n254,156,4.0,845158642\n254,160,4.0,845157382\n254,162,4.0,845157793\n254,163,4.0,845157563\n254,165,4.0,845157211\n254,172,2.0,845159616\n254,173,3.0,845157382\n254,175,3.0,845159212\n254,176,5.0,845158649\n254,178,5.0,845158021\n254,181,3.0,845157577\n254,184,4.0,845158097\n254,193,3.0,845157488\n254,194,4.0,845157685\n254,196,4.0,845157432\n254,198,4.0,845157712\n254,204,3.0,845157432\n254,206,3.0,845158616\n254,207,3.0,845157589\n254,208,3.0,845157280\n254,223,4.0,845157538\n254,227,3.0,845157577\n254,231,2.0,845157247\n254,232,5.0,845157670\n254,233,4.0,845157762\n254,234,3.0,845157610\n254,235,4.0,845157419\n254,236,3.0,845157407\n254,240,2.0,845159380\n254,253,3.0,845157293\n254,260,4.0,845157828\n254,265,5.0,845157442\n254,275,4.0,845158006\n254,287,4.0,845158056\n254,288,3.0,845157293\n254,291,1.0,845158596\n254,292,3.0,845157280\n254,296,3.0,845157190\n254,307,4.0,845157685\n254,316,3.0,845157265\n254,318,4.0,845157265\n254,322,3.0,845157913\n254,327,3.0,845157589\n254,330,3.0,845159226\n254,333,3.0,845157516\n254,337,4.0,845157407\n254,342,4.0,845157577\n254,344,3.0,845157211\n254,345,4.0,845158978\n254,349,4.0,845157211\n254,350,3.0,845159201\n254,353,3.0,845157463\n254,356,3.0,845157265\n254,357,3.0,845157367\n254,367,3.0,845157323\n254,368,3.0,845159476\n254,372,1.0,845157746\n254,373,3.0,845157988\n254,380,3.0,845157190\n254,381,4.0,845157634\n254,392,5.0,845158154\n254,413,2.0,845157649\n254,421,4.0,845157858\n254,427,3.0,845157712\n254,432,3.0,845157382\n254,444,4.0,845157874\n254,457,4.0,845157248\n254,466,3.0,845157552\n254,469,3.0,845158570\n254,481,4.0,845157858\n254,485,3.0,845159277\n254,489,3.0,845157847\n254,494,4.0,845157712\n254,497,3.0,845157499\n254,500,4.0,845157323\n254,520,4.0,845157552\n254,521,5.0,845157997\n254,534,3.0,845158818\n254,535,3.0,845157847\n254,537,3.0,845157762\n254,538,5.0,845157793\n254,539,3.0,845157367\n254,540,2.0,845159636\n254,542,2.0,845157762\n254,543,3.0,845157599\n254,551,4.0,845157478\n254,585,3.0,845157463\n254,587,3.0,845157338\n254,588,4.0,845157211\n254,589,3.0,845157293\n254,590,3.0,845157190\n254,592,3.0,845157190\n254,593,5.0,845157247\n254,595,4.0,845157247\n254,596,5.0,845157620\n254,597,3.0,845157338\n254,608,5.0,845157516\n254,609,4.0,845157925\n254,610,4.0,845157634\n254,616,4.0,845159016\n254,685,3.0,845158127\n254,750,5.0,845158116\n254,846,4.0,845159266\n254,861,3.0,845158867\n254,899,4.0,845158392\n254,901,4.0,845158460\n254,903,4.0,845158359\n254,904,4.0,845158326\n254,914,3.0,845158378\n254,919,4.0,845158313\n254,922,4.0,845158445\n254,923,4.0,845158326\n254,924,4.0,845158294\n254,953,3.0,845158334\n254,954,4.0,845158392\n254,1073,4.0,845159058\n254,1082,4.0,845158108\n255,18,2.5,1236980522\n255,19,1.5,1236981275\n255,105,4.0,1236980398\n255,158,2.0,1236984810\n255,231,2.5,1237062259\n255,256,1.5,1236980409\n255,344,1.5,1236981270\n255,356,3.5,1237062255\n255,364,3.0,1237062269\n255,648,3.0,1237062720\n255,680,4.0,1236981604\n255,714,4.5,1237062530\n255,910,4.0,1236980392\n255,922,4.5,1236980484\n255,923,4.5,1236985384\n255,953,4.0,1237063799\n255,1084,5.0,1236983576\n255,1103,5.0,1236980495\n255,1193,5.0,1237062241\n255,1206,5.0,1236985449\n255,1208,4.5,1236981960\n255,1230,4.0,1236981912\n255,1304,5.0,1236984288\n255,1732,5.0,1236982902\n255,1917,2.5,1236982027\n255,2076,4.5,1236983381\n255,2291,5.0,1237062315\n255,2321,3.0,1237063006\n255,2324,4.5,1237063003\n255,2351,3.5,1236980918\n255,2497,3.0,1237062670\n255,2572,3.0,1236981069\n255,2843,5.0,1236982967\n255,2858,4.5,1236981637\n255,2897,5.0,1236981851\n255,2997,5.0,1236982548\n255,3052,4.0,1237062299\n255,3257,1.5,1236983551\n255,3301,2.0,1236980466\n255,3545,4.0,1236984412\n255,3685,3.5,1236980695\n255,3742,5.0,1236982401\n255,3751,4.0,1236985268\n255,3863,3.0,1236984975\n255,3893,2.5,1236980528\n255,3968,1.5,1237062449\n255,3999,2.0,1236980644\n255,4014,2.5,1236985312\n255,4015,4.0,1237063452\n255,4022,3.0,1236984816\n255,4246,4.0,1236984156\n255,4370,3.5,1236981220\n255,4386,1.0,1236984953\n255,4388,2.0,1237063440\n255,4673,1.5,1236980770\n255,4973,5.0,1236981630\n255,4993,5.0,1237062208\n255,4995,3.5,1237062907\n255,5076,3.5,1236981400\n255,5092,2.0,1236982881\n255,5225,4.5,1236981848\n255,5269,4.0,1237062895\n255,5377,4.0,1236981248\n255,5613,3.5,1236981207\n255,5878,4.0,1237063367\n255,5902,5.0,1236981293\n255,5945,3.5,1236981244\n255,5952,5.0,1237062201\n255,5991,3.5,1236985258\n255,6016,4.5,1236985399\n255,6058,2.0,1237062596\n255,6252,1.5,1237062864\n255,6373,3.0,1236984229\n255,6539,4.5,1237062860\n255,6620,4.0,1236981804\n255,6711,4.5,1237062280\n255,6870,3.5,1237062845\n255,6953,4.0,1236981127\n255,6985,5.0,1237064195\n255,7147,5.0,1236982891\n255,7153,5.0,1237063870\n255,7162,3.0,1236985496\n255,7173,1.5,1236981593\n255,7234,4.0,1237064183\n255,7254,3.0,1236984299\n255,7265,5.0,1237062829\n255,7361,5.0,1237063720\n255,7444,2.5,1236981091\n255,7460,4.0,1236985489\n255,8254,5.0,1236982022\n255,8370,3.5,1237062580\n255,8376,5.0,1237062406\n255,8529,3.0,1237063307\n255,8783,3.0,1237063299\n255,8860,3.0,1236980890\n255,8873,5.0,1237062403\n255,8910,4.5,1237062397\n255,8948,3.0,1236981515\n255,8949,3.5,1237063289\n255,8969,2.0,1236984160\n255,8970,3.5,1237062388\n255,8973,4.5,1236980863\n255,8981,4.5,1236985460\n255,8985,1.0,1236983066\n255,25805,5.0,1236982094\n255,27266,4.0,1236981121\n255,27815,4.5,1236985322\n255,30816,3.0,1237062573\n255,31956,2.5,1236981189\n255,32587,5.0,1237062283\n255,33164,1.0,1237062799\n255,33660,3.0,1236985367\n255,33679,3.0,1237063256\n255,34437,4.5,1236984194\n255,36401,3.5,1236984214\n255,37729,4.5,1237062378\n255,38798,3.0,1237062792\n255,39183,4.5,1236984187\n255,40819,3.0,1237063227\n255,41566,3.0,1236985342\n255,41571,2.5,1236980837\n255,42015,3.0,1236984789\n255,44195,3.5,1237063223\n255,44555,5.0,1237063814\n255,45447,2.5,1237063231\n255,45722,4.5,1237063234\n255,46578,3.5,1237063218\n255,48696,4.0,1237062772\n255,49272,5.0,1236984799\n255,50954,3.5,1237061951\n255,54001,3.0,1237062372\n255,54503,4.0,1237062364\n255,54732,4.0,1236982276\n255,55052,4.0,1236982102\n255,55253,4.0,1237063180\n255,55274,4.5,1237063183\n255,58559,4.5,1237063931\n255,59725,3.0,1237062752\n255,59784,3.5,1237062553\n255,61323,5.0,1236984270\n255,63062,3.5,1236985199\n255,63853,2.5,1236981023\n255,64839,4.5,1237062172\n255,64957,4.0,1236981039\n255,66203,4.0,1236981047\n256,3,3.0,851862274\n256,5,3.0,851862273\n256,6,3.0,851862273\n256,7,3.0,851862274\n256,9,3.0,851862371\n256,14,4.0,851862320\n256,25,5.0,851862204\n256,32,1.0,851862204\n256,36,3.0,851862273\n256,52,4.0,851862320\n256,62,4.0,851862204\n256,79,3.0,851862370\n256,95,3.0,851862204\n256,100,3.0,851862443\n256,140,3.0,851862371\n256,141,4.0,851862204\n256,376,3.0,851862274\n256,494,3.0,851862274\n256,608,4.0,851862273\n256,628,4.0,851862371\n256,637,3.0,851862370\n256,648,1.0,851862204\n256,708,3.0,851862320\n256,736,3.0,851862204\n256,786,3.0,851862320\n256,832,4.0,851862505\n256,1073,3.0,851862320\n257,110,1.5,1348432136\n257,111,5.0,1338008367\n257,260,3.5,1449941754\n257,296,5.0,1338008518\n257,318,4.0,1338008463\n257,608,4.0,1449941791\n257,741,5.0,1348289399\n257,910,0.5,1449941745\n257,912,5.0,1338009430\n257,1136,4.0,1449941127\n257,1189,4.5,1449941418\n257,1196,5.0,1449941341\n257,1201,4.0,1449941794\n257,1206,0.5,1449941218\n257,1207,4.0,1449941803\n257,1212,4.5,1338007055\n257,1218,4.0,1382585982\n257,1222,4.5,1338009498\n257,1228,4.5,1338085401\n257,1230,0.5,1449941741\n257,1244,4.5,1338009606\n257,1248,4.0,1338008487\n257,1252,3.5,1348543172\n257,1258,4.5,1338009448\n257,1263,4.0,1338006929\n257,1270,3.5,1338009265\n257,1274,4.0,1348544094\n257,1278,5.0,1338009616\n257,1653,3.5,1348542901\n257,1732,2.5,1338008439\n257,1945,3.5,1338007081\n257,1968,0.5,1449941756\n257,2019,5.0,1338009444\n257,2105,1.0,1338006947\n257,2160,4.5,1338009319\n257,2300,4.0,1338009696\n257,2502,4.0,1348543068\n257,2555,0.5,1338007492\n257,2759,3.0,1348543309\n257,2810,0.5,1384658047\n257,2905,5.0,1338008251\n257,2918,5.0,1338009626\n257,2948,3.0,1338007027\n257,2949,4.0,1338007022\n257,2959,5.0,1338008479\n257,3000,5.0,1338008296\n257,3030,5.0,1338008230\n257,3091,2.5,1338008115\n257,3224,3.0,1348288095\n257,3365,3.0,1338009471\n257,3435,2.5,1338009363\n257,3751,5.0,1348288488\n257,3996,5.0,1348288119\n257,4855,4.5,1338008386\n257,4878,5.0,1348287669\n257,4886,2.5,1449941781\n257,4993,4.5,1348543050\n257,5146,0.5,1356517818\n257,5300,5.0,1364623792\n257,5498,5.0,1338009229\n257,5690,4.0,1361847376\n257,5971,4.5,1338008328\n257,6350,4.0,1348432335\n257,6539,3.5,1338711189\n257,6669,5.0,1338008065\n257,6713,3.5,1361847383\n257,6857,0.5,1384658040\n257,7022,4.0,1338009069\n257,7060,4.0,1338008110\n257,7099,5.0,1348289288\n257,7919,4.5,1338008315\n257,7925,2.5,1338009285\n257,8157,3.5,1357016590\n257,8253,4.5,1361847365\n257,8484,3.5,1338009082\n257,8961,2.5,1449941800\n257,25771,3.0,1338007898\n257,26082,5.0,1338008319\n257,26662,4.5,1338009202\n257,26776,3.5,1348289356\n257,26840,2.0,1379207594\n257,26903,3.0,1361847412\n257,27728,3.5,1338008106\n257,27731,3.0,1361847403\n257,30803,4.5,1381206612\n257,31658,4.0,1338009235\n257,32587,1.0,1449941116\n257,44761,4.0,1348543390\n257,49272,4.0,1348543094\n257,52885,4.0,1348289178\n257,57504,3.5,1348289194\n257,64614,3.5,1348543222\n257,64695,3.0,1361847748\n257,64993,3.5,1361847438\n257,65261,4.0,1348432341\n257,70286,3.5,1348542887\n257,70533,4.0,1379186740\n257,79132,2.5,1449941330\n257,81845,2.0,1338008119\n257,82459,3.5,1348543212\n257,84187,4.0,1379186744\n257,85179,2.5,1449941453\n257,101962,5.0,1380873296\n258,260,4.0,955313017\n258,1221,5.0,955313061\n258,1466,4.0,955313017\n258,1487,2.0,955313061\n258,1927,5.0,955313590\n258,2412,3.0,955313061\n258,2652,4.0,955313017\n258,2762,5.0,955313590\n258,3361,3.0,955313061\n258,3461,4.0,955313373\n258,3467,4.0,955313329\n258,3468,5.0,955313329\n258,3469,5.0,955313329\n258,3471,5.0,955313210\n258,3478,3.0,955313185\n258,3479,3.0,955313329\n258,3480,4.0,955313373\n258,3494,5.0,955313505\n258,3498,5.0,955313373\n258,3499,4.0,955313373\n258,3504,4.0,955313407\n258,3508,5.0,955313407\n258,3519,4.0,955313245\n258,3524,4.0,955313185\n258,3527,4.0,955313446\n258,3528,4.0,955313446\n258,3529,5.0,955313446\n258,3543,5.0,955313245\n258,3546,5.0,955313505\n258,3548,4.0,955313185\n258,3549,4.0,955313286\n258,3551,4.0,955313373\n259,34,3.0,949949146\n259,246,5.0,949949032\n259,260,2.0,949948803\n259,288,2.0,949949305\n259,356,4.0,949948831\n259,541,1.0,949948974\n259,608,4.0,949949132\n259,700,3.0,949948803\n259,785,3.0,949949103\n259,1005,4.0,949948831\n259,1097,3.0,949948831\n259,1189,4.0,949949044\n259,1210,2.0,949948789\n259,1231,5.0,949948963\n259,1246,5.0,949948995\n259,2109,5.0,949949358\n259,2194,3.0,949948963\n259,2268,5.0,949949333\n259,2396,3.0,949949183\n259,2599,4.0,949949172\n259,2736,4.0,949948908\n259,2750,3.0,949948984\n259,2792,3.0,949948937\n259,2804,3.0,949948921\n259,2858,4.0,949949162\n259,2959,3.0,949948743\n259,2997,5.0,949949132\n259,3007,4.0,949949260\n260,69,3.0,1207885633\n260,231,3.5,1207985639\n260,260,5.0,1207887858\n260,329,5.0,1207985668\n260,356,4.0,1207985437\n260,367,2.0,1207985628\n260,379,3.5,1207885410\n260,589,4.0,1207887816\n260,590,4.0,1207887734\n260,765,4.0,1207885529\n260,1194,3.5,1207886026\n260,1196,5.0,1207985383\n260,1210,5.0,1207887704\n260,1240,4.5,1207985596\n260,1265,5.0,1207985684\n260,1409,4.0,1207885371\n260,1620,3.5,1207885599\n260,1704,5.0,1207985573\n260,1961,3.5,1207985516\n260,1979,3.0,1207886252\n260,1981,3.0,1207886256\n260,2109,2.5,1207885307\n260,2269,2.5,1207885933\n260,2571,5.0,1207887760\n260,2628,5.0,1207985396\n260,2716,3.0,1207985242\n260,2959,2.5,1207985204\n260,3249,3.5,1207885953\n260,3578,5.0,1207985605\n260,4022,2.0,1207985538\n260,4084,3.0,1207885859\n260,4220,3.5,1207886304\n260,4224,3.0,1207886420\n260,4995,2.5,1207985091\n260,5378,5.0,1207985646\n260,6539,5.0,1207985166\n260,6711,2.0,1207985216\n260,33493,5.0,1207985266\n260,44191,5.0,1207985132\n260,45722,3.5,1207985291\n260,56174,3.0,1207886287\n261,1,1.5,1101665532\n261,19,5.0,1101666126\n261,32,4.0,1101665552\n261,50,5.0,1101665567\n261,110,5.0,1101665515\n261,112,0.5,1101665410\n261,150,3.5,1101665513\n261,231,4.5,1101665615\n261,235,0.5,1101665380\n261,260,4.0,1101665520\n261,315,3.5,1101665449\n261,316,4.5,1101665564\n261,318,5.0,1101665518\n261,344,5.0,1101665559\n261,356,5.0,1101665501\n261,377,4.0,1101665554\n261,380,3.5,1101665523\n261,480,3.0,1101665503\n261,589,4.0,1101665525\n261,590,4.5,1101665511\n261,592,4.0,1101665507\n261,593,4.5,1101665499\n261,648,3.5,1101665563\n261,653,1.0,1101665378\n261,780,4.5,1101665528\n261,832,3.0,1101665427\n261,1208,2.5,1101665372\n261,1220,0.5,1101665374\n261,1225,4.0,1101665367\n261,1240,4.0,1101666435\n261,1270,4.0,1101665609\n261,1517,2.0,1101665396\n261,1584,5.0,1101665665\n261,2174,1.0,1101665416\n261,2700,3.0,1101665448\n261,2858,5.0,1101665611\n261,2916,3.5,1101665668\n261,3114,0.5,1101665407\n261,3793,4.0,1101665431\n261,4016,5.0,1101666082\n261,4306,3.0,1101665429\n261,4993,3.5,1101665423\n261,5445,5.0,1101665658\n261,5903,5.0,1101665663\n261,6365,4.0,1101665675\n261,6537,3.0,1101665681\n261,7143,4.0,1101665980\n261,7254,4.5,1101665664\n261,7827,5.0,1101665661\n261,8644,4.5,1101665659\n262,1,2.5,1433898798\n262,2,2.0,1434331477\n262,19,2.5,1434025058\n262,29,3.0,1433899932\n262,34,2.0,1434332133\n262,39,2.5,1434024947\n262,47,5.0,1433899064\n262,70,2.0,1433945801\n262,97,3.0,1433899624\n262,110,3.0,1433900727\n262,111,3.5,1433899517\n262,154,2.0,1434332315\n262,175,5.0,1434026421\n262,231,2.5,1433900989\n262,247,4.0,1434028372\n262,253,3.0,1433899148\n262,288,4.0,1433899117\n262,293,4.0,1433899047\n262,296,4.0,1433898889\n262,306,3.0,1433899556\n262,307,3.0,1433899653\n262,318,3.0,1433898853\n262,319,2.5,1434028404\n262,344,2.5,1433900945\n262,347,2.0,1434028789\n262,356,3.0,1433898783\n262,357,2.5,1433945204\n262,364,2.0,1433900939\n262,367,2.0,1434332133\n262,377,2.5,1433900947\n262,380,2.0,1433900951\n262,480,3.0,1433898792\n262,495,2.5,1434026701\n262,500,3.5,1433900987\n262,527,3.0,1433898859\n262,551,3.0,1433944378\n262,586,4.0,1434024930\n262,587,1.5,1434024940\n262,588,2.0,1433900952\n262,593,5.0,1433898786\n262,595,3.5,1433900938\n262,596,2.0,1434028849\n262,597,2.0,1434024918\n262,714,3.0,1433939192\n262,736,2.0,1433900996\n262,778,3.5,1433900818\n262,780,1.5,1433900962\n262,799,3.0,1453400925\n262,841,3.5,1433899252\n262,858,3.5,1433898857\n262,899,3.0,1433900729\n262,903,2.5,1433902162\n262,910,3.0,1433900708\n262,912,2.5,1433898895\n262,919,2.0,1434025037\n262,923,2.0,1433900591\n262,924,3.0,1466554367\n262,928,2.5,1433900620\n262,968,4.0,1433899254\n262,1073,3.5,1433938198\n262,1080,2.0,1433937472\n262,1088,2.0,1433938031\n262,1089,3.0,1433937996\n262,1092,1.0,1434026704\n262,1128,2.5,1433901601\n262,1136,2.0,1433902148\n262,1172,3.0,1433898949\n262,1173,4.0,1434332273\n262,1185,2.5,1433939305\n262,1193,3.5,1433898864\n262,1199,2.5,1433900782\n262,1206,4.0,1433939078\n262,1208,3.5,1433900624\n262,1209,3.5,1433938208\n262,1219,4.0,1433899304\n262,1221,3.0,1433898860\n262,1222,2.5,1433900762\n262,1223,2.0,1433900798\n262,1230,3.0,1433900688\n262,1235,5.0,1433937500\n262,1237,3.0,1433900639\n262,1241,4.0,1433899346\n262,1244,3.0,1433900749\n262,1246,3.0,1434025076\n262,1247,4.0,1433900663\n262,1251,2.5,1433900724\n262,1255,3.0,1433899361\n262,1258,4.0,1433899272\n262,1259,4.0,1433937479\n262,1261,2.5,1433899278\n262,1270,3.0,1433898794\n262,1273,2.5,1433900772\n262,1285,3.5,1434333103\n262,1321,3.0,1433945803\n262,1333,3.0,1433899342\n262,1342,2.5,1434028370\n262,1343,2.0,1434028845\n262,1345,4.0,1433901086\n262,1347,3.5,1433901313\n262,1348,3.0,1433899308\n262,1350,3.0,1433902595\n262,1361,5.0,1449695793\n262,1380,2.0,1434333178\n262,1387,2.5,1433899249\n262,1393,0.5,1434025046\n262,1394,2.0,1433938936\n262,1407,4.0,1433945792\n262,1437,2.5,1434026695\n262,1441,3.0,1434333065\n262,1483,4.0,1434026711\n262,1517,3.0,1434025032\n262,1580,2.0,1433900994\n262,1644,1.5,1433945806\n262,1663,1.0,1434333193\n262,1680,1.0,1434333062\n262,1704,1.0,1433937452\n262,1717,2.0,1433945812\n262,1721,2.5,1433900992\n262,1732,3.0,1433899619\n262,1777,2.0,1433900105\n262,1884,3.5,1433900267\n262,1923,2.5,1434331441\n262,1952,2.5,1433899676\n262,1961,2.5,1433899841\n262,1968,4.5,1433899805\n262,1974,2.5,1466556509\n262,1982,3.0,1433902398\n262,1991,3.0,1433901519\n262,1993,2.0,1434332492\n262,1994,3.0,1433901091\n262,1997,2.5,1433899276\n262,2003,3.0,1453400917\n262,2005,4.0,1433900100\n262,2019,3.0,1433900531\n262,2076,3.0,1433939213\n262,2099,2.5,1434026452\n262,2115,3.0,1433900343\n262,2118,3.0,1433899452\n262,2134,3.0,1433899853\n262,2144,5.0,1433900113\n262,2145,5.0,1433900159\n262,2159,3.0,1434028259\n262,2160,3.5,1433899324\n262,2174,4.0,1433899850\n262,2291,4.0,1433944316\n262,2313,3.5,1433900016\n262,2361,3.0,1434026440\n262,2395,5.0,1433900218\n262,2428,3.0,1453400946\n262,2459,3.5,1433901162\n262,2488,3.5,1433899389\n262,2513,3.0,1433901307\n262,2517,3.0,1433901165\n262,2541,2.5,1434332587\n262,2542,2.5,1433899132\n262,2548,0.5,1434332424\n262,2557,2.5,1434028407\n262,2581,1.0,1434333116\n262,2617,2.0,1433945791\n262,2644,2.5,1433901259\n262,2657,3.5,1434028796\n262,2683,2.5,1434331443\n262,2700,2.5,1434026407\n262,2706,2.0,1434025013\n262,2710,2.0,1433945788\n262,2712,2.5,1434028823\n262,2713,1.0,1434332606\n262,2716,2.5,1434024934\n262,2719,2.0,1434332477\n262,2722,0.5,1433945810\n262,2731,2.5,1433900584\n262,2732,2.5,1433899738\n262,2762,4.0,1433900057\n262,2783,3.0,1466555126\n262,2787,2.0,1433901571\n262,2789,2.0,1434332483\n262,2790,1.0,1434332499\n262,2797,2.0,1434333201\n262,2853,3.0,1466556529\n262,2858,4.0,1433899129\n262,2862,2.5,1434026448\n262,2901,3.0,1433901228\n262,2908,3.0,1434028384\n262,2918,4.0,1433899630\n262,2925,2.5,1433900714\n262,2959,3.5,1433898887\n262,2964,4.0,1434024383\n262,2967,3.0,1433901256\n262,2987,3.0,1434025065\n262,2995,1.0,1434332556\n262,3018,2.5,1433899364\n262,3075,3.5,1433899246\n262,3089,3.0,1433899077\n262,3134,2.5,1433900571\n262,3147,3.5,1434025061\n262,3189,2.0,1433945088\n262,3205,3.0,1433901335\n262,3216,5.0,1466555307\n262,3223,3.0,1434028748\n262,3272,2.0,1434026669\n262,3273,1.5,1433944596\n262,3294,2.5,1466555388\n262,3296,2.0,1434333003\n262,3344,3.5,1434026377\n262,3408,2.0,1433944471\n262,3409,2.0,1433944656\n262,3448,2.0,1433899934\n262,3476,2.0,1433899428\n262,3481,3.0,1433900302\n262,3484,2.0,1433944981\n262,3499,3.0,1433902770\n262,3504,3.5,1433899608\n262,3535,3.0,1434028745\n262,3536,0.5,1433944735\n262,3552,1.5,1433900110\n262,3556,4.0,1433900316\n262,3569,2.0,1434024388\n262,3578,2.5,1433943824\n262,3617,2.5,1433944564\n262,3621,3.5,1433901224\n262,3658,2.0,1433901247\n262,3676,3.0,1466555143\n262,3727,2.0,1433901320\n262,3741,2.5,1433899627\n262,3742,2.0,1434026690\n262,3751,2.0,1433943845\n262,3752,1.0,1434333328\n262,3777,3.5,1434026355\n262,3785,2.5,1433944537\n262,3788,3.0,1433899900\n262,3798,2.0,1433944611\n262,3825,2.0,1433944730\n262,3826,1.5,1433944562\n262,3847,3.0,1466555416\n262,3863,2.0,1433944529\n262,3875,2.5,1466555129\n262,3882,2.5,1433944684\n262,3917,2.0,1466555004\n262,3932,2.0,1433901523\n262,3948,1.0,1433900094\n262,3949,4.0,1433900762\n262,3967,3.5,1433944552\n262,3968,1.0,1433944739\n262,3970,3.0,1433901325\n262,3977,2.5,1433944475\n262,3979,0.5,1433944826\n262,3988,2.0,1433944624\n262,3991,0.5,1433945135\n262,4011,4.0,1433899072\n262,4014,2.0,1434333307\n262,4015,2.0,1433944667\n262,4018,1.5,1433944524\n262,4020,2.0,1433944958\n262,4023,0.5,1433944675\n262,4025,2.0,1433944510\n262,4054,1.0,1433944812\n262,4056,2.0,1434332097\n262,4069,0.5,1433944756\n262,4105,4.0,1433899283\n262,4128,4.0,1433900174\n262,4148,0.5,1453400929\n262,4161,1.0,1433944701\n262,4210,2.5,1433901758\n262,4226,3.0,1433899135\n262,4235,2.5,1433899562\n262,4239,2.0,1433900312\n262,4246,3.5,1433944496\n262,4270,2.0,1433944553\n262,4299,0.5,1433944635\n262,4306,2.5,1433943823\n262,4308,2.0,1433944493\n262,4310,2.0,1434333331\n262,4367,1.0,1433944568\n262,4368,0.5,1433945094\n262,4369,1.0,1433944585\n262,4370,2.0,1433944502\n262,4372,2.5,1434332981\n262,4386,0.5,1433945003\n262,4388,2.0,1433944769\n262,4390,3.0,1434026462\n262,4403,3.0,1433901427\n262,4417,2.5,1434026374\n262,4437,4.0,1433899444\n262,4447,1.5,1433944535\n262,4552,4.0,1434332315\n262,4638,1.0,1434333355\n262,4641,5.0,1433900434\n262,4658,3.5,1433899486\n262,4697,2.0,1466555411\n262,4718,2.0,1434333330\n262,4720,3.0,1433899348\n262,4745,1.0,1434332535\n262,4752,3.5,1466555203\n262,4754,5.0,1433899430\n262,4816,2.5,1434333342\n262,4833,3.0,1433899412\n262,4865,2.0,1433944707\n262,4878,5.0,1433900808\n262,4886,2.5,1433943827\n262,4890,2.0,1433944679\n262,4893,3.0,1433901591\n262,4896,2.0,1433943841\n262,4902,3.0,1433899425\n262,4914,3.5,1433899722\n262,4951,1.0,1434332369\n262,4963,1.5,1433943836\n262,4973,3.5,1433899006\n262,4979,4.0,1433900131\n262,4993,3.0,1433899020\n262,4996,2.5,1433901437\n262,5014,3.0,1433944831\n262,5025,0.5,1433944988\n262,5026,2.0,1433944862\n262,5034,2.0,1434333145\n262,5105,3.0,1433899401\n262,5111,2.0,1434028863\n262,5147,3.0,1433900632\n262,5151,0.5,1433944904\n262,5153,3.0,1434028832\n262,5165,3.5,1433901549\n262,5218,2.0,1433944490\n262,5225,3.0,1433899976\n262,5269,3.0,1434028759\n262,5291,2.0,1433899044\n262,5294,1.0,1433944971\n262,5319,2.0,1433899996\n262,5349,1.5,1433943835\n262,5377,3.0,1433944518\n262,5433,2.5,1466555214\n262,5449,0.5,1433944830\n262,5481,1.5,1434333323\n262,5489,2.5,1433899422\n262,5502,3.0,1449545395\n262,5505,5.0,1433944985\n262,5569,4.0,1433901264\n262,5570,2.5,1433902476\n262,5577,2.5,1433944949\n262,5588,2.5,1433901380\n262,5600,2.5,1434333082\n262,5617,5.0,1433944724\n262,5630,2.5,1433901439\n262,5679,2.5,1433944520\n262,5715,2.5,1466555329\n262,5735,2.0,1434028883\n262,5778,2.5,1466555111\n262,5785,2.0,1433944847\n262,5810,1.5,1433944664\n262,5816,2.0,1434333289\n262,5853,2.5,1433901338\n262,5891,3.0,1434028395\n262,5909,3.0,1433901093\n262,5952,3.0,1433899030\n262,5957,0.5,1433944944\n262,5971,2.5,1433899027\n262,5980,3.5,1433901333\n262,5995,3.0,1433900705\n262,6000,3.0,1466555083\n262,6016,2.0,1433898866\n262,6063,4.0,1434028236\n262,6140,3.0,1433901090\n262,6188,0.5,1433944647\n262,6214,5.0,1434026410\n262,6218,2.5,1434333349\n262,6256,3.5,1433901670\n262,6257,1.5,1434026685\n262,6287,0.5,1433944728\n262,6290,2.0,1434026371\n262,6291,2.5,1434028390\n262,6301,3.5,1434026687\n262,6367,0.5,1433945120\n262,6373,1.5,1433944516\n262,6383,0.5,1433944776\n262,6395,3.0,1433901443\n262,6502,3.5,1433899319\n262,6503,1.5,1433944743\n262,6530,3.5,1466554000\n262,6535,0.5,1433945036\n262,6586,2.0,1433944968\n262,6609,2.5,1433902734\n262,6711,4.0,1433900226\n262,6748,3.0,1433899485\n262,6773,2.5,1433944805\n262,6863,2.0,1433944513\n262,6870,2.0,1449545417\n262,6874,3.5,1433899821\n262,6890,3.0,1433945125\n262,6909,3.0,1466556506\n262,6936,1.5,1433944709\n262,6940,4.0,1466555315\n262,6942,2.0,1434333093\n262,6975,2.5,1433899373\n262,6987,3.0,1433899340\n262,7008,3.0,1434026428\n262,7022,4.0,1434026395\n262,7024,3.0,1434026444\n262,7029,3.0,1433901703\n262,7065,2.5,1434026572\n262,7110,3.0,1433901573\n262,7115,3.0,1433899417\n262,7123,2.0,1434028360\n262,7153,3.0,1433899012\n262,7235,3.0,1433901695\n262,7265,4.0,1434026468\n262,7293,0.5,1433944618\n262,7318,2.0,1433944819\n262,7327,4.0,1433899568\n262,7360,2.0,1433899292\n262,7361,3.0,1433900258\n262,7387,3.0,1433899256\n262,7438,2.5,1433899964\n262,7444,0.5,1433944798\n262,7451,2.0,1433944711\n262,7492,3.0,1433901432\n262,7502,4.0,1433899008\n262,7650,3.0,1433901321\n262,7882,2.5,1433901869\n262,7920,3.0,1433901240\n262,7976,3.0,1434028829\n262,7982,2.0,1433901269\n262,8014,3.0,1433899657\n262,8128,2.5,1433902867\n262,8194,2.5,1434026549\n262,8195,2.5,1433899743\n262,8360,2.5,1433944469\n262,8368,1.5,1433944485\n262,8376,3.5,1433944602\n262,8464,2.0,1433944546\n262,8477,3.5,1433899705\n262,8507,4.0,1433899414\n262,8640,2.5,1433945032\n262,8783,2.5,1433944698\n262,8784,2.0,1433900381\n262,8848,2.0,1433937641\n262,8873,2.5,1433900022\n262,8874,5.0,1433899280\n262,8906,3.5,1433901809\n262,8947,2.5,1433945101\n262,8950,3.0,1433900876\n262,8969,1.0,1433945007\n262,8981,3.0,1433944786\n262,8983,2.0,1433944758\n262,25771,3.5,1433902894\n262,25774,3.0,1433901984\n262,25807,3.0,1466555413\n262,26003,3.5,1433900815\n262,26125,3.5,1433901254\n262,26171,3.0,1433937427\n262,26176,3.0,1434026546\n262,26231,3.0,1434028421\n262,26241,3.5,1433939016\n262,26303,2.0,1434028411\n262,26320,2.5,1433938622\n262,26326,3.0,1433900053\n262,26587,3.5,1433899681\n262,26631,3.0,1434028356\n262,26693,2.0,1434332537\n262,26974,5.0,1434024376\n262,27317,3.0,1433901311\n262,27329,4.0,1466553914\n262,27604,1.0,1466555095\n262,27648,1.5,1434027012\n262,27721,2.5,1433945072\n262,27772,3.0,1434332838\n262,27773,4.0,1433899039\n262,27784,2.0,1433943899\n262,27798,1.0,1466556425\n262,30745,2.5,1433901815\n262,30783,3.0,1433901578\n262,30793,1.0,1433944559\n262,30803,3.5,1433899708\n262,30810,4.0,1433900224\n262,31270,2.5,1434026382\n262,31502,2.5,1433901840\n262,31952,4.0,1434332260\n262,32211,3.5,1434026663\n262,32587,2.5,1433899863\n262,32686,3.0,1433901854\n262,32728,2.5,1433901772\n262,32898,3.0,1433939390\n262,33162,2.0,1433944952\n262,33171,5.0,1434026665\n262,33592,2.5,1433939259\n262,33683,3.0,1434028346\n262,33817,1.0,1434028784\n262,33880,3.0,1434024386\n262,33896,2.5,1433938989\n262,34323,2.0,1433902006\n262,34437,2.0,1433900240\n262,36276,2.0,1434332281\n262,38886,4.0,1433902777\n262,39381,2.0,1434332038\n262,40412,5.0,1434028381\n262,40833,2.5,1433901908\n262,42632,3.0,1434028375\n262,42723,3.0,1434026442\n262,44694,2.5,1433945024\n262,44761,2.0,1433945027\n262,44974,3.5,1433945145\n262,45662,1.0,1434332380\n262,46578,5.0,1433944494\n262,46723,2.5,1466553900\n262,48082,2.0,1433900251\n262,48231,3.5,1433901586\n262,48385,2.0,1433944556\n262,48394,2.5,1433899084\n262,48744,1.5,1434026418\n262,48774,2.5,1433899918\n262,48780,2.5,1449545380\n262,48872,2.5,1434332011\n262,48972,1.0,1466556478\n262,48997,3.0,1433945149\n262,51207,2.5,1433901784\n262,51255,3.0,1433899515\n262,51304,0.5,1434026561\n262,52666,2.5,1434028380\n262,53000,1.5,1433944779\n262,53435,2.0,1434026570\n262,53953,0.5,1433944965\n262,54503,2.0,1433944588\n262,54995,3.0,1433899458\n262,55269,5.0,1433900103\n262,55280,3.5,1434333174\n262,55652,3.0,1434028328\n262,55820,3.5,1434331241\n262,56145,1.5,1433945123\n262,56339,2.5,1433945133\n262,56367,3.0,1433939343\n262,57274,2.5,1433899344\n262,57669,2.5,1433899754\n262,57910,2.5,1434028842\n262,58964,3.0,1434028252\n262,59369,4.0,1434331314\n262,59727,2.5,1434028856\n262,59995,3.0,1434332061\n262,60069,2.0,1449545363\n262,60072,1.5,1433944927\n262,60293,2.5,1434333195\n262,60333,2.5,1433938484\n262,61024,2.0,1433944909\n262,61240,3.5,1433944834\n262,62203,3.5,1434028253\n262,63992,2.0,1433944982\n262,64034,2.5,1433939292\n262,64153,1.0,1433901282\n262,64969,0.5,1433945062\n262,65188,0.5,1433899651\n262,66310,2.0,1434028756\n262,68157,2.5,1433899093\n262,68237,2.5,1433899119\n262,68954,4.0,1433899070\n262,69134,2.5,1434028793\n262,69720,1.5,1433901294\n262,69757,1.5,1434331407\n262,71304,2.0,1433901079\n262,71518,3.0,1434333026\n262,71535,2.0,1433899302\n262,71579,1.0,1434333040\n262,71700,1.5,1466555047\n262,72226,4.0,1433899801\n262,72731,3.0,1434332559\n262,73321,2.5,1449619585\n262,74370,3.0,1466555224\n262,74458,3.0,1434331410\n262,76030,2.0,1434332563\n262,76093,3.0,1433899165\n262,76251,3.0,1433944669\n262,76303,3.0,1433901668\n262,77427,1.0,1434028872\n262,77800,3.0,1434026432\n262,79251,2.0,1434028821\n262,79702,5.0,1433944765\n262,80736,1.5,1434028878\n262,80844,1.0,1433902396\n262,80862,3.0,1434026438\n262,81138,2.5,1433901891\n262,81562,1.5,1433944901\n262,81847,2.5,1433900020\n262,82041,3.5,1434331904\n262,82667,3.5,1433899462\n262,85401,4.0,1434028802\n262,85788,2.5,1466555293\n262,85881,2.5,1434333047\n262,87205,1.5,1433902503\n262,87234,3.5,1434333071\n262,88163,2.0,1433945056\n262,88272,2.0,1434026558\n262,89118,3.0,1433899386\n262,89837,4.0,1434028776\n262,89864,2.5,1433939428\n262,90357,4.0,1466554024\n262,90374,2.0,1433901991\n262,90531,2.5,1433937509\n262,91488,2.5,1434026949\n262,92058,2.0,1434332534\n262,92206,2.0,1434028881\n262,92309,2.0,1466556500\n262,92494,5.0,1433939438\n262,92496,2.5,1433944354\n262,92498,2.5,1433939525\n262,93840,2.0,1433899391\n262,94466,3.0,1433899032\n262,94864,1.5,1433945013\n262,94959,3.5,1433899570\n262,96490,2.0,1434332489\n262,96563,3.0,1449566698\n262,96610,1.5,1433944843\n262,96634,1.0,1433901354\n262,96815,3.0,1466555193\n262,97188,3.0,1466555348\n262,97593,3.5,1433943968\n262,97921,2.5,1433939383\n262,97957,5.0,1466555263\n262,98083,2.0,1449545775\n262,98809,2.0,1433944816\n262,99296,2.0,1466553910\n262,99470,1.5,1466555310\n262,99669,2.5,1433902552\n262,99912,2.5,1466555060\n262,100159,3.0,1433901145\n262,100306,2.5,1434028827\n262,103249,1.5,1434332516\n262,103299,3.0,1466555235\n262,103341,2.5,1434026812\n262,103688,3.0,1433899245\n262,104457,3.5,1466555164\n262,104662,1.5,1433939422\n262,104879,3.0,1434332065\n262,105763,3.0,1433901730\n262,106870,3.0,1433902455\n262,106920,3.0,1433899735\n262,107057,3.0,1433901065\n262,107771,2.5,1433899455\n262,108192,4.0,1433976851\n262,108447,1.5,1433902533\n262,108506,2.5,1433937554\n262,108583,2.5,1433899163\n262,108729,2.0,1434332282\n262,109848,4.0,1434025386\n262,110591,2.0,1466555396\n262,110748,2.5,1466554983\n262,111486,2.0,1433956476\n262,112277,1.5,1449545530\n262,112515,4.0,1434028903\n262,112552,3.0,1433899042\n262,112556,2.5,1433899712\n262,112655,2.5,1433901200\n262,112689,2.5,1433902817\n262,113252,3.0,1466554981\n262,113565,3.0,1433901160\n262,113640,2.5,1433901830\n262,113780,3.0,1434024546\n262,114044,2.5,1433938594\n262,114766,2.0,1466555176\n262,115569,3.0,1434024301\n262,115881,1.0,1433902663\n262,116503,1.5,1433902447\n262,116797,2.5,1466554620\n262,117121,3.0,1466555350\n262,117434,1.5,1466555369\n262,118260,2.5,1433938584\n262,118334,2.0,1433901193\n262,118880,4.0,1466554354\n262,121113,1.0,1433901472\n262,121231,5.0,1434025406\n262,130448,0.5,1433900495\n262,131451,1.0,1466555002\n262,132146,3.0,1449545549\n262,133824,2.0,1433900503\n262,134130,3.0,1449619586\n262,134853,2.5,1453401256\n262,136602,2.0,1466556437\n262,137337,3.0,1453401252\n262,140523,2.5,1466554084\n262,141956,1.0,1466556517\n262,151639,2.5,1466555266\n262,152173,3.0,1466556504\n263,21,3.5,1117843298\n263,62,3.5,1117842427\n263,110,3.5,1117843310\n263,168,3.0,1117844263\n263,296,3.0,1117843220\n263,318,4.0,1117842318\n263,350,3.0,1117841935\n263,356,4.0,1117843241\n263,368,3.0,1117841982\n263,442,3.0,1117841950\n263,509,3.5,1117841872\n263,517,3.5,1117844232\n263,541,3.5,1117843228\n263,586,4.0,1117843224\n263,590,4.0,1117842357\n263,593,4.0,1117842379\n263,597,3.5,1117843252\n263,674,2.0,1117844192\n263,762,3.0,1117844218\n263,802,3.0,1117844202\n263,908,3.0,1117842422\n263,912,3.0,1117843156\n263,919,3.0,1117841916\n263,920,3.5,1117842472\n263,949,3.0,1117846575\n263,969,4.0,1117842490\n263,1037,4.0,1117842657\n263,1104,3.0,1117842629\n263,1127,4.0,1117843180\n263,1204,3.5,1117842412\n263,1222,3.0,1117843194\n263,1234,3.5,1117844158\n263,1246,3.0,1117842055\n263,1267,3.5,1117842604\n263,1270,3.5,1117842452\n263,1275,4.0,1117844169\n263,1304,4.5,1117842044\n263,1305,3.0,1117846583\n263,1307,3.5,1117841906\n263,1333,4.0,1117844098\n263,1370,3.5,1117844117\n263,1374,2.5,1117842084\n263,1408,4.5,1117842310\n263,1527,3.0,1117841855\n263,1580,4.0,1117843172\n263,1584,3.5,1117841943\n263,1610,4.5,1117841969\n263,1617,3.5,1117843147\n263,1732,2.0,1117844107\n263,1784,4.0,1117842336\n263,1923,2.5,1117841893\n263,1961,3.0,1117841881\n263,1962,3.5,1117842551\n263,2006,3.0,1117842349\n263,2019,3.0,1117843814\n263,2521,2.5,1117846457\n263,2529,2.0,1117842344\n263,2617,3.0,1117843755\n263,2716,3.5,1117843116\n263,2803,4.0,1117842504\n263,2804,3.5,1117842390\n263,2808,3.0,1117843727\n263,2826,4.0,1117843715\n263,2916,3.0,1117843087\n263,2947,3.5,1117843731\n263,2959,2.5,1117843052\n263,2987,2.5,1117842006\n263,3098,3.0,1117843691\n263,3207,3.0,1117844657\n263,3308,3.0,1117844668\n263,3430,3.5,1117844646\n263,3468,3.5,1117843643\n263,3503,1.0,1117842805\n263,3686,2.0,1117844621\n263,3697,3.5,1117843630\n263,3717,3.0,1117842536\n263,3734,2.5,1117843024\n263,3753,3.5,1117843596\n263,3873,4.0,1117844594\n263,4019,3.5,1117843548\n263,4025,4.0,1117843552\n263,4085,3.5,1117843564\n263,4220,3.5,1117844538\n263,4223,3.0,1117842519\n263,4317,3.5,1117844527\n263,4406,3.0,1117842764\n263,4535,3.5,1117842754\n263,4951,2.0,1117844494\n263,4963,3.5,1117843530\n263,4972,3.0,1117843483\n263,4995,3.0,1117843498\n263,5266,3.5,1117843509\n263,5313,3.0,1117842720\n263,5382,4.0,1117842969\n263,5464,3.5,1117843450\n263,5611,2.0,1117842989\n263,5620,3.0,1117842714\n263,5995,3.0,1117843442\n263,6428,3.5,1117842933\n263,6450,3.5,1117843408\n263,6539,4.0,1117842363\n263,6565,4.0,1117843418\n263,6662,4.0,1117844395\n263,6870,3.5,1117843366\n263,6874,1.5,1117843344\n263,6989,3.0,1117846772\n263,7143,3.5,1117843378\n263,7376,3.0,1117846745\n263,8337,3.5,1117846697\n263,8636,3.5,1117842463\n263,8784,1.0,1117844344\n263,8798,3.0,1117844323\n263,26394,3.0,1117846669\n263,33646,3.0,1118182718\n264,39,5.0,995664962\n264,342,3.0,995665043\n264,356,4.0,995664904\n264,357,5.0,995665057\n264,377,3.0,995664978\n264,440,5.0,995665009\n264,499,3.0,995664664\n264,527,5.0,995664707\n264,911,4.0,995664851\n264,914,5.0,995664826\n264,920,4.0,995664866\n264,1088,4.0,995665075\n264,1097,5.0,995664664\n264,1191,3.0,995664688\n264,1197,4.0,995664851\n264,1244,5.0,995664852\n264,1296,2.0,995664905\n264,1307,5.0,995664801\n264,1393,5.0,995665027\n264,1569,5.0,995665075\n264,1674,5.0,995664905\n264,1721,5.0,995664826\n264,2080,5.0,995664882\n264,2081,5.0,995664905\n264,2125,5.0,995665027\n264,2145,3.0,995665091\n264,2248,5.0,995664866\n264,2406,5.0,995664995\n264,2671,3.0,995664978\n264,3536,2.0,995664924\n264,4054,4.0,995664947\n264,4280,4.0,995664947\n264,4593,2.0,995664707\n265,21,4.0,960060664\n265,25,4.0,960056648\n265,36,4.0,960056698\n265,41,4.0,960056356\n265,50,5.0,960056648\n265,58,3.0,960061048\n265,111,4.0,960056180\n265,154,4.0,960060804\n265,281,5.0,960060848\n265,370,4.0,960055626\n265,373,5.0,960059696\n265,457,3.0,960060412\n265,527,4.0,960056581\n265,608,5.0,960056325\n265,650,2.0,960056774\n265,750,5.0,960055877\n265,858,4.0,960055822\n265,892,4.0,960056750\n265,898,5.0,960056356\n265,899,5.0,960056041\n265,900,5.0,960060601\n265,904,4.0,960056005\n265,913,5.0,960056005\n265,918,3.0,960060236\n265,919,5.0,960059500\n265,920,5.0,960055528\n265,921,4.0,960056990\n265,922,5.0,960055822\n265,923,5.0,960055877\n265,936,5.0,960060498\n265,942,4.0,960056420\n265,952,4.0,960060643\n265,953,3.0,960059929\n265,969,5.0,960059639\n265,1079,5.0,960059911\n265,1084,5.0,960056356\n265,1094,3.0,960056581\n265,1095,4.0,960060979\n265,1096,5.0,960057145\n265,1104,5.0,960056098\n265,1124,4.0,960060884\n265,1131,2.0,960056214\n265,1132,2.0,960056858\n265,1136,4.0,960059473\n265,1150,2.0,960056956\n265,1171,2.0,960061070\n265,1179,4.0,960056553\n265,1186,4.0,960056928\n265,1189,3.0,960056858\n265,1193,4.0,960056420\n265,1198,4.0,960056928\n265,1204,4.0,960056098\n265,1207,4.0,960055822\n265,1208,4.0,960060687\n265,1212,5.0,960055822\n265,1217,5.0,960056278\n265,1222,3.0,960060458\n265,1224,4.0,960056278\n265,1225,4.0,960056462\n265,1230,4.0,960059119\n265,1231,4.0,960056928\n265,1233,5.0,960056214\n265,1235,4.0,960059833\n265,1237,5.0,960056005\n265,1238,4.0,960060192\n265,1242,4.0,960057026\n265,1243,4.0,960060498\n265,1244,3.0,960059446\n265,1247,5.0,960056180\n265,1250,4.0,960059781\n265,1251,4.0,960056181\n265,1252,4.0,960055912\n265,1254,5.0,960056098\n265,1263,4.0,960060099\n265,1265,4.0,960056675\n265,1266,5.0,960060979\n265,1270,3.0,960056990\n265,1276,4.0,960056325\n265,1280,2.0,960056600\n265,1281,4.0,960059751\n265,1283,5.0,960059402\n265,1293,4.0,960056462\n265,1296,4.0,960055626\n265,1299,4.0,960059578\n265,1303,4.0,960059675\n265,1304,4.0,960056462\n265,1307,4.0,960057166\n265,1617,4.0,960055558\n265,1633,3.0,960060687\n265,1648,3.0,960060764\n265,1673,3.0,960060787\n265,1674,4.0,960057026\n265,1682,3.0,960060164\n265,1684,3.0,960060269\n265,1834,4.0,960060458\n265,1940,4.0,960060192\n265,1944,5.0,960056278\n265,1945,5.0,960059219\n265,1948,5.0,960060951\n265,1949,4.0,960060393\n265,1950,4.0,960059613\n265,1953,4.0,960056462\n265,1954,3.0,960060393\n265,1955,4.0,960060545\n265,1956,4.0,960057103\n265,1957,4.0,960057026\n265,1960,4.0,960057067\n265,1964,4.0,960059446\n265,1997,3.0,960060884\n265,2019,4.0,960059219\n265,2020,4.0,960059985\n265,2025,2.0,960060146\n265,2028,4.0,960055626\n265,2068,4.0,960056990\n265,2076,3.0,960057194\n265,2130,4.0,960056325\n265,2132,5.0,960056420\n265,2186,5.0,960056005\n265,2194,4.0,960061048\n265,2300,5.0,960055940\n265,2303,4.0,960059639\n265,2349,3.0,960057145\n265,2352,4.0,960057103\n265,2396,5.0,960056420\n265,2583,4.0,960060951\n265,2692,2.0,960056722\n265,2716,4.0,960060073\n265,2731,4.0,960060036\n265,2732,5.0,960056181\n265,2759,3.0,960060830\n265,2764,3.0,960060979\n265,2791,4.0,960056928\n265,2847,4.0,960056098\n265,2858,5.0,960056533\n265,2917,5.0,960056928\n265,2919,3.0,960057067\n265,2929,5.0,960060830\n265,2948,2.0,960059781\n265,2951,5.0,960059911\n265,2969,4.0,960060787\n265,2972,1.0,960057026\n265,2988,4.0,960061070\n265,3035,4.0,960059403\n265,3068,4.0,960057145\n265,3072,4.0,960055558\n265,3083,3.0,960056131\n265,3089,4.0,960059473\n265,3095,4.0,960056005\n265,3098,3.0,960060343\n265,3101,4.0,960060515\n265,3125,2.0,960061153\n265,3134,5.0,960059186\n265,3148,4.0,960056698\n265,3163,2.0,960055940\n265,3167,4.0,960060545\n265,3171,4.0,960059781\n265,3194,3.0,960059403\n265,3200,5.0,960060073\n265,3201,5.0,960059964\n265,3255,3.0,960061153\n265,3260,2.0,960060146\n265,3307,3.0,960055847\n265,3361,4.0,960056956\n265,3408,4.0,960057273\n265,3418,5.0,960060458\n265,3421,4.0,960061107\n265,3435,5.0,960055727\n265,3462,5.0,960055912\n265,3467,4.0,960059446\n265,3468,4.0,960059219\n265,3481,4.0,960057250\n265,3537,4.0,960057331\n265,3545,5.0,960056278\n265,3629,4.0,960055727\n265,3653,4.0,960059307\n265,3654,4.0,960061048\n265,3671,5.0,960060002\n265,3685,5.0,960057145\n265,3730,4.0,960055727\n265,3735,4.0,960059186\n265,3738,3.0,960060343\n265,3742,4.0,960056041\n265,5060,4.0,960056131\n266,14,4.0,840452329\n266,34,3.0,840452291\n266,36,5.0,840703429\n266,39,5.0,840703309\n266,50,4.0,840703309\n266,62,4.0,840452291\n266,105,3.0,840452329\n266,150,5.0,840452108\n266,185,3.0,840703238\n266,225,3.0,840703288\n266,282,4.0,840452329\n266,292,3.0,840703189\n266,296,3.0,840452108\n266,300,5.0,840703263\n266,306,3.0,840703428\n266,307,3.0,840703428\n266,308,3.0,840703428\n266,318,4.0,840452329\n266,339,3.0,840703213\n266,349,3.0,840452155\n266,356,4.0,840452291\n266,364,5.0,840703263\n266,367,4.0,840703289\n266,377,4.0,840703289\n266,380,3.0,840452109\n266,434,2.0,840703189\n266,454,3.0,840703263\n266,457,5.0,840703189\n266,480,4.0,840703238\n266,500,3.0,840703309\n266,527,5.0,840452291\n266,586,3.0,840703344\n266,587,4.0,840703344\n266,588,3.0,840452154\n266,590,5.0,840452108\n266,592,3.0,840452108\n266,593,4.0,840703153\n266,595,3.0,840703153\n266,838,5.0,840703429\n267,47,4.5,1175984548\n267,50,4.0,1175984023\n267,260,4.5,1175984069\n267,296,5.0,1175984399\n267,318,5.0,1175984030\n267,441,5.0,1175983608\n267,593,4.0,1175984033\n267,849,2.5,1175982871\n267,1089,4.5,1175984444\n267,1120,4.5,1175983570\n267,1193,4.5,1175984026\n267,1208,4.0,1175984533\n267,1213,4.5,1175984414\n267,1466,3.5,1175983356\n267,2076,2.5,1175982862\n267,2236,4.5,1175983843\n267,2329,5.0,1175983999\n267,2858,5.0,1175983998\n267,2890,3.5,1175983333\n267,2915,3.5,1175982879\n267,2959,5.0,1175984003\n267,3317,4.0,1175982909\n267,3361,4.0,1175982888\n267,3404,2.0,1175983888\n267,3484,3.5,1175983818\n267,3755,3.5,1175983578\n267,4226,4.5,1175984017\n267,4878,4.0,1175984430\n267,5283,3.5,1179208425\n267,6620,3.5,1175983766\n267,7361,4.5,1175983991\n267,8784,5.0,1175982932\n267,30749,4.0,1175984410\n267,37384,4.0,1179208426\n267,46578,4.5,1175984433\n267,46976,4.0,1175984740\n267,47610,4.5,1175984755\n267,48385,3.0,1175984763\n267,48516,4.5,1175983955\n267,49272,4.0,1175984748\n267,50794,4.0,1179208359\n268,1,5.0,1314894068\n268,2,3.5,1314894727\n268,6,2.5,1314894615\n268,10,3.0,1314894283\n268,11,3.5,1314894958\n268,17,3.0,1314894685\n268,19,2.0,1314890790\n268,21,2.5,1314894611\n268,32,3.0,1314888953\n268,34,4.5,1314894252\n268,39,3.5,1314894403\n268,47,4.0,1314894139\n268,48,2.5,1314910317\n268,50,3.5,1314894111\n268,104,3.5,1314894977\n268,110,4.5,1314894053\n268,111,3.0,1314894641\n268,150,4.5,1314894059\n268,153,2.0,1314894183\n268,163,3.0,1314896717\n268,165,3.5,1314894169\n268,173,2.5,1314895511\n268,193,2.0,1314888553\n268,223,3.0,1314894682\n268,231,3.5,1314894209\n268,235,4.5,1314895152\n268,253,3.0,1314894369\n268,260,5.0,1314894051\n268,288,3.0,1314894644\n268,293,4.0,1314894647\n268,296,5.0,1314894033\n268,317,3.5,1314895149\n268,318,3.5,1314894046\n268,339,3.5,1314894618\n268,344,3.0,1314890787\n268,349,2.5,1314894243\n268,353,3.0,1314895157\n268,356,5.0,1314894036\n268,357,2.0,1314894355\n268,364,5.0,1314894166\n268,367,2.0,1314894213\n268,368,3.5,1314895059\n268,370,3.0,1314896708\n268,377,4.5,1314894132\n268,380,4.0,1314894094\n268,410,3.5,1314891057\n268,420,1.5,1314895471\n268,434,3.0,1314894397\n268,442,3.0,1314894961\n268,454,3.5,1314894401\n268,457,4.0,1314894056\n268,466,5.0,1314896742\n268,474,2.5,1314894955\n268,480,4.5,1314894043\n268,500,3.0,1314894198\n268,508,3.5,1314894915\n268,527,5.0,1314894089\n268,539,5.0,1314894344\n268,541,2.0,1314894362\n268,551,4.5,1314894889\n268,553,3.0,1314895467\n268,555,1.5,1314896714\n268,586,5.0,1314894395\n268,587,3.0,1314894324\n268,588,4.5,1314894108\n268,589,5.0,1314894063\n268,592,4.0,1314894071\n268,593,5.0,1314894039\n268,594,5.0,1314895014\n268,595,4.5,1314894172\n268,597,2.5,1314894240\n268,608,3.5,1314894119\n268,648,3.5,1314894143\n268,733,3.0,1314894249\n268,736,3.0,1314894188\n268,750,4.5,1314894755\n268,780,3.0,1314894074\n268,784,2.0,1314895488\n268,786,3.0,1314895043\n268,788,2.0,1314894880\n268,832,3.0,1314895507\n268,858,4.5,1314894164\n268,904,4.0,1314895302\n268,905,5.0,1314911211\n268,906,4.0,1314911361\n268,908,3.0,1314895349\n268,912,5.0,1314894671\n268,919,5.0,1314894696\n268,923,5.0,1314895085\n268,924,4.5,1314889053\n268,936,3.5,1314911369\n268,942,3.5,1314911238\n268,953,5.0,1314911389\n268,954,5.0,1314911286\n268,955,1.5,1314911417\n268,969,4.5,1314911267\n268,1022,4.5,1314888496\n268,1029,4.0,1314888500\n268,1036,5.0,1314894352\n268,1073,4.0,1314894304\n268,1079,5.0,1314894918\n268,1080,2.5,1314894864\n268,1089,3.0,1314894604\n268,1090,3.5,1314895481\n268,1093,4.0,1314888556\n268,1097,3.5,1314894245\n268,1099,4.0,1314911703\n268,1101,4.0,1314894808\n268,1127,5.0,1314890730\n268,1136,4.5,1314894297\n268,1148,4.0,1314910276\n268,1193,3.5,1314894327\n268,1196,5.0,1314894116\n268,1197,5.0,1314894266\n268,1198,5.0,1314894124\n268,1200,4.5,1314894432\n268,1203,5.0,1314888946\n268,1206,3.0,1314894691\n268,1208,4.0,1314894731\n268,1210,4.0,1314894077\n268,1213,3.5,1314894624\n268,1214,5.0,1314894347\n268,1219,4.0,1314894994\n268,1220,3.0,1314894882\n268,1222,4.5,1314894838\n268,1225,4.5,1314894877\n268,1230,5.0,1314895345\n268,1234,4.5,1314896739\n268,1235,4.5,1314888564\n268,1240,4.5,1314894258\n268,1242,4.0,1314911365\n268,1246,4.0,1314894909\n268,1247,4.0,1314895297\n268,1252,3.5,1314895680\n268,1258,5.0,1314894746\n268,1259,4.5,1314894845\n268,1262,4.5,1314911202\n268,1265,4.5,1314894292\n268,1266,4.5,1314911320\n268,1270,5.0,1314894135\n268,1278,5.0,1314895675\n268,1288,4.5,1314895464\n268,1291,4.5,1314894339\n268,1304,5.0,1314895342\n268,1307,5.0,1314894758\n268,1367,2.5,1314888922\n268,1370,3.0,1314895501\n268,1374,4.0,1314895330\n268,1380,4.0,1314895169\n268,1387,5.0,1314894783\n268,1391,1.5,1314895083\n268,1393,4.5,1314894702\n268,1394,3.0,1314895650\n268,1407,5.0,1314895088\n268,1485,4.0,1314895052\n268,1500,3.0,1314896734\n268,1513,3.0,1314888527\n268,1517,3.5,1314894694\n268,1527,3.0,1314894423\n268,1544,3.0,1314896754\n268,1552,3.5,1314910292\n268,1573,4.5,1314895018\n268,1580,4.0,1314894199\n268,1608,3.0,1314896751\n268,1610,3.5,1314894795\n268,1617,3.0,1314894372\n268,1625,3.5,1314895658\n268,1639,3.5,1314896721\n268,1641,2.5,1314895327\n268,1663,1.5,1314888531\n268,1676,4.0,1314895646\n268,1682,4.0,1314894707\n268,1704,4.0,1314894409\n268,1721,2.5,1314894202\n268,1732,4.5,1314894990\n268,1784,4.5,1314894760\n268,1805,3.5,1314888566\n268,1917,2.0,1314894705\n268,1923,4.0,1314894608\n268,1934,3.5,1314911604\n268,1954,2.5,1314910302\n268,1961,3.5,1314894440\n268,1968,5.0,1314894780\n268,1994,4.0,1314888503\n268,2000,4.5,1314895120\n268,2011,3.0,1314894948\n268,2012,3.0,1314894833\n268,2028,5.0,1314894180\n268,2054,3.0,1314895074\n268,2072,1.5,1314888882\n268,2080,3.5,1314911800\n268,2081,2.5,1314910284\n268,2085,4.0,1314888925\n268,2115,4.0,1314894841\n268,2124,3.0,1314891170\n268,2140,2.0,1314888560\n268,2144,2.5,1314888535\n268,2174,3.5,1314894827\n268,2194,5.0,1314895496\n268,2248,2.0,1314888506\n268,2268,3.0,1314895653\n268,2291,4.5,1314894830\n268,2302,3.0,1314896705\n268,2313,3.5,1314911350\n268,2321,4.0,1314910308\n268,2329,2.5,1314894816\n268,2352,3.0,1314911815\n268,2353,2.5,1314895669\n268,2355,3.5,1314894811\n268,2396,4.0,1314894634\n268,2398,4.5,1314911770\n268,2406,3.5,1314896747\n268,2502,2.5,1314894939\n268,2542,2.5,1314910300\n268,2571,4.5,1314894105\n268,2572,3.5,1314888908\n268,2599,3.0,1314910285\n268,2617,3.5,1314895125\n268,2628,2.0,1314894275\n268,2640,4.0,1314895291\n268,2648,4.0,1314911381\n268,2654,4.0,1314911781\n268,2683,4.0,1314894443\n268,2692,3.5,1314895295\n268,2699,3.0,1314896710\n268,2700,3.5,1314895069\n268,2706,4.5,1314894679\n268,2710,3.0,1314894872\n268,2716,4.5,1314894358\n268,2723,3.0,1314888539\n268,2762,3.5,1314894174\n268,2791,5.0,1314895010\n268,2797,4.5,1314894885\n268,2858,3.0,1314894121\n268,2916,3.5,1314894868\n268,2918,5.0,1314894752\n268,2947,4.0,1314911713\n268,2959,4.5,1314894192\n268,2968,3.5,1314888515\n268,2987,4.5,1314894740\n268,2997,2.5,1314894412\n268,3052,3.0,1314895332\n268,3082,3.0,1314888544\n268,3114,4.0,1314894724\n268,3147,4.5,1314894951\n268,3256,3.0,1314888511\n268,3363,4.0,1314911610\n268,3408,3.5,1314895324\n268,3420,2.0,1314888898\n268,3471,4.5,1314911723\n268,3481,2.5,1314895492\n268,3504,4.5,1314911257\n268,3507,4.0,1314911397\n268,3578,5.0,1314894287\n268,3623,3.0,1314895144\n268,3707,1.0,1314890079\n268,3751,3.0,1314895289\n268,3793,3.5,1314894437\n268,3897,5.0,1314895007\n268,3928,4.0,1314890336\n268,3948,4.0,1314895504\n268,3977,4.0,1314895164\n268,3986,2.5,1314889882\n268,3991,1.0,1314888931\n268,3996,4.0,1314894637\n268,4011,4.0,1314895643\n268,4022,3.5,1314895063\n268,4027,2.0,1314895056\n268,4034,3.5,1314895140\n268,4184,3.5,1314911575\n268,4226,5.0,1314894415\n268,4306,4.5,1314894322\n268,4370,2.5,1314890193\n268,4767,3.0,1314890351\n268,4878,4.5,1314895475\n268,4886,4.5,1314894768\n268,4896,2.0,1314895633\n268,4963,4.0,1314894804\n268,4973,3.5,1314894849\n268,4993,5.0,1314894255\n268,4995,4.0,1314894893\n268,5049,3.0,1314889729\n268,5349,4.0,1314894799\n268,5377,2.0,1314890536\n268,5378,3.0,1314895478\n268,5418,4.5,1314895097\n268,5445,4.0,1314894710\n268,5712,4.0,1314911806\n268,5902,4.0,1314891050\n268,5945,2.0,1314890532\n268,5952,4.5,1314894301\n268,5989,3.5,1314895636\n268,6333,5.0,1314910294\n268,6365,3.5,1314895484\n268,6377,4.5,1314894819\n268,6383,2.0,1314889027\n268,6502,4.0,1314889445\n268,6539,5.0,1314894737\n268,6711,2.0,1314910314\n268,6874,4.0,1314895000\n268,6953,3.5,1314889066\n268,6979,2.5,1314911778\n268,7073,4.5,1314911414\n268,7121,3.5,1314891042\n268,7147,4.5,1314910707\n268,7153,4.5,1314894406\n268,7293,3.0,1314889863\n268,7361,4.5,1314895003\n268,7438,5.0,1314895350\n268,7444,3.5,1314888981\n268,7706,1.5,1314911324\n268,8167,3.5,1314911403\n268,8360,4.0,1314910540\n268,8368,3.0,1314910631\n268,8492,3.0,1314911340\n268,8636,4.5,1314910305\n268,8810,1.5,1314890198\n268,8961,4.5,1314895137\n268,25750,4.5,1314911099\n268,27373,3.0,1314889871\n268,31156,3.0,1314890343\n268,31193,5.0,1314911563\n268,33493,4.0,1314910526\n268,33794,4.0,1314895638\n268,35836,5.0,1314889698\n268,43936,3.0,1314889006\n268,44191,3.5,1314910641\n268,45722,2.0,1314910610\n268,46578,3.5,1314910597\n268,47518,3.0,1314890765\n268,48516,5.0,1314910593\n268,49272,5.0,1314910688\n268,51662,4.5,1314889575\n268,52435,5.0,1314911310\n268,53000,3.5,1314889451\n268,53953,3.5,1314888991\n268,54190,3.5,1314890976\n268,54286,4.5,1314910679\n268,54997,4.0,1314889688\n268,55282,2.0,1314889570\n268,55820,5.0,1314910663\n268,56367,4.5,1314910533\n268,56949,1.5,1314889281\n268,58559,5.0,1314911074\n268,58803,3.0,1314889062\n268,59315,4.5,1314911448\n268,60487,4.5,1314911392\n268,65135,3.5,1314911295\n268,68135,3.0,1314889008\n268,68157,4.5,1314910546\n268,68358,4.5,1314910669\n268,68954,2.0,1314910600\n268,69757,4.5,1314888886\n268,72378,2.0,1314889058\n268,72998,4.5,1314910590\n268,77846,3.5,1314888951\n268,78469,3.5,1314890189\n268,78499,4.5,1314910638\n268,79132,4.5,1314910627\n268,80463,4.5,1314910685\n268,80831,4.0,1314911615\n268,81562,5.0,1314888957\n268,81845,4.0,1314910713\n268,81847,4.0,1314911569\n268,82459,5.0,1314910459\n268,83374,1.5,1314910992\n268,83613,2.0,1314910750\n268,84152,3.5,1314910798\n268,84392,3.5,1314910792\n268,84601,3.0,1314910982\n268,84615,3.0,1314910997\n268,84772,3.0,1314910836\n268,84944,4.0,1314910796\n268,84954,3.5,1314891180\n268,85022,3.0,1314911006\n268,85131,1.5,1314911002\n268,85316,4.0,1314911442\n268,85367,2.0,1314910854\n268,85397,1.0,1314911018\n268,85414,5.0,1314910481\n268,85510,0.5,1314910976\n268,85788,4.0,1314911010\n268,85796,1.5,1314910850\n268,85881,3.5,1314910832\n268,86014,3.0,1314910847\n268,86293,2.5,1314910838\n268,86835,1.5,1314911014\n268,86852,3.0,1314910842\n268,87192,3.0,1314910747\n268,87232,4.5,1314911445\n268,87306,4.5,1314910453\n268,87430,2.0,1314910767\n268,87520,2.5,1314910772\n268,87529,0.5,1314911027\n268,87869,3.5,1314910742\n268,88125,5.0,1314910435\n268,88140,3.5,1314888760\n268,88267,4.5,1314910758\n268,88405,3.5,1314910762\n268,89300,3.5,1314910607\n269,1057,3.0,883223516\n269,1183,4.0,883223543\n269,1422,3.0,883223796\n269,1464,5.0,883223660\n269,1483,2.0,883223566\n269,1584,1.0,883223474\n269,1597,4.0,883223712\n269,1614,3.0,883223712\n269,1617,5.0,883223594\n269,1619,4.0,883223474\n269,1625,4.0,883223594\n269,1639,4.0,883223594\n269,1641,5.0,883223566\n269,1645,3.0,883223618\n269,1653,3.0,883223474\n269,1667,3.0,883223660\n269,1673,4.0,883223594\n269,1676,1.0,883223686\n269,1683,4.0,883223543\n269,1687,3.0,883223712\n269,1690,3.0,883223730\n269,1711,2.0,883223796\n269,1721,4.0,883223516\n269,1722,4.0,883223594\n269,1729,4.0,883223566\n270,47,4.0,1469278482\n270,50,4.0,1469256693\n270,223,4.0,1469278482\n270,260,4.0,1469282203\n270,296,4.5,1469278482\n270,1196,4.5,1469282207\n270,1199,4.0,1469278482\n270,1208,4.0,1469278481\n270,1210,4.0,1469282204\n270,1682,4.5,1469278482\n270,1704,4.0,1469278482\n270,1732,4.5,1469278482\n270,2291,4.0,1469278482\n270,2502,4.0,1469256721\n270,2571,5.0,1469278298\n270,2712,4.0,1469278482\n270,2959,5.0,1469256684\n270,2997,4.0,1469278481\n270,3535,4.0,1469278482\n270,3793,4.0,1469305978\n270,3897,3.5,1469306009\n270,3949,5.0,1469278342\n270,4011,4.5,1469278482\n270,4226,5.0,1469278482\n270,4308,3.0,1469278482\n270,4344,2.5,1469306270\n270,4734,4.0,1469278482\n270,4878,4.0,1469256718\n270,4887,3.0,1469306892\n270,4973,4.0,1469278327\n270,4979,4.0,1469278482\n270,4993,5.0,1469278482\n270,4995,4.5,1469305964\n270,5283,2.5,1469278482\n270,5378,3.0,1469305997\n270,5445,3.5,1469305980\n270,5507,3.5,1469306365\n270,5903,4.0,1469306181\n270,5952,5.0,1469278481\n270,5991,4.0,1469306120\n270,6283,4.5,1469306790\n270,6373,2.5,1469306094\n270,6377,4.0,1469278401\n270,6537,2.5,1469306137\n270,6773,4.0,1469306646\n270,6863,3.5,1469306071\n270,6874,5.0,1469278335\n270,7153,5.0,1469305954\n270,7254,2.5,1469306080\n270,7346,1.5,1469306868\n270,7361,4.5,1469305960\n270,7371,4.0,1469306704\n270,7373,3.5,1469306252\n270,7438,4.0,1469278359\n270,7445,4.0,1469306291\n270,8641,4.0,1469278482\n270,8807,3.5,1469306513\n270,8874,5.0,1469306032\n270,27660,4.0,1469306672\n270,27904,4.0,1469306633\n270,31696,3.5,1469306300\n270,32587,4.5,1469278365\n270,33493,3.5,1469306026\n270,33794,4.0,1469305968\n270,34405,5.0,1469306118\n270,36535,3.5,1469278482\n270,44191,4.5,1469278331\n270,45720,2.5,1469306353\n270,45728,4.5,1469278482\n270,46578,4.0,1469278482\n270,47200,3.5,1469306879\n270,47997,3.5,1469306887\n270,48385,3.0,1469306108\n270,48501,4.5,1469278481\n270,48516,4.0,1469278482\n270,48774,4.5,1469306060\n270,48780,5.0,1469278388\n270,51255,5.0,1469306101\n270,51662,4.5,1469306043\n270,52281,4.5,1469306499\n270,52328,3.5,1469306720\n270,52973,3.5,1469278482\n270,52975,4.0,1469278482\n270,53519,4.5,1469306703\n270,53996,2.5,1469306211\n270,54503,3.5,1469278482\n270,54995,4.5,1469306764\n270,55118,4.0,1469306600\n270,56367,4.0,1469306039\n270,56757,4.5,1469306438\n270,57368,3.5,1469306486\n270,57640,3.5,1469306744\n270,57669,4.0,1469306240\n270,58559,4.5,1469278297\n270,59315,4.0,1469278384\n270,59387,4.5,1469278482\n270,60069,4.0,1469278482\n270,60074,3.5,1469282281\n270,60684,4.5,1469306187\n270,61132,3.0,1469306453\n270,61323,4.0,1469306324\n270,63876,4.0,1469306728\n270,66509,3.5,1469278482\n270,66934,5.0,1469306559\n270,67734,3.5,1469278482\n270,67997,4.0,1469278482\n270,68157,4.5,1469278308\n270,68237,4.5,1469306234\n270,68319,2.0,1469306470\n270,68358,3.5,1469278482\n270,68659,3.5,1469278482\n270,69122,2.5,1469306084\n270,69526,2.0,1469306772\n270,69757,3.5,1469278482\n270,70286,5.0,1469306052\n270,71535,3.5,1469306160\n270,72011,2.5,1469306435\n270,72998,3.5,1469278482\n270,73266,3.0,1469278482\n270,73881,3.0,1469278481\n270,76093,3.0,1469306154\n270,76251,4.0,1469306219\n270,77561,3.5,1469306226\n270,79132,5.0,1469278290\n270,79695,1.5,1469278482\n270,80241,3.5,1469278482\n270,80549,3.5,1469278482\n270,81132,4.0,1469278482\n270,81229,3.0,1469306780\n270,81591,4.0,1469278482\n270,86332,3.0,1469306354\n270,86833,3.0,1469278482\n270,87232,4.0,1469278482\n270,88129,4.5,1469306373\n270,88140,4.0,1469306447\n270,88163,3.5,1469278482\n270,88405,3.0,1469278482\n270,89343,4.0,1469278481\n270,89745,3.5,1469278481\n270,89804,3.5,1469278482\n270,90405,3.0,1469306909\n270,91500,3.5,1469278482\n270,91529,4.0,1469278413\n270,91542,3.0,1469278409\n270,93510,3.0,1469278482\n270,93512,3.0,1469278482\n270,93840,4.0,1469278482\n270,94466,5.0,1469278482\n270,94677,2.5,1469278482\n270,94864,2.5,1469278482\n270,94959,4.0,1469278482\n270,95088,3.5,1469278482\n270,95167,3.5,1469306801\n270,95307,3.0,1469278482\n270,95510,3.5,1469278482\n270,97752,4.5,1469278482\n270,97913,4.0,1469278482\n270,97938,3.5,1469278482\n270,98809,3.5,1469306280\n270,99007,3.5,1469278482\n270,99114,4.0,1469306058\n270,101285,3.5,1469278482\n270,101864,3.5,1469278482\n270,102123,2.5,1469278481\n270,103228,3.5,1469306914\n270,103253,3.5,1469278482\n270,103341,4.0,1469278482\n270,104243,2.5,1469278482\n270,104841,4.5,1469278482\n270,106002,3.5,1469278482\n270,106487,3.5,1469306380\n270,106489,3.0,1469306523\n270,106918,2.5,1469278482\n270,106920,4.5,1469278482\n270,107406,4.0,1469278482\n270,108548,3.0,1469278482\n270,108932,4.0,1469278482\n270,109187,4.0,1469278482\n270,109374,4.0,1469278482\n270,109487,3.5,1469278320\n270,110102,4.0,1469278482\n270,110730,2.5,1469278481\n270,111113,3.0,1469278482\n270,111360,2.0,1469278482\n270,111362,3.5,1469306386\n270,111443,3.0,1469278482\n270,111759,3.5,1469278482\n270,112175,4.0,1469278482\n270,112183,4.5,1469278482\n270,112552,4.5,1469278482\n270,112852,4.0,1469278482\n270,113345,2.5,1469278481\n270,113741,3.5,1469278481\n270,114670,3.5,1469278481\n270,114707,3.5,1469278481\n270,115122,4.0,1469278482\n270,115149,3.5,1469278482\n270,115617,3.0,1469306314\n270,115680,3.5,1469278481\n270,115713,4.5,1469306326\n270,116823,3.5,1469306794\n270,117871,3.0,1469278482\n270,118696,3.0,1469306927\n270,119141,2.0,1469278481\n270,119145,4.0,1469306627\n270,120466,2.5,1469278481\n270,122882,4.0,1469278481\n270,122886,4.0,1469256835\n270,122892,4.0,1469306620\n270,122900,4.0,1469306989\n270,122904,3.5,1469306639\n270,122920,4.0,1469256942\n270,122924,3.0,1469257690\n270,128360,4.0,1469256935\n270,134130,4.5,1469256734\n270,135133,3.0,1469257043\n270,135532,2.5,1469278255\n270,136864,3.5,1469278247\n270,138036,4.0,1469256992\n270,139620,4.0,1469278481\n270,140174,4.5,1469256806\n270,142488,4.5,1469256805\n270,147006,3.0,1469278481\n270,147010,4.0,1469278482\n270,147426,3.5,1469278481\n270,148168,4.0,1469278481\n270,149354,3.5,1469278251\n270,149572,3.0,1469278481\n270,152077,4.5,1469256986\n271,16,3.5,1107784970\n271,32,4.0,1107785074\n271,50,3.5,1107785309\n271,104,2.0,1107784941\n271,110,4.0,1107785277\n271,260,5.0,1107785257\n271,296,4.5,1107785462\n271,318,3.5,1107785267\n271,337,3.0,1107784947\n271,457,4.0,1107785365\n271,588,3.5,1107785059\n271,589,4.5,1107785209\n271,593,5.0,1107785363\n271,653,2.5,1107784933\n271,1036,4.5,1107785316\n271,1090,5.0,1107785104\n271,1101,2.0,1107784976\n271,1196,4.5,1107785247\n271,1197,5.0,1107785322\n271,1198,4.5,1107785249\n271,1200,4.5,1107785223\n271,1207,4.5,1107785119\n271,1208,4.0,1107784928\n271,1210,4.5,1107785078\n271,1220,2.5,1107784931\n271,1225,3.5,1107784925\n271,1230,2.5,1107784952\n271,1240,5.0,1107785284\n271,1270,4.0,1107785373\n271,1291,3.0,1107785259\n271,1304,3.0,1107784968\n271,1374,3.0,1107785108\n271,1375,2.0,1107785121\n271,1377,2.0,1107785126\n271,1517,4.0,1107784961\n271,1544,2.5,1107785139\n271,1552,2.5,1107785112\n271,1584,2.5,1107785114\n271,1645,2.5,1107785135\n271,1653,4.5,1107785097\n271,1674,3.5,1107785099\n271,1721,4.0,1107785056\n271,1909,2.5,1107785070\n271,1917,1.0,1107784958\n271,1923,3.5,1107785051\n271,2028,4.0,1107785352\n271,2174,4.0,1107784963\n271,2194,4.0,1107785288\n271,2329,4.0,1107785344\n271,2571,5.0,1107785202\n271,2628,2.5,1107785081\n271,2657,4.0,1107785072\n271,2761,4.5,1107785156\n271,2762,4.5,1107785271\n271,2792,4.5,1107785150\n271,2797,3.0,1107784965\n271,2985,3.5,1107785085\n271,3114,4.0,1107785356\n271,3578,5.0,1107785369\n271,3623,3.0,1107785062\n271,3793,4.5,1107784978\n271,4306,4.0,1107784974\n271,4993,4.0,1107785205\n271,5060,2.5,1107785048\n271,5464,4.5,1107785228\n271,5782,4.5,1107785230\n271,5952,4.5,1107785192\n271,6333,4.5,1107785189\n271,7153,5.0,1107785199\n271,8360,4.5,1107785226\n271,8636,5.0,1107785252\n271,8961,4.5,1107785303\n272,1,4.0,1453587590\n272,260,4.0,1453587427\n272,480,3.5,1453587581\n272,592,4.0,1453587590\n272,1198,4.0,1453587430\n272,1291,3.5,1453587425\n272,2115,4.0,1453587725\n272,3793,4.0,1453587646\n272,4232,3.5,1453588341\n272,4367,4.0,1453588084\n272,4993,5.0,1453587484\n272,5218,3.0,1453588567\n272,5349,3.5,1453587657\n272,5504,3.5,1453588363\n272,6333,4.0,1453587595\n272,8636,3.5,1453587659\n272,8972,5.0,1453588033\n272,33794,4.0,1453587488\n272,72641,3.5,1453587626\n272,78637,3.5,1453588161\n272,81847,2.0,1453588596\n272,87232,4.0,1453587592\n272,88125,4.0,1453588432\n272,89745,4.0,1453587605\n272,94777,1.5,1453588079\n272,95510,5.0,1453587730\n272,96079,4.5,1453587601\n272,98243,4.0,1453588466\n272,99112,3.0,1453588317\n272,106489,5.0,1453587667\n272,110102,3.0,1453587500\n272,110553,4.0,1453588128\n272,111362,3.5,1453587636\n272,112852,4.0,1453587461\n272,115617,4.0,1453587598\n272,119145,0.5,1453587712\n272,122892,3.5,1453587581\n272,122900,5.0,1453588217\n272,134853,3.5,1453588608\n273,1,4.5,1466945564\n273,150,3.5,1466946012\n273,260,5.0,1466944219\n273,296,4.5,1466945278\n273,593,4.0,1466945260\n273,778,4.0,1466945135\n273,919,5.0,1466945800\n273,1136,4.5,1466945795\n273,1196,5.0,1466945401\n273,1197,4.5,1466945739\n273,1210,5.0,1466945449\n273,1240,3.5,1466945585\n273,1270,4.0,1466945568\n273,1291,4.5,1466945465\n273,1907,4.5,1466945943\n273,2571,5.0,1466945253\n273,2596,5.0,1466945158\n273,2657,5.0,1466944127\n273,2762,4.0,1466945778\n273,2918,4.0,1466945591\n273,2959,5.0,1466945043\n273,3114,4.5,1466945635\n273,3793,5.0,1466946283\n273,4246,3.0,1466946018\n273,4306,4.5,1466945557\n273,4878,5.0,1466945200\n273,4886,5.0,1466945825\n273,4896,4.5,1466946192\n273,4993,5.0,1466945414\n273,5349,4.0,1466946226\n273,5378,4.0,1466946309\n273,5816,4.5,1466946328\n273,5952,5.0,1466945451\n273,6333,4.5,1466946325\n273,6365,4.5,1466946298\n273,6377,4.0,1466945578\n273,6539,4.5,1466945638\n273,6874,4.0,1466945272\n273,6934,4.5,1466946353\n273,7153,5.0,1466945514\n273,8360,4.0,1466946337\n273,8368,5.0,1466945895\n273,8874,5.0,1466945832\n273,8961,4.5,1466945632\n273,31696,4.0,1466945997\n273,33493,4.0,1466946347\n273,33794,4.0,1466945815\n273,39183,4.0,1466944177\n273,40815,4.5,1466946217\n273,44191,5.0,1466945265\n273,51255,4.5,1466945743\n273,54259,5.0,1466944394\n273,58559,5.0,1466945256\n273,59315,4.0,1466946117\n273,61024,3.5,1466944347\n273,68157,4.0,1466945879\n273,68358,4.0,1466945835\n273,69844,4.5,1466945955\n273,72998,3.0,1466946101\n273,73017,4.0,1466946186\n273,74458,3.5,1466945436\n273,78499,4.5,1466945865\n273,79132,4.5,1466945458\n273,80463,4.0,1466946208\n273,81834,4.5,1466945936\n273,88125,4.5,1466946198\n273,89745,3.5,1466945274\n273,91500,5.0,1466946157\n273,91529,4.0,1466946111\n273,93510,4.0,1466944248\n273,96821,4.5,1466944067\n273,99149,5.0,1466944089\n273,102123,4.5,1466944296\n273,103228,4.0,1466944108\n273,104841,1.0,1466946176\n273,105593,4.0,1466945121\n273,107083,4.0,1466945061\n273,107516,3.5,1466945170\n273,109374,4.5,1466946145\n273,109487,3.5,1466945404\n273,110102,4.5,1466945287\n273,112852,4.0,1466945267\n273,114028,5.0,1466944538\n273,115617,4.0,1466945975\n273,115713,4.0,1466946122\n273,116660,4.0,1466944163\n273,119141,3.5,1466944327\n273,119145,4.5,1466945283\n273,122882,5.0,1466946086\n273,122886,5.0,1466945263\n273,122892,3.0,1466945289\n273,122904,5.0,1466944501\n274,22,2.5,1074104221\n274,198,3.5,1074104320\n274,293,4.0,1074104702\n274,296,4.0,1074104982\n274,319,4.0,1074104970\n274,342,3.5,1074104164\n274,345,2.5,1074104302\n274,471,5.0,1074104142\n274,543,2.5,1074104236\n274,555,3.5,1074104991\n274,608,5.0,1074105023\n274,778,4.0,1074105201\n274,866,3.5,1074105139\n274,1089,4.0,1074105193\n274,1199,4.0,1074104212\n274,1215,4.0,1074105147\n274,1241,4.0,1074105555\n274,1242,3.0,1074104223\n274,1449,4.0,1074105144\n274,1500,3.0,1074104718\n274,1653,4.0,1074104999\n274,1676,3.0,1074104182\n274,1682,3.0,1074104722\n274,1732,5.0,1074105318\n274,2012,3.5,1074104140\n274,2054,3.0,1074104312\n274,2268,2.0,1074104150\n274,2502,3.0,1074104860\n274,2617,2.5,1074104277\n274,2858,3.5,1074104867\n274,2890,4.5,1074104842\n274,2959,4.0,1074104698\n274,2997,3.5,1074105003\n274,3265,3.5,1074105196\n274,3471,2.0,1074104310\n274,3481,4.0,1074104265\n274,3897,3.5,1074104209\n274,4306,3.0,1074104286\n274,6242,3.5,1074104716\n275,1,5.0,1350254117\n275,3,4.0,1326919897\n275,16,4.5,1350771182\n275,39,4.5,1386885563\n275,50,3.5,1350771191\n275,101,4.5,1371674285\n275,110,5.0,1345335389\n275,231,5.0,1386885382\n275,293,5.0,1345335285\n275,333,4.5,1386885747\n275,344,4.5,1386885314\n275,356,5.0,1345335302\n275,364,5.0,1371674366\n275,367,5.0,1386885365\n275,377,4.0,1350771098\n275,441,5.0,1326920022\n275,457,4.5,1350168624\n275,480,5.0,1350254126\n275,500,5.0,1386885370\n275,585,3.5,1326919961\n275,589,5.0,1351543308\n275,608,4.0,1350771037\n275,648,4.5,1386885337\n275,745,4.5,1350254094\n275,785,3.5,1326919944\n275,858,4.5,1386885318\n275,1042,4.0,1326919987\n275,1059,3.5,1326919968\n275,1060,5.0,1345335454\n275,1198,5.0,1386885327\n275,1240,4.0,1350771042\n275,1252,4.5,1386885657\n275,1265,5.0,1345335901\n275,1270,5.0,1326920449\n275,1307,4.5,1350259146\n275,1377,3.0,1326919921\n275,1408,4.5,1326919926\n275,1580,4.0,1350770379\n275,1673,5.0,1386885633\n275,1682,4.5,1345335293\n275,1704,4.5,1350259082\n275,1721,4.5,1386885373\n275,1954,4.5,1350254104\n275,1968,4.5,1386885546\n275,2011,5.0,1326920455\n275,2012,4.0,1326920455\n275,2109,4.0,1326920482\n275,2248,4.0,1326919981\n275,2355,4.5,1350771277\n275,2395,5.0,1326919911\n275,2424,4.0,1326919937\n275,2502,5.0,1351543171\n275,2541,3.5,1326919998\n275,2542,5.0,1345335913\n275,2571,5.0,1386885296\n275,2580,5.0,1326920009\n275,2581,5.0,1386885596\n275,2599,4.5,1350254060\n275,2762,4.0,1350771254\n275,2797,5.0,1350259230\n275,2858,5.0,1386885308\n275,2959,4.0,1345335269\n275,3114,4.5,1350254079\n275,3275,2.0,1353286828\n275,3363,4.0,1326920054\n275,3424,4.5,1381961147\n275,3450,4.5,1386885584\n275,3481,4.5,1350771159\n275,3556,5.0,1386885010\n275,3578,5.0,1350771293\n275,3752,3.5,1326920049\n275,3755,4.0,1326919957\n275,3793,4.5,1351543174\n275,3809,5.0,1386885198\n275,3897,5.0,1386885542\n275,3911,5.0,1350259368\n275,4022,4.5,1351542534\n275,4226,3.0,1353286899\n275,4239,4.5,1326920778\n275,4896,4.5,1353286786\n275,4963,4.5,1353286821\n275,4979,5.0,1351543828\n275,4995,4.5,1327440923\n275,5620,5.0,1386885838\n275,5816,5.0,1353286775\n275,5989,4.5,1351543214\n275,6016,5.0,1345335280\n275,6378,4.0,1381961196\n275,6539,5.0,1353286782\n275,6711,5.0,1345335189\n275,6796,4.5,1359760280\n275,6953,1.5,1345335835\n275,7147,5.0,1350259110\n275,8368,4.5,1353277752\n275,8638,4.5,1351542479\n275,8784,5.0,1350259388\n275,8949,5.0,1345335817\n275,8958,4.5,1351543833\n275,8961,4.0,1386885513\n275,30810,5.0,1326920440\n275,32587,3.0,1350771075\n275,33660,4.5,1345335473\n275,33794,5.0,1345335262\n275,34437,4.5,1345335727\n275,38038,4.5,1351543840\n275,38886,4.0,1353277847\n275,40815,5.0,1353286758\n275,40819,5.0,1350259160\n275,41997,4.0,1358383872\n275,46578,4.0,1350771338\n275,47610,5.0,1351543154\n275,48082,3.0,1350771167\n275,48516,5.0,1353286811\n275,48774,3.5,1353286883\n275,49272,5.0,1353286876\n275,49530,4.5,1351543018\n275,50872,5.0,1351543226\n275,54001,5.0,1358383827\n275,54281,4.0,1326920688\n275,54881,5.0,1353286848\n275,55269,4.5,1350259291\n275,56367,4.0,1350259185\n275,56782,4.5,1350771082\n275,58559,5.0,1345335392\n275,58998,5.0,1386885768\n275,59141,3.5,1326920730\n275,59273,5.0,1381964451\n275,59315,4.0,1351543301\n275,60128,4.0,1326920751\n275,60293,4.5,1326920641\n275,60763,4.5,1326920666\n275,63082,4.5,1345335398\n275,64614,4.0,1353286835\n275,64620,4.0,1351543223\n275,64839,4.5,1350771284\n275,67255,0.5,1345335307\n275,68358,4.5,1351543305\n275,68954,5.0,1353277859\n275,69481,4.5,1345335318\n275,69640,4.0,1326920816\n275,69757,4.5,1350259215\n275,69844,5.0,1353286742\n275,71535,4.0,1345335907\n275,71579,5.0,1350771103\n275,72011,4.5,1351543250\n275,72226,5.0,1345335873\n275,72641,4.5,1371674413\n275,73023,4.0,1353286841\n275,73266,5.0,1371670866\n275,74152,5.0,1350259280\n275,74324,4.5,1327440927\n275,77455,4.0,1358383896\n275,77561,4.0,1386885761\n275,78499,5.0,1351543165\n275,79091,4.5,1381961103\n275,79132,4.0,1345335464\n275,79318,4.0,1351542501\n275,80463,5.0,1345335257\n275,80489,4.5,1351543209\n275,80906,5.0,1358383973\n275,81834,4.5,1358383856\n275,81845,4.5,1345335356\n275,81847,5.0,1351543373\n275,81932,4.5,1326920375\n275,82459,4.5,1345335343\n275,86000,4.5,1386885137\n275,86345,5.0,1345335812\n275,86347,5.0,1326921348\n275,86377,5.0,1326921353\n275,87232,4.5,1345335380\n275,88125,5.0,1351543326\n275,88163,5.0,1381961132\n275,88744,4.5,1326920562\n275,88810,5.0,1350771155\n275,89492,5.0,1326920514\n275,89745,4.5,1351810750\n275,89804,3.0,1345335251\n275,91500,4.0,1351810736\n275,92535,4.5,1350259287\n275,93324,5.0,1371674451\n275,93840,3.0,1351821321\n275,94959,5.0,1350259077\n275,95088,5.0,1351542680\n275,95135,3.5,1351810763\n275,96079,4.5,1358383747\n275,96821,4.0,1371674312\n275,96911,5.0,1386885104\n275,97057,5.0,1386885163\n275,97304,5.0,1352512305\n275,97921,5.0,1358383729\n275,97938,4.0,1386885446\n275,98154,4.0,1358383715\n275,98961,4.5,1358383700\n275,99114,4.5,1358383738\n275,100383,4.5,1381961186\n275,101525,4.0,1371671034\n275,102125,3.5,1371671053\n275,102194,5.0,1386885118\n275,102445,5.0,1371670853\n275,102993,3.0,1386885075\n275,104841,4.0,1386884994\n275,105504,5.0,1386885060\n276,70,3.0,1321811946\n276,153,1.5,1321812623\n276,168,1.5,1321811950\n276,186,3.0,1321811967\n276,592,4.0,1321812611\n276,673,2.0,1321812008\n276,762,0.5,1321811980\n276,785,4.0,1321811983\n276,1129,4.0,1321812019\n276,1215,3.0,1321811959\n276,1377,4.5,1321812626\n276,1408,3.5,1321811954\n276,1562,1.0,1321812024\n276,1690,3.0,1321811986\n276,1747,4.0,1321811989\n276,1909,2.0,1321811964\n276,2294,3.5,1321811998\n276,2804,3.0,1321811943\n276,3213,4.0,1321812631\n276,4085,3.0,1321812000\n276,33794,2.5,1321812615\n277,110,5.0,1463682624\n277,260,5.0,1463682031\n277,318,5.0,1463682021\n277,356,5.0,1463682667\n277,377,4.0,1463684165\n277,589,4.0,1463916676\n277,858,5.0,1463682028\n277,1036,5.0,1463682627\n277,1200,4.0,1463916672\n277,1210,5.0,1463682619\n277,1221,5.0,1469118324\n277,1527,5.0,1463683189\n277,1573,5.0,1463684159\n277,1954,5.0,1463684152\n277,2028,5.0,1463682596\n277,2571,5.0,1463916097\n277,3948,3.5,1463684243\n277,5618,5.0,1463916250\n277,5971,5.0,1463916362\n277,6365,5.0,1463684155\n277,8644,4.0,1463684224\n277,31658,4.5,1469118379\n277,50872,4.0,1463916549\n277,58559,3.0,1463682036\n277,77561,4.0,1463916139\n277,82461,2.0,1463916752\n277,91500,3.0,1463916154\n277,98809,3.5,1463916145\n277,104283,4.0,1463916473\n277,109487,5.0,1466953538\n277,115713,4.0,1469118331\n277,117529,3.0,1463682504\n277,120799,4.0,1463682540\n277,122882,5.0,1466583462\n277,122890,5.0,1466583410\n277,122900,4.0,1463682464\n277,122904,2.0,1463682408\n277,122920,2.5,1463682451\n277,132046,3.5,1463916811\n277,133195,3.0,1463682552\n277,134130,5.0,1463682007\n277,134393,3.0,1463682527\n277,134853,4.0,1463682434\n277,136016,4.0,1463682513\n277,136020,3.5,1463682498\n277,136598,2.0,1463682523\n277,136864,2.5,1463682554\n277,138036,4.0,1463682455\n277,139385,3.0,1466953550\n277,140110,4.0,1463682456\n277,140711,3.5,1463682537\n277,141688,2.5,1463682489\n277,146309,4.0,1463916694\n277,148626,3.5,1463682406\n277,149352,3.0,1463682545\n277,149406,4.0,1463682492\n277,150548,4.0,1463682440\n277,159093,3.0,1466684839\n278,80,5.0,984560692\n278,111,4.0,984560713\n278,260,2.0,984560555\n278,296,4.0,984560785\n278,401,4.0,984560555\n278,541,4.0,984561062\n278,549,3.0,984560525\n278,586,2.0,984560555\n278,615,3.0,984560713\n278,670,4.0,984560765\n278,750,4.0,984560849\n278,759,5.0,984560651\n278,899,3.0,984560882\n278,908,5.0,984560806\n278,909,4.0,984561010\n278,910,5.0,984560849\n278,912,4.0,984560868\n278,919,5.0,984560940\n278,920,3.0,984560976\n278,923,4.0,984560692\n278,936,4.0,984561010\n278,945,4.0,984560765\n278,971,4.0,984561079\n278,1084,5.0,984560806\n278,1104,3.0,984560976\n278,1225,4.0,984560806\n278,1228,5.0,984560940\n278,1244,2.0,984560923\n278,1247,5.0,984560785\n278,1252,3.0,984560744\n278,1303,2.0,984560960\n278,1304,2.0,984560849\n278,1617,3.0,984560868\n278,1734,2.0,984560992\n278,1900,4.0,984560923\n278,1960,4.0,984561062\n278,1961,4.0,984560525\n278,2064,4.0,984560555\n278,2313,3.0,984561079\n278,2396,3.0,984560849\n278,2732,3.0,984560849\n278,2804,4.0,984560940\n278,2908,3.0,984561118\n278,2973,3.0,984560923\n278,2997,2.0,984561027\n278,3362,4.0,984560621\n278,3405,4.0,984560868\n278,3469,5.0,984561062\n278,3504,3.0,984560923\n278,3735,4.0,984561062\n278,4117,5.0,984560744\n278,4174,3.0,984560692\n278,4178,3.0,984560668\n279,2,3.0,838231842\n279,10,3.0,838231354\n279,21,1.0,838231505\n279,34,3.0,838231458\n279,47,3.0,838231458\n279,50,5.0,838231549\n279,110,4.0,838231410\n279,150,4.0,838231079\n279,151,3.0,838231842\n279,153,2.0,838231182\n279,160,2.0,838231550\n279,161,3.0,838231315\n279,165,3.0,838231181\n279,173,2.0,838231656\n279,185,3.0,838231354\n279,196,3.0,838231842\n279,225,3.0,838231506\n279,231,3.0,838231264\n279,236,4.0,838231729\n279,252,2.0,838231842\n279,253,2.0,838231354\n279,266,3.0,838231597\n279,282,3.0,838231729\n279,292,5.0,838231315\n279,296,2.0,838231079\n279,316,3.0,838231264\n279,317,2.0,838231505\n279,318,5.0,838231264\n279,329,3.0,838231264\n279,339,3.0,838231354\n279,349,3.0,838231181\n279,350,3.0,838231779\n279,356,5.0,838231410\n279,364,3.0,838231458\n279,367,1.0,838231505\n279,377,4.0,838231597\n279,380,4.0,838231079\n279,420,2.0,838231550\n279,432,2.0,838231597\n279,434,3.0,838231315\n279,440,3.0,838231656\n279,454,3.0,838231458\n279,457,5.0,838231316\n279,480,5.0,838231458\n279,500,3.0,838231656\n279,527,5.0,838231656\n279,539,4.0,838231729\n279,553,3.0,838231779\n279,586,3.0,838231729\n279,587,5.0,838231729\n279,588,4.0,838231181\n279,589,4.0,838231550\n279,590,4.0,838231079\n279,592,2.0,838231079\n279,593,4.0,838231315\n279,595,2.0,838231264\n279,597,3.0,838231779\n280,11,3.0,905583247\n280,17,5.0,905583247\n280,28,5.0,905583453\n280,58,4.0,905583509\n280,260,5.0,905583279\n280,380,4.0,905583581\n280,838,5.0,905583581\n280,1094,5.0,905583550\n280,1172,5.0,905583610\n280,1183,5.0,905583305\n280,1196,5.0,905583305\n280,1393,5.0,905583509\n280,1408,4.0,905583509\n280,1479,4.0,905583247\n280,1639,4.0,905583305\n280,1721,5.0,905583279\n280,1907,4.0,905582830\n280,1911,3.0,905582885\n280,1917,4.0,905582830\n280,1920,3.0,905582906\n280,2006,4.0,905582728\n280,2059,4.0,905582885\n281,150,3.5,1113685111\n281,153,3.0,1113685151\n281,231,3.0,1113685242\n281,260,4.0,1113685117\n281,296,4.5,1113685080\n281,344,2.5,1113685165\n281,356,3.5,1113685087\n281,367,4.5,1113685237\n281,380,3.5,1113685189\n281,457,3.5,1113685097\n281,480,4.0,1113685093\n281,509,4.5,1113684414\n281,527,5.0,1113684695\n281,589,4.5,1113685184\n281,590,4.0,1113685105\n281,592,3.5,1113685101\n281,593,4.0,1113685084\n281,597,4.0,1113685246\n281,608,4.5,1113685168\n281,648,3.0,1113685156\n281,780,2.0,1113685177\n281,858,4.0,1113685250\n281,899,4.5,1113683955\n281,903,5.0,1113683845\n281,904,4.5,1113684621\n281,908,4.5,1113684731\n281,912,5.0,1113684673\n281,919,5.0,1113684783\n281,922,3.0,1113796492\n281,923,5.0,1113684869\n281,969,4.5,1113796473\n281,1084,4.0,1113683918\n281,1088,4.0,1113683947\n281,1193,4.5,1113684714\n281,1198,4.0,1113684625\n281,1204,5.0,1113683825\n281,1207,3.5,1113684629\n281,1219,5.0,1113684735\n281,1234,3.5,1113684852\n281,1250,5.0,1113683853\n281,1252,4.0,1113796602\n281,1262,4.5,1113684470\n281,1270,5.0,1113685226\n281,1272,4.5,1113684879\n281,1276,4.5,1113683902\n281,1282,4.5,1113683908\n281,1293,4.5,1113683971\n281,1304,3.5,1113684837\n281,1371,4.0,1113683934\n281,1375,3.0,1113683889\n281,2019,5.0,1113683978\n281,2028,4.0,1113685232\n281,2080,4.0,1113683987\n281,2167,3.5,1113683944\n281,2571,3.0,1113685228\n281,2858,4.5,1113685254\n281,3101,4.0,1113683878\n281,3468,3.0,1113684606\n281,3801,4.0,1113684648\n281,4178,4.0,1113684760\n281,4297,4.5,1113684252\n281,4327,3.0,1113684496\n281,4422,4.0,1113684035\n281,5291,3.0,1113684602\n281,5349,2.5,1113683884\n281,5899,4.0,1113684687\n281,5995,4.0,1113684793\n281,6777,4.0,1113684499\n281,6986,4.5,1113684563\n281,7062,4.0,1113684855\n281,7086,3.0,1113796611\n281,7087,5.0,1113684319\n281,7091,3.0,1113796482\n281,7156,4.0,1113796509\n281,7840,4.0,1113684677\n281,7941,4.0,1113684719\n281,7944,4.5,1113684269\n281,8228,4.0,1113684458\n281,8492,4.0,1113684639\n281,8961,3.5,1113684575\n281,8989,3.0,1113684531\n281,26131,3.5,1113684634\n282,1,4.0,1111493773\n282,10,3.0,1111493968\n282,22,3.0,1111492748\n282,32,3.5,1111493903\n282,110,4.5,1111493409\n282,150,4.5,1111493750\n282,165,4.0,1111493905\n282,260,4.5,1111493758\n282,296,3.5,1111494067\n282,318,5.0,1111493752\n282,349,4.0,1111493904\n282,356,4.5,1111493734\n282,377,3.5,1111493903\n282,380,3.0,1111493762\n282,457,4.0,1111493740\n282,474,3.5,1111611669\n282,480,3.0,1111493738\n282,500,3.5,1111493971\n282,508,4.0,1111612319\n282,524,5.0,1111494667\n282,527,5.0,1111494608\n282,553,3.5,1111611753\n282,589,2.0,1111493765\n282,590,3.0,1111493747\n282,592,2.5,1111493743\n282,593,4.0,1111493731\n282,597,1.5,1111494131\n282,648,4.0,1111493904\n282,736,3.5,1111493942\n282,780,2.0,1111493768\n282,1036,4.5,1111494376\n282,1084,2.0,1111493035\n282,1097,4.0,1111611848\n282,1136,4.5,1111612285\n282,1196,3.0,1111493905\n282,1197,4.0,1111494870\n282,1198,5.0,1111493949\n282,1210,4.0,1111494400\n282,1240,3.0,1111494532\n282,1242,4.0,1111611347\n282,1250,4.0,1111492923\n282,1259,5.0,1111494823\n282,1262,4.0,1111494714\n282,1270,3.5,1111493952\n282,1285,2.0,1111612891\n282,1291,4.5,1111494373\n282,1302,3.5,1111494581\n282,1375,1.5,1111492965\n282,1380,0.5,1111611984\n282,1381,0.5,1111611985\n282,1573,3.0,1111494009\n282,1580,2.0,1111612269\n282,1610,4.0,1111494390\n282,1625,2.5,1111492754\n282,1641,1.5,1111493398\n282,1673,3.0,1111492721\n282,1674,3.5,1111494119\n282,1704,4.5,1111494474\n282,1722,3.0,1111493065\n282,1729,2.5,1111612444\n282,1777,4.0,1111493068\n282,1784,3.0,1111494620\n282,1876,3.5,1111493045\n282,1917,3.5,1111493354\n282,1961,3.5,1111494722\n282,2000,4.5,1111494378\n282,2001,4.0,1111493374\n282,2012,3.5,1111493425\n282,2028,5.0,1111494392\n282,2194,3.5,1111494407\n282,2268,4.0,1111493389\n282,2617,3.0,1111493382\n282,2628,3.5,1111494028\n282,2671,4.0,1111494018\n282,2683,5.0,1111493358\n282,2706,4.5,1111612254\n282,2716,4.0,1111494573\n282,2762,5.0,1111494381\n282,2770,3.5,1111493040\n282,2797,4.5,1111494612\n282,2858,2.5,1111493384\n282,2916,3.5,1111612290\n282,2944,3.5,1111611630\n282,2959,0.5,1111493370\n282,2968,4.5,1111612412\n282,3039,4.5,1111494570\n282,3098,3.5,1111494746\n282,3105,3.5,1111611804\n282,3107,3.5,1111494022\n282,3114,4.0,1111494476\n282,3147,5.0,1111493377\n282,3256,4.5,1111494428\n282,3408,4.0,1111493390\n282,3418,1.5,1111494133\n282,3421,4.0,1111612386\n282,3578,4.0,1111494384\n282,3623,4.0,1111492930\n282,3753,4.0,1111612243\n282,3861,5.0,1111494658\n282,3916,5.0,1111494397\n282,3977,4.0,1111492948\n282,3996,4.0,1111612250\n282,4085,4.0,1111494520\n282,4095,4.0,1111611719\n282,4223,4.0,1111611759\n282,4306,5.0,1111494513\n282,4308,0.5,1111612378\n282,4326,3.5,1111611717\n282,4447,3.5,1111494001\n282,4474,0.5,1111611971\n282,4623,4.0,1111612345\n282,4776,2.0,1111612321\n282,4963,3.0,1111494724\n282,4993,5.0,1111493366\n282,4995,4.0,1111494541\n282,5418,4.5,1111494537\n282,5445,3.0,1111493061\n282,5952,5.0,1111494480\n282,5989,5.0,1111494440\n282,6378,3.5,1111494604\n282,6539,4.5,1111494432\n282,7143,4.0,1111494395\n282,7153,5.0,1111494436\n282,7386,2.5,1111494564\n282,8360,4.5,1111494517\n282,8493,4.0,1111494552\n282,8665,4.5,1111494566\n283,1,3.0,1114997963\n283,7,3.5,1114998425\n283,17,2.5,1131817444\n283,32,4.0,1114998004\n283,36,3.0,1130008541\n283,47,3.0,1114998051\n283,50,4.0,1114998027\n283,58,4.0,1114524529\n283,105,3.0,1114524648\n283,150,4.0,1114997929\n283,265,4.0,1114998488\n283,288,3.5,1114998218\n283,296,4.5,1114524964\n283,318,4.5,1130008264\n283,350,2.0,1114524422\n283,356,5.0,1114997505\n283,357,3.5,1114998133\n283,364,3.5,1114998057\n283,457,3.5,1114997517\n283,475,4.5,1114998800\n283,480,3.0,1114997513\n283,508,4.5,1114998309\n283,527,5.0,1114525108\n283,586,2.0,1114998225\n283,587,3.5,1114998124\n283,590,3.0,1114997529\n283,593,2.0,1114525187\n283,597,3.5,1114998087\n283,608,4.0,1155839448\n283,720,5.0,1114524946\n283,745,5.0,1131817049\n283,778,4.0,1114525176\n283,780,2.5,1114997972\n283,923,1.5,1114524519\n283,1087,4.5,1115175148\n283,1101,0.5,1114524497\n283,1132,3.0,1131817348\n283,1136,3.5,1125935559\n283,1148,4.5,1118808261\n283,1172,3.5,1114524745\n283,1183,4.5,1114998356\n283,1223,5.0,1125935537\n283,1245,4.0,1131817379\n283,1246,4.5,1114524474\n283,1267,3.0,1148749025\n283,1270,3.5,1114998075\n283,1271,3.5,1114998876\n283,1293,4.5,1165209763\n283,1569,2.5,1114998807\n283,1641,4.5,1114998457\n283,1645,3.0,1114998757\n283,1682,5.0,1114998468\n283,1704,3.5,1150010367\n283,1721,2.0,1114998195\n283,1729,4.0,1114998828\n283,1732,4.5,1114524575\n283,1734,2.5,1165210633\n283,1784,5.0,1114998330\n283,1961,3.5,1114998256\n283,2324,5.0,1114524918\n283,2355,3.0,1155839530\n283,2357,5.0,1115175301\n283,2396,3.5,1114998228\n283,2539,3.5,1114524787\n283,2571,2.5,1165210432\n283,2585,4.0,1115170361\n283,2671,3.0,1114998706\n283,2692,3.5,1150010277\n283,2706,1.5,1114998385\n283,2762,3.0,1114998166\n283,2858,5.0,1114524907\n283,2997,4.5,1114525034\n283,3083,4.0,1115170155\n283,3160,4.0,1114524700\n283,3246,4.0,1165209888\n283,3418,2.5,1114524662\n283,3677,5.0,1115174953\n283,3746,5.0,1115175139\n283,3751,4.5,1114998516\n283,3897,2.5,1114998502\n283,3911,4.0,1114524766\n283,3948,3.5,1114998734\n283,3967,3.5,1150010523\n283,3992,2.0,1131817540\n283,4034,4.0,1114524613\n283,4151,4.5,1115169902\n283,4226,4.5,1114525087\n283,4235,5.0,1114525005\n283,4246,2.5,1114998908\n283,4306,4.0,1114524455\n283,4384,4.5,1115174498\n283,4848,1.5,1118808096\n283,4886,4.5,1114998681\n283,4963,3.5,1114998717\n283,4973,5.0,1114524870\n283,4995,4.0,1114998778\n283,5135,3.0,1165210576\n283,5225,4.5,1125935588\n283,5319,4.5,1115175324\n283,5418,3.5,1115175068\n283,5446,4.0,1118808021\n283,5607,4.0,1171172693\n283,5618,4.0,1114524984\n283,5669,4.5,1114524929\n283,5791,3.5,1131817416\n283,5878,4.5,1115170181\n283,5902,4.0,1115169964\n283,5995,5.0,1155839364\n283,6016,5.0,1114524902\n283,6218,3.5,1165209913\n283,6296,3.0,1115170015\n283,6370,3.5,1131817405\n283,6377,4.0,1114524769\n283,6385,3.5,1114524934\n283,6538,2.0,1115169869\n283,6539,2.5,1165210550\n283,6711,4.0,1114525026\n283,6869,5.0,1115170214\n283,6870,3.0,1131817095\n283,6874,4.5,1125935614\n283,6953,2.0,1131817331\n283,6954,4.5,1114524916\n283,7090,4.0,1114525018\n283,7139,2.0,1114998976\n283,7153,2.5,1165210601\n283,7177,4.0,1165210668\n283,7254,1.0,1115174534\n283,7256,3.5,1125935442\n283,7323,4.0,1155839440\n283,7361,5.0,1114524938\n283,7438,4.5,1114524976\n283,7456,4.5,1115175359\n283,7459,5.0,1115170328\n283,8464,2.5,1114525141\n283,8622,4.0,1115170233\n283,8638,4.5,1114525169\n283,8645,4.5,1148748944\n283,8665,3.0,1115175071\n283,8784,3.5,1114524888\n283,8873,5.0,1114524891\n283,8907,2.0,1115169611\n283,8910,3.5,1115169940\n283,8949,4.5,1114525155\n283,8951,4.0,1172207440\n283,8961,4.5,1114525097\n283,8966,4.5,1125935620\n283,8970,3.0,1118808697\n283,8973,3.5,1115169781\n283,26131,4.0,1165210295\n283,27773,1.0,1125935408\n283,27783,4.0,1155839505\n283,27803,5.0,1130007962\n283,27808,3.0,1118808604\n283,27815,2.5,1130008022\n283,27846,4.5,1148748989\n283,27878,3.0,1165210398\n283,30749,5.0,1148748930\n283,30793,3.0,1130008053\n283,30825,3.5,1115170266\n283,31878,4.5,1117946090\n283,32031,3.5,1131817120\n283,32170,1.5,1165209969\n283,32587,3.5,1125935473\n283,33004,4.5,1117946157\n283,33166,4.5,1148749344\n283,33493,1.5,1117946183\n283,34048,3.0,1125935738\n283,34072,5.0,1131817076\n283,34198,3.0,1165209937\n283,36276,2.5,1165210244\n283,36517,4.0,1150010254\n283,37240,4.5,1155839349\n283,38038,5.0,1131817053\n283,39183,4.5,1150010196\n283,39292,5.0,1150010225\n283,40583,4.5,1148749202\n283,41285,2.5,1148749265\n283,41527,5.0,1148749052\n283,41571,3.0,1165210488\n283,41997,5.0,1148749076\n283,42004,4.0,1150010240\n283,44191,4.5,1148749274\n283,44195,4.0,1171172978\n283,45950,4.5,1171172704\n283,46530,1.5,1152591008\n283,46578,4.5,1171172715\n283,46723,4.5,1171172769\n283,48385,3.5,1165209831\n283,48394,3.0,1171172041\n284,1,3.0,853878868\n284,3,3.0,853878917\n284,5,4.0,853878917\n284,6,5.0,853878917\n284,7,1.0,853878917\n284,12,1.0,853879034\n284,14,3.0,853878955\n284,17,1.0,853878869\n284,25,3.0,853878869\n284,32,4.0,853878868\n284,36,4.0,853878917\n284,62,3.0,853878869\n284,76,3.0,853879090\n284,78,2.0,853879320\n284,79,5.0,853878994\n284,81,3.0,853879165\n284,86,4.0,853879130\n284,95,3.0,853878868\n284,100,5.0,853879034\n284,103,4.0,853879267\n284,107,2.0,853879034\n284,140,3.0,853878994\n284,376,3.0,853878917\n284,494,3.0,853878917\n284,608,4.0,853878917\n284,628,5.0,853878994\n284,640,4.0,853879064\n284,648,4.0,853878868\n284,653,3.0,853878955\n284,694,2.0,853879165\n284,719,3.0,853879034\n284,733,5.0,853878917\n284,742,2.0,853879320\n284,761,3.0,853879064\n284,762,3.0,853878994\n284,780,3.0,853878868\n284,782,3.0,853879340\n284,784,3.0,853878955\n284,786,4.0,853878955\n284,798,4.0,853879361\n284,802,4.0,853879034\n284,805,5.0,853879034\n284,832,3.0,853879064\n284,836,3.0,853879296\n284,852,3.0,853879064\n284,1006,3.0,853879320\n284,1047,4.0,853879237\n284,1049,4.0,853879296\n284,1073,3.0,853878955\n284,1356,5.0,853878994\n284,1359,1.0,853879296\n284,1393,5.0,853879267\n285,1,4.0,965091874\n285,2,3.0,965089266\n285,3,3.0,965092752\n285,10,4.0,965091528\n285,19,1.0,965093017\n285,32,5.0,965088482\n285,44,2.0,965542404\n285,47,5.0,965091247\n285,50,5.0,965090397\n285,60,4.0,965089266\n285,63,2.0,965093034\n285,69,4.0,965092287\n285,70,4.0,965089489\n285,93,2.0,965092943\n285,104,4.0,965092082\n285,110,5.0,965093169\n285,112,3.0,965542313\n285,153,2.0,965092826\n285,157,4.0,965092538\n285,160,1.0,965089184\n285,163,4.0,965090934\n285,168,2.0,965542455\n285,170,4.0,965091597\n285,173,3.0,965088745\n285,176,5.0,965091795\n285,177,5.0,965089612\n285,180,4.0,965092095\n285,181,1.0,965543296\n285,185,3.0,965091663\n285,188,5.0,965089436\n285,198,4.0,965088579\n285,223,5.0,965091971\n285,231,1.0,965092590\n285,234,3.0,965092826\n285,235,5.0,965091971\n285,252,3.0,965092270\n285,253,5.0,965089489\n285,255,2.0,965093058\n285,260,5.0,965088419\n285,288,5.0,965091512\n285,292,2.0,965091563\n285,293,5.0,965090957\n285,296,4.0,965542530\n285,316,3.0,965088682\n285,317,4.0,965089266\n285,329,4.0,965088661\n285,330,3.0,965089576\n285,344,1.0,965092654\n285,353,3.0,965091452\n285,355,1.0,965092790\n285,356,5.0,965092154\n285,364,3.0,965542813\n285,366,4.0,965089412\n285,368,4.0,965092305\n285,370,1.0,965092448\n285,372,3.0,965092538\n285,374,1.0,965092963\n285,377,3.0,965091478\n285,405,1.0,965089166\n285,407,4.0,965091466\n285,410,3.0,965092397\n285,413,2.0,965092726\n285,423,3.0,965543124\n285,429,2.0,965092752\n285,435,1.0,965092779\n285,440,3.0,965092130\n285,441,3.0,965091874\n285,442,4.0,965088641\n285,450,3.0,965088014\n285,457,4.0,965090443\n285,466,2.0,965092448\n285,471,5.0,965092130\n285,473,1.0,965093344\n285,479,3.0,965543176\n285,480,3.0,965088579\n285,481,4.0,965091528\n285,485,2.0,965092706\n285,500,4.0,965092448\n285,505,4.0,965092943\n285,516,3.0,965092522\n285,519,2.0,965089184\n285,520,3.0,965092573\n285,527,5.0,965093106\n285,542,1.0,965092855\n285,543,4.0,965091512\n285,546,1.0,965088796\n285,547,3.0,965542363\n285,551,4.0,965092042\n285,555,4.0,965542936\n285,558,4.0,965542864\n285,586,1.0,965088014\n285,588,4.0,965542795\n285,589,3.0,965542922\n285,590,4.0,965542224\n285,592,4.0,965542224\n285,593,4.0,965090397\n285,608,5.0,965090397\n285,610,3.0,965088661\n285,611,4.0,965089184\n285,637,3.0,965092840\n285,653,4.0,965089282\n285,661,5.0,965542813\n285,708,3.0,965092347\n285,733,3.0,965091440\n285,736,2.0,965091630\n285,762,3.0,965092752\n285,780,4.0,965088682\n285,784,1.0,965092590\n285,858,4.0,965542897\n285,861,3.0,965090957\n285,866,3.0,965542566\n285,919,3.0,965542185\n285,934,4.0,965091874\n285,968,5.0,965088605\n285,1018,3.0,965092867\n285,1025,5.0,965542813\n285,1031,4.0,965542351\n285,1032,4.0,965542783\n285,1037,3.0,965088745\n285,1042,3.0,965092169\n285,1073,4.0,965089222\n285,1079,4.0,965091814\n285,1080,5.0,965092032\n285,1089,5.0,965090443\n285,1090,3.0,965093131\n285,1091,1.0,965092826\n285,1097,4.0,965088482\n285,1101,4.0,965543077\n285,1126,1.0,965092706\n285,1135,2.0,965092683\n285,1136,4.0,965091761\n285,1148,4.0,965091773\n285,1194,3.0,965092476\n285,1196,5.0,965088419\n285,1197,4.0,965088072\n285,1198,4.0,965542151\n285,1199,5.0,965088445\n285,1200,2.0,965088467\n285,1206,4.0,965088445\n285,1208,5.0,965093118\n285,1210,5.0,965093169\n285,1213,5.0,965542530\n285,1214,2.0,965089335\n285,1215,3.0,965089396\n285,1220,4.0,965542948\n285,1222,5.0,965093156\n285,1223,4.0,965091952\n285,1240,3.0,965088467\n285,1242,5.0,965542910\n285,1243,5.0,965091845\n285,1257,4.0,965092032\n285,1258,3.0,965089353\n285,1265,4.0,965091845\n285,1270,4.0,965088482\n285,1274,3.0,965088503\n285,1275,3.0,965542277\n285,1278,4.0,965089353\n285,1282,4.0,965542736\n285,1285,3.0,965091910\n285,1291,3.0,965542185\n285,1298,3.0,965093301\n285,1327,1.0,965089612\n285,1339,3.0,965089489\n285,1345,2.0,965089436\n285,1347,2.0,965089453\n285,1356,3.0,965542224\n285,1371,3.0,965088708\n285,1372,3.0,965088549\n285,1373,3.0,965088760\n285,1374,3.0,965088503\n285,1375,3.0,965542293\n285,1376,3.0,965088549\n285,1377,3.0,965542313\n285,1378,4.0,965092432\n285,1379,3.0,965092672\n285,1380,1.0,965092318\n285,1381,1.0,965093072\n285,1387,4.0,965089353\n285,1388,3.0,965089638\n285,1391,4.0,965088682\n285,1394,4.0,965091829\n285,1405,2.0,965542855\n285,1407,5.0,965089436\n285,1440,3.0,965092507\n285,1441,4.0,965092141\n285,1445,3.0,965092919\n285,1447,4.0,965542654\n285,1461,1.0,965092963\n285,1476,4.0,965092257\n285,1479,4.0,965091618\n285,1485,3.0,965092477\n285,1499,1.0,965542434\n285,1500,5.0,965091874\n285,1513,3.0,965092507\n285,1517,4.0,965092095\n285,1527,4.0,965088549\n285,1552,3.0,965091546\n285,1562,1.0,965542434\n285,1573,4.0,965088579\n285,1580,4.0,965088528\n285,1581,2.0,965093072\n285,1586,3.0,965093234\n285,1587,4.0,965542313\n285,1589,3.0,965542609\n285,1591,4.0,965091689\n285,1597,4.0,965543024\n285,1608,4.0,965543090\n285,1610,3.0,965090957\n285,1625,4.0,965090443\n285,1626,1.0,965091651\n285,1641,3.0,965091829\n285,1644,3.0,965089679\n285,1645,3.0,965088072\n285,1647,3.0,965091689\n285,1653,3.0,965088503\n285,1663,3.0,965092008\n285,1665,3.0,965092894\n285,1676,3.0,965542313\n285,1681,1.0,965542466\n285,1689,2.0,965092507\n285,1711,5.0,965542654\n285,1717,3.0,965089556\n285,1722,3.0,965091415\n285,1729,3.0,965542553\n285,1732,5.0,965091291\n285,1748,2.0,965088503\n285,1753,3.0,965092008\n285,1754,4.0,965543059\n285,1760,3.0,965092880\n285,1777,4.0,965092257\n285,1801,3.0,965543162\n285,1805,4.0,965091499\n285,1831,3.0,965088783\n285,1885,3.0,965092032\n285,1894,3.0,965542332\n285,1909,4.0,965088626\n285,1911,2.0,965092654\n285,1917,4.0,965542332\n285,1921,4.0,965091291\n285,1923,1.0,965091889\n285,1924,5.0,965089166\n285,1954,2.0,965542959\n285,1967,3.0,965089247\n285,1968,3.0,965088034\n285,1969,2.0,965089657\n285,1974,2.0,965089597\n285,1975,1.0,965089638\n285,1976,1.0,965089880\n285,1982,3.0,965089396\n285,1991,1.0,965089576\n285,1992,1.0,965089880\n285,1997,1.0,965089436\n285,2000,4.0,965542583\n285,2003,3.0,965089454\n285,2005,4.0,965089247\n285,2011,4.0,965088579\n285,2012,3.0,965088661\n285,2018,3.0,965542783\n285,2027,2.0,965093034\n285,2028,5.0,965093156\n285,2034,3.0,965088746\n285,2038,3.0,965092415\n285,2046,3.0,965088626\n285,2054,2.0,965088661\n285,2058,4.0,965091428\n285,2072,4.0,965092752\n285,2080,3.0,965542783\n285,2088,2.0,965092672\n285,2092,2.0,965542855\n285,2105,3.0,965088605\n285,2108,3.0,965091971\n285,2109,2.0,965092154\n285,2115,4.0,965542252\n285,2116,3.0,965088626\n285,2119,2.0,965089913\n285,2120,4.0,965089520\n285,2121,2.0,965089520\n285,2124,3.0,965092305\n285,2134,3.0,965092397\n285,2138,3.0,965089222\n285,2139,3.0,965542784\n285,2140,3.0,965088528\n285,2143,4.0,965089282\n285,2155,4.0,965092117\n285,2161,4.0,965089247\n285,2167,4.0,965089396\n285,2174,4.0,965089222\n285,2194,4.0,965542583\n285,2249,4.0,965092612\n285,2253,3.0,965089310\n285,2279,4.0,965089880\n285,2282,4.0,965091982\n285,2294,4.0,965542813\n285,2301,5.0,965092347\n285,2321,4.0,965091889\n285,2325,3.0,965092894\n285,2328,4.0,965089679\n285,2353,4.0,965542973\n285,2355,4.0,965542757\n285,2371,4.0,965092182\n285,2372,3.0,965092590\n285,2375,3.0,965092672\n285,2378,1.0,965092522\n285,2379,1.0,965092963\n285,2380,1.0,965092991\n285,2385,3.0,965092654\n285,2387,1.0,965092539\n285,2395,4.0,965091773\n285,2402,3.0,965093361\n285,2404,2.0,965093361\n285,2407,2.0,965088682\n285,2413,3.0,965092287\n285,2416,1.0,965092448\n285,2421,2.0,965542418\n285,2422,2.0,965543254\n285,2423,3.0,965092305\n285,2424,3.0,965092333\n285,2427,2.0,965093206\n285,2450,2.0,965088760\n285,2459,4.0,965089657\n285,2460,5.0,965089370\n285,2468,3.0,965091608\n285,2470,2.0,965092270\n285,2471,2.0,965542418\n285,2478,4.0,965092305\n285,2496,3.0,965092461\n285,2502,4.0,965092082\n285,2539,4.0,965092333\n285,2571,5.0,965090397\n285,2580,4.0,965542553\n285,2596,4.0,965091899\n285,2598,2.0,965092372\n285,2615,3.0,965542390\n285,2616,1.0,965542669\n285,2617,3.0,965542351\n285,2628,5.0,965088641\n285,2640,3.0,965088605\n285,2641,2.0,965088605\n285,2642,2.0,965088783\n285,2643,1.0,965089184\n285,2657,4.0,965088579\n285,2683,2.0,965092257\n285,2701,3.0,965088783\n285,2706,4.0,965092358\n285,2710,5.0,965089501\n285,2717,3.0,965089520\n285,2718,4.0,965092204\n285,2720,2.0,965092906\n285,2723,4.0,965092228\n285,2735,2.0,965092672\n285,2746,3.0,965092170\n285,2761,5.0,965542736\n285,2774,4.0,965091971\n285,2791,2.0,965091926\n285,2792,1.0,965092522\n285,2794,2.0,965092415\n285,2796,3.0,965092627\n285,2797,4.0,965089222\n285,2804,5.0,965091814\n285,2815,2.0,965093344\n285,2816,2.0,965093361\n285,2826,4.0,965089597\n285,2840,4.0,965091675\n285,2858,5.0,965088140\n285,2860,3.0,965092706\n285,2863,4.0,965091795\n285,2867,4.0,965089520\n285,2872,2.0,965542973\n285,2901,2.0,965088513\n285,2916,4.0,965091261\n285,2918,4.0,965091889\n285,2947,3.0,965542936\n285,2985,4.0,965088549\n285,2986,3.0,965088746\n285,2987,3.0,965542200\n285,2997,5.0,965091761\n285,3020,5.0,965543008\n285,3033,4.0,965088605\n285,3034,4.0,965542784\n285,3052,5.0,965092008\n285,3063,3.0,965091576\n285,3070,4.0,965088579\n285,3087,3.0,965092204\n285,3108,3.0,965091814\n285,3168,4.0,965542200\n285,3175,3.0,965088183\n285,3208,1.0,965092432\n285,3213,4.0,965542757\n285,3254,2.0,965092573\n285,3258,2.0,965092432\n285,3263,2.0,965092055\n285,3387,3.0,965092590\n285,3388,2.0,965092672\n285,3401,1.0,965089166\n285,3438,3.0,965089247\n285,3439,2.0,965089297\n285,3441,3.0,965093217\n285,3442,2.0,965543305\n285,3448,4.0,965093206\n285,3450,4.0,965092228\n285,3463,1.0,965092855\n285,3471,3.0,965088445\n285,3476,5.0,965089370\n285,3477,4.0,965092573\n285,3489,2.0,965089282\n285,3499,4.0,965089370\n285,3527,2.0,965088549\n285,3564,1.0,965092943\n285,3608,3.0,965091952\n285,3671,3.0,965091993\n285,3676,1.0,965089436\n285,3688,2.0,965092573\n285,3689,1.0,965093046\n285,3693,3.0,965089466\n285,3694,3.0,965089335\n285,3695,2.0,965089335\n285,3698,3.0,965088641\n285,3699,3.0,965088549\n285,3725,1.0,965542855\n285,3758,3.0,965088796\n285,3793,4.0,965088467\n285,3809,3.0,965092170\n286,23,4.0,979179836\n286,150,5.0,979179600\n286,344,2.0,979179008\n286,433,3.0,979177745\n286,577,3.0,979179509\n286,588,3.0,979179233\n286,748,4.0,979179688\n286,1007,3.0,979179600\n286,1017,3.0,979177745\n286,1019,3.0,979178738\n286,1064,3.0,979179233\n286,1127,4.0,979179008\n286,1214,3.0,979179292\n286,1425,2.0,979177851\n286,1459,3.0,979179008\n286,1499,3.0,979179465\n286,1517,3.0,979179864\n286,1541,2.0,979179067\n286,1592,3.0,979179193\n286,1608,4.0,979179193\n286,1721,5.0,979177851\n286,1784,3.0,979179688\n286,1887,2.0,979179344\n286,1917,3.0,979179646\n286,2000,4.0,979177745\n286,2015,3.0,979179008\n286,2072,3.0,979178656\n286,2124,2.0,979179067\n286,2522,3.0,979179193\n286,2525,2.0,979179344\n286,2628,4.0,979177745\n286,2699,5.0,979179646\n286,2791,3.0,979179193\n286,2826,3.0,979178738\n286,2827,3.0,979179836\n286,2846,3.0,979179093\n286,3250,3.0,979179292\n286,3535,1.0,979179414\n286,3726,1.0,979179836\n286,3984,3.0,979178542\n286,4002,3.0,979178482\n286,4007,1.0,979178482\n286,4045,2.0,979178266\n287,1,5.0,1469161081\n287,2,5.0,1469162190\n287,13,4.5,1470167166\n287,260,4.0,1469160990\n287,316,5.0,1469161856\n287,329,4.5,1473445099\n287,364,4.5,1469163110\n287,480,5.0,1469161092\n287,484,3.5,1470168942\n287,494,4.0,1469161737\n287,588,5.0,1469163114\n287,589,5.0,1469161033\n287,595,5.0,1469162267\n287,616,4.5,1470167200\n287,648,5.0,1469161613\n287,653,5.0,1470166428\n287,733,4.5,1469162229\n287,780,5.0,1469162045\n287,911,5.0,1469222899\n287,919,4.5,1469163435\n287,924,0.5,1469162087\n287,955,5.0,1470166886\n287,1010,4.0,1470169012\n287,1011,4.0,1470169027\n287,1015,4.0,1470168974\n287,1018,4.5,1470168987\n287,1022,4.5,1469163185\n287,1097,4.5,1469162171\n287,1196,4.0,1469160994\n287,1197,5.0,1469161993\n287,1198,5.0,1469160996\n287,1203,4.5,1469750186\n287,1210,5.0,1469161004\n287,1228,4.5,1470166595\n287,1234,5.0,1470168859\n287,1240,5.0,1469161060\n287,1246,4.5,1469162099\n287,1252,4.5,1470166585\n287,1262,5.0,1470168877\n287,1265,4.5,1470166247\n287,1269,5.0,1470166895\n287,1283,5.0,1470168552\n287,1291,5.0,1469161018\n287,1356,5.0,1469222872\n287,1367,4.0,1470168991\n287,1580,5.0,1469162019\n287,1676,5.0,1469161803\n287,1682,5.0,1469162298\n287,1882,3.0,1469754164\n287,1907,5.0,1469163124\n287,1911,4.5,1469754178\n287,1917,4.0,1469162244\n287,1945,4.5,1470166613\n287,2003,4.5,1470166867\n287,2015,4.5,1470169003\n287,2050,4.0,1470169024\n287,2051,4.0,1470169021\n287,2058,4.5,1469161713\n287,2078,5.0,1469163150\n287,2080,4.5,1469163178\n287,2085,5.0,1469163184\n287,2105,4.0,1470169326\n287,2176,4.5,1470166829\n287,2355,5.0,1469162233\n287,2392,3.5,1470166986\n287,2394,3.0,1469754188\n287,2431,4.5,1469754195\n287,2501,5.0,1469754171\n287,2525,3.5,1470166928\n287,2549,4.0,1469161829\n287,2571,5.0,1469160999\n287,2628,4.0,1469162091\n287,2699,4.0,1470166863\n287,2713,3.5,1470166917\n287,2761,5.0,1469163419\n287,2846,4.0,1470168962\n287,3034,5.0,1469163197\n287,3114,5.0,1469162089\n287,3157,4.0,1469754224\n287,3256,4.0,1469754337\n287,3287,3.5,1470167205\n287,3494,4.5,1470168569\n287,3623,3.5,1469161630\n287,3672,3.5,1470168915\n287,3674,3.5,1470168935\n287,3751,5.0,1469162268\n287,3981,4.0,1469754268\n287,3988,4.0,1469754201\n287,3994,4.5,1469754115\n287,3996,5.0,1469163302\n287,4027,5.0,1469162103\n287,4306,3.5,1469161478\n287,4327,5.0,1470168577\n287,4638,4.0,1469162375\n287,4795,5.0,1470168816\n287,4802,5.0,1470168822\n287,4886,5.0,1469161131\n287,4993,5.0,1469161022\n287,5108,5.0,1470168622\n287,5349,5.0,1469161999\n287,5357,4.5,1470169255\n287,5378,4.0,1469162076\n287,5418,5.0,1469161057\n287,5445,5.0,1469423023\n287,5480,3.5,1470167215\n287,5952,5.0,1469161019\n287,6163,5.0,1470166489\n287,6377,4.0,1469161119\n287,6534,4.0,1469162398\n287,6537,5.0,1469162357\n287,6753,5.0,1470167916\n287,6793,4.0,1470168927\n287,6936,4.5,1469162401\n287,6947,4.5,1470166336\n287,7153,5.0,1469161002\n287,7324,4.5,1470168602\n287,7374,4.0,1470167218\n287,8361,4.5,1469161871\n287,8464,4.5,1470166308\n287,8636,4.5,1469161889\n287,8644,5.0,1469161190\n287,8665,5.0,1469161638\n287,8783,4.0,1470168285\n287,8914,3.5,1475258003\n287,8961,5.0,1469161136\n287,8965,3.5,1469163163\n287,8972,4.0,1469162184\n287,9001,4.0,1470168806\n287,25750,4.5,1470166517\n287,26528,4.5,1469750282\n287,32031,4.0,1469163172\n287,33493,4.5,1469163286\n287,33794,5.0,1469161038\n287,34048,4.5,1469161785\n287,38038,4.0,1469163158\n287,42191,4.5,1470888631\n287,45517,3.5,1469162231\n287,48780,5.0,1469598999\n287,50872,4.0,1469161140\n287,52722,5.0,1469162205\n287,54286,5.0,1469161632\n287,55768,3.0,1469163200\n287,58559,5.0,1469161020\n287,59315,5.0,1469161036\n287,59369,4.5,1469161661\n287,59392,5.0,1470167060\n287,59615,4.0,1469162213\n287,59784,5.0,1469162040\n287,60040,4.5,1469751462\n287,60069,4.0,1469161082\n287,60674,5.0,1470167054\n287,67295,4.5,1470888636\n287,68319,5.0,1469162186\n287,68358,4.5,1473445047\n287,68791,5.0,1469755976\n287,68954,4.0,1469161063\n287,71264,4.5,1469756012\n287,72356,4.5,1470888603\n287,72998,5.0,1469161086\n287,73017,5.0,1469161162\n287,74282,4.5,1469750312\n287,76093,5.0,1469161159\n287,77435,5.0,1470168799\n287,77561,4.5,1469162021\n287,78499,5.0,1469161154\n287,79091,5.0,1469162033\n287,79132,5.0,1469161041\n287,80463,4.5,1469161990\n287,81564,5.0,1469162290\n287,82173,2.5,1475258204\n287,82461,4.5,1469755975\n287,83803,4.5,1470888612\n287,84152,5.0,1469161254\n287,84601,5.0,1469756110\n287,85414,5.0,1469161260\n287,86332,5.0,1469162047\n287,87222,5.0,1469163144\n287,88140,5.0,1469162069\n287,88345,4.0,1470888620\n287,89745,5.0,1469161062\n287,90405,4.0,1469161175\n287,91500,5.0,1469161802\n287,91529,5.0,1469161088\n287,91535,4.5,1469161648\n287,91542,5.0,1469162057\n287,91978,4.5,1469161691\n287,93061,4.5,1470167340\n287,93265,4.5,1470167363\n287,95167,5.0,1469162203\n287,95313,5.0,1470888625\n287,95377,5.0,1470888609\n287,95510,5.0,1469162194\n287,95858,5.0,1469163176\n287,96079,5.0,1469161593\n287,98491,5.0,1469163128\n287,98809,5.0,1469162015\n287,101864,4.5,1469161237\n287,102125,4.5,1469162060\n287,102880,0.5,1469161813\n287,102903,5.0,1470598366\n287,103042,4.0,1469161838\n287,103141,4.5,1469163123\n287,103228,4.0,1469161840\n287,103249,4.5,1469163308\n287,103253,4.0,1469161185\n287,103772,5.0,1469751503\n287,104841,5.0,1469161155\n287,105468,4.0,1469163223\n287,106002,5.0,1469161775\n287,106011,4.5,1470888594\n287,106072,5.0,1469162221\n287,106487,5.0,1469161806\n287,106489,5.0,1469162065\n287,106642,5.0,1473445029\n287,106696,4.5,1469162097\n287,108190,4.5,1469161827\n287,108932,5.0,1469162147\n287,108945,5.0,1469223116\n287,109578,5.0,1469161697\n287,110102,5.0,1469162042\n287,110730,5.0,1469161193\n287,111364,3.5,1469161843\n287,111759,5.0,1469161056\n287,112175,5.0,1469162263\n287,112852,5.0,1469161054\n287,114180,5.0,1469161796\n287,115617,4.0,1469161141\n287,116823,5.0,1469162095\n287,117192,5.0,1473445036\n287,117529,4.0,1469162062\n287,117895,4.5,1469161571\n287,118696,5.0,1469162192\n287,122886,5.0,1469161052\n287,122892,5.0,1469162003\n287,122900,5.0,1469162053\n287,122902,3.0,1469161585\n287,122920,5.0,1469161536\n287,130490,4.5,1469161834\n287,130520,4.0,1469163190\n287,132046,4.0,1469161188\n287,134853,5.0,1469161078\n287,135133,4.5,1469161556\n287,135436,5.0,1469161436\n287,136016,5.0,1469161567\n287,136864,3.0,1469751513\n287,142997,4.5,1469163203\n287,145935,5.0,1469161574\n287,149406,5.0,1469161554\n287,152017,5.0,1469163551\n287,152081,5.0,1469161526\n287,157296,5.0,1469161542\n287,160438,4.5,1470166791\n287,160563,4.0,1469161444\n287,161944,5.0,1470167824\n288,2,4.0,845862466\n288,6,3.0,845862667\n288,10,3.0,845862233\n288,19,5.0,845862330\n288,25,4.0,845862619\n288,31,3.0,845862722\n288,39,3.0,845862359\n288,44,1.0,845862596\n288,47,5.0,845862270\n288,105,3.0,845862667\n288,110,5.0,845862252\n288,150,3.0,845862084\n288,153,2.0,845862154\n288,158,5.0,845862596\n288,160,2.0,845862398\n288,161,3.0,845862234\n288,163,4.0,845862799\n288,165,4.0,845862153\n288,173,3.0,845862433\n288,185,3.0,845862233\n288,186,5.0,845862567\n288,204,5.0,845862567\n288,208,4.0,845862233\n288,224,5.0,845862697\n288,227,5.0,845862833\n288,231,4.0,845862175\n288,256,4.0,845862647\n288,261,3.0,845862619\n288,276,4.0,845862799\n288,288,5.0,845862271\n288,292,3.0,845862233\n288,296,5.0,845862084\n288,315,3.0,845862466\n288,316,5.0,845862175\n288,337,4.0,845862539\n288,344,5.0,845862154\n288,350,3.0,845862433\n288,353,5.0,845862647\n288,355,3.0,845862723\n288,356,5.0,845862204\n288,357,5.0,845862398\n288,364,4.0,845862271\n288,367,5.0,845862270\n288,368,5.0,845862647\n288,370,5.0,845862697\n288,377,3.0,845862270\n288,420,3.0,845862359\n288,432,2.0,845862433\n288,434,1.0,845862204\n288,440,4.0,845862398\n288,442,5.0,845862516\n288,454,4.0,845862252\n288,466,5.0,845862754\n288,474,2.0,845862466\n288,480,4.0,845862204\n288,485,4.0,845862697\n288,497,3.0,845862722\n288,500,3.0,845862302\n288,508,5.0,845862539\n288,520,5.0,845862754\n288,527,5.0,845862359\n288,539,4.0,845862330\n288,552,5.0,845862773\n288,553,3.0,845862516\n288,555,3.0,845862667\n288,588,3.0,845862154\n288,589,4.0,845862252\n288,590,4.0,845862084\n288,592,2.0,845862083\n288,593,5.0,845862154\n288,594,2.0,845862722\n288,595,3.0,845862175\n288,597,3.0,845862302\n288,736,5.0,845862567\n288,780,5.0,845862619\n289,837,4.0,1328935478\n289,1033,4.5,1328935543\n289,1125,3.0,1328935470\n289,1296,3.5,1328935449\n289,1366,3.0,1328935666\n289,1367,4.0,1328935816\n289,1713,3.0,1328935634\n289,1717,0.5,1328935429\n289,2142,4.5,1328935649\n289,2471,3.5,1328935485\n289,2572,5.0,1328935801\n289,2687,4.0,1328935493\n289,3157,3.0,1328935506\n289,3507,4.5,1328935590\n289,3555,0.5,1328935420\n289,3916,5.0,1328935426\n289,6565,4.5,1328935517\n289,7444,4.5,1328935844\n289,68135,4.5,1328935859\n289,69757,4.5,1328935789\n290,10,4.5,1445337576\n290,47,5.0,1445337326\n290,50,4.5,1445337263\n290,111,4.0,1445337282\n290,145,4.5,1445337402\n290,150,4.0,1445337630\n290,165,4.5,1445337600\n290,260,4.0,1445337293\n290,293,5.0,1445337328\n290,316,5.0,1445337569\n290,329,5.0,1445337368\n290,380,3.5,1445337612\n290,455,3.0,1389785706\n290,457,4.5,1445337624\n290,616,5.0,1389785727\n290,858,5.0,1389785826\n290,1221,5.0,1389785830\n290,1339,4.5,1389785660\n290,1371,4.0,1389785665\n290,1372,5.0,1389785632\n290,1375,5.0,1389785643\n290,1544,5.0,1389785847\n290,1831,5.0,1389785853\n290,1909,5.0,1389785622\n290,2019,5.0,1445337508\n290,2058,4.0,1445337390\n290,2167,4.0,1445337605\n290,2278,5.0,1389785670\n290,2294,5.0,1389785676\n290,2605,4.5,1389785717\n290,2717,5.0,1389785733\n290,2722,5.0,1389785753\n290,3755,4.0,1389785682\n290,4148,5.0,1445337276\n290,4223,5.0,1445337585\n290,4306,2.5,1445337228\n290,4367,5.0,1389785840\n290,4638,1.0,1389785835\n290,4643,5.0,1389785737\n290,4886,3.0,1445337224\n290,4896,2.0,1445337234\n290,4973,4.0,1445337279\n290,5418,5.0,1445337214\n290,5445,4.0,1445337232\n290,5459,5.0,1389785856\n290,5481,4.0,1445337582\n290,5782,4.5,1445337436\n290,5872,4.5,1445337479\n290,5944,5.0,1445337376\n290,6539,2.0,1445337212\n290,6548,4.5,1445337343\n290,7254,5.0,1445337237\n290,8622,5.0,1389785757\n290,31410,4.5,1445337406\n290,44022,4.0,1445337339\n290,44199,4.5,1445337568\n290,45186,4.5,1445337429\n290,46972,4.0,1445337272\n290,48394,4.0,1445337364\n290,53972,4.5,1445337301\n290,60069,4.5,1445337352\n290,68157,4.5,1445337374\n290,79132,4.5,1445337295\n290,80906,5.0,1445337452\n290,81229,4.5,1445337464\n290,109374,4.0,1445337393\n290,109487,5.0,1445337331\n291,47,4.5,1111489466\n291,163,3.0,1111488408\n291,223,4.0,1111489245\n291,249,3.5,1111489426\n291,315,2.0,1111488366\n291,318,5.0,1111488814\n291,520,3.0,1111488674\n291,541,5.0,1111489688\n291,552,3.0,1111488681\n291,589,4.5,1111489126\n291,590,5.0,1111489284\n291,941,4.5,1111489384\n291,1032,5.0,1111489408\n291,1073,5.0,1111489377\n291,1090,4.5,1111488347\n291,1094,3.5,1111488314\n291,1127,4.5,1111489205\n291,1198,5.0,1111489547\n291,1210,4.5,1111489308\n291,1215,4.0,1111489225\n291,1240,5.0,1111489404\n291,1242,5.0,1111489471\n291,1259,5.0,1111489239\n291,1270,4.5,1111488954\n291,1275,4.5,1111489148\n291,1291,5.0,1111488990\n291,1321,4.5,1111489244\n291,1343,4.5,1111489489\n291,1358,4.0,1111488349\n291,1374,4.0,1111489330\n291,1380,4.0,1111488655\n291,1396,4.0,1111488678\n291,1485,2.5,1111488659\n291,1527,5.0,1111489141\n291,1610,4.0,1111489027\n291,1639,3.5,1111488649\n291,1732,3.0,1111488399\n291,1954,4.0,1111489251\n291,1994,4.5,1111489386\n291,2012,3.5,1111488301\n291,2028,4.5,1111489462\n291,2114,4.5,1111489103\n291,2140,5.0,1111489498\n291,2194,4.5,1111489202\n291,2302,2.5,1111488665\n291,2329,4.5,1111489486\n291,2406,4.0,1111488432\n291,2571,5.0,1111489419\n291,2617,4.0,1111488428\n291,2699,3.0,1111488646\n291,2716,4.5,1111488884\n291,2762,4.5,1111489325\n291,2797,3.5,1111488902\n291,2872,4.5,1111489299\n291,2890,4.0,1111489373\n291,2915,4.0,1111489157\n291,2918,5.0,1111489003\n291,2987,4.0,1111489019\n291,3098,4.0,1111489335\n291,3296,4.0,1111489186\n291,3448,4.0,1111488889\n291,3578,4.5,1111489274\n291,3668,4.5,1111489429\n291,3671,5.0,1111489095\n291,3994,4.5,1111489569\n291,4105,4.5,1111489517\n291,4128,4.0,1111488898\n291,4306,4.5,1111489076\n291,4878,5.0,1111489684\n291,5026,4.0,1111489173\n291,5060,4.5,1111488414\n291,5349,4.5,1111488999\n291,5464,5.0,1111489042\n291,6333,3.5,1111488907\n291,6796,4.5,1111489152\n291,6857,4.5,1111489368\n291,7027,3.0,1111488917\n291,7075,5.0,1111489561\n291,7386,5.0,1111488895\n291,7482,4.5,1111489049\n291,7649,5.0,1111489677\n291,7757,4.0,1111488949\n291,8158,3.5,1111488830\n291,8341,5.0,1111488865\n291,8360,2.5,1111489437\n291,8623,4.0,1111488931\n291,8636,5.0,1111488968\n292,1,4.0,1140049726\n292,2,3.5,1140051284\n292,5,4.0,1140153456\n292,10,4.0,1140051151\n292,11,4.5,1140050157\n292,16,4.5,1140049807\n292,32,4.5,1140051072\n292,39,4.5,1140051201\n292,47,4.5,1140050095\n292,50,5.0,1140050553\n292,62,4.0,1140051231\n292,70,3.5,1140050566\n292,95,3.5,1140051213\n292,110,4.0,1140051043\n292,141,4.0,1140051198\n292,150,4.0,1140050126\n292,153,3.5,1140051087\n292,158,4.0,1140153453\n292,173,3.0,1140049449\n292,180,4.5,1140049928\n292,185,3.0,1140051160\n292,208,3.5,1140051212\n292,223,4.0,1140049989\n292,231,3.0,1161557985\n292,236,3.0,1140049513\n292,260,4.5,1140051047\n292,261,4.0,1140816665\n292,262,4.5,1140149219\n292,277,4.0,1140816676\n292,292,4.5,1140051153\n292,296,5.0,1140051024\n292,318,5.0,1140051038\n292,337,4.5,1140049755\n292,339,3.5,1140051207\n292,353,3.5,1140050176\n292,356,5.0,1140051028\n292,364,4.0,1140049993\n292,367,3.5,1140051155\n292,370,2.5,1140049485\n292,376,4.0,1140816679\n292,377,4.0,1140051076\n292,380,4.5,1140051050\n292,410,4.0,1140050571\n292,432,2.5,1140049440\n292,434,3.0,1140051158\n292,441,4.5,1140049812\n292,442,3.0,1140051316\n292,454,4.0,1140051142\n292,457,4.0,1140050178\n292,466,2.5,1140049516\n292,471,3.5,1140049920\n292,480,3.5,1140051030\n292,500,3.5,1140051115\n292,508,3.5,1140816659\n292,527,5.0,1140051067\n292,529,4.0,1140049987\n292,539,3.5,1140051145\n292,575,4.0,1140050761\n292,586,3.5,1140051234\n292,587,4.0,1140051147\n292,588,4.0,1140049852\n292,589,4.0,1140050022\n292,590,3.0,1140051041\n292,592,3.5,1140051036\n292,593,4.5,1140051026\n292,595,4.0,1140049904\n292,597,4.5,1140051108\n292,608,4.5,1140051073\n292,628,3.5,1140049661\n292,648,4.0,1140050562\n292,736,4.5,1140051119\n292,780,4.5,1140051052\n292,784,0.5,1140049474\n292,786,3.0,1140051315\n292,805,4.0,1140050212\n292,832,4.0,1140049456\n292,838,4.0,1140149218\n292,858,4.5,1140051103\n292,902,4.0,1140149329\n292,915,4.0,1140149242\n292,919,5.0,1140051253\n292,934,4.5,1140050725\n292,1028,4.5,1140149099\n292,1032,3.5,1140050050\n292,1035,4.5,1140050558\n292,1042,4.0,1140050024\n292,1059,5.0,1140149266\n292,1061,4.0,1140050055\n292,1073,4.5,1140049797\n292,1091,3.5,1140050734\n292,1101,4.0,1140049846\n292,1196,4.5,1161558036\n292,1197,5.0,1140050515\n292,1207,5.0,1140149234\n292,1219,4.0,1140149373\n292,1265,3.5,1140050076\n292,1270,4.0,1140049879\n292,1271,5.0,1140050683\n292,1285,4.0,1140149271\n292,1291,4.0,1140050149\n292,1358,3.0,1140049524\n292,1380,4.0,1140049480\n292,1393,4.5,1140049712\n292,1407,3.0,1140816572\n292,1485,2.5,1140049452\n292,1500,4.0,1140049482\n292,1513,2.5,1140050713\n292,1527,4.0,1140051256\n292,1569,3.5,1140816594\n292,1580,3.5,1140049922\n292,1625,4.0,1140049909\n292,1639,3.5,1140050172\n292,1653,4.0,1140049445\n292,1672,4.0,1140050121\n292,1678,4.5,1140149137\n292,1680,4.5,1140049998\n292,1682,4.0,1140049779\n292,1704,4.5,1140051269\n292,1721,4.5,1140051202\n292,1722,4.0,1140050529\n292,1748,4.5,1140050198\n292,1777,4.0,1140050518\n292,1876,3.5,1140153421\n292,1917,4.0,1140154238\n292,1923,4.0,1140051279\n292,1947,5.0,1140149342\n292,1961,5.0,1140051242\n292,1968,5.0,1140049974\n292,2000,4.0,1140049863\n292,2001,3.5,1140816588\n292,2005,4.5,1140050058\n292,2028,3.5,1140050533\n292,2081,4.5,1140049949\n292,2100,4.0,1140153413\n292,2114,4.0,1140049910\n292,2115,4.5,1140816569\n292,2144,4.5,1140049748\n292,2161,3.5,1140049620\n292,2174,3.5,1140153391\n292,2231,4.5,1140050020\n292,2268,4.0,1140816566\n292,2291,5.0,1140050541\n292,2297,5.0,1140050653\n292,2302,4.5,1140049835\n292,2321,4.5,1140049696\n292,2336,4.0,1140149008\n292,2353,2.5,1140049774\n292,2355,4.0,1140049802\n292,2396,4.5,1140050535\n292,2406,4.0,1140049491\n292,2424,3.5,1140816597\n292,2443,3.5,1140049955\n292,2496,4.5,1140050659\n292,2501,4.5,1140153593\n292,2502,4.5,1140049489\n292,2563,4.5,1140049667\n292,2571,4.0,1140051100\n292,2580,3.0,1140149006\n292,2599,3.0,1140049478\n292,2628,3.5,1161557996\n292,2671,4.5,1140050320\n292,2683,3.5,1161558013\n292,2700,1.5,1140049466\n292,2706,3.0,1140816524\n292,2710,2.5,1140816520\n292,2762,4.5,1140051137\n292,2763,4.5,1140816550\n292,2804,5.0,1140148984\n292,2841,3.0,1140049876\n292,2858,5.0,1140051101\n292,2861,4.5,1140050657\n292,2915,4.0,1140149142\n292,2916,4.0,1140154219\n292,2918,4.5,1140049813\n292,2959,5.0,1140051244\n292,2987,4.0,1140051282\n292,3052,4.5,1140049916\n292,3053,3.0,1140050639\n292,3078,3.5,1140049829\n292,3147,3.5,1140816529\n292,3148,4.0,1140148978\n292,3176,3.5,1140816538\n292,3210,4.0,1140149107\n292,3255,4.0,1140049832\n292,3271,4.0,1140050082\n292,3358,4.5,1140050628\n292,3408,4.0,1140049941\n292,3418,3.0,1140816544\n292,3481,4.5,1140050085\n292,3499,2.5,1140049883\n292,3556,3.5,1140050624\n292,3578,4.0,1140051249\n292,3623,3.0,1161558015\n292,3753,3.5,1140816479\n292,3793,4.0,1140049849\n292,3825,4.0,1140153512\n292,3882,4.5,1140153505\n292,3897,5.0,1140049437\n292,3911,4.0,1140149274\n292,3916,4.0,1140050621\n292,3949,3.5,1140050590\n292,3993,3.0,1140049888\n292,4014,4.5,1140148958\n292,4027,3.5,1140816541\n292,4034,3.0,1140049526\n292,4041,4.5,1140153503\n292,4054,4.0,1140050603\n292,4069,4.0,1140050608\n292,4085,3.5,1140049753\n292,4148,4.0,1140153514\n292,4246,3.5,1140049837\n292,4306,4.5,1140051271\n292,4308,4.5,1140149154\n292,4489,4.0,1140049719\n292,4587,3.5,1140050812\n292,4616,4.0,1140049868\n292,4676,3.5,1140050820\n292,4787,4.0,1140049945\n292,4886,4.5,1140049518\n292,4896,3.5,1161558004\n292,4963,4.5,1140050181\n292,4993,4.0,1140816501\n292,4995,4.0,1161558010\n292,5066,4.0,1140050808\n292,5103,5.0,1140049747\n292,5294,4.5,1140049781\n292,5296,4.0,1140050817\n292,5299,4.0,1140050204\n292,5308,4.0,1140050605\n292,5377,4.0,1140049900\n292,5415,4.0,1140050789\n292,5418,3.0,1140050525\n292,5445,3.5,1140049995\n292,5630,4.0,1140050041\n292,5679,4.0,1140050093\n292,5693,4.0,1140050786\n292,5791,5.0,1140149340\n292,5816,2.0,1176920178\n292,5952,3.5,1161558028\n292,5954,3.5,1140149109\n292,5989,3.5,1140050584\n292,5991,4.5,1140050071\n292,6058,3.5,1140050793\n292,6218,4.5,1140050588\n292,6297,3.5,1140049663\n292,6333,4.0,1140049962\n292,6365,3.5,1140050598\n292,6377,4.5,1140816489\n292,6378,4.0,1140050051\n292,6502,4.5,1140149280\n292,6765,4.0,1140050779\n292,6863,3.5,1140049740\n292,6873,3.0,1140050781\n292,6874,4.5,1140149120\n292,6934,4.0,1161557998\n292,6944,4.5,1140050749\n292,7064,4.0,1140050907\n292,7147,4.5,1140148986\n292,7153,3.5,1140816485\n292,7158,3.5,1140149200\n292,7161,3.5,1140050754\n292,7438,4.5,1140149094\n292,7624,4.0,1140049655\n292,8366,4.0,1140049957\n292,8373,3.5,1140050763\n292,8528,4.0,1140153474\n292,8638,4.0,1140149321\n292,8784,4.5,1140050424\n292,8958,4.0,1140148968\n292,8961,4.5,1161558000\n292,30822,4.0,1140050009\n292,31433,4.5,1140050308\n292,32587,4.5,1140153443\n292,33166,3.5,1140148962\n292,33493,4.0,1161558022\n292,35836,3.5,1140050453\n292,40629,4.5,1140050264\n292,41566,4.5,1161558025\n293,1,4.0,1064615574\n293,76,3.5,1064615891\n293,110,3.5,1064616293\n293,147,4.0,1064616812\n293,247,2.0,1064617041\n293,260,2.5,1064617019\n293,345,3.5,1064616072\n293,356,3.5,1064615865\n293,435,3.0,1063997468\n293,442,2.0,1063997434\n293,497,4.0,1064615947\n293,541,3.5,1064616290\n293,589,3.5,1064616959\n293,594,0.5,1063997440\n293,653,3.5,1064616701\n293,741,4.5,1064616056\n293,750,4.0,1063997462\n293,924,4.0,1064615628\n293,1022,1.5,1064616090\n293,1073,0.5,1064617034\n293,1080,1.5,1063997529\n293,1097,2.0,1064617079\n293,1183,3.0,1063997448\n293,1197,5.0,1064615292\n293,1200,4.5,1064615365\n293,1240,3.5,1064616963\n293,1270,3.0,1064616322\n293,1274,4.0,1064616043\n293,1278,4.0,1064615344\n293,1320,3.0,1064615376\n293,1374,3.0,1063997497\n293,1376,4.0,1064616862\n293,1407,3.5,1063997539\n293,1641,4.0,1063997482\n293,1676,2.0,1064615649\n293,1690,2.0,1064615383\n293,1717,3.5,1064615907\n293,1805,2.5,1064615993\n293,1923,3.5,1064615950\n293,1960,4.5,1064616014\n293,1968,4.5,1063997426\n293,2096,4.0,1064615822\n293,2116,3.0,1064615534\n293,2174,1.5,1063997516\n293,2248,4.5,1064615940\n293,2291,5.0,1064615782\n293,2329,4.5,1064616242\n293,2355,4.5,1063997455\n293,2496,4.5,1064616017\n293,2572,4.5,1064615966\n293,2788,4.0,1064615930\n293,3114,3.0,1063997506\n293,3176,1.5,1064615457\n293,3189,4.5,1064616412\n293,3479,2.0,1064617048\n293,3701,3.5,1064615370\n293,3911,4.5,1064616386\n293,3996,4.5,1063997522\n293,4143,0.5,1064615273\n293,4210,3.0,1064616653\n293,4306,4.0,1064617001\n293,4367,3.5,1064616946\n293,4369,5.0,1064615320\n293,4427,5.0,1064615764\n293,4557,4.0,1064616196\n293,4584,5.0,1064616222\n293,4886,3.0,1064615588\n293,4896,4.0,1064615557\n293,4993,4.0,1064615526\n293,4995,4.0,1064616318\n293,5069,4.5,1064617089\n293,5218,4.0,1064615616\n293,5220,3.5,1064615476\n293,5463,4.0,1064616681\n293,5952,4.0,1064615536\n293,5991,3.5,1064616622\n293,6170,1.5,1064616314\n293,6539,5.0,1063997593\n293,6796,4.0,1064616302\n294,1,4.0,1047071649\n294,5,3.5,1062619499\n294,7,5.0,1047072215\n294,10,3.5,1054068559\n294,11,3.0,1048536701\n294,12,4.0,1062621382\n294,17,4.0,1048536399\n294,26,3.5,1082754003\n294,28,4.5,1102107967\n294,34,3.0,1047071968\n294,39,4.0,1048536677\n294,44,3.0,1054068756\n294,48,3.5,1106705556\n294,62,3.5,1106700701\n294,73,4.0,1047071337\n294,92,3.5,1119925079\n294,104,3.5,1062536923\n294,107,4.0,1047071430\n294,110,3.0,1054068398\n294,112,3.0,1054068512\n294,153,4.0,1047072927\n294,160,3.5,1054068730\n294,163,4.0,1106705532\n294,165,3.0,1159991791\n294,168,3.0,1048536964\n294,170,3.0,1054068789\n294,185,3.5,1082752914\n294,193,3.0,1082753356\n294,203,4.0,1062619585\n294,207,3.0,1048536782\n294,224,4.0,1047072151\n294,225,3.0,1090422910\n294,234,3.0,1082753980\n294,235,3.0,1082753766\n294,236,4.0,1047072383\n294,237,4.5,1055278808\n294,252,4.5,1055278835\n294,253,3.0,1082752922\n294,260,4.0,1159991628\n294,261,3.5,1090423171\n294,262,3.5,1090422648\n294,265,3.0,1048536429\n294,270,4.0,1119924471\n294,289,4.0,1105649274\n294,292,3.0,1054068450\n294,300,3.5,1082752935\n294,305,3.0,1112389812\n294,313,4.0,1048537624\n294,317,3.5,1062622280\n294,318,3.0,1082752877\n294,329,3.0,1054068733\n294,338,3.5,1119924761\n294,339,4.5,1106707903\n294,342,2.5,1114025751\n294,355,4.0,1047074215\n294,356,4.0,1047071834\n294,360,4.0,1047072606\n294,361,4.0,1048536639\n294,364,4.5,1055278918\n294,367,4.0,1047072405\n294,368,4.0,1106705329\n294,370,3.5,1062619662\n294,376,3.5,1106705422\n294,377,4.0,1048536550\n294,380,4.0,1106705129\n294,405,2.5,1054068746\n294,410,4.0,1062536836\n294,412,4.0,1082753976\n294,419,3.5,1062620135\n294,435,3.0,1047074309\n294,440,4.5,1055278745\n294,445,3.0,1082754306\n294,454,3.5,1082752908\n294,455,3.5,1062622406\n294,457,3.5,1159991613\n294,466,3.5,1054068767\n294,468,4.0,1047072283\n294,480,4.0,1159991607\n294,497,5.0,1047071673\n294,500,4.0,1047072163\n294,502,2.5,1054068962\n294,513,3.0,1048536718\n294,520,4.5,1055278577\n294,524,3.5,1071696039\n294,527,4.0,1082752888\n294,531,3.5,1062622249\n294,539,4.0,1047071994\n294,541,3.5,1082752967\n294,543,3.0,1048536701\n294,546,2.5,1054068761\n294,551,3.5,1106705333\n294,552,4.5,1106707960\n294,553,3.0,1082753026\n294,585,4.0,1047072843\n294,586,3.0,1047072383\n294,587,3.0,1048536701\n294,588,5.0,1047071788\n294,589,3.0,1054068393\n294,590,3.0,1071697243\n294,592,3.0,1159991647\n294,594,4.0,1047070378\n294,595,5.0,1047071310\n294,596,3.0,1048537506\n294,597,3.0,1048536589\n294,605,4.0,1048536796\n294,616,4.0,1048537566\n294,619,3.5,1061481899\n294,637,3.0,1082753338\n294,648,4.0,1159991786\n294,650,3.5,1119924948\n294,653,3.0,1106705389\n294,674,3.0,1071697304\n294,708,4.0,1047072262\n294,709,3.0,1048537584\n294,743,3.0,1047074233\n294,745,5.0,1048537484\n294,750,3.0,1093376509\n294,761,3.0,1090423342\n294,780,4.5,1106707945\n294,783,3.0,1047071414\n294,802,2.0,1048536574\n294,805,3.5,1082753064\n294,818,3.0,1047074163\n294,830,4.0,1047072724\n294,833,2.0,1047074195\n294,838,4.5,1055278523\n294,879,2.5,1124152074\n294,898,4.0,1106701536\n294,899,5.0,1047071274\n294,900,5.0,1047071310\n294,901,3.5,1055279057\n294,902,2.0,1047070345\n294,903,3.5,1105649201\n294,904,4.0,1077573479\n294,906,4.5,1077573454\n294,907,4.0,1048536602\n294,908,4.5,1106705453\n294,910,4.0,1062536640\n294,911,4.5,1055278517\n294,912,4.0,1048536399\n294,913,3.0,1047070673\n294,914,3.5,1082753273\n294,915,3.0,1048536450\n294,916,4.0,1048536464\n294,917,3.5,1119924534\n294,918,2.0,1047071310\n294,919,4.0,1106705274\n294,920,4.0,1048536589\n294,926,4.0,1119924230\n294,930,3.5,1064251668\n294,931,3.0,1054069501\n294,932,3.0,1048536701\n294,933,4.5,1106700638\n294,935,3.5,1055278619\n294,938,3.0,1047071361\n294,945,4.0,1047071290\n294,955,4.5,1055278799\n294,969,3.5,1077660182\n294,1014,3.5,1119924374\n294,1015,3.5,1071697154\n294,1017,4.0,1062622284\n294,1018,4.0,1047072485\n294,1019,3.0,1071697199\n294,1020,4.0,1047072445\n294,1022,5.0,1047071361\n294,1023,3.5,1124151130\n294,1024,3.0,1047071395\n294,1025,3.0,1048537584\n294,1027,4.0,1061481860\n294,1028,3.5,1082753109\n294,1029,3.0,1047071382\n294,1030,2.0,1047071485\n294,1031,3.0,1047071430\n294,1032,3.0,1047071414\n294,1033,3.0,1048537608\n294,1035,4.0,1047071274\n294,1036,3.5,1106705252\n294,1042,4.5,1055278852\n294,1064,3.0,1047072640\n294,1073,4.0,1047072227\n294,1079,3.5,1062536612\n294,1080,3.0,1047071834\n294,1081,2.0,1047071414\n294,1086,4.0,1077573458\n294,1088,3.5,1055278624\n294,1092,3.0,1077573585\n294,1097,3.0,1062622347\n294,1125,4.0,1062537000\n294,1136,4.5,1062536648\n294,1148,5.0,1047071604\n294,1167,3.0,1047070415\n294,1188,4.5,1106707675\n294,1196,4.0,1159991784\n294,1197,5.0,1047070314\n294,1198,4.5,1055278751\n294,1210,4.0,1047070394\n294,1215,3.0,1047072752\n294,1223,4.0,1048537484\n294,1234,4.0,1062536669\n294,1265,3.0,1048536409\n294,1269,5.0,1047071684\n294,1270,4.0,1161746877\n294,1271,3.0,1082753305\n294,1275,3.0,1054068709\n294,1278,4.5,1062536592\n294,1282,4.5,1106708015\n294,1285,3.0,1047072011\n294,1288,3.5,1091809058\n294,1291,4.5,1055278915\n294,1307,3.5,1106705289\n294,1339,3.0,1048536856\n294,1345,3.5,1120446774\n294,1353,2.0,1048536869\n294,1356,3.5,1054068556\n294,1363,4.0,1106700981\n294,1366,4.0,1090422659\n294,1370,2.5,1054068636\n294,1377,3.0,1047072589\n294,1380,4.5,1055278586\n294,1381,4.0,1047071532\n294,1387,3.0,1054068369\n294,1391,3.0,1047072959\n294,1396,4.0,1061481730\n294,1407,3.5,1082753046\n294,1416,4.5,1055278747\n294,1438,2.5,1054068413\n294,1441,3.0,1047072024\n294,1449,3.5,1082753500\n294,1453,4.0,1105649326\n294,1457,3.5,1055279054\n294,1485,4.0,1047072370\n294,1489,4.0,1047071430\n294,1513,4.0,1047070713\n294,1517,4.0,1106705413\n294,1527,4.5,1055278805\n294,1544,3.0,1054068726\n294,1552,4.0,1055278950\n294,1562,2.5,1054068722\n294,1566,3.0,1047071456\n294,1569,4.5,1055278740\n294,1580,4.5,1055278537\n294,1584,3.5,1082753008\n294,1593,3.0,1047072654\n294,1597,4.0,1048536833\n294,1608,3.5,1082753092\n294,1610,3.5,1071696185\n294,1645,3.0,1077573544\n294,1653,3.5,1106705476\n294,1672,4.0,1119925518\n294,1674,3.0,1048536525\n294,1678,4.0,1106700788\n294,1681,3.0,1054068993\n294,1682,4.0,1082753069\n294,1688,4.5,1055278794\n294,1704,3.0,1159049682\n294,1713,2.0,1047072575\n294,1717,3.5,1141056273\n294,1721,3.5,1106705225\n294,1722,3.0,1048536701\n294,1735,2.5,1071005556\n294,1747,4.0,1047072116\n294,1777,4.5,1055278818\n294,1779,4.0,1063633667\n294,1797,4.0,1082754248\n294,1801,4.0,1106708119\n294,1805,3.0,1077573547\n294,1858,2.5,1054068548\n294,1876,3.5,1119924418\n294,1881,4.0,1132097652\n294,1888,3.0,1047072416\n294,1894,4.0,1047072617\n294,1907,4.0,1134756496\n294,1934,3.0,1055278655\n294,1947,4.0,1048536464\n294,1949,4.0,1119924094\n294,1956,3.5,1119923835\n294,1967,3.5,1062622300\n294,1968,3.5,1062537061\n294,1994,3.0,1082753347\n294,2005,3.5,1062622304\n294,2006,4.5,1055278677\n294,2013,2.0,1054068456\n294,2017,3.0,1047071499\n294,2018,3.0,1048537506\n294,2031,3.5,1062619422\n294,2033,3.5,1076966006\n294,2038,3.0,1047070617\n294,2039,3.5,1062622431\n294,2040,4.0,1159992463\n294,2042,3.5,1062620067\n294,2045,3.0,1054069631\n294,2046,3.5,1119924856\n294,2048,4.5,1055278612\n294,2052,3.0,1047074181\n294,2053,4.0,1106700766\n294,2054,4.0,1047072959\n294,2057,3.5,1090423028\n294,2058,3.0,1071696303\n294,2059,4.0,1047070432\n294,2072,3.5,1119925385\n294,2078,3.0,1047072102\n294,2080,4.0,1047071290\n294,2081,5.0,1047071337\n294,2082,3.5,1062622376\n294,2083,4.0,1047071414\n294,2085,3.0,1048537523\n294,2087,4.0,1047071337\n294,2089,4.0,1048537566\n294,2090,3.0,1048537542\n294,2092,3.0,1047071532\n294,2093,3.0,1047070713\n294,2094,3.0,1054068462\n294,2096,5.0,1047071382\n294,2099,2.0,1048537566\n294,2100,2.5,1054069308\n294,2102,3.0,1048537542\n294,2105,3.5,1082753253\n294,2109,3.5,1062537110\n294,2115,4.5,1055278837\n294,2116,3.0,1048537566\n294,2123,2.0,1048537608\n294,2124,4.0,1047072556\n294,2125,4.5,1055278766\n294,2136,4.0,1119924404\n294,2137,3.0,1048537523\n294,2139,3.0,1048537566\n294,2140,4.0,1124154671\n294,2141,3.0,1048537584\n294,2142,3.0,1047073014\n294,2143,3.5,1055279041\n294,2144,3.5,1055279020\n294,2145,2.0,1047072236\n294,2146,3.5,1125284106\n294,2150,4.0,1062537026\n294,2151,4.5,1106707664\n294,2153,2.5,1054069036\n294,2160,3.5,1119923918\n294,2161,3.5,1062622312\n294,2162,3.5,1062622447\n294,2163,3.5,1106708140\n294,2167,3.5,1128957057\n294,2168,4.5,1106708143\n294,2193,3.5,1054068471\n294,2206,3.5,1119923882\n294,2253,3.0,1047074205\n294,2259,2.0,1048537346\n294,2273,3.5,1055279016\n294,2291,3.5,1126407814\n294,2301,3.0,1047072673\n294,2316,2.0,1048536856\n294,2321,4.0,1062537038\n294,2335,3.5,1124151100\n294,2336,3.5,1155576258\n294,2355,4.0,1047071021\n294,2366,3.5,1071697261\n294,2367,3.5,1102111700\n294,2375,4.5,1055278569\n294,2376,3.0,1054068630\n294,2384,3.5,1062619546\n294,2385,2.0,1048537015\n294,2393,3.0,1054068467\n294,2394,4.5,1055278637\n294,2396,4.0,1047070730\n294,2399,3.5,1082753602\n294,2405,4.0,1047072317\n294,2406,4.5,1055278580\n294,2413,4.5,1062619431\n294,2420,3.5,1119924774\n294,2424,4.0,1048536762\n294,2431,3.5,1062619311\n294,2457,2.0,1071696252\n294,2478,3.0,1047072826\n294,2485,4.0,1047070730\n294,2491,2.5,1055278425\n294,2496,4.0,1047072352\n294,2500,3.0,1062620123\n294,2501,4.0,1112390215\n294,2502,4.0,1106707785\n294,2528,2.5,1054068585\n294,2541,3.0,1047071031\n294,2565,4.0,1119925388\n294,2567,3.0,1047072370\n294,2571,4.5,1055278632\n294,2572,3.0,1047070596\n294,2581,4.0,1105649266\n294,2582,3.5,1062619933\n294,2599,3.5,1163346198\n294,2605,4.5,1055278912\n294,2616,3.0,1054068812\n294,2617,4.5,1106705502\n294,2622,4.5,1106708206\n294,2628,2.5,1124150876\n294,2640,3.0,1054068295\n294,2643,3.0,1071696431\n294,2644,4.0,1102111564\n294,2657,3.0,1047071456\n294,2664,3.5,1106700744\n294,2671,3.0,1047071980\n294,2672,3.5,1119924599\n294,2683,3.0,1047070596\n294,2687,3.0,1048537523\n294,2690,5.0,1047070662\n294,2691,3.5,1124151414\n294,2701,3.0,1047070749\n294,2709,3.5,1055278992\n294,2712,3.0,1092514336\n294,2716,4.0,1047071073\n294,2717,4.0,1062619349\n294,2723,4.0,1047070688\n294,2724,4.0,1047070730\n294,2745,3.5,1082754141\n294,2746,4.0,1047071430\n294,2747,2.0,1047072262\n294,2748,3.5,1106704855\n294,2759,4.0,1159991294\n294,2763,3.5,1106705601\n294,2791,4.0,1047071742\n294,2792,3.5,1062619522\n294,2797,3.5,1062536975\n294,2804,4.0,1055278704\n294,2805,4.0,1047071110\n294,2822,2.5,1054069991\n294,2826,3.0,1071696235\n294,2846,4.0,1062622389\n294,2866,3.0,1082753581\n294,2874,4.0,1143064157\n294,2876,3.0,1048537634\n294,2877,2.0,1124151977\n294,2886,3.0,1119924548\n294,2888,3.0,1047070638\n294,2915,2.0,1047072116\n294,2916,3.5,1106705343\n294,2918,3.5,1062536582\n294,2926,4.0,1047072272\n294,2940,3.5,1124151964\n294,2941,3.0,1047071382\n294,2942,3.0,1048536923\n294,2947,3.0,1054068321\n294,2948,3.0,1054068324\n294,2949,3.0,1047070365\n294,2950,2.0,1048537358\n294,2961,5.0,1047070730\n294,2987,3.5,1106705357\n294,2989,2.5,1054068555\n294,2990,2.5,1054068510\n294,2991,2.5,1054068603\n294,2993,2.5,1054068567\n294,2997,3.0,1047070994\n294,3000,3.0,1048537484\n294,3004,4.0,1047070605\n294,3005,4.0,1047071004\n294,3033,4.0,1047072454\n294,3034,4.5,1055278846\n294,3052,4.0,1120446587\n294,3054,4.5,1055278724\n294,3079,3.5,1090423525\n294,3081,4.0,1103227369\n294,3082,3.5,1054068538\n294,3097,4.0,1119922769\n294,3107,2.0,1054068543\n294,3114,4.0,1047071176\n294,3153,3.0,1054068489\n294,3156,3.0,1047072306\n294,3159,4.5,1055278663\n294,3166,4.0,1071697413\n294,3168,1.5,1071697253\n294,3174,2.0,1047071110\n294,3175,4.5,1106708271\n294,3210,3.0,1047072011\n294,3247,4.0,1062619308\n294,3248,3.0,1047074107\n294,3253,3.0,1047071918\n294,3254,2.0,1047072640\n294,3255,3.0,1047070331\n294,3257,3.0,1048536893\n294,3258,4.0,1047072968\n294,3259,3.0,1048536772\n294,3264,3.5,1062619536\n294,3270,4.5,1119924648\n294,3299,3.0,1090423005\n294,3301,4.0,1062536792\n294,3363,3.5,1062536606\n294,3388,3.0,1047072836\n294,3396,4.0,1055278595\n294,3397,4.5,1055278589\n294,3398,4.5,1055278572\n294,3399,3.0,1047072227\n294,3408,3.0,1047071049\n294,3429,3.0,1048537484\n294,3450,4.0,1062536801\n294,3452,3.0,1048536923\n294,3462,3.5,1061481741\n294,3471,3.5,1119923472\n294,3477,3.0,1119925016\n294,3481,3.0,1082753156\n294,3483,4.5,1093376429\n294,3489,3.0,1071697266\n294,3507,3.0,1047071720\n294,3512,5.0,1047071148\n294,3520,4.0,1047074337\n294,3536,4.5,1055278564\n294,3545,2.0,1047071290\n294,3546,3.5,1119923683\n294,3549,4.0,1047071274\n294,3552,3.5,1119923218\n294,3564,3.5,1119924823\n294,3578,4.0,1047071073\n294,3594,4.5,1106708279\n294,3599,4.0,1047071337\n294,3604,3.0,1047071382\n294,3606,4.0,1047070688\n294,3608,2.0,1047072299\n294,3611,3.0,1048537608\n294,3612,5.0,1047071337\n294,3616,3.5,1124150406\n294,3623,3.0,1047071124\n294,3624,3.0,1054068515\n294,3633,2.5,1054068504\n294,3635,2.5,1054068527\n294,3638,3.0,1048536893\n294,3639,2.5,1054068499\n294,3668,3.0,1048536525\n294,3669,3.0,1047074142\n294,3671,3.0,1062536588\n294,3673,4.0,1062622455\n294,3675,4.0,1047071310\n294,3688,2.5,1062619475\n294,3699,2.5,1054069686\n294,3705,3.0,1048536981\n294,3717,4.0,1055278533\n294,3751,4.0,1047071021\n294,3759,3.0,1054069169\n294,3771,3.0,1054068501\n294,3775,3.0,1047071382\n294,3791,4.5,1102110474\n294,3793,4.5,1055278820\n294,3807,3.0,1071696520\n294,3812,3.0,1047071934\n294,3825,4.0,1124153369\n294,3857,3.5,1151335173\n294,3863,3.5,1096664152\n294,3868,3.0,1047072215\n294,3869,3.5,1062619651\n294,3877,3.0,1054069056\n294,3882,4.0,1047072745\n294,3889,2.5,1054068980\n294,3901,3.0,1047072788\n294,3911,4.0,1047071752\n294,3921,3.0,1047074195\n294,3922,3.0,1047072911\n294,3924,3.0,1092325363\n294,3927,4.0,1106704637\n294,3928,3.5,1062536830\n294,3936,3.5,1119922968\n294,3948,3.5,1055279093\n294,3963,4.0,1106701153\n294,3964,3.0,1048537542\n294,3968,3.5,1055278880\n294,3977,4.5,1055278828\n294,3979,3.5,1106700882\n294,3984,2.5,1054068524\n294,3993,3.5,1064251656\n294,3996,4.0,1106705394\n294,3997,3.5,1071697297\n294,4014,4.0,1047071766\n294,4016,4.0,1047071958\n294,4018,3.5,1077660214\n294,4024,2.5,1092325535\n294,4025,4.5,1055278864\n294,4027,4.0,1062536612\n294,4029,3.0,1047072056\n294,4030,3.5,1090423414\n294,4036,3.0,1082754087\n294,4039,3.0,1047071430\n294,4054,3.0,1048536677\n294,4061,3.0,1048536483\n294,4062,2.0,1048536615\n294,4068,3.5,1095364089\n294,4069,4.0,1047072745\n294,4081,3.0,1047074337\n294,4090,3.0,1048537542\n294,4124,2.0,1047070432\n294,4130,3.5,1062620098\n294,4132,3.0,1047073014\n294,4133,2.0,1054068986\n294,4141,3.5,1055278396\n294,4142,2.5,1054068953\n294,4168,3.5,1062536781\n294,4169,4.5,1112389930\n294,4177,4.0,1077573485\n294,4188,3.0,1047071456\n294,4212,4.0,1077573492\n294,4219,4.0,1047072534\n294,4228,3.5,1062536768\n294,4231,3.5,1055798095\n294,4246,4.0,1048536535\n294,4248,4.0,1047072470\n294,4270,3.5,1055279107\n294,4291,4.0,1047072430\n294,4294,2.0,1047071456\n294,4299,3.0,1054068571\n294,4306,5.0,1048537506\n294,4308,5.0,1047071361\n294,4317,3.0,1048536952\n294,4344,4.0,1125284091\n294,4356,3.5,1149462617\n294,4357,3.5,1147138594\n294,4359,3.0,1047071662\n294,4366,4.0,1117751702\n294,4367,3.0,1054068821\n294,4387,3.0,1055798108\n294,4388,3.0,1092067676\n294,4394,3.0,1047071517\n294,4402,2.0,1047072776\n294,4420,3.0,1082754069\n294,4446,3.5,1124151034\n294,4447,4.5,1055278567\n294,4467,3.0,1071697239\n294,4489,4.0,1062536517\n294,4499,4.5,1055278520\n294,4508,3.0,1106700873\n294,4511,2.5,1054069326\n294,4519,3.0,1048537594\n294,4563,3.5,1062619489\n294,4571,3.0,1071697219\n294,4587,3.5,1062619480\n294,4621,3.5,1062619394\n294,4639,3.0,1047070973\n294,4663,4.0,1047072880\n294,4678,3.5,1062619569\n294,4699,4.0,1092690722\n294,4700,3.5,1055279010\n294,4701,4.0,1047072440\n294,4738,4.0,1047072430\n294,4743,4.5,1106707703\n294,4757,3.5,1112390434\n294,4767,4.0,1119925284\n294,4774,3.5,1062536945\n294,4800,3.5,1102111714\n294,4802,4.0,1047071807\n294,4816,4.0,1047072493\n294,4818,2.0,1054068878\n294,4823,4.5,1055278868\n294,4846,3.5,1054068316\n294,4857,3.0,1047071274\n294,4862,3.5,1106702026\n294,4865,3.5,1077573535\n294,4886,4.5,1055278643\n294,4887,2.5,1090530605\n294,4896,4.0,1062622258\n294,4912,4.0,1143064198\n294,4941,1.5,1054068885\n294,4963,4.0,1047071918\n294,4974,3.0,1090422453\n294,4992,3.5,1077573340\n294,4993,4.0,1071697132\n294,4995,3.0,1077660032\n294,5012,1.0,1047071470\n294,5013,3.0,1047071662\n294,5021,4.0,1164512355\n294,5038,4.0,1048537506\n294,5047,3.0,1077659882\n294,5048,3.5,1125875329\n294,5053,3.5,1159992570\n294,5064,4.0,1112390008\n294,5103,4.5,1055278546\n294,5109,3.5,1159992434\n294,5120,1.5,1062536600\n294,5128,4.0,1106701111\n294,5159,3.0,1048537624\n294,5168,4.5,1055278541\n294,5214,3.5,1062619399\n294,5218,2.5,1054069134\n294,5254,3.0,1128957059\n294,5279,3.0,1047072011\n294,5297,4.0,1103227364\n294,5299,4.5,1055278600\n294,5303,4.0,1047074254\n294,5305,3.5,1062621868\n294,5308,3.5,1062619317\n294,5309,3.0,1047072947\n294,5312,3.0,1060805119\n294,5313,3.0,1058904991\n294,5337,4.0,1047074130\n294,5349,4.0,1054068300\n294,5354,3.5,1062536736\n294,5357,3.5,1119925087\n294,5361,3.5,1071697164\n294,5372,4.0,1047071485\n294,5375,3.0,1047071337\n294,5378,3.0,1124150867\n294,5380,4.5,1062536548\n294,5401,3.5,1062536912\n294,5418,4.0,1102108184\n294,5419,4.0,1055798075\n294,5444,4.0,1055278962\n294,5449,4.0,1163634121\n294,5452,3.0,1048537412\n294,5459,4.0,1047072764\n294,5460,2.5,1054068889\n294,5481,4.0,1123973142\n294,5504,4.0,1114025763\n294,5507,3.5,1160767173\n294,5530,4.0,1112389683\n294,5538,3.0,1048537672\n294,5539,3.0,1048537672\n294,5540,4.0,1071697358\n294,5541,3.0,1047072788\n294,5609,3.5,1095364078\n294,5618,4.5,1054068267\n294,5620,4.5,1055278935\n294,5629,4.0,1062622264\n294,5650,3.0,1047072024\n294,5693,2.0,1047071310\n294,5705,3.0,1047071499\n294,5747,3.5,1119923947\n294,5809,3.5,1095363977\n294,5816,4.0,1062622261\n294,5841,3.0,1048537368\n294,5872,4.0,1102107942\n294,5882,4.0,1151597021\n294,5900,3.5,1055278691\n294,5943,4.0,1125765372\n294,5952,4.0,1082753292\n294,5955,4.0,1057170888\n294,5957,4.0,1077573362\n294,5989,4.5,1055278696\n294,5991,4.5,1106707690\n294,6060,3.5,1121694204\n294,6093,3.5,1159992725\n294,6124,3.0,1062537014\n294,6155,4.0,1062171626\n294,6156,4.0,1047070532\n294,6157,3.5,1077573307\n294,6170,3.5,1119923171\n294,6182,4.0,1130360138\n294,6183,4.5,1055278681\n294,6212,3.5,1093376475\n294,6218,4.5,1058905031\n294,6245,3.0,1047070463\n294,6252,4.0,1138983587\n294,6254,4.0,1143739341\n294,6260,3.5,1119924439\n294,6266,4.0,1159991425\n294,6294,4.0,1112389758\n294,6296,4.5,1055278675\n294,6316,3.5,1062620111\n294,6333,4.5,1055278940\n294,6345,3.5,1082754336\n294,6355,4.5,1112390505\n294,6357,3.5,1054069352\n294,6358,4.0,1054069739\n294,6365,4.0,1064431400\n294,6367,4.0,1071696006\n294,6373,4.0,1103227330\n294,6377,4.0,1073939865\n294,6378,4.5,1062536369\n294,6385,4.0,1061481943\n294,6387,4.0,1062536442\n294,6390,4.0,1112390478\n294,6414,3.5,1062622323\n294,6423,3.5,1062619979\n294,6454,3.5,1124152768\n294,6480,4.0,1061481793\n294,6493,4.5,1102107898\n294,6503,4.0,1058905010\n294,6533,3.5,1061481824\n294,6535,4.0,1105649306\n294,6536,4.5,1128957039\n294,6539,4.5,1060030674\n294,6541,4.0,1082753448\n294,6561,4.0,1157813545\n294,6564,3.5,1112389725\n294,6568,3.5,1151335089\n294,6593,4.0,1149957517\n294,6596,3.5,1102107909\n294,6618,3.5,1081803920\n294,6646,3.0,1082754019\n294,6659,4.0,1062537020\n294,6662,4.0,1112390280\n294,6663,3.5,1062536819\n294,6665,3.5,1102111535\n294,6703,3.5,1163268951\n294,6709,3.5,1106700618\n294,6723,3.5,1071696157\n294,6732,4.0,1062619901\n294,6744,3.5,1063633853\n294,6754,4.5,1164512381\n294,6755,3.0,1121694174\n294,6765,3.5,1071695972\n294,6785,3.5,1077660201\n294,6791,4.5,1119924149\n294,6863,3.5,1103227267\n294,6873,3.5,1065734047\n294,6874,3.0,1071695953\n294,6888,3.5,1132097689\n294,6889,3.0,1081803732\n294,6893,4.0,1082753661\n294,6942,4.0,1084474236\n294,6944,4.0,1082753654\n294,6959,3.5,1125765397\n294,6970,4.0,1090422539\n294,6974,4.0,1124151299\n294,6996,2.5,1071696909\n294,6999,3.5,1077660494\n294,7000,3.5,1151437977\n294,7001,3.5,1077573421\n294,7046,3.5,1119925331\n294,7060,3.5,1082753782\n294,7075,4.5,1071696964\n294,7078,3.5,1119923185\n294,7080,4.0,1119922954\n294,7082,4.0,1077660016\n294,7102,3.0,1082754322\n294,7122,3.5,1157813559\n294,7142,4.0,1091809044\n294,7147,3.5,1084301305\n294,7149,4.0,1105648008\n294,7151,4.0,1135700644\n294,7153,4.0,1073426072\n294,7155,4.0,1105649287\n294,7161,3.0,1081803748\n294,7165,4.0,1076966023\n294,7173,3.5,1156207826\n294,7186,3.5,1077573615\n294,7212,4.0,1119925112\n294,7228,2.5,1077573591\n294,7255,3.5,1138983548\n294,7293,4.0,1159049948\n294,7294,3.0,1090422702\n294,7303,4.0,1119922983\n294,7308,3.0,1081803849\n294,7320,4.0,1126407838\n294,7361,4.0,1149462575\n294,7362,4.0,1143064051\n294,7369,4.0,1102111490\n294,7373,4.0,1151550507\n294,7375,4.0,1119922752\n294,7380,4.5,1082752765\n294,7386,3.5,1082754548\n294,7438,3.5,1159049496\n294,7444,4.0,1119924688\n294,7451,4.0,1105649250\n294,7454,4.5,1102107922\n294,7570,4.0,1102111709\n294,7573,3.5,1093376503\n294,7579,4.5,1119925359\n294,7584,3.5,1119923303\n294,7614,4.0,1112390438\n294,7720,3.5,1102111621\n294,7757,4.0,1102111763\n294,7790,4.0,1106701831\n294,7822,3.5,1106704706\n294,7888,3.5,1115309520\n294,7916,3.5,1124153150\n294,8008,4.0,1112389867\n294,8015,3.5,1106704666\n294,8196,2.0,1112390524\n294,8228,3.5,1119924114\n294,8263,3.5,1112390511\n294,8360,4.5,1086722919\n294,8368,4.5,1106324915\n294,8373,4.0,1090422442\n294,8385,4.0,1117751363\n294,8460,4.0,1112390445\n294,8464,4.5,1112389674\n294,8482,3.5,1106701568\n294,8502,4.0,1112390418\n294,8525,3.5,1090422729\n294,8528,3.5,1143064072\n294,8529,3.5,1103227283\n294,8574,4.0,1112389893\n294,8580,4.5,1112389875\n294,8636,3.5,1119923345\n294,8665,4.0,1133892074\n294,8666,4.0,1143064040\n294,8712,4.5,1109298234\n294,8796,4.0,1090422483\n294,8808,4.0,1112389753\n294,8833,4.0,1116865097\n294,8865,4.5,1140395889\n294,8874,3.5,1119923794\n294,8879,4.0,1102110456\n294,8916,4.0,1155576725\n294,8948,3.0,1149469657\n294,8949,3.5,1149462473\n294,8961,4.5,1112389713\n294,8970,4.0,1123972974\n294,8972,4.5,1117751436\n294,8981,3.5,1149462457\n294,8983,4.0,1155781760\n294,8985,3.5,1149462544\n294,8986,4.0,1106702222\n294,8988,4.0,1123973581\n294,8989,4.0,1112390046\n294,8998,4.0,1106701561\n294,8999,4.0,1106701573\n294,9000,3.5,1119924840\n294,25937,4.0,1119922929\n294,25971,3.5,1113179438\n294,26084,4.5,1123973541\n294,26152,4.0,1159992373\n294,26386,4.0,1147138705\n294,26662,3.5,1159992408\n294,26680,3.5,1112390030\n294,27660,3.0,1159049832\n294,27706,4.0,1117751456\n294,30793,3.5,1133891970\n294,30812,3.5,1123972992\n294,30816,5.0,1105648036\n294,30822,3.5,1149462555\n294,31026,4.5,1105648049\n294,31221,4.0,1161746848\n294,31685,4.0,1141056102\n294,31694,4.5,1133893278\n294,31696,4.0,1121694276\n294,32296,4.0,1124723538\n294,32381,4.0,1117751532\n294,32587,4.0,1149462505\n294,33004,4.0,1115309461\n294,33493,4.0,1116865108\n294,33639,4.0,1138983092\n294,33679,4.0,1119067149\n294,33794,4.0,1132097669\n294,33836,4.5,1125284133\n294,34072,4.0,1124582761\n294,34150,4.0,1133891948\n294,34153,4.0,1151335077\n294,34332,4.5,1155576702\n294,35957,4.0,1163605934\n294,36401,4.0,1138983041\n294,36525,4.0,1149469833\n294,37729,3.5,1161746962\n294,38038,4.0,1133891996\n294,39435,4.0,1130637562\n294,40629,4.0,1143064137\n294,40815,4.5,1135700655\n294,40819,4.5,1143739211\n294,40851,4.0,1143064337\n294,41566,5.0,1134342205\n294,41571,4.0,1149957501\n294,42732,4.5,1151335103\n294,42738,4.0,1164512376\n294,44613,3.5,1159049478\n294,45028,4.0,1164512401\n294,45499,4.0,1161746784\n294,45517,4.0,1163268936\n295,6,4.5,1100132745\n295,10,4.5,1100132288\n295,39,4.0,1100132738\n295,47,4.5,1100132248\n295,50,4.5,1112545460\n295,95,4.0,1100132733\n295,110,4.0,1100132070\n295,112,3.0,1100129158\n295,150,4.5,1100132064\n295,153,3.0,1100132122\n295,163,4.5,1100129334\n295,165,4.0,1100131014\n295,185,3.5,1100132359\n295,186,3.5,1100129361\n295,208,3.5,1100132730\n295,231,4.0,1100132299\n295,260,5.0,1100129602\n295,292,3.0,1100132293\n295,293,4.5,1112543769\n295,296,4.0,1100132058\n295,315,3.5,1100129266\n295,316,4.5,1100132139\n295,318,4.5,1100129621\n295,339,3.5,1100132372\n295,344,4.5,1100131029\n295,356,4.5,1100132048\n295,357,3.5,1100132355\n295,364,4.0,1100132252\n295,367,3.5,1100132329\n295,370,4.0,1100129353\n295,374,2.5,1112544429\n295,377,4.0,1100131849\n295,380,4.0,1100131837\n295,434,4.0,1100132341\n295,457,4.5,1100132040\n295,466,4.0,1100129306\n295,475,4.0,1112547028\n295,480,4.5,1100132043\n295,500,4.5,1100132301\n295,527,4.5,1100131832\n295,539,4.0,1100132351\n295,541,3.5,1112547096\n295,588,4.5,1100129540\n295,589,5.0,1100131003\n295,590,4.0,1112545344\n295,592,4.5,1100132036\n295,593,4.5,1100132051\n295,595,4.0,1100132136\n295,597,4.5,1100132272\n295,608,4.0,1100131762\n295,628,4.0,1112544728\n295,648,4.5,1100132132\n295,733,4.0,1100132270\n295,736,3.5,1100132148\n295,778,3.0,1112547198\n295,780,4.0,1100132080\n295,832,4.5,1100129190\n295,858,5.0,1100132276\n295,912,4.0,1112547267\n295,919,4.0,1112546710\n295,924,4.0,1112547303\n295,1035,4.0,1100129408\n295,1036,4.5,1112544567\n295,1084,3.5,1112547242\n295,1089,2.0,1112546830\n295,1097,4.5,1100131041\n295,1101,5.0,1100129218\n295,1127,3.0,1112545142\n295,1183,4.5,1100130631\n295,1196,5.0,1100129611\n295,1198,4.0,1100132261\n295,1210,5.0,1100129561\n295,1214,4.5,1100131770\n295,1220,2.5,1112546005\n295,1233,4.0,1112547138\n295,1240,5.0,1112544776\n295,1246,4.0,1112545273\n295,1270,5.0,1100132267\n295,1278,3.5,1100129273\n295,1291,4.0,1112544553\n295,1324,1.0,1100130714\n295,1357,4.0,1112546953\n295,1387,4.0,1112545388\n295,1393,5.0,1112544704\n295,1396,2.5,1112545159\n295,1485,4.0,1100129387\n295,1517,4.0,1100129122\n295,1527,3.5,1112545834\n295,1580,4.5,1100132760\n295,1584,4.5,1112545392\n295,1617,3.0,1100131750\n295,1625,4.0,1112544830\n295,1672,4.0,1112545312\n295,1682,3.0,1112545412\n295,1704,4.0,1112544716\n295,1721,4.0,1100132753\n295,1784,3.5,1112545127\n295,1907,4.0,1112544898\n295,1923,4.5,1112544951\n295,1954,4.0,1112545132\n295,1961,4.5,1112545248\n295,1967,4.0,1112546746\n295,2011,4.0,1100131018\n295,2028,4.5,1100132347\n295,2058,4.0,1112544794\n295,2081,4.0,1112545252\n295,2096,4.0,1112546678\n295,2115,4.0,1100131008\n295,2161,4.0,1112546692\n295,2167,4.0,1112545732\n295,2193,4.0,1112545869\n295,2268,5.0,1112544563\n295,2294,3.0,1112546128\n295,2301,4.0,1100130123\n295,2302,5.0,1100129401\n295,2321,4.0,1112545885\n295,2324,4.0,1112546139\n295,2355,4.0,1112545193\n295,2381,2.5,1100131158\n295,2420,4.0,1112543748\n295,2421,3.5,1112544401\n295,2445,2.5,1100130407\n295,2502,4.0,1112545903\n295,2529,4.0,1112546729\n295,2571,5.0,1100132364\n295,2572,4.0,1100131000\n295,2628,3.5,1100131723\n295,2640,3.5,1112545352\n295,2699,3.5,1100129380\n295,2762,4.5,1100131730\n295,2763,3.0,1112545404\n295,2791,3.5,1112545995\n295,2797,4.5,1100129133\n295,2841,4.0,1112545606\n295,2858,4.0,1100132283\n295,2908,4.0,1112547261\n295,2918,4.0,1112544811\n295,2950,3.5,1112544396\n295,2959,4.0,1112546101\n295,3006,3.5,1112546653\n295,3147,5.0,1112544540\n295,3160,3.0,1112547216\n295,3175,3.0,1112545897\n295,3178,4.5,1112544682\n295,3252,4.5,1112544768\n295,3408,4.0,1112545291\n295,3448,4.5,1112545166\n295,3471,4.5,1112545613\n295,3479,3.5,1112545988\n295,3510,3.5,1112544629\n295,3527,4.5,1112544839\n295,3578,4.0,1100131714\n295,3654,4.5,1112545731\n295,3740,3.5,1112546663\n295,3751,4.0,1112546704\n295,3793,5.0,1100129207\n295,3994,3.0,1112545934\n295,3996,3.5,1112546625\n295,4008,4.0,1100131025\n295,4015,2.0,1100130944\n295,4025,3.0,1112544156\n295,4033,4.5,1112545215\n295,4085,4.0,1112544611\n295,4105,2.0,1112546899\n295,4223,4.5,1112544709\n295,4262,4.5,1112545634\n295,4306,4.5,1100129241\n295,4489,3.5,1112545135\n295,4563,4.0,1112544325\n295,4720,4.5,1112545616\n295,4776,2.5,1112545321\n295,4886,4.5,1112544801\n295,4896,4.5,1112544885\n295,4901,4.0,1112545283\n295,4963,4.5,1112544700\n295,4979,1.0,1100130662\n295,4993,5.0,1100129182\n295,4995,4.5,1112545204\n295,5010,4.0,1112545209\n295,5135,3.0,1112547207\n295,5218,4.0,1112545398\n295,5299,4.0,1112545363\n295,5349,5.0,1112544660\n295,5418,4.5,1112544844\n295,5419,2.0,1100130102\n295,5445,4.5,1112544758\n295,5464,4.0,1112544667\n295,5782,4.5,1100131086\n295,5816,4.0,1112544825\n295,5952,5.0,1112544890\n295,5989,5.0,1112544834\n295,6218,3.5,1112546556\n295,6323,5.0,1112545357\n295,6333,4.5,1112544579\n295,6377,5.0,1112544789\n295,6378,4.0,1112544646\n295,6539,4.5,1112544804\n295,6565,4.5,1112545146\n295,6708,5.0,1112545839\n295,6709,4.0,1100131075\n295,6764,3.5,1112545772\n295,6776,4.0,1112547044\n295,6874,4.0,1112545763\n295,6942,3.0,1112545232\n295,6979,4.0,1112545153\n295,7143,4.0,1112544573\n295,7147,4.0,1112545908\n295,7153,4.5,1112544942\n295,7160,2.0,1112543805\n295,7263,3.5,1112544559\n295,7318,4.0,1100129527\n295,7348,4.0,1112546120\n295,7367,2.5,1100129901\n295,7438,4.0,1112545912\n295,7445,3.5,1112544625\n295,7449,4.0,1100130206\n295,7458,4.0,1112544068\n295,7701,2.5,1112544443\n295,8360,4.0,1112544671\n295,8368,4.0,1112544848\n295,8529,3.0,1112544871\n295,8622,4.5,1100129672\n295,8633,4.0,1112545457\n295,8636,5.0,1112544678\n295,8644,3.5,1112544737\n295,8665,3.5,1112544876\n295,8798,4.5,1112544857\n295,8810,3.0,1112544384\n295,8884,4.0,1100129850\n295,8907,3.0,1112544159\n295,8908,3.0,1112544146\n295,8947,4.5,1112544259\n295,8957,4.0,1112543772\n295,8958,4.5,1112543763\n295,8961,4.5,1112543756\n295,32302,2.0,1112547513\n296,575,5.0,1298158849\n296,588,5.0,1298166310\n296,833,4.5,1298158960\n296,1223,5.0,1298158665\n296,1441,4.0,1298158704\n296,1772,4.5,1298158826\n296,2109,3.5,1298158675\n296,2423,5.0,1298158715\n296,3210,4.5,1298158651\n296,3396,3.5,1298158686\n296,3552,0.5,1298158632\n296,3565,4.0,1298158907\n296,4018,4.0,1298158655\n296,4214,3.0,1298158801\n296,4247,0.5,1298158913\n296,4306,5.0,1298166290\n296,4973,3.5,1298159035\n296,6539,4.5,1298166284\n296,56152,5.0,1298158941\n296,79132,5.0,1298159100\n297,65,0.5,1318703137\n297,104,2.0,1318706475\n297,111,3.5,1318704981\n297,223,5.0,1318706138\n297,260,4.0,1318703899\n297,296,4.5,1318704279\n297,355,1.0,1318702961\n297,356,4.0,1318705332\n297,515,5.0,1318702944\n297,593,3.5,1318705334\n297,608,2.0,1318706724\n297,750,4.5,1318703821\n297,858,5.0,1318703828\n297,910,4.0,1321727762\n297,1089,4.5,1318706689\n297,1103,2.0,1318706171\n297,1136,4.0,1318706561\n297,1193,5.0,1318703706\n297,1198,4.0,1318703871\n297,1199,3.5,1318704154\n297,1206,4.5,1318704288\n297,1208,4.5,1318706964\n297,1209,4.0,1319481093\n297,1217,4.5,1318703875\n297,1221,3.5,1318703831\n297,1227,4.5,1319481099\n297,1232,5.0,1321728389\n297,1237,5.0,1318704164\n297,1244,4.0,1318703015\n297,1247,5.0,1318704607\n297,1251,5.0,1318704132\n297,1265,4.5,1318705739\n297,1270,4.0,1318705318\n297,1274,4.0,1318703033\n297,1281,4.0,1318705205\n297,1339,4.5,1318702953\n297,1562,0.5,1318702978\n297,1663,4.0,1318702999\n297,1732,4.5,1318706784\n297,1747,5.0,1318702939\n297,1923,2.0,1318706153\n297,1927,4.5,1318706984\n297,1968,3.0,1318705960\n297,2019,5.0,1318703884\n297,2300,4.0,1318703085\n297,2329,3.5,1318703740\n297,2502,3.0,1318706099\n297,2571,2.0,1318703854\n297,2642,1.0,1318703132\n297,2700,4.5,1318706313\n297,2706,4.0,1318706074\n297,2712,4.0,1318704146\n297,2716,4.0,1318705329\n297,2761,3.5,1318703023\n297,2797,3.0,1318706769\n297,2826,3.0,1318703050\n297,2858,5.0,1318703663\n297,2918,2.0,1318705951\n297,2959,4.0,1318703733\n297,2997,2.0,1318704283\n297,3000,4.5,1318705532\n297,3022,4.5,1318704569\n297,3030,5.0,1318703908\n297,3033,3.0,1318702933\n297,3159,2.0,1318703192\n297,3421,3.0,1318705985\n297,3462,5.0,1318704503\n297,3503,5.0,1321739572\n297,3617,2.0,1318706378\n297,3629,3.5,1318704580\n297,3788,4.5,1319480958\n297,3793,2.0,1318705311\n297,3814,4.0,1318704629\n297,4027,3.5,1318706797\n297,4278,3.0,1318705182\n297,4973,4.5,1318704291\n297,5110,1.5,1318706095\n297,5147,4.5,1318704151\n297,5283,2.5,1318706237\n297,5291,5.0,1318703879\n297,5618,4.5,1318705570\n297,5954,5.0,1318704995\n297,6016,3.5,1318703814\n297,6188,3.5,1318705974\n297,6216,4.5,1318705270\n297,6350,3.5,1318705557\n297,6666,5.0,1318704018\n297,6711,4.5,1318703701\n297,7063,4.5,1318704141\n297,7317,3.0,1318706339\n297,7323,3.0,1318705245\n297,7325,2.0,1318706874\n297,7766,4.5,1318704424\n297,7843,3.5,1318706142\n297,7925,2.5,1318704417\n297,7941,4.5,1318705431\n297,8275,3.5,1318705465\n297,8376,3.0,1318706071\n297,8528,2.0,1318706438\n297,8641,4.0,1318706549\n297,8807,3.5,1318706086\n297,8949,4.0,1318703692\n297,8961,3.5,1318705321\n297,8970,4.0,1318703424\n297,25750,3.0,1318705408\n297,25769,3.0,1318704575\n297,25771,4.0,1318704031\n297,34162,2.0,1318706191\n297,35836,4.0,1318705921\n297,37384,3.5,1318706129\n297,44195,5.0,1318706016\n297,44555,4.0,1318703863\n297,45728,3.0,1318706090\n297,47518,2.0,1318706204\n297,47640,2.0,1318706513\n297,52885,5.0,1318705510\n297,52973,3.0,1318706459\n297,54503,4.5,1318705802\n297,55820,2.0,1318706700\n297,56367,2.5,1318705989\n297,58559,4.0,1318703818\n297,58998,2.5,1318705970\n297,60126,3.5,1318706849\n297,61024,4.0,1318706006\n297,62434,3.0,1318706149\n297,63131,3.5,1318705933\n297,68157,4.5,1318706917\n297,69122,3.5,1318706064\n297,72011,4.0,1318703710\n297,76077,2.0,1318706320\n297,76251,4.0,1318706266\n297,78209,2.0,1318706212\n297,78321,1.0,1318705798\n297,79008,3.5,1318706249\n297,79132,4.0,1318703836\n297,79274,4.0,1318703963\n297,86882,5.0,1318703369\n297,87869,3.0,1318706254\n298,2,5.0,1447369122\n298,6,3.5,1446576656\n298,19,4.0,1447369129\n298,260,4.0,1446576625\n298,318,5.0,1446576619\n298,608,5.0,1447366275\n298,741,5.0,1447366172\n298,778,5.0,1463600087\n298,1036,5.0,1447366267\n298,1198,4.0,1446576627\n298,1206,5.0,1447368467\n298,1222,5.0,1447365973\n298,1270,5.0,1447368925\n298,1274,5.0,1447366171\n298,1682,4.0,1446576649\n298,2000,5.0,1447365949\n298,2232,5.0,1447368485\n298,2329,3.5,1446576660\n298,2571,5.0,1446576616\n298,2580,5.0,1463600082\n298,3000,5.0,1447366779\n298,3581,5.0,1463600074\n298,3949,5.0,1463600037\n298,4886,5.0,1463600613\n298,4993,3.0,1446576635\n298,5618,5.0,1447366717\n298,5903,5.0,1447367910\n298,5971,5.0,1447366783\n298,6283,5.0,1447367732\n298,6539,5.0,1463600639\n298,7099,5.0,1447366174\n298,7153,3.0,1446576633\n298,7361,5.0,1447366668\n298,26776,5.0,1447365422\n298,27728,5.0,1447367698\n298,31658,5.0,1447366781\n298,31660,5.0,1447366180\n298,32460,5.0,1447366489\n298,32554,5.0,1447366241\n298,34405,5.0,1447368499\n298,55167,5.0,1447368037\n298,56251,5.0,1447368496\n298,58559,4.0,1446576629\n298,60069,5.0,1447369335\n298,62115,5.0,1463600566\n298,65261,5.0,1447366785\n298,66297,5.0,1447368446\n298,69481,5.0,1447366104\n298,73017,5.0,1447365955\n298,74458,5.0,1447368528\n298,74727,5.0,1447366535\n298,79132,5.0,1446576686\n298,81229,5.0,1447365922\n298,83132,5.0,1447369812\n298,84844,5.0,1447365900\n298,92259,5.0,1447366314\n298,96610,5.0,1447367727\n298,97752,5.0,1447367790\n298,98124,5.0,1447368554\n298,98491,5.0,1447369316\n298,98615,5.0,1447369554\n298,101864,4.0,1447368645\n298,102666,5.0,1447366330\n298,104283,5.0,1447366805\n298,106100,5.0,1447365430\n298,107412,5.0,1447366598\n298,109374,5.0,1447368619\n298,109487,5.0,1447368766\n298,111759,5.0,1447368454\n298,118468,5.0,1447366724\n298,121126,5.0,1463599987\n298,122882,4.0,1447365438\n298,127052,5.0,1447366507\n298,136449,5.0,1447369319\n298,158956,4.0,1463600602\n299,16,4.5,1344185928\n299,29,4.5,1344183896\n299,32,5.0,1344183785\n299,47,4.5,1344427470\n299,70,4.5,1344188827\n299,111,4.5,1344185877\n299,117,4.0,1344427521\n299,163,4.5,1344188818\n299,166,5.0,1344179650\n299,175,4.0,1344182997\n299,178,3.5,1344184508\n299,180,3.5,1344187571\n299,223,4.5,1344187548\n299,235,5.0,1344187128\n299,247,4.0,1344177302\n299,288,5.0,1344186086\n299,296,3.0,1344181156\n299,347,4.0,1344180418\n299,444,2.5,1344181807\n299,471,4.5,1344186741\n299,488,3.5,1344179382\n299,532,3.5,1344185251\n299,541,4.0,1344428537\n299,562,3.5,1344178870\n299,581,4.5,1344180055\n299,589,4.0,1344428533\n299,592,4.0,1344187164\n299,599,4.5,1344188994\n299,608,5.0,1344186832\n299,714,4.5,1344177550\n299,839,3.5,1344177458\n299,849,3.5,1344177232\n299,910,3.0,1344187441\n299,922,5.0,1344177371\n299,968,4.0,1344427549\n299,1089,4.5,1344181162\n299,1090,4.0,1344186059\n299,1093,4.5,1344186079\n299,1114,3.5,1344188347\n299,1129,4.5,1344428655\n299,1136,5.0,1344183758\n299,1137,4.0,1344178446\n299,1161,4.5,1344427268\n299,1173,4.5,1344178767\n299,1175,4.5,1344183907\n299,1199,3.0,1344183719\n299,1206,4.0,1344182416\n299,1208,5.0,1344427352\n299,1209,5.0,1344188947\n299,1211,5.0,1344177520\n299,1213,5.0,1344185914\n299,1222,5.0,1344182429\n299,1227,5.0,1344188940\n299,1243,5.0,1344428285\n299,1245,4.0,1344186826\n299,1252,5.0,1344180378\n299,1258,3.5,1344182422\n299,1273,5.0,1344181459\n299,1279,4.0,1344181477\n299,1305,4.5,1344188215\n299,1306,4.0,1344188245\n299,1321,3.5,1344177288\n299,1343,4.0,1344185903\n299,1354,3.5,1344180756\n299,1361,4.5,1344427132\n299,1377,4.0,1344187183\n299,1391,4.5,1344187191\n299,1394,4.0,1344186760\n299,1419,5.0,1344182671\n299,1464,4.5,1344180621\n299,1483,4.5,1344177600\n299,1529,4.5,1344179623\n299,1611,5.0,1344181763\n299,1627,2.5,1344186108\n299,1639,3.5,1344187553\n299,1652,3.5,1344181520\n299,1673,4.5,1344182315\n299,1690,3.5,1344183920\n299,1704,2.5,1344181751\n299,1729,4.0,1344181196\n299,1732,5.0,1344186837\n299,1748,4.0,1344428486\n299,1785,4.0,1344188330\n299,1884,4.0,1344183725\n299,1921,5.0,1344181924\n299,1924,4.0,1344177647\n299,1965,5.0,1344177340\n299,1982,4.0,1344177358\n299,2021,2.5,1344180612\n299,2022,4.5,1344185873\n299,2076,4.5,1344177262\n299,2159,4.5,1344178084\n299,2160,5.0,1344180390\n299,2174,4.5,1344187148\n299,2282,4.5,1344185232\n299,2291,4.0,1344187141\n299,2313,4.5,1344180597\n299,2318,4.0,1344178865\n299,2337,4.0,1344181064\n299,2348,5.0,1344181361\n299,2361,4.5,1344185246\n299,2428,3.5,1344188856\n299,2440,5.0,1344183016\n299,2455,5.0,1344178136\n299,2459,4.5,1344427259\n299,2551,5.0,1344179354\n299,2600,4.0,1344179390\n299,2712,5.0,1344182435\n299,2729,4.0,1344182407\n299,2862,3.5,1344427749\n299,2864,2.5,1344179640\n299,2892,4.0,1344188374\n299,2926,4.0,1344185241\n299,2952,3.5,1344182301\n299,2964,3.5,1344183120\n299,2968,4.0,1344177196\n299,2976,5.0,1344185954\n299,2985,4.0,1344428666\n299,2997,4.0,1344188084\n299,3018,5.0,1344177701\n299,3019,4.0,1344181703\n299,3052,4.5,1344187564\n299,3070,4.0,1344428234\n299,3081,3.5,1344187123\n299,3083,5.0,1344184571\n299,3108,4.0,1344183745\n299,3160,3.5,1344182296\n299,3218,5.0,1344181090\n299,3221,4.0,1344178743\n299,3253,4.5,1344187838\n299,3262,3.5,1344180629\n299,3267,4.0,1344188843\n299,3272,4.5,1344188340\n299,3328,4.0,1344181484\n299,3355,4.5,1344180440\n299,3386,5.0,1344186054\n299,3435,3.5,1344187434\n299,3459,4.0,1344178635\n299,3521,4.0,1344181464\n299,3535,2.5,1344427586\n299,3556,4.0,1344188148\n299,3569,4.5,1344180770\n299,3626,4.5,1344178788\n299,3676,2.5,1344177991\n299,3679,5.0,1344187827\n299,3683,4.5,1344186819\n299,3858,5.0,1344185257\n299,3910,3.0,1344180733\n299,3925,5.0,1344181470\n299,3949,4.5,1344181945\n299,4007,3.5,1344186047\n299,4008,3.5,1344186070\n299,4027,4.5,1344186843\n299,4282,4.0,1344427686\n299,4294,4.5,1344428139\n299,4407,4.5,1344186042\n299,4450,5.0,1344183002\n299,4467,4.5,1344183732\n299,4500,4.5,1344178738\n299,4506,2.5,1344180452\n299,4518,4.5,1344178630\n299,4552,5.0,1344177888\n299,4612,4.5,1344184453\n299,4642,5.0,1344180131\n299,4643,0.5,1344187209\n299,4658,4.5,1344179497\n299,4697,5.0,1344182841\n299,4734,3.0,1344187585\n299,4752,4.0,1344182917\n299,4848,5.0,1344180605\n299,4863,4.0,1344185218\n299,4878,2.5,1344428055\n299,4881,4.0,1344186769\n299,4973,3.0,1344183913\n299,5074,4.5,1344178881\n299,5275,4.0,1344185959\n299,5298,3.5,1344188013\n299,5385,4.0,1344185848\n299,5473,5.0,1344180850\n299,5508,4.5,1344187642\n299,5608,4.5,1344427176\n299,5673,3.5,1344182307\n299,5735,3.5,1344184687\n299,5780,4.5,1344185223\n299,5812,4.0,1344181019\n299,5853,4.0,1344179405\n299,5902,4.0,1344188089\n299,5909,3.5,1344178270\n299,5956,5.0,1344185923\n299,5995,5.0,1344180384\n299,6021,4.0,1344188232\n299,6114,3.5,1344181508\n299,6121,4.5,1344180894\n299,6132,3.5,1344427702\n299,6162,1.5,1344181781\n299,6184,5.0,1344182690\n299,6197,2.5,1344179376\n299,6290,4.5,1344189222\n299,6291,4.5,1344427225\n299,6440,4.0,1344186798\n299,6465,4.5,1344179924\n299,6602,4.5,1344182827\n299,6707,3.5,1344189153\n299,6709,4.0,1344188835\n299,6711,5.0,1344188144\n299,6730,3.5,1344189016\n299,6774,5.0,1344179366\n299,6807,4.0,1344183779\n299,6873,3.5,1344186865\n299,6874,4.0,1344181172\n299,6890,3.0,1344181853\n299,6975,4.0,1344427366\n299,6987,4.5,1344428360\n299,7022,4.0,1344428593\n299,7024,5.0,1344182163\n299,7044,4.5,1344180581\n299,7123,5.0,1344179346\n299,7147,3.5,1344187134\n299,7235,5.0,1344178230\n299,7361,4.5,1344188004\n299,7371,4.5,1344180747\n299,7387,4.5,1344427328\n299,7438,4.0,1344181183\n299,7460,4.5,1344181505\n299,7505,4.5,1344180738\n299,7764,3.0,1344188357\n299,7878,4.5,1344181376\n299,7889,4.5,1344189005\n299,7920,4.0,1344185212\n299,7976,4.5,1344183025\n299,8126,4.5,1344184838\n299,8189,4.0,1344184386\n299,8240,5.0,1344179634\n299,8499,4.0,1344184344\n299,8507,3.5,1344184780\n299,8800,4.5,1344187670\n299,8872,3.5,1344185263\n299,8892,4.0,1344182854\n299,8893,4.5,1344182848\n299,8906,4.0,1344182236\n299,8923,4.5,1344180412\n299,8938,5.0,1344180176\n299,8973,3.5,1344184582\n299,25744,4.5,1344182025\n299,25771,5.0,1344427916\n299,26164,4.0,1344179492\n299,26231,5.0,1344182678\n299,26241,4.5,1344178593\n299,26258,5.0,1344179486\n299,26326,5.0,1344179480\n299,26494,4.5,1344187844\n299,26524,5.0,1344180060\n299,26655,4.5,1344180065\n299,26680,4.0,1344185237\n299,26684,4.5,1344182832\n299,26749,5.0,1344178772\n299,26809,4.5,1344178762\n299,26810,4.5,1344184001\n299,26974,3.5,1344183104\n299,27322,3.5,1344180071\n299,27721,4.5,1344183892\n299,27792,5.0,1344187915\n299,30793,1.0,1344187158\n299,30812,4.0,1344185894\n299,31270,4.5,1344179360\n299,31410,4.5,1344427208\n299,31682,4.5,1344184043\n299,32515,5.0,1344181368\n299,32587,4.0,1344188848\n299,32735,4.0,1344182134\n299,32797,4.5,1344180884\n299,32840,5.0,1344187102\n299,32898,4.5,1344428080\n299,33021,3.5,1344184607\n299,33138,5.0,1344178876\n299,33171,5.0,1344179618\n299,34323,5.0,1344189204\n299,34326,5.0,1344181789\n299,34437,5.0,1344181490\n299,36401,4.0,1344183797\n299,37729,3.0,1344187116\n299,37733,3.5,1344179340\n299,39659,3.5,1344182143\n299,40226,5.0,1344185036\n299,42723,4.0,1344189149\n299,42900,5.0,1344180404\n299,45521,3.5,1344183011\n299,45728,2.5,1344187558\n299,45880,3.5,1344188154\n299,46544,4.5,1344179902\n299,46976,4.0,1344428372\n299,47274,4.0,1344184326\n299,47465,3.5,1344183767\n299,47997,3.5,1344428679\n299,48043,4.0,1344181934\n299,48394,4.0,1344427441\n299,48516,4.5,1344185937\n299,48744,4.5,1344180144\n299,49902,4.0,1344182156\n299,49932,3.5,1344180587\n299,50011,4.5,1344427962\n299,50912,4.0,1344181736\n299,51380,4.0,1344182149\n299,52831,4.0,1344182923\n299,53435,4.0,1344189159\n299,53447,4.5,1344181777\n299,53519,4.5,1344181292\n299,54785,4.0,1344189215\n299,54995,4.0,1344188807\n299,55118,3.5,1344179333\n299,55820,4.5,1344186747\n299,56003,4.0,1344428423\n299,56079,1.0,1344179644\n299,56286,4.0,1344181050\n299,56757,3.5,1344187109\n299,58520,4.5,1344181766\n299,59339,4.5,1344183108\n299,59387,3.5,1344427820\n299,60384,5.0,1344848380\n299,60684,4.5,1344428585\n299,61323,4.0,1344186812\n299,62434,3.5,1344187578\n299,62437,4.0,1344186091\n299,62511,4.5,1344188050\n299,62764,4.5,1344184358\n299,63276,4.0,1344178309\n299,63836,5.0,1344180943\n299,63876,5.0,1344181710\n299,64839,5.0,1344181940\n299,67957,4.5,1344181057\n299,68157,4.5,1344181211\n299,68237,4.0,1344428507\n299,69134,3.0,1344180774\n299,69516,4.5,1344181514\n299,69951,4.5,1344183750\n299,70994,3.5,1344189230\n299,71390,5.0,1344181266\n299,71494,4.0,1344189209\n299,71745,4.0,1344188094\n299,72109,4.0,1344185106\n299,72880,4.0,1344180241\n299,73531,4.0,1344179916\n299,74458,3.5,1344185842\n299,74789,1.5,1344187169\n299,75349,2.5,1344183033\n299,75823,4.5,1344177955\n299,76173,4.0,1344183903\n299,77291,5.0,1344178611\n299,77307,4.5,1344427389\n299,79203,4.5,1344178783\n299,79686,4.5,1344180201\n299,80217,4.5,1344178913\n299,80219,4.5,1344188812\n299,80553,5.0,1344180075\n299,81083,4.0,1344179628\n299,81591,5.0,1344181929\n299,82150,3.5,1344428000\n299,83829,4.5,1344180332\n299,83976,4.0,1344187660\n299,87884,3.5,1344178599\n299,88106,3.5,1344178574\n299,90374,3.5,1344427574\n299,90866,3.5,1344185859\n299,92424,4.0,1344181086\n299,95113,5.0,1344180325\n299,95115,4.5,1344180336\n299,95752,4.5,1344178532\n300,32,4.5,1108049525\n300,110,5.0,1108043921\n300,150,4.5,1108044940\n300,260,4.0,1108045871\n300,356,4.5,1108045520\n300,480,5.0,1108043917\n300,588,2.0,1108049512\n300,589,4.5,1108044948\n300,593,4.5,1108049532\n300,733,5.0,1108044952\n300,1042,3.5,1086012135\n300,1198,4.5,1108049217\n300,1210,4.5,1108049537\n300,1291,4.5,1108049221\n300,1339,3.0,1086012226\n300,1370,4.0,1108043994\n300,1391,4.0,1108043999\n300,1527,4.0,1108043979\n300,1562,3.5,1086012727\n300,1608,4.0,1108044003\n300,1625,4.0,1108044934\n300,1748,3.0,1086011939\n300,1917,5.0,1086011056\n300,1918,3.5,1086012498\n300,1997,3.0,1103031601\n300,2001,3.5,1108045847\n300,2006,3.5,1086011506\n300,2012,3.0,1108043992\n300,2167,3.5,1086012123\n300,2529,5.0,1108043911\n300,2617,4.0,1086011220\n300,2628,5.0,1108045864\n300,2683,3.5,1108045842\n300,2858,4.0,1108045856\n300,2985,3.0,1108049541\n300,3081,4.0,1086011786\n300,3147,4.5,1108045850\n300,3471,4.0,1086011449\n300,3578,4.5,1086010878\n300,3623,4.5,1108045250\n300,3753,4.5,1108045503\n300,3996,4.0,1086010960\n300,4022,4.5,1086011441\n300,5445,4.5,1108045839\n301,107,1.0,1245880619\n301,203,4.0,1245880647\n301,262,2.0,1245880713\n301,1429,0.5,1245880728\n301,1835,5.0,1245880679\n301,2088,3.0,1245880740\n301,2132,5.0,1245880811\n301,2136,3.5,1245880804\n301,2139,3.0,1245880700\n301,2471,0.5,1245880665\n301,2513,3.0,1245880777\n301,2857,4.0,1245880705\n301,2995,5.0,1245880807\n301,3148,3.0,1245880616\n301,3156,4.0,1245880767\n301,3545,5.0,1245880813\n301,3591,2.0,1245880791\n301,4214,2.0,1245880787\n301,5308,3.5,1245880802\n301,64957,4.5,1245881009\n301,66665,5.0,1245880881\n301,68554,5.0,1245880865\n301,68848,5.0,1245880891\n302,10,3.0,843720729\n302,158,3.0,843793194\n302,165,3.0,843720570\n302,168,3.0,843793216\n302,186,3.0,843793164\n302,225,3.0,843720824\n302,236,4.0,849241461\n302,256,3.0,843793279\n302,315,3.0,849241687\n302,316,3.0,843720636\n302,357,3.0,843720873\n302,362,3.0,849241476\n302,364,3.0,843720769\n302,370,3.0,843793370\n302,420,3.0,843720853\n302,435,2.0,849241829\n302,457,4.0,843720636\n302,466,3.0,843793337\n302,480,4.0,843720680\n302,485,3.0,843793370\n302,509,5.0,843793109\n302,539,4.0,843720853\n302,586,4.0,843720824\n302,587,3.0,843720824\n302,588,4.0,843720570\n302,589,3.0,843720769\n302,590,4.0,843720537\n302,592,3.0,843720537\n302,593,5.0,843720636\n302,594,3.0,843793337\n302,595,4.0,843720636\n302,596,4.0,849241587\n302,597,3.0,843720824\n302,616,3.0,849241508\n302,1084,3.0,849241587\n303,25,3.5,1299489759\n303,32,3.0,1299449785\n303,47,2.5,1299446741\n303,50,3.5,1299439935\n303,62,3.5,1299489556\n303,223,4.0,1299489695\n303,253,3.0,1299489313\n303,256,2.5,1299437815\n303,260,4.0,1299489397\n303,265,3.5,1299437768\n303,282,3.5,1299590828\n303,288,3.5,1299489595\n303,296,4.0,1299446725\n303,318,4.5,1299591103\n303,339,3.0,1299489574\n303,356,3.0,1299446785\n303,367,2.0,1299449773\n303,377,2.5,1307087571\n303,380,3.5,1299446828\n303,440,4.0,1299490094\n303,500,2.5,1299451294\n303,508,3.0,1299489840\n303,509,3.5,1299489857\n303,520,3.0,1299590811\n303,527,4.0,1299446802\n303,539,3.0,1299489885\n303,586,1.0,1299489612\n303,587,3.0,1299489382\n303,590,3.5,1299446704\n303,592,2.5,1299446728\n303,593,4.0,1299439952\n303,594,3.5,1299490035\n303,595,2.5,1299489296\n303,597,3.0,1299451311\n303,608,4.0,1299446710\n303,750,3.5,1299451419\n303,778,4.0,1299489683\n303,780,3.0,1299489370\n303,858,4.0,1299451392\n303,919,4.0,1299489663\n303,920,4.5,1299489940\n303,953,4.0,1299590586\n303,1022,3.0,1299437849\n303,1028,4.5,1299590621\n303,1029,3.5,1299437834\n303,1035,4.0,1299490126\n303,1036,3.0,1299489270\n303,1059,3.0,1299437821\n303,1073,3.5,1299489324\n303,1079,4.5,1299489918\n303,1080,4.0,1325226148\n303,1088,3.0,1299437783\n303,1089,5.0,1299451462\n303,1090,3.5,1299490029\n303,1092,3.0,1299590759\n303,1093,3.5,1299437888\n303,1094,3.0,1299590562\n303,1097,3.5,1299489330\n303,1101,3.0,1299489568\n303,1136,5.0,1299449754\n303,1193,4.5,1299451396\n303,1196,4.0,1299446858\n303,1197,5.0,1307087575\n303,1198,4.0,1299439946\n303,1200,3.5,1299489242\n303,1206,4.5,1299489454\n303,1213,4.5,1299451405\n303,1214,3.0,1299594152\n303,1220,4.0,1299489787\n303,1221,4.0,1299451400\n303,1222,4.5,1299451422\n303,1225,4.5,1299489646\n303,1240,3.5,1299489302\n303,1242,4.0,1299590879\n303,1246,5.0,1299489643\n303,1247,4.0,1299590535\n303,1258,3.5,1299489675\n303,1259,4.5,1299489733\n303,1263,4.0,1299437793\n303,1265,5.0,1299451304\n303,1270,4.5,1299446732\n303,1285,3.5,1299590854\n303,1288,4.0,1299490077\n303,1302,4.5,1299590619\n303,1307,4.0,1299489603\n303,1380,5.0,1299489938\n303,1394,4.0,1299490060\n303,1513,3.5,1299437870\n303,1517,2.0,1299489354\n303,1527,3.5,1299489225\n303,1580,3.5,1299489267\n303,1610,3.0,1299489442\n303,1639,3.0,1299489873\n303,1674,4.5,1299490119\n303,1682,4.0,1299489679\n303,1704,4.5,1299489341\n303,1721,3.0,1299449761\n303,1732,4.5,1299489589\n303,1954,3.5,1299489818\n303,1961,4.0,1299451320\n303,1962,3.5,1299437863\n303,1968,3.5,1299489583\n303,1994,3.0,1299590834\n303,1997,3.5,1299489928\n303,2000,2.0,1299489514\n303,2001,2.0,1299437738\n303,2005,4.0,1299590681\n303,2011,4.5,1299489466\n303,2012,4.5,1299489687\n303,2028,3.5,1299446777\n303,2054,3.0,1299489500\n303,2081,3.0,1299489749\n303,2100,3.0,1299437756\n303,2115,4.5,1299489725\n303,2174,4.5,1299489317\n303,2193,3.0,1299437843\n303,2194,4.0,1299489638\n303,2291,3.5,1299489403\n303,2300,4.0,1307087826\n303,2302,4.5,1299489670\n303,2329,3.5,1299439707\n303,2355,2.5,1299489619\n303,2396,3.5,1299489319\n303,2407,4.0,1299490111\n303,2455,3.5,1299590673\n303,2470,3.5,1299489925\n303,2539,3.5,1299590858\n303,2542,4.5,1299489989\n303,2571,4.5,1299489346\n303,2640,3.0,1299489667\n303,2657,4.5,1299489779\n303,2692,4.0,1299489900\n303,2706,2.5,1299451352\n303,2712,2.0,1299489765\n303,2716,4.0,1299489305\n303,2762,2.0,1299446799\n303,2791,3.5,1299489492\n303,2797,4.0,1299489366\n303,2858,4.0,1299439764\n303,2916,4.5,1299489549\n303,2918,4.5,1299451356\n303,2959,4.0,1299446714\n303,2987,3.0,1299451362\n303,2997,4.5,1299446817\n303,3033,3.0,1299490074\n303,3039,4.0,1299590704\n303,3052,4.5,1299489536\n303,3147,3.5,1299489428\n303,3210,3.5,1299437892\n303,3255,3.0,1299437799\n303,3386,3.0,1299590893\n303,3396,4.5,1325226566\n303,3418,3.5,1299489752\n303,3448,4.0,1299489998\n303,3499,3.5,1299590774\n303,3552,3.0,1299590687\n303,3949,4.0,1299489854\n303,4002,3.5,1299590751\n303,4011,5.0,1299489359\n303,4018,3.5,1299437898\n303,4022,3.5,1299451344\n303,4027,4.5,1299489503\n303,4085,2.5,1299437803\n303,4226,3.5,1299451317\n303,4246,3.0,1299489633\n303,4306,3.5,1299446826\n303,4321,3.5,1299590814\n303,4571,4.5,1299590610\n303,4878,3.5,1299489415\n303,4886,3.0,1299446755\n303,4896,4.0,1299489436\n303,4973,3.5,1299439754\n303,4975,3.5,1299590741\n303,4995,4.0,1299446835\n303,5266,2.5,1299590661\n303,5618,4.5,1299590626\n303,5669,4.0,1299489447\n303,5679,3.0,1299489805\n303,5816,4.0,1299489478\n303,5902,4.0,1299490032\n303,5989,3.5,1299489343\n303,5991,4.0,1299437884\n303,5995,3.5,1299439943\n303,6218,4.0,1299490130\n303,6711,3.0,1299449777\n303,6874,2.0,1299489246\n303,6942,3.0,1299590527\n303,8169,3.5,1299438027\n303,8368,4.0,1299489815\n303,8376,2.5,1299590552\n303,8464,4.0,1299489850\n303,8622,4.0,1299489701\n303,8949,3.0,1299489881\n303,30707,4.5,1299489720\n303,31284,3.5,1299489529\n303,33166,3.5,1445697535\n303,39183,4.5,1299590603\n303,40815,4.0,1299489564\n303,42351,4.0,1327155228\n303,54001,4.0,1299490039\n303,55247,4.5,1299590867\n303,56367,4.0,1299451339\n303,63082,4.0,1299489204\n303,64614,4.0,1445697465\n303,64957,3.5,1299590707\n303,65665,4.0,1299446717\n303,68954,4.0,1299489710\n303,69481,4.0,1299590579\n303,69757,3.5,1299489627\n303,69849,4.5,1299591121\n303,72011,3.0,1299489987\n303,72998,3.0,1299446847\n303,73344,5.0,1299449059\n303,77658,4.5,1445697527\n303,79132,4.0,1445697510\n303,81834,3.0,1445697482\n303,81845,4.0,1299451381\n303,84506,3.5,1299590789\n303,84844,2.0,1299489283\n303,88125,3.5,1445697471\n303,92259,3.5,1445697479\n303,109374,3.0,1445697539\n303,134853,4.0,1445697567\n304,14,4.0,1352656620\n304,25,5.0,1352656153\n304,47,5.0,1352655655\n304,50,4.5,1352654894\n304,150,4.0,1352654938\n304,175,4.5,1352654536\n304,185,3.5,1352655869\n304,223,5.0,1352656222\n304,235,5.0,1352656147\n304,260,3.0,1352655620\n304,296,5.0,1352655265\n304,300,4.5,1352655877\n304,318,5.0,1352654887\n304,344,1.5,1352655661\n304,356,4.5,1352655609\n304,364,2.0,1352655675\n304,413,3.0,1352654466\n304,419,3.0,1352654551\n304,527,0.5,1352656725\n304,595,1.5,1352655686\n304,608,5.0,1352655651\n304,610,3.5,1352654370\n304,778,5.0,1352656215\n304,904,5.0,1352654909\n304,912,4.0,1352654906\n304,914,4.0,1352655994\n304,923,4.5,1352655990\n304,924,5.0,1352655162\n304,1015,1.5,1352654672\n304,1077,4.5,1352655152\n304,1089,5.0,1352655295\n304,1091,1.5,1352654503\n304,1193,4.5,1352654919\n304,1196,3.5,1352655136\n304,1199,3.5,1352655159\n304,1206,5.0,1352655156\n304,1210,3.0,1352655115\n304,1225,4.0,1352655846\n304,1270,4.0,1352655141\n304,1282,3.0,1352656396\n304,1303,4.5,1352655524\n304,1381,2.0,1352654614\n304,1394,3.5,1352655972\n304,1499,0.5,1352654490\n304,1653,5.0,1352656513\n304,1693,3.5,1352654556\n304,1704,3.5,1352655836\n304,1732,5.0,1352656567\n304,1873,3.0,1352656119\n304,1884,5.0,1352655511\n304,1885,5.0,1352654591\n304,1921,4.5,1352655180\n304,1968,3.5,1352655833\n304,2019,4.5,1352654903\n304,2064,4.0,1352654970\n304,2109,3.5,1352655941\n304,2145,1.5,1352654367\n304,2294,3.5,1352655932\n304,2329,5.0,1352655828\n304,2528,4.0,1352656098\n304,2571,3.5,1352655129\n304,2628,2.0,1352656203\n304,2683,3.0,1352655784\n304,2700,4.5,1352656386\n304,2747,2.0,1352654757\n304,2858,4.5,1352655648\n304,2926,4.5,1352654688\n304,3077,4.0,1352654991\n304,3247,2.0,1352654436\n304,3253,3.5,1352655913\n304,3386,4.5,1352656605\n304,3462,4.0,1352656073\n304,3471,3.5,1352655119\n304,4239,5.0,1352656358\n304,4278,4.5,1352656774\n304,4306,0.5,1352656195\n304,4344,1.0,1352654499\n304,4878,5.0,1352655170\n304,4979,4.5,1352656170\n304,4993,2.5,1352656191\n304,5669,4.0,1352654973\n304,5995,1.5,1352656249\n304,6934,2.0,1352655901\n304,7090,5.0,1352655800\n304,7300,3.5,1352655321\n304,7323,4.5,1352655381\n304,8376,1.5,1352656237\n304,8582,4.5,1352655082\n304,27773,4.5,1352656045\n304,27846,5.0,1352655048\n304,30846,3.0,1352656628\n304,31410,5.0,1352655487\n304,33903,4.0,1352655403\n304,44555,4.5,1352654917\n304,44788,5.0,1352656298\n304,45172,4.5,1352655371\n304,45728,3.5,1352656033\n304,45950,4.0,1352656309\n304,50851,4.5,1352655046\n304,52281,5.0,1352656022\n304,53519,4.5,1352655253\n304,53883,5.0,1352655026\n304,54881,4.5,1352655339\n304,55442,5.0,1352656471\n304,55820,5.0,1352655883\n304,58303,4.5,1352655477\n304,59731,5.0,1352656546\n304,64620,4.5,1352656622\n304,67508,5.0,1352655422\n304,68237,5.0,1352655168\n304,70286,5.0,1352656502\n304,79132,4.0,1352655124\n304,93040,5.0,1352654981\n305,112,3.0,947402392\n305,153,3.0,947402442\n305,164,3.0,947401901\n305,296,3.0,947401656\n305,306,4.0,947401683\n305,307,4.0,947401721\n305,318,3.0,947401709\n305,347,4.0,947401811\n305,380,2.0,947402392\n305,434,3.0,947402392\n305,480,2.0,947401494\n305,541,4.0,947402031\n305,546,1.0,947402442\n305,590,3.0,947402392\n305,608,2.0,947401646\n305,711,1.0,947401564\n305,1097,1.0,947401538\n305,1125,1.0,947401564\n305,1252,3.0,947402109\n305,1267,4.0,947402109\n305,1499,1.0,947402442\n305,1544,2.0,947402442\n305,1580,3.0,947402392\n305,1617,3.0,947401901\n305,1783,3.0,947401901\n305,2716,2.0,947401513\n305,2917,5.0,947401793\n305,2938,5.0,947401767\n305,2943,1.0,947401669\n306,1,3.0,956083012\n306,2,4.0,939716745\n306,5,2.0,956082033\n306,7,2.0,939717948\n306,11,4.0,939718559\n306,14,3.0,939724401\n306,16,4.0,939722228\n306,17,4.0,939720907\n306,19,4.0,939720147\n306,21,4.0,939715755\n306,25,4.0,939721044\n306,34,4.0,939717358\n306,35,3.0,939724401\n306,37,3.0,941546415\n306,39,5.0,939718559\n306,45,4.0,939718559\n306,47,4.0,939716937\n306,50,4.0,939716937\n306,52,4.0,939718327\n306,57,2.0,939724436\n306,62,3.0,939724163\n306,74,2.0,956081702\n306,88,3.0,948837547\n306,105,2.0,956081775\n306,110,3.0,939715834\n306,132,3.0,939901886\n306,135,1.0,956081971\n306,140,3.0,956083044\n306,141,4.0,939719150\n306,144,3.0,939718243\n306,150,4.0,939721148\n306,160,1.0,939716309\n306,161,2.0,956081904\n306,165,4.0,939716043\n306,176,3.0,939717432\n306,179,3.0,941550841\n306,185,3.0,939901886\n306,186,3.0,939719284\n306,193,2.0,956082732\n306,195,2.0,939719310\n306,196,1.0,940348195\n306,206,2.0,956083044\n306,207,4.0,941549001\n306,218,3.0,939717495\n306,222,3.0,939739488\n306,223,3.0,956081880\n306,224,4.0,939718243\n306,225,3.0,941550990\n306,231,5.0,939720101\n306,236,2.0,956082081\n306,237,4.0,939719042\n306,252,3.0,941553669\n306,253,3.0,940348067\n306,256,3.0,965847834\n306,260,5.0,939901120\n306,265,4.0,939721044\n306,266,3.0,948836912\n306,270,2.0,956082396\n306,278,2.0,939719150\n306,280,3.0,939722809\n306,282,3.0,941548678\n306,288,3.0,939902368\n306,289,3.0,939718964\n306,292,3.0,939716078\n306,296,4.0,939716937\n306,299,4.0,939721148\n306,300,4.0,939720948\n306,305,1.0,939720067\n306,312,3.0,939720174\n306,316,3.0,939716104\n306,318,5.0,939720907\n306,319,4.0,939901498\n306,333,4.0,939720032\n306,337,3.0,956083068\n306,339,3.0,939718181\n306,342,3.0,939718181\n306,344,4.0,939720010\n306,345,4.0,939718181\n306,349,4.0,939716017\n306,350,3.0,939901712\n306,351,2.0,939724314\n306,356,5.0,939717358\n306,357,4.0,939717947\n306,360,2.0,939716406\n306,361,4.0,939739465\n306,364,4.0,948835929\n306,370,4.0,941545367\n306,371,3.0,941549152\n306,372,3.0,939719126\n306,373,4.0,939901440\n306,376,3.0,939716275\n306,377,4.0,939715755\n306,378,3.0,939719042\n306,380,5.0,939716694\n306,381,3.0,939722971\n306,410,3.0,939720010\n306,412,4.0,941549456\n306,414,3.0,939720010\n306,417,3.0,939718732\n306,420,4.0,939716406\n306,422,3.0,948912802\n306,423,3.0,939716254\n306,427,2.0,939902498\n306,428,3.0,939722616\n306,432,2.0,956081852\n306,436,3.0,939902428\n306,440,5.0,939719042\n306,450,3.0,941551523\n306,453,2.0,941554624\n306,454,4.0,939901677\n306,455,3.0,939716822\n306,457,4.0,939715834\n306,471,3.0,939718996\n306,474,3.0,939715755\n306,475,4.0,941548613\n306,477,3.0,948835891\n306,480,3.0,939715919\n306,490,3.0,939901763\n306,491,3.0,941550663\n306,492,4.0,939719126\n306,494,3.0,939715754\n306,498,2.0,941551603\n306,500,4.0,939719126\n306,508,4.0,939721148\n306,509,4.0,939726158\n306,515,4.0,939722615\n306,521,2.0,939901794\n306,524,4.0,939722867\n306,527,5.0,939720871\n306,534,3.0,965846757\n306,535,3.0,939720948\n306,538,4.0,941549971\n306,539,4.0,939718327\n306,540,3.0,939902428\n306,543,3.0,948837056\n306,574,3.0,956082861\n306,585,4.0,939718886\n306,586,3.0,939720032\n306,587,4.0,939718886\n306,589,4.0,939715795\n306,590,3.0,939716694\n306,593,4.0,939720907\n306,595,4.0,948919659\n306,597,4.0,939719073\n306,605,3.0,941549152\n306,608,4.0,939716937\n306,628,4.0,941549001\n306,648,3.0,939716104\n306,707,3.0,939901531\n306,708,3.0,939718760\n306,719,3.0,948837088\n306,733,4.0,939716017\n306,736,4.0,939716194\n306,762,1.0,939717209\n306,778,4.0,939722784\n306,780,4.0,939716078\n306,784,4.0,939720032\n306,785,2.0,965846948\n306,786,2.0,956081997\n306,802,2.0,939726025\n306,804,3.0,948836827\n306,805,2.0,939723938\n306,818,3.0,939719206\n306,830,4.0,939719178\n306,832,4.0,939901712\n306,851,3.0,941549068\n306,852,3.0,939717652\n306,858,4.0,939901187\n306,866,1.0,956081750\n306,882,3.0,939902223\n306,899,5.0,940246268\n306,900,3.0,940246648\n306,901,3.0,940246806\n306,902,4.0,940247120\n306,903,4.0,940246268\n306,904,5.0,940246604\n306,906,3.0,956082109\n306,908,4.0,940246184\n306,910,4.0,940246604\n306,911,4.0,940245832\n306,914,4.0,940001322\n306,915,4.0,940246268\n306,916,5.0,940246604\n306,918,3.0,940338329\n306,919,4.0,941544536\n306,924,4.0,940245832\n306,932,4.0,940246648\n306,933,4.0,941546173\n306,934,4.0,956083294\n306,938,3.0,940246648\n306,953,5.0,939999490\n306,994,4.0,939720974\n306,999,3.0,956081554\n306,1003,3.0,939901763\n306,1009,3.0,948834804\n306,1010,3.0,940247361\n306,1015,4.0,939716745\n306,1019,4.0,940246648\n306,1020,3.0,939719096\n306,1022,4.0,948834313\n306,1027,3.0,939723087\n306,1028,4.0,940001322\n306,1031,3.0,948834771\n306,1032,4.0,948834313\n306,1035,4.0,940001322\n306,1036,4.0,939815354\n306,1041,4.0,939722839\n306,1042,4.0,939719042\n306,1057,3.0,965847184\n306,1060,5.0,939717495\n306,1061,3.0,939717048\n306,1073,4.0,939901016\n306,1077,4.0,939900951\n306,1079,4.0,939760617\n306,1081,4.0,940001280\n306,1088,4.0,939760516\n306,1092,4.0,939901763\n306,1094,4.0,939722946\n306,1096,4.0,939814997\n306,1097,5.0,939814893\n306,1101,4.0,939760516\n306,1120,4.0,939722228\n306,1124,3.0,939814997\n306,1125,3.0,939901016\n306,1131,4.0,948834967\n306,1132,3.0,940347601\n306,1135,5.0,940347331\n306,1136,4.0,939900951\n306,1171,3.0,948836993\n306,1172,4.0,939760436\n306,1177,4.0,939722677\n306,1179,4.0,939717070\n306,1183,1.0,939722678\n306,1184,4.0,939718211\n306,1185,4.0,939815026\n306,1186,4.0,939815026\n306,1187,3.0,941550691\n306,1188,4.0,939718732\n306,1191,3.0,948836176\n306,1196,4.0,939760436\n306,1197,4.0,939760436\n306,1198,5.0,939815354\n306,1206,4.0,948834634\n306,1210,4.0,939715795\n306,1213,5.0,939716974\n306,1214,3.0,956081610\n306,1216,3.0,956081725\n306,1220,4.0,939760617\n306,1225,5.0,939814967\n306,1230,4.0,939901017\n306,1234,5.0,939900951\n306,1235,1.0,956082230\n306,1240,5.0,939903033\n306,1244,3.0,939901059\n306,1246,4.0,939814940\n306,1247,4.0,940247225\n306,1249,3.0,948835714\n306,1257,2.0,939760664\n306,1258,4.0,948834931\n306,1259,4.0,939760759\n306,1265,4.0,939717432\n306,1268,4.0,941549425\n306,1270,4.0,940341314\n306,1271,2.0,956082081\n306,1278,4.0,939901016\n306,1280,4.0,939720907\n306,1282,4.0,940338329\n306,1285,4.0,940341314\n306,1286,5.0,939760474\n306,1288,4.0,939760759\n306,1291,4.0,939900382\n306,1292,4.0,939901017\n306,1296,4.0,939760436\n306,1300,4.0,939815088\n306,1302,4.0,939814997\n306,1304,4.0,940247225\n306,1307,5.0,939760474\n306,1321,4.0,940347863\n306,1327,4.0,940349151\n306,1332,4.0,939901350\n306,1341,4.0,940349116\n306,1343,4.0,939901641\n306,1346,2.0,948835365\n306,1353,4.0,939719073\n306,1354,3.0,939722894\n306,1357,4.0,939721003\n306,1358,4.0,939721044\n306,1370,4.0,939715894\n306,1380,4.0,939901059\n306,1381,2.0,939760563\n306,1387,4.0,940349116\n306,1388,3.0,940349116\n306,1393,3.0,939720907\n306,1396,3.0,939902825\n306,1399,3.0,939722839\n306,1404,3.0,939717026\n306,1405,4.0,939718910\n306,1407,4.0,939901609\n306,1408,4.0,939726189\n306,1416,3.0,939724487\n306,1422,2.0,939901531\n306,1431,3.0,939716130\n306,1438,2.0,939902498\n306,1441,3.0,939719042\n306,1464,2.0,939903345\n306,1476,4.0,939719042\n306,1485,4.0,939718181\n306,1498,3.0,941549352\n306,1499,1.0,956081632\n306,1500,3.0,956082230\n306,1513,4.0,939719918\n306,1515,3.0,939902428\n306,1517,4.0,939717947\n306,1518,2.0,939715990\n306,1535,4.0,939723938\n306,1537,4.0,939718996\n306,1541,3.0,941553592\n306,1544,2.0,956082396\n306,1552,2.0,956081905\n306,1556,2.0,939716536\n306,1569,3.0,939718211\n306,1580,4.0,939715948\n306,1581,2.0,941555487\n306,1584,4.0,939720871\n306,1590,2.0,939716504\n306,1593,3.0,939726189\n306,1597,3.0,939716043\n306,1598,3.0,939717188\n306,1608,4.0,939715948\n306,1610,3.0,939715795\n306,1614,4.0,939718327\n306,1617,4.0,939716974\n306,1625,3.0,939901498\n306,1641,4.0,939718266\n306,1672,3.0,939722615\n306,1673,4.0,939722867\n306,1674,4.0,939760436\n306,1676,2.0,939716078\n306,1678,4.0,939722784\n306,1682,4.0,939722727\n306,1693,3.0,939720974\n306,1704,4.0,939721866\n306,1707,2.0,956083321\n306,1713,2.0,956082475\n306,1717,3.0,939901609\n306,1721,5.0,939722727\n306,1729,4.0,939716974\n306,1732,4.0,939717026\n306,1747,4.0,939718327\n306,1777,3.0,939718938\n306,1779,3.0,939716763\n306,1784,4.0,939717400\n306,1797,4.0,948835755\n306,1821,3.0,939719367\n306,1876,3.0,939715894\n306,1883,4.0,939717652\n306,1885,4.0,946499206\n306,1892,3.0,939901440\n306,1911,4.0,939719284\n306,1923,4.0,939717358\n306,1947,4.0,940001322\n306,1951,3.0,940001322\n306,1954,4.0,939901214\n306,1955,5.0,939901187\n306,1956,3.0,939815088\n306,1957,5.0,939814893\n306,1958,4.0,939815088\n306,1959,4.0,939760516\n306,1961,5.0,939814967\n306,1963,4.0,940247120\n306,1965,4.0,940339237\n306,1966,3.0,956082436\n306,1967,3.0,948835334\n306,1968,4.0,939760759\n306,1974,4.0,940347909\n306,1982,4.0,940349116\n306,1983,2.0,956082230\n306,1984,3.0,940347960\n306,1994,4.0,939903033\n306,1995,2.0,939903082\n306,1997,3.0,940349116\n306,2003,3.0,940347358\n306,2011,3.0,940347358\n306,2013,4.0,939901120\n306,2017,3.0,940001351\n306,2020,4.0,939760436\n306,2028,4.0,939715834\n306,2034,4.0,948834835\n306,2054,2.0,956082263\n306,2065,3.0,939760563\n306,2067,4.0,940247120\n306,2071,4.0,939724854\n306,2085,3.0,956081554\n306,2087,3.0,940246744\n306,2088,2.0,939900480\n306,2096,4.0,948834313\n306,2100,3.0,939760474\n306,2106,3.0,939724263\n306,2108,4.0,939717652\n306,2109,3.0,956082344\n306,2112,3.0,948836738\n306,2115,4.0,939900480\n306,2124,4.0,939718886\n306,2134,2.0,956083068\n306,2137,4.0,948834747\n306,2144,4.0,939760664\n306,2145,4.0,939760516\n306,2146,4.0,939760516\n306,2147,1.0,956081853\n306,2168,2.0,956081932\n306,2171,4.0,939718910\n306,2174,3.0,956081702\n306,2183,4.0,940246268\n306,2188,2.0,941550636\n306,2194,4.0,939814893\n306,2240,4.0,948835012\n306,2241,3.0,940347439\n306,2243,4.0,939760474\n306,2245,4.0,939815127\n306,2247,3.0,940347467\n306,2248,4.0,939760436\n306,2252,3.0,956082263\n306,2254,3.0,948835068\n306,2255,2.0,940347467\n306,2257,3.0,939760563\n306,2259,2.0,956081725\n306,2262,4.0,939760436\n306,2263,4.0,939903082\n306,2268,5.0,939716937\n306,2269,3.0,939723087\n306,2273,3.0,939715795\n306,2289,4.0,939718824\n306,2296,3.0,939720526\n306,2297,3.0,956083068\n306,2300,5.0,940001351\n306,2302,4.0,939717432\n306,2312,4.0,939814893\n306,2313,3.0,939814918\n306,2324,4.0,939717400\n306,2348,3.0,939815026\n306,2356,4.0,939720340\n306,2369,3.0,939760516\n306,2375,2.0,939760664\n306,2396,4.0,939717400\n306,2405,3.0,939760563\n306,2406,3.0,939760474\n306,2409,3.0,939901245\n306,2410,3.0,939815088\n306,2412,4.0,939715990\n306,2416,2.0,956081680\n306,2418,3.0,939760617\n306,2420,4.0,939814893\n306,2421,2.0,956082344\n306,2424,4.0,939718824\n306,2433,3.0,939721866\n306,2442,4.0,939724401\n306,2455,4.0,940347863\n306,2456,1.0,956082057\n306,2463,3.0,940347358\n306,2469,3.0,939760516\n306,2474,3.0,939814918\n306,2478,3.0,939760617\n306,2492,3.0,939720498\n306,2502,3.0,948836036\n306,2505,3.0,956081554\n306,2518,4.0,939760664\n306,2520,4.0,939901214\n306,2521,3.0,939901245\n306,2522,3.0,939901272\n306,2524,4.0,939901245\n306,2536,3.0,939901272\n306,2539,4.0,948836147\n306,2541,4.0,965847214\n306,2546,3.0,965847619\n306,2565,3.0,940246744\n306,2574,3.0,939720405\n306,2580,3.0,939717000\n306,2581,3.0,965846894\n306,2598,1.0,944478788\n306,2599,4.0,945788930\n306,2612,4.0,940338387\n306,2616,2.0,939716472\n306,2617,4.0,939715894\n306,2618,3.0,950904870\n306,2628,3.0,956082889\n306,2639,4.0,939814893\n306,2640,4.0,939901120\n306,2641,3.0,939900444\n306,2642,3.0,939900480\n306,2657,4.0,939900951\n306,2664,3.0,940246484\n306,2677,2.0,965846395\n306,2683,4.0,939718886\n306,2686,4.0,948834097\n306,2694,3.0,948836812\n306,2700,3.0,948836417\n306,2701,2.0,939716130\n306,2702,3.0,948834069\n306,2706,4.0,939718732\n306,2710,3.0,939715520\n306,2716,4.0,939760759\n306,2717,3.0,940347909\n306,2736,4.0,940347417\n306,2739,3.0,939814893\n306,2746,3.0,940001280\n306,2750,3.0,939815088\n306,2762,3.0,957555791\n306,2763,4.0,956082968\n306,2770,3.0,956081750\n306,2779,4.0,939901059\n306,2791,4.0,939760617\n306,2795,3.0,956083045\n306,2796,3.0,940347467\n306,2797,5.0,939760617\n306,2802,3.0,939760563\n306,2803,3.0,939901564\n306,2829,3.0,957555821\n306,2846,4.0,948835623\n306,2848,4.0,940246268\n306,2857,3.0,940001351\n306,2858,4.0,941544221\n306,2862,3.0,939815173\n306,2867,3.0,940341022\n306,2875,3.0,939722727\n306,2877,3.0,939901272\n306,2881,4.0,965847390\n306,2884,1.0,939715610\n306,2890,4.0,939715446\n306,2908,3.0,965846255\n306,2915,4.0,940347358\n306,2916,3.0,956083012\n306,2918,4.0,939760759\n306,2929,4.0,939815088\n306,2941,3.0,940246484\n306,2942,4.0,939760563\n306,2943,3.0,939726132\n306,2950,3.0,939760563\n306,2953,2.0,956083321\n306,2961,3.0,939715473\n306,2968,3.0,965848805\n306,2971,4.0,939999527\n306,2973,4.0,939760664\n306,2976,3.0,956081797\n306,2985,4.0,948835298\n306,2987,3.0,939900382\n306,2997,3.0,965845988\n306,3004,2.0,965847948\n306,3006,4.0,965846356\n306,3015,5.0,948834771\n306,3016,4.0,965849328\n306,3017,3.0,965849386\n306,3039,5.0,948835269\n306,3044,4.0,948835948\n306,3060,4.0,941548473\n306,3068,3.0,948834967\n306,3072,4.0,948834931\n306,3087,4.0,948835334\n306,3094,3.0,948835068\n306,3100,3.0,948836669\n306,3101,5.0,948834992\n306,3104,4.0,948834992\n306,3105,4.0,948919690\n306,3107,3.0,948836402\n306,3108,4.0,948836285\n306,3129,4.0,948834111\n306,3160,4.0,956081273\n306,3174,3.0,946499104\n306,3176,4.0,946499144\n306,3186,4.0,965846046\n306,3203,2.0,956081932\n306,3206,3.0,965849353\n306,3210,4.0,965848281\n306,3219,3.0,948836494\n306,3244,4.0,948834835\n306,3247,4.0,948836812\n306,3248,2.0,965847794\n306,3249,4.0,948836843\n306,3250,2.0,956081610\n306,3252,3.0,948837478\n306,3253,4.0,965846492\n306,3254,4.0,948836897\n306,3255,4.0,948836584\n306,3256,4.0,948836466\n306,3257,3.0,948837664\n306,3258,1.0,956081951\n306,3260,4.0,948835666\n306,3261,4.0,948837019\n306,3269,4.0,948836569\n306,3270,3.0,956081932\n306,3274,4.0,948837583\n306,3358,4.0,952113407\n306,3359,4.0,952113372\n306,3361,4.0,952113387\n306,3384,4.0,952113489\n306,3386,3.0,952113432\n306,3392,1.0,956082732\n306,3393,2.0,952636566\n306,3394,2.0,952113372\n306,3404,3.0,952636692\n306,3405,3.0,952113464\n306,3418,4.0,952636692\n306,3420,4.0,952636384\n306,3421,4.0,952636384\n306,3436,3.0,952636584\n306,3448,4.0,952636603\n306,3450,2.0,956082230\n306,3471,4.0,953674367\n306,3498,4.0,953674445\n306,3499,4.0,953674445\n306,3500,3.0,953674445\n306,3504,4.0,953674462\n306,3524,5.0,956081320\n306,3525,4.0,956081320\n306,3526,4.0,956081437\n306,3528,4.0,956081454\n306,3531,2.0,956081611\n306,3545,3.0,956081333\n306,3549,3.0,956081359\n306,3577,2.0,956083045\n306,3584,3.0,957555887\n306,3614,4.0,957555922\n306,3635,4.0,959197196\n306,3638,3.0,959197134\n306,3639,3.0,959197134\n306,3668,3.0,959197176\n306,3671,4.0,959197066\n306,3684,3.0,959197101\n306,3685,3.0,959197163\n306,3686,4.0,959197101\n306,3688,3.0,959197163\n306,3689,2.0,959197163\n306,3690,2.0,959197163\n306,3707,3.0,959197134\n306,3712,4.0,959197196\n306,3763,3.0,965848843\n306,3791,4.0,965845953\n306,3844,4.0,965845886\n306,3846,3.0,965845886\n306,4022,4.0,984612910\n306,4027,3.0,984612910\n306,4029,4.0,984612910\n306,4033,3.0,984612910\n306,4034,5.0,984612910\n306,4148,3.0,984612931\n306,4424,2.0,956082109\n307,47,4.0,1209126049\n307,50,5.0,1209039937\n307,293,3.5,1209040005\n307,296,5.0,1209040010\n307,318,5.0,1209040104\n307,527,4.5,1209126022\n307,728,3.0,1209039379\n307,778,5.0,1209040034\n307,858,4.5,1209125953\n307,1147,4.5,1209039420\n307,1186,2.0,1209039308\n307,1193,4.0,1209125973\n307,1213,5.0,1209125985\n307,1222,5.0,1209039965\n307,1617,4.5,1209040063\n307,1732,5.0,1209040136\n307,2060,3.5,1209039531\n307,2329,4.5,1209039868\n307,2485,3.0,1209039342\n307,2502,4.0,1209040002\n307,2858,5.0,1209039943\n307,2959,4.5,1209039891\n307,3173,3.5,1209039410\n307,3178,4.0,1209039386\n307,3949,4.0,1209040094\n307,4011,4.5,1209040116\n307,4226,5.0,1209039992\n307,4973,5.0,1209040127\n307,5110,4.0,1209039559\n307,5137,4.5,1209039935\n307,5528,3.5,1209039401\n307,5954,4.0,1209039949\n307,5995,5.0,1209126093\n307,6016,5.0,1209039881\n307,6322,3.5,1209039690\n307,7361,5.0,1209039887\n307,8784,4.5,1209040159\n307,8873,4.0,1209039902\n307,8949,4.0,1209040113\n307,8950,4.5,1209040085\n307,27831,4.0,1209040071\n307,30749,4.0,1209040167\n307,30820,4.0,1209039747\n307,31410,4.0,1209039955\n307,32587,4.5,1209040015\n307,33794,4.0,1209040039\n307,38061,4.0,1209039976\n307,40278,4.0,1209040178\n307,44195,5.0,1209040023\n307,44204,4.0,1209040120\n307,46578,3.5,1209039987\n307,46976,5.0,1209040020\n307,48394,4.0,1209039436\n307,48516,4.5,1209039853\n307,48696,4.0,1209039985\n307,48774,4.5,1209039877\n307,48780,4.0,1209039451\n307,49272,4.0,1209040049\n307,49530,4.0,1209040138\n307,50068,4.5,1209040074\n307,51255,4.0,1209040056\n307,52952,4.5,1209040027\n307,54286,4.0,1209040142\n307,54503,4.0,1209039594\n307,54997,4.5,1209039827\n307,55118,4.0,1209039836\n307,55247,5.0,1209039840\n307,55290,4.0,1209039858\n307,55765,4.0,1209040037\n307,55820,4.5,1209039831\n307,56367,5.0,1209039862\n307,56782,4.5,1209039733\n308,17,4.0,854376177\n308,39,4.0,854376623\n308,45,3.0,854377203\n308,47,3.0,854376560\n308,70,4.0,854376662\n308,93,3.0,854376305\n308,150,3.0,854376500\n308,160,2.0,854376743\n308,186,3.0,854377117\n308,203,5.0,854377117\n308,218,5.0,854377067\n308,231,3.0,854376623\n308,253,5.0,854376305\n308,261,4.0,854377048\n308,266,5.0,854376527\n308,267,5.0,854377232\n308,280,5.0,854376623\n308,288,3.0,854376501\n308,328,4.0,854376662\n308,339,4.0,854376500\n308,344,3.0,854376623\n308,350,3.0,854376527\n308,356,3.0,854376500\n308,366,3.0,854376689\n308,367,3.0,854376527\n308,368,4.0,854376623\n308,370,4.0,854376527\n308,376,4.0,854376201\n308,407,1.0,854376743\n308,410,3.0,854377161\n308,419,5.0,854377283\n308,454,5.0,854376501\n308,466,4.0,854376527\n308,477,5.0,854377047\n308,491,5.0,854377067\n308,500,2.0,854377117\n308,508,4.0,854376560\n308,520,5.0,854377283\n308,524,4.0,854377067\n308,542,4.0,854377184\n308,543,4.0,854377139\n308,590,3.0,854376587\n308,597,2.0,854376560\n308,611,2.0,854376689\n308,648,5.0,854376177\n308,653,2.0,854376220\n308,736,5.0,854376177\n308,743,4.0,854376248\n308,780,3.0,854376177\n308,802,5.0,854376248\n308,1037,2.0,854376721\n308,1073,2.0,854376220\n308,1079,1.0,854377184\n308,1127,1.0,854376721\n308,1259,3.0,854377232\n308,1330,5.0,854376843\n308,1339,1.0,854376721\n308,1342,4.0,854376807\n308,1346,3.0,854376807\n308,1347,3.0,854376764\n308,1387,3.0,854376764\n309,50,5.0,1114566499\n309,101,5.0,1114566949\n309,246,4.0,1114567333\n309,260,5.0,1114566939\n309,296,4.5,1114567095\n309,318,4.5,1114566580\n309,333,3.5,1127796751\n309,345,2.5,1114565521\n309,457,4.5,1114567220\n309,471,4.0,1114565458\n309,527,4.5,1122487474\n309,529,3.5,1114566911\n309,541,5.0,1114567191\n309,608,4.5,1114566988\n309,745,5.0,1122487426\n309,750,5.0,1114566840\n309,800,4.0,1114565630\n309,858,5.0,1114566599\n309,903,4.5,1114567307\n309,923,4.0,1114567051\n309,1060,4.5,1114566972\n309,1079,5.0,1114567176\n309,1080,5.0,1122487976\n309,1089,3.5,1114567188\n309,1101,3.5,1122487972\n309,1136,5.0,1114566884\n309,1148,4.5,1122487912\n309,1193,4.5,1122487437\n309,1196,5.0,1114567080\n309,1198,4.5,1114566712\n309,1203,4.5,1122487485\n309,1204,4.0,1114565538\n309,1208,4.5,1114567448\n309,1213,5.0,1114567116\n309,1221,5.0,1114566751\n309,1223,4.5,1122487892\n309,1225,4.0,1122487966\n309,1228,4.5,1114566039\n309,1234,4.5,1127796687\n309,1240,5.0,1114567320\n309,1250,4.0,1114565526\n309,1257,5.0,1114567173\n309,1258,5.0,1122487964\n309,1259,4.5,1114566993\n309,1262,5.0,1114566587\n309,1263,4.0,1127796692\n309,1272,4.5,1114567650\n309,1276,4.5,1114565584\n309,1278,5.0,1114566931\n309,1285,3.5,1114565580\n309,1288,5.0,1114567395\n309,1293,5.0,1114565826\n309,1358,4.0,1114567241\n309,1449,5.0,1114567475\n309,1704,4.5,1114567455\n309,1721,2.0,1122487990\n309,1909,2.5,1114565576\n309,1923,4.5,1122487994\n309,1960,4.0,1114567001\n309,2001,2.5,1114565468\n309,2019,4.5,1114565833\n309,2028,4.0,1114567245\n309,2100,3.5,1114565473\n309,2109,5.0,1127796672\n309,2321,3.0,1114565531\n309,2502,5.0,1114567339\n309,2762,4.0,1114567134\n309,2788,4.5,1114566845\n309,2791,5.0,1122487405\n309,2918,4.0,1114567092\n309,2959,4.5,1114566799\n309,3147,4.0,1114565494\n309,3246,4.0,1114566054\n309,3360,5.0,1114566027\n309,3396,5.0,1114567277\n309,3421,5.0,1114567445\n309,3481,5.0,1114567380\n309,3552,5.0,1122487408\n309,3578,4.0,1127796711\n309,3671,5.0,1114567315\n309,3871,4.0,1114566406\n309,3897,3.5,1114567291\n309,3911,4.5,1114567363\n309,4011,4.0,1114567138\n309,4027,4.0,1114567154\n309,4034,3.5,1114567158\n309,4226,4.5,1114566569\n309,4973,4.5,1114566731\n309,4993,5.0,1114566733\n309,5135,4.0,1114567074\n309,5292,4.5,1114567408\n309,5349,3.5,1114565559\n309,5377,5.0,1114567467\n309,5768,3.5,1114566200\n309,5782,4.0,1114566520\n309,5952,5.0,1114566705\n309,5989,3.5,1114567043\n309,6377,5.0,1114566702\n309,6385,3.0,1114566793\n309,6539,4.0,1114565842\n309,6662,4.0,1114567227\n309,6669,5.0,1114566366\n309,6796,4.5,1114567030\n309,6807,5.0,1114566869\n309,6874,4.5,1114567270\n309,7091,4.5,1114566687\n309,7147,4.0,1114567037\n309,7153,5.0,1114566590\n309,7361,4.5,1114566512\n309,7438,4.5,1114566854\n309,7482,4.5,1114566050\n309,7771,4.0,1114567662\n309,7934,4.0,1114567061\n309,8368,4.0,1114567020\n309,8464,4.5,1114567129\n309,8665,4.5,1114566898\n309,8784,3.5,1114566807\n309,8827,5.0,1114566562\n309,8874,4.0,1114566597\n309,8910,4.0,1114566087\n309,8961,4.0,1114565970\n309,26513,2.5,1114566229\n309,27899,4.0,1114566159\n309,30810,5.0,1114567206\n309,31221,2.0,1114566225\n309,31923,4.0,1122487466\n309,32587,4.0,1114566472\n309,33004,3.5,1127796641\n310,31,1.5,1414188058\n310,246,3.5,1414188068\n310,256,4.0,1414188064\n310,628,3.0,1414188046\n310,673,1.5,1414188061\n310,785,3.5,1414188044\n310,969,1.5,1414188065\n310,1275,2.5,1414188043\n310,1276,0.5,1414188033\n310,1285,4.5,1414188034\n310,1339,3.5,1414188062\n310,1371,1.0,1414188053\n310,1372,2.5,1414188036\n310,1375,2.0,1414188037\n310,2003,2.5,1414188038\n310,2278,5.0,1414188054\n310,2407,4.0,1414188040\n310,2455,2.5,1414188056\n310,3033,2.0,1414188042\n310,4085,2.5,1414188057\n311,1,3.0,898007830\n311,6,4.0,1080681367\n311,7,3.0,898007831\n311,10,3.0,898007870\n311,11,5.0,898526635\n311,14,3.0,898007870\n311,15,2.0,898008634\n311,16,2.0,898008634\n311,17,2.0,898008634\n311,20,1.5,1062015416\n311,21,4.0,898007647\n311,23,2.0,898007870\n311,24,1.5,1062015179\n311,27,2.0,898008658\n311,28,2.0,898008658\n311,31,3.0,898007906\n311,34,4.5,1062014388\n311,39,3.0,898007906\n311,40,3.0,898007947\n311,43,1.5,1062015566\n311,45,4.0,898007947\n311,47,0.5,1062015877\n311,48,3.0,898007947\n311,50,3.0,898007989\n311,57,2.0,898008658\n311,61,3.0,898007989\n311,62,2.5,1062015343\n311,71,1.5,1062015204\n311,74,3.0,898007989\n311,79,2.0,898008684\n311,83,3.0,898008016\n311,89,3.0,898008016\n311,95,3.0,898008040\n311,100,3.0,898008040\n311,102,0.5,1062015825\n311,105,4.0,898096102\n311,110,3.0,898008040\n311,122,2.5,1076968358\n311,135,3.0,898008136\n311,140,2.0,898008716\n311,150,5.0,898096050\n311,153,3.0,898008136\n311,155,4.5,1062016035\n311,158,2.0,898008684\n311,160,0.5,1062015864\n311,161,3.0,898008136\n311,163,2.5,1062014982\n311,164,2.0,898008716\n311,165,3.0,898008162\n311,168,2.0,898008716\n311,172,0.5,1062015822\n311,177,0.5,1062015871\n311,185,2.5,1062014523\n311,186,2.0,898008716\n311,195,3.0,898008163\n311,203,2.5,1062015681\n311,204,3.5,1062014925\n311,207,3.0,898007831\n311,208,2.0,898008741\n311,218,2.0,898008741\n311,222,3.0,898007831\n311,224,3.0,898007831\n311,225,3.0,898007831\n311,235,4.0,898096075\n311,236,3.0,898008040\n311,237,2.0,898008741\n311,246,3.0,898007906\n311,252,1.5,1062015609\n311,256,1.5,1062015257\n311,260,4.0,898096076\n311,261,3.0,898007906\n311,262,3.0,898008186\n311,266,2.0,898008741\n311,270,2.0,897491119\n311,276,2.0,898007906\n311,277,3.0,898007870\n311,280,3.0,898007870\n311,281,1.5,1062015214\n311,282,2.0,1077051518\n311,289,3.0,898007870\n311,292,0.5,1062015832\n311,293,2.0,898007870\n311,296,3.0,898007906\n311,300,3.5,1062015007\n311,303,3.0,898007906\n311,314,1.0,897489162\n311,315,3.0,898007947\n311,316,2.5,1062015672\n311,317,2.5,1062015578\n311,318,4.5,1062014353\n311,329,2.0,897490587\n311,338,0.5,1062015880\n311,339,3.5,1062015095\n311,342,2.0,897490696\n311,346,3.0,898007947\n311,349,3.0,898007947\n311,350,1.0,897489218\n311,351,3.0,898007947\n311,356,5.0,898096018\n311,357,5.0,898096018\n311,360,2.0,897491031\n311,361,3.0,898008217\n311,362,3.0,898007947\n311,364,3.0,898007989\n311,368,3.0,898008217\n311,371,3.0,898007989\n311,372,0.5,1062015836\n311,376,3.0,1093021967\n311,377,5.0,898096051\n311,378,3.0,898007989\n311,379,3.0,898007989\n311,380,3.5,1062015047\n311,384,2.0,897575171\n311,408,3.0,898007989\n311,412,3.0,898007989\n311,414,1.5,1062015500\n311,415,1.5,1062015394\n311,416,3.0,898008217\n311,420,0.5,1062015789\n311,421,3.0,898008016\n311,422,2.0,897490658\n311,424,1.5,1062015313\n311,434,3.0,898008016\n311,440,3.5,1062014781\n311,450,3.0,898008016\n311,453,2.0,897415324\n311,454,4.5,1062014125\n311,455,3.0,898008016\n311,457,4.5,1062014283\n311,463,3.0,898008246\n311,464,2.0,897489994\n311,471,0.5,1062015819\n311,474,3.0,898008040\n311,475,4.0,898007746\n311,477,2.0,897489188\n311,480,4.5,1062015991\n311,485,2.0,1076969516\n311,488,2.0,897414043\n311,489,2.5,1093022107\n311,491,1.0,897489994\n311,494,3.0,898008040\n311,500,2.5,1062015730\n311,502,1.5,1062015619\n311,506,2.0,897575365\n311,507,2.0,897414785\n311,508,2.0,897414687\n311,510,3.0,898008246\n311,514,3.5,1062014682\n311,515,3.0,898008040\n311,516,2.0,897490185\n311,517,2.0,897490185\n311,524,2.5,1062014532\n311,527,5.0,898526635\n311,529,5.0,898096051\n311,531,2.0,897489869\n311,532,1.5,1076969502\n311,534,3.0,898008040\n311,539,4.0,898007746\n311,541,2.0,897414167\n311,551,0.5,1062015830\n311,552,3.0,898008288\n311,553,3.0,1076968101\n311,569,3.0,898008136\n311,586,3.0,898008136\n311,587,3.0,898008136\n311,588,3.0,898008136\n311,589,4.5,1062014467\n311,590,5.0,898526635\n311,592,2.0,897489339\n311,593,2.0,897404011\n311,594,3.0,898008163\n311,595,3.0,898008288\n311,596,2.0,897490545\n311,597,5.0,898526635\n311,599,2.0,897415265\n311,603,3.0,898008162\n311,605,2.5,1062015067\n311,608,4.0,898007706\n311,613,2.0,897403696\n311,616,2.0,897490029\n311,628,3.0,1091465483\n311,635,3.0,898008136\n311,637,2.0,897491181\n311,647,4.0,898096076\n311,648,3.0,898008327\n311,650,3.0,898008162\n311,653,3.0,898008162\n311,674,1.0,1062015307\n311,691,2.5,1062015338\n311,694,2.5,1093022119\n311,707,2.5,1062014709\n311,708,0.5,1062015848\n311,720,3.5,1062014938\n311,733,2.5,1062014580\n311,736,4.5,1062014373\n311,750,3.0,898008186\n311,762,1.5,1062015446\n311,780,4.5,1062014238\n311,786,3.0,898008186\n311,788,2.0,897491119\n311,798,3.0,898008186\n311,800,4.5,1062016049\n311,802,1.5,1062015487\n311,805,3.0,898008186\n311,809,3.0,898008186\n311,828,2.5,1062015292\n311,830,1.5,1062015170\n311,832,3.0,898008493\n311,836,2.0,897403696\n311,838,3.0,898008288\n311,849,1.5,1062015555\n311,852,3.5,1062014313\n311,880,0.5,1080681098\n311,897,2.0,897490029\n311,898,2.0,897404615\n311,899,2.5,1062015440\n311,900,3.0,898008493\n311,901,2.0,897491316\n311,902,3.0,898008246\n311,903,2.0,897404208\n311,904,3.0,898008217\n311,905,3.0,898008217\n311,906,2.0,897575815\n311,907,2.0,897489523\n311,908,3.0,898008217\n311,909,2.0,898008217\n311,910,3.0,898008217\n311,911,2.5,1062015156\n311,912,3.0,898008516\n311,913,3.0,898008246\n311,914,4.5,1062016053\n311,915,3.0,1062015436\n311,916,4.5,1062014304\n311,917,3.0,898007831\n311,918,2.5,1062015238\n311,919,2.0,897404125\n311,920,5.0,898526635\n311,921,3.0,898008327\n311,922,2.0,897414235\n311,923,3.0,898007906\n311,924,3.0,1062015286\n311,926,2.0,897414080\n311,928,2.0,897414906\n311,930,2.5,1062015515\n311,932,3.0,898008516\n311,933,3.0,898008288\n311,934,2.0,897490545\n311,936,2.0,897414820\n311,937,3.0,898008516\n311,938,3.0,898008246\n311,942,2.0,898008634\n311,943,3.0,898008016\n311,944,2.0,898008634\n311,945,2.0,897489924\n311,947,2.0,898008658\n311,948,3.5,1062014789\n311,949,3.0,898008327\n311,950,2.5,1062015229\n311,951,2.0,897574052\n311,952,2.0,897923416\n311,953,3.0,898007831\n311,954,2.5,1062015561\n311,955,2.5,1062015461\n311,956,1.5,1062015764\n311,960,2.0,897490781\n311,962,2.0,897488789\n311,964,2.0,897489777\n311,969,3.0,898007870\n311,971,3.0,898008186\n311,972,2.5,1062015373\n311,973,3.0,898008551\n311,976,2.0,897491345\n311,982,3.0,898008327\n311,992,2.0,897403741\n311,1004,1.5,1062015398\n311,1006,1.5,1062015250\n311,1007,2.0,897491399\n311,1008,3.0,898008288\n311,1009,2.0,897489994\n311,1010,2.0,897491399\n311,1012,2.0,897414752\n311,1013,2.0,897489777\n311,1014,2.0,897575570\n311,1015,3.0,898008551\n311,1016,2.0,897575570\n311,1018,2.0,897491424\n311,1019,3.0,898008016\n311,1020,2.0,897490587\n311,1022,3.0,898008016\n311,1026,2.5,1062015632\n311,1027,2.5,1076969468\n311,1028,4.0,898007806\n311,1029,3.0,898008575\n311,1031,2.0,897415003\n311,1032,2.0,897490696\n311,1035,4.5,1062016065\n311,1036,4.5,1062016039\n311,1041,1.0,897403741\n311,1042,3.0,898008551\n311,1047,3.5,1062014248\n311,1049,3.5,1062014397\n311,1055,2.0,897403673\n311,1059,2.0,897488712\n311,1073,0.5,1062015784\n311,1079,3.0,898008040\n311,1081,3.0,898008516\n311,1082,2.0,897490224\n311,1083,2.0,897404530\n311,1084,2.0,897488839\n311,1085,2.0,897404682\n311,1086,2.5,1062015321\n311,1088,5.0,898526635\n311,1091,2.0,897491456\n311,1092,2.0,897490297\n311,1093,2.0,897491456\n311,1094,3.0,898008136\n311,1095,2.0,897490507\n311,1096,3.0,898008575\n311,1097,4.0,898096102\n311,1099,2.0,897414235\n311,1100,2.0,897923416\n311,1101,4.0,898096102\n311,1103,3.0,898008162\n311,1104,3.0,898008575\n311,1113,2.0,897490477\n311,1124,3.0,898008492\n311,1125,2.0,897490425\n311,1127,3.0,898008186\n311,1129,1.5,1062015707\n311,1135,3.0,898008186\n311,1148,3.5,1062014946\n311,1167,2.0,897576334\n311,1177,2.0,897404735\n311,1179,2.0,897490477\n311,1183,2.0,897403696\n311,1185,2.0,897404852\n311,1186,0.5,1062015787\n311,1187,1.5,1062015622\n311,1188,2.0,897404775\n311,1193,4.0,898096102\n311,1196,3.0,898008217\n311,1197,3.0,898008327\n311,1198,4.5,1062016005\n311,1201,1.0,897414558\n311,1203,3.0,898008246\n311,1204,3.0,898008246\n311,1207,3.5,1062014729\n311,1210,3.5,1062015086\n311,1212,2.5,1062015592\n311,1213,3.0,1076968733\n311,1214,2.0,1076968742\n311,1219,2.0,897413939\n311,1225,4.0,898007746\n311,1231,3.0,898008246\n311,1234,3.5,1062015101\n311,1240,4.5,1062015969\n311,1242,3.0,898008288\n311,1245,2.0,897414331\n311,1246,1.5,1062015361\n311,1247,3.5,1062014746\n311,1250,4.0,898096076\n311,1252,3.0,898008328\n311,1253,2.0,897404273\n311,1254,2.0,897414820\n311,1259,2.0,897404530\n311,1262,3.5,1062014815\n311,1265,3.5,1062014571\n311,1266,2.0,897414752\n311,1267,3.0,898008551\n311,1268,2.0,897488961\n311,1269,2.0,897413939\n311,1270,4.5,1062016011\n311,1271,3.0,898008493\n311,1275,2.0,898008516\n311,1276,2.0,897404273\n311,1282,3.0,898008516\n311,1283,3.0,898008516\n311,1284,2.0,897404208\n311,1285,0.5,1062015816\n311,1286,2.0,897414272\n311,1287,4.0,898096076\n311,1290,2.0,897489339\n311,1291,4.5,1062016082\n311,1292,2.0,897404243\n311,1293,5.0,898526635\n311,1296,2.0,897414592\n311,1297,1.5,1062015219\n311,1299,3.0,898008612\n311,1301,1.5,1062015507\n311,1302,4.5,1062016046\n311,1304,2.5,1062015246\n311,1307,4.0,898007778\n311,1334,2.0,898008741\n311,1343,2.0,898008741\n311,1344,3.0,898008516\n311,1353,2.5,1062014610\n311,1356,3.0,898008492\n311,1357,2.0,898008716\n311,1359,1.5,1062015368\n311,1363,2.5,1062015071\n311,1367,2.0,898008716\n311,1370,3.0,898008327\n311,1371,3.0,898008328\n311,1372,2.0,898008716\n311,1373,2.0,898008684\n311,1374,3.0,898008551\n311,1375,3.0,898008516\n311,1376,5.0,898526635\n311,1377,3.0,898008493\n311,1380,4.0,1062014407\n311,1385,4.0,898008493\n311,1387,3.0,898008551\n311,1390,2.0,898008684\n311,1391,2.0,898008551\n311,1393,5.0,898096018\n311,1394,3.0,898008551\n311,1395,2.0,898008684\n311,1396,4.0,898007611\n311,1397,2.0,898008684\n311,1398,3.0,898008612\n311,1401,3.0,1091465360\n311,1408,4.5,1062014288\n311,1409,1.5,1062015263\n311,1416,2.5,1062015328\n311,1417,2.0,898008658\n311,1422,2.0,898008658\n311,1438,2.0,898008634\n311,1445,2.0,898008634\n311,1453,0.5,1062015810\n311,1457,3.0,898008575\n311,1459,4.0,910364154\n311,1460,2.0,898008634\n311,1466,4.0,898096102\n311,1474,1.0,897403741\n311,1479,2.5,1062014836\n311,1488,3.0,898008575\n311,1500,3.0,898008575\n311,1513,3.0,1076968312\n311,1515,2.0,898008634\n311,1527,3.0,898008612\n311,1541,0.5,1062015807\n311,1544,3.5,1062014826\n311,1552,3.0,1094585392\n311,1556,1.5,1062015188\n311,1569,3.5,1062014298\n311,1580,3.0,898007947\n311,1584,3.0,898007906\n311,1586,4.0,898007778\n311,1587,1.0,897490477\n311,1588,4.0,898007778\n311,1589,3.0,898007870\n311,1590,0.5,1062015814\n311,1593,2.0,898008612\n311,1597,1.5,1062015703\n311,1600,0.5,1062015842\n311,1608,4.0,898007806\n311,1610,3.0,898007831\n311,1611,3.0,898007831\n311,1615,1.5,1076968331\n311,1616,5.0,1062016057\n311,1617,4.5,1062014342\n311,1645,2.5,1094585681\n311,1653,2.0,898008612\n311,1672,3.5,1062014881\n311,1674,4.5,1091465078\n311,1682,3.0,898007806\n311,1693,4.0,910884228\n311,1694,3.0,910884280\n311,1702,3.0,1094585694\n311,1704,5.0,898526635\n311,1711,3.0,898008612\n311,1721,4.0,898096051\n311,1722,3.0,898007806\n311,1727,3.0,898007806\n311,1729,3.0,1077052131\n311,1744,3.0,898007806\n311,1747,3.5,1062014323\n311,1752,3.0,1076968543\n311,1784,4.5,1062016031\n311,1792,2.5,1062014969\n311,1801,3.0,1077052111\n311,1810,5.0,910363849\n311,1835,1.5,1062015358\n311,1876,4.0,920298918\n311,1882,3.0,901548834\n311,1888,2.0,1076969408\n311,1892,3.5,1076969422\n311,1894,2.0,901548834\n311,1907,3.5,1076969429\n311,1912,5.0,901548737\n311,1917,3.5,1062014222\n311,1918,3.5,1062014245\n311,1936,3.5,1077051541\n311,1937,4.0,1091465197\n311,1944,3.5,1094585657\n311,1945,4.0,1076969390\n311,1947,5.0,1093022097\n311,1948,4.5,1076968528\n311,1949,4.0,1077052640\n311,1950,4.0,1062101970\n311,1953,3.5,1077052118\n311,1954,3.0,1076969439\n311,1957,4.5,1076969400\n311,1960,3.5,1076969417\n311,1961,4.0,1077051422\n311,1962,4.0,1091465302\n311,2000,4.0,1080681666\n311,2001,3.5,1093021982\n311,2002,3.0,1093022074\n311,2006,3.5,1062014251\n311,2011,2.0,1080681045\n311,2012,3.5,1077051823\n311,2018,4.5,1076969387\n311,2019,3.0,898008217\n311,2028,5.0,930668230\n311,2041,3.0,1076968507\n311,2054,3.5,1094585381\n311,2058,2.5,1062015001\n311,2067,3.5,1094585663\n311,2076,3.0,1076969375\n311,2077,3.0,1091465384\n311,2078,4.0,1080681779\n311,2079,3.5,1076969357\n311,2080,3.5,1091465446\n311,2085,3.0,1091465411\n311,2094,3.5,1094585650\n311,2096,3.0,1091465418\n311,2099,3.5,1115160706\n311,2112,3.0,1077052122\n311,2115,2.0,1076968114\n311,2118,3.0,1094585628\n311,2125,4.0,1062014119\n311,2132,3.0,1076968271\n311,2133,3.5,1077052092\n311,2137,3.5,1091465472\n311,2144,3.5,1093022082\n311,2145,3.5,1094585641\n311,2147,0.5,1080681175\n311,2150,3.5,1077052454\n311,2153,0.5,1062015794\n311,2166,3.0,910364507\n311,2194,3.0,1076969330\n311,2231,4.5,1062016018\n311,2243,3.5,1094585637\n311,2245,4.5,1077052084\n311,2248,3.5,1093022064\n311,2268,4.0,1093021950\n311,2273,3.0,908377846\n311,2278,3.0,1061927186\n311,2302,4.0,1093021945\n311,2312,3.5,1094585622\n311,2313,3.0,1076969310\n311,2321,3.0,1080681796\n311,2322,3.5,1062014210\n311,2334,2.0,1094585613\n311,2336,3.0,1076968300\n311,2340,3.0,1094585633\n311,2352,3.0,1094585601\n311,2353,4.0,930668055\n311,2355,3.5,1080681660\n311,2369,3.0,1077052052\n311,2375,3.0,1094585576\n311,2384,2.0,916843583\n311,2390,2.0,930668009\n311,2391,3.0,1094585579\n311,2393,3.5,1062014262\n311,2396,4.0,920298597\n311,2398,3.5,1077052076\n311,2403,3.0,1076969317\n311,2405,2.0,1077052096\n311,2406,4.0,1091465515\n311,2407,4.0,1091465460\n311,2420,4.0,1077052474\n311,2421,3.0,1094585582\n311,2424,4.0,916843552\n311,2431,3.0,1062014349\n311,2463,4.0,1093021997\n311,2469,3.0,1094585587\n311,2470,4.0,1076969290\n311,2485,2.0,1094585594\n311,2490,3.5,1062014257\n311,2496,4.0,920298567\n311,2497,2.5,1062014704\n311,2501,5.0,920298654\n311,2529,3.5,1062102007\n311,2539,4.5,1077052044\n311,2565,3.5,1091465292\n311,2567,3.0,1080681530\n311,2571,4.0,930667693\n311,2581,3.5,1076969299\n311,2605,3.0,1076969261\n311,2617,2.5,1076969269\n311,2628,2.5,1062014591\n311,2641,3.5,1076969275\n311,2642,2.0,1077052071\n311,2671,5.0,930667807\n311,2720,2.0,1080681801\n311,2724,3.0,1080681758\n311,2728,3.0,1076968257\n311,2735,2.0,1080681518\n311,2736,3.5,1077052354\n311,2739,4.0,1076969254\n311,2759,4.0,1080681542\n311,2762,4.0,1076968716\n311,2763,3.0,1094585360\n311,2779,3.0,1091465534\n311,2797,4.0,1080681645\n311,2802,2.5,1093022228\n311,2805,2.5,1080681739\n311,2819,4.5,1077052464\n311,2822,2.0,1077052438\n311,2852,3.5,1115160691\n311,2866,3.5,1077052350\n311,2870,3.5,1115160645\n311,2871,3.5,1076969199\n311,2875,2.0,1076968481\n311,2881,4.0,1093022048\n311,2890,4.0,1076969224\n311,2915,3.5,1077052458\n311,2916,3.0,1077051840\n311,2918,3.5,1077052514\n311,2919,3.5,1062102079\n311,2942,4.0,1094585546\n311,2944,3.5,1076969189\n311,2947,4.5,1076969242\n311,2948,3.5,1094585558\n311,2950,2.0,1080681735\n311,2987,3.5,1094585365\n311,2991,3.5,1076969205\n311,3000,2.0,1077052627\n311,3006,4.0,1077052000\n311,3020,3.0,1077051954\n311,3035,4.0,1091465526\n311,3039,3.5,1091465083\n311,3044,3.0,1076969236\n311,3052,0.5,1076969120\n311,3061,3.5,1091465380\n311,3062,3.5,1091465538\n311,3068,3.0,1077052420\n311,3072,2.0,1076969178\n311,3089,2.5,1077052430\n311,3098,4.5,1077052032\n311,3100,4.5,1094585517\n311,3101,3.0,1076969131\n311,3104,4.5,1077051965\n311,3105,2.5,1076969163\n311,3111,3.0,1091465464\n311,3114,3.0,1076969127\n311,3148,3.5,1077052028\n311,3175,3.0,1077051860\n311,3176,3.5,1094585371\n311,3185,3.5,1077052339\n311,3194,4.5,1115160627\n311,3196,4.5,1076968474\n311,3247,4.0,1076969136\n311,3248,2.0,1076968492\n311,3252,4.0,1062101961\n311,3255,4.0,1077052017\n311,3256,3.5,1080681728\n311,3257,4.0,1094585530\n311,3259,3.0,1077052316\n311,3268,1.5,1077051795\n311,3269,2.0,1080681752\n311,3296,4.0,1091465338\n311,3317,3.0,1076969170\n311,3354,1.5,1093022011\n311,3363,3.5,1076969071\n311,3365,4.0,1077052556\n311,3386,4.5,1080681688\n311,3408,4.0,1091465503\n311,3414,5.0,1076969087\n311,3418,2.5,1093021959\n311,3435,3.5,1076969109\n311,3436,2.5,1077051759\n311,3448,3.5,1094585535\n311,3450,3.0,1094585528\n311,3451,3.0,1091465364\n311,3466,3.0,1115160490\n311,3467,2.5,1077051556\n311,3468,3.5,1077052008\n311,3478,4.5,1076968446\n311,3479,3.5,1091465529\n311,3489,2.0,1080681548\n311,3494,3.5,1076968411\n311,3505,4.0,1091465375\n311,3507,3.0,1091465468\n311,3510,3.5,1091465262\n311,3512,4.0,1077051994\n311,3516,1.5,1091465229\n311,3555,3.5,1076969077\n311,3578,3.5,1076968128\n311,3591,3.0,1094585490\n311,3623,3.5,1094585376\n311,3624,3.5,1080681701\n311,3633,2.0,1076968440\n311,3634,3.5,1077052510\n311,3639,3.5,1094585495\n311,3649,3.5,1093022207\n311,3654,4.0,1091465440\n311,3675,4.0,1093022158\n311,3699,3.5,1094585506\n311,3735,3.5,1094585499\n311,3740,3.0,1077051958\n311,3745,3.5,1076969054\n311,3751,3.5,1076969042\n311,3753,3.0,1077051947\n311,3791,4.5,1076968462\n311,3801,4.0,1077052484\n311,3811,2.5,1077052647\n311,3827,3.0,1080681707\n311,3844,3.0,1093022172\n311,3893,4.0,1076969035\n311,3952,4.0,1094585477\n311,3977,2.5,1080681696\n311,3978,3.5,1077052274\n311,3980,3.5,1062101994\n311,3996,4.0,1077052573\n311,4002,3.0,1094585468\n311,4008,3.0,1080681055\n311,4012,1.5,1076968618\n311,4018,3.5,1093022027\n311,4019,3.5,1076969021\n311,4022,4.0,1076968144\n311,4025,3.0,1076968965\n311,4027,4.5,1080680977\n311,4033,3.5,1080681713\n311,4034,4.0,1077052589\n311,4041,4.0,1077052279\n311,4062,4.5,1077052307\n311,4080,3.0,1076968623\n311,4085,4.5,1076968975\n311,4111,3.5,1091465456\n311,4132,3.5,1076968457\n311,4161,3.0,1077051892\n311,4187,3.5,1091465243\n311,4203,3.5,1076968611\n311,4219,2.0,1080681283\n311,4225,4.5,1076968451\n311,4246,3.5,1094585464\n311,4263,3.5,1077051537\n311,4277,3.5,1093022321\n311,4291,3.0,1115160668\n311,4292,3.0,1076968380\n311,4310,3.0,1077051896\n311,4317,1.5,1076969710\n311,4327,3.5,1077052296\n311,4329,3.5,1076968652\n311,4333,3.5,1080681127\n311,4339,3.5,1115160571\n311,4351,3.5,1076969681\n311,4357,4.0,1080681323\n311,4359,4.0,1093022162\n311,4360,3.0,1076968985\n311,4361,3.5,1094585459\n311,4369,2.5,1077051904\n311,4370,3.0,1094585473\n311,4427,4.0,1077052540\n311,4432,3.0,1077052789\n311,4447,3.5,1076969766\n311,4462,3.0,1076969001\n311,4464,3.0,1077051531\n311,4465,3.5,1077052251\n311,4478,3.0,1077051582\n311,4480,3.0,1076968631\n311,4489,3.5,1076969694\n311,4503,3.0,1077051628\n311,4508,3.0,1091465216\n311,4526,3.0,1080681273\n311,4535,4.0,1080681328\n311,4537,4.0,1115160527\n311,4558,3.5,1076969687\n311,4585,3.5,1093022303\n311,4603,3.0,1076968658\n311,4623,3.5,1077052261\n311,4638,3.0,1076969010\n311,4639,3.0,1094585449\n311,4661,4.0,1062101983\n311,4700,4.0,1093022370\n311,4704,3.5,1115160511\n311,4757,3.5,1076968390\n311,4787,3.5,1093022182\n311,4795,3.0,1091465146\n311,4802,3.0,1115160474\n311,4848,3.0,1076968919\n311,4855,3.0,1076969662\n311,4912,3.5,1115160516\n311,4936,2.5,1091465496\n311,4963,5.0,1076968950\n311,4972,3.5,1080681455\n311,4995,4.0,1076968944\n311,5048,2.0,1076968581\n311,5049,3.5,1091465551\n311,5060,2.0,897488961\n311,5103,3.5,1077052236\n311,5218,4.5,1094585437\n311,5267,3.5,1076969645\n311,5299,4.5,1091465052\n311,5303,2.0,1077052216\n311,5349,4.0,1076968885\n311,5357,3.0,1076968836\n311,5377,3.0,1076968844\n311,5418,5.0,1062016121\n311,5420,3.0,1076969619\n311,5445,3.5,1091465089\n311,5459,2.5,1093021974\n311,5502,3.5,1076968864\n311,5601,3.0,1115160538\n311,5620,3.0,1147824724\n311,5644,3.5,1080681399\n311,5707,3.0,1091465191\n311,5718,3.0,1083950122\n311,5836,4.0,1076968807\n311,5938,2.5,1115160562\n311,5943,4.0,1076969614\n311,5957,3.0,1076969590\n311,5989,3.5,1115160416\n311,6059,3.0,1077052194\n311,6092,2.0,1080681619\n311,6156,3.0,1076969583\n311,6157,3.0,1076968396\n311,6225,3.0,1061928092\n311,6227,2.5,1061928136\n311,6231,3.5,1062619396\n311,6232,3.0,1061928109\n311,6233,2.5,1061928123\n311,6235,3.5,1061928099\n311,6237,3.5,1061928115\n311,6238,3.0,1061928127\n311,6239,3.0,1062619349\n311,6240,3.0,1062619358\n311,6245,3.5,1061928073\n311,6260,3.0,1061928047\n311,6276,3.0,1062619289\n311,6281,4.0,1062014487\n311,6303,3.0,1091465368\n311,6308,2.5,1061927986\n311,6314,2.5,1061927974\n311,6315,1.5,1062015641\n311,6318,2.0,1061927950\n311,6355,3.0,1062619167\n311,6356,3.5,1061927912\n311,6357,3.5,1061927904\n311,6378,4.5,1062016087\n311,6386,3.5,1062619069\n311,6390,3.5,1062619052\n311,6412,3.0,1062618993\n311,6413,3.0,1062619004\n311,6422,3.0,1062618985\n311,6423,4.0,1061927827\n311,6424,1.5,1062015269\n311,6428,3.0,1062618965\n311,6429,3.5,1062618944\n311,6431,3.0,1061927803\n311,6432,3.5,1061927797\n311,6436,1.5,1062015636\n311,6446,3.5,1061927768\n311,6448,3.0,1080681432\n311,6450,4.5,1061927746\n311,6452,3.5,1061927755\n311,6458,3.0,1062100796\n311,6466,3.0,1061927689\n311,6468,2.5,1061927727\n311,6470,3.0,1065211205\n311,6473,3.5,1062100767\n311,6477,3.5,1061927654\n311,6480,3.5,1061927665\n311,6484,3.5,1061927673\n311,6498,2.0,1065211177\n311,6516,3.5,1062100663\n311,6521,2.5,1062100682\n311,6522,3.0,1062100711\n311,6525,2.5,1061927589\n311,6527,3.5,1065211101\n311,6533,3.5,1061927573\n311,6535,0.5,1061927531\n311,6537,3.0,1061927515\n311,6539,4.0,1061927507\n311,6561,3.0,1062100594\n311,6562,3.5,1062100605\n311,6565,4.5,1062016061\n311,6585,2.0,1065211043\n311,6613,2.5,1062538169\n311,6630,4.0,1061927392\n311,6636,4.0,1061927375\n311,6638,2.0,1062538128\n311,6646,3.0,1061927339\n311,6658,3.5,1062100485\n311,6659,3.0,1062538071\n311,6662,3.5,1062100474\n311,6663,3.5,1062100469\n311,6678,2.0,1065210914\n311,6686,4.0,1062538040\n311,6718,3.5,1062537975\n311,6724,3.0,1062537955\n311,6732,3.0,1062537944\n311,6735,3.5,1062537918\n311,6743,4.0,1062537899\n311,6753,3.5,1091465129\n311,6777,4.0,1064962264\n311,6785,3.5,1064962255\n311,6787,4.0,1064962270\n311,6788,2.0,1064962282\n311,6791,2.0,1077052653\n311,6797,3.5,1064962226\n311,6810,3.0,1064962190\n311,6813,3.0,1065210708\n311,6822,3.0,1065210676\n311,6829,4.0,1064962149\n311,6832,3.0,1065210649\n311,6850,3.0,1065210591\n311,6852,3.0,1065210540\n311,6856,3.0,1065210602\n311,6873,4.0,1083950011\n311,6979,4.0,1091465352\n311,6986,4.5,1091465119\n311,7018,3.5,1091465273\n311,7036,3.0,1076968784\n311,7059,3.5,1102466339\n311,7085,3.5,1091465105\n311,7107,3.0,1076969557\n311,7121,3.0,1102466390\n311,7178,3.5,1077051632\n311,7198,3.0,1077051743\n311,7207,3.0,1077051697\n311,7212,3.5,1077051608\n311,7247,3.5,1077051601\n311,7250,2.0,1077051525\n311,7255,4.0,1083950217\n311,7263,3.0,1115160499\n311,7283,3.0,1077051665\n311,7305,2.5,1077051499\n311,7311,3.0,1077051468\n311,7357,4.0,1083950040\n311,7367,3.0,1080680848\n311,7386,4.0,1083949937\n311,7394,3.0,1083950055\n311,7493,3.5,1091465100\n311,7560,3.5,1091465124\n311,7584,3.5,1102466377\n311,7614,4.0,1115160581\n311,7649,3.5,1091465583\n311,7702,3.5,1115160658\n311,7782,3.0,1102465854\n311,7787,4.5,1083950236\n311,7791,2.5,1102465831\n311,7822,3.5,1102465797\n311,7916,3.5,1102465733\n311,7944,3.5,1102465704\n311,7980,3.5,1091465043\n311,8008,3.0,1091465096\n311,8009,3.5,1102465650\n311,8039,3.0,1102465621\n311,8057,3.0,1102465594\n311,8094,3.5,1102465581\n311,8169,3.5,1102465517\n311,8183,3.5,1102465510\n311,8187,3.5,1102465502\n311,8190,4.0,1091465028\n311,8263,3.5,1102465442\n311,8268,3.0,1102465430\n311,8337,4.0,1091465164\n311,8385,3.0,1091465391\n311,8451,3.5,1102465325\n311,8460,3.5,1102465309\n311,8463,2.5,1102465292\n311,8482,2.5,1102465281\n311,8487,3.0,1102465270\n311,8493,2.5,1091465136\n311,8502,3.5,1102465253\n311,8524,3.5,1102465238\n311,8529,4.0,1091464957\n311,8533,4.0,1091464935\n311,8535,4.0,1094585721\n311,8584,3.0,1102465190\n311,8611,3.0,1102465150\n311,8612,3.0,1102465146\n311,8614,3.5,1102465133\n311,8616,3.5,1102465127\n311,8617,3.5,1102466414\n311,8618,3.0,1102465119\n311,8622,4.0,1091464948\n311,8623,3.5,1102465111\n311,8633,3.5,1102465092\n311,8636,4.5,1091464941\n311,8644,4.0,1091464927\n311,8657,3.5,1102465063\n311,8661,3.5,1102465047\n311,8665,5.0,1091465780\n311,8672,3.5,1102465032\n311,8695,3.0,1102464998\n311,8718,2.5,1102464968\n311,8745,3.5,1102464920\n311,8772,3.5,1102464877\n311,8808,3.5,1093022376\n311,8819,2.5,1102464804\n311,8820,2.5,1102464797\n311,8821,2.5,1102464788\n311,8850,2.5,1102464732\n311,8880,3.0,1102464677\n311,8916,4.0,1102464625\n311,8920,3.5,1102464613\n311,8921,2.5,1102464606\n311,8929,4.0,1102464592\n311,8972,3.5,1102464521\n311,8983,3.5,1147824793\n311,8984,4.0,1102984824\n311,9004,3.5,1102464468\n311,9005,2.5,1102466430\n311,26242,3.5,1147824502\n311,27821,4.0,1115160846\n311,32139,4.0,1115160635\n311,32296,2.0,1115160812\n311,32598,4.0,1115160769\n311,39292,4.5,1147824660\n311,40819,4.5,1147824602\n311,41566,3.5,1147824527\n311,42011,2.5,1147824463\n311,45186,4.5,1147824177\n311,45208,0.5,1147824192\n312,1,5.0,959933200\n312,2,2.0,959935514\n312,6,5.0,959931608\n312,7,1.0,959934156\n312,10,1.0,959931688\n312,11,3.0,959933834\n312,17,3.0,959934746\n312,21,2.0,959931319\n312,25,4.0,959934644\n312,28,5.0,959934644\n312,32,2.0,959939065\n312,34,2.0,959993015\n312,36,4.0,959933117\n312,39,5.0,959933924\n312,45,5.0,959933896\n312,50,5.0,959937256\n312,52,3.0,959933805\n312,57,3.0,959993223\n312,85,4.0,959934721\n312,95,2.0,959931670\n312,99,5.0,959938819\n312,105,5.0,959934810\n312,111,5.0,959931004\n312,112,2.0,959931646\n312,125,5.0,959933805\n312,141,2.0,959934241\n312,162,4.0,959938850\n312,171,4.0,959933777\n312,176,3.0,959933200\n312,187,3.0,959930966\n312,190,5.0,959993274\n312,198,1.0,959931319\n312,203,4.0,959934359\n312,206,5.0,959938850\n312,208,1.0,959931843\n312,218,3.0,959934287\n312,224,2.0,959933834\n312,231,4.0,959934288\n312,235,3.0,959933556\n312,246,4.0,959938797\n312,247,4.0,959934767\n312,249,2.0,959934871\n312,260,2.0,959931255\n312,265,4.0,959934663\n312,288,1.0,959931843\n312,290,3.0,959993155\n312,292,3.0,959931772\n312,296,5.0,959932443\n312,306,4.0,959932464\n312,316,2.0,959931772\n312,318,4.0,959932508\n312,321,2.0,959993015\n312,322,3.0,959933985\n312,339,2.0,959934123\n312,344,1.0,959934241\n312,348,4.0,959933465\n312,349,4.0,959931593\n312,352,3.0,959933985\n312,353,1.0,959931670\n312,356,2.0,959934721\n312,357,4.0,959934006\n312,363,5.0,959938850\n312,367,2.0,959933947\n312,368,1.0,959933985\n312,372,4.0,959934096\n312,377,5.0,959931593\n312,380,5.0,959931628\n312,410,3.0,959934177\n312,440,3.0,959933777\n312,441,5.0,959934026\n312,457,4.0,959931572\n312,464,3.0,959931861\n312,474,3.0,959931375\n312,480,1.0,959931572\n312,485,2.0,959931861\n312,492,3.0,959933924\n312,500,1.0,959934071\n312,509,5.0,959934704\n312,527,5.0,959933086\n312,529,3.0,959993203\n312,532,4.0,959934177\n312,539,3.0,959934045\n312,541,5.0,959935398\n312,551,3.0,959934006\n312,556,4.0,959938819\n312,562,4.0,959933872\n312,581,5.0,959938850\n312,585,5.0,959934331\n312,586,1.0,959934331\n312,587,3.0,959933924\n312,588,3.0,959933777\n312,589,5.0,959931296\n312,592,3.0,959931362\n312,593,5.0,959992994\n312,597,5.0,959933896\n312,605,3.0,959934906\n312,608,5.0,959932532\n312,639,3.0,959934288\n312,648,4.0,959931709\n312,663,5.0,959934344\n312,708,3.0,959933834\n312,733,3.0,959931418\n312,736,4.0,959931731\n312,780,1.0,959931670\n312,786,2.0,959931731\n312,788,3.0,959935514\n312,818,4.0,959934489\n312,858,4.0,959932443\n312,866,5.0,959934746\n312,896,3.0,959932415\n312,919,3.0,959933086\n312,922,3.0,959935417\n312,923,3.0,959932486\n312,926,5.0,959932557\n312,1046,5.0,959932508\n312,1047,5.0,959931402\n312,1057,5.0,959934177\n312,1059,4.0,959934836\n312,1060,4.0,959933465\n312,1073,3.0,959935483\n312,1089,5.0,959937256\n312,1094,4.0,959934682\n312,1095,3.0,959993155\n312,1097,3.0,959935483\n312,1111,4.0,959938977\n312,1123,3.0,959938850\n312,1127,3.0,959931362\n312,1176,4.0,959933086\n312,1179,4.0,959935417\n312,1183,2.0,959934704\n312,1188,3.0,959933834\n312,1191,5.0,959939016\n312,1192,5.0,959938977\n312,1193,4.0,959930966\n312,1196,4.0,959931231\n312,1198,2.0,959931209\n312,1199,3.0,959939235\n312,1200,4.0,959931277\n312,1208,4.0,959932532\n312,1213,5.0,959933006\n312,1214,5.0,959931231\n312,1217,3.0,959933028\n312,1218,4.0,959931231\n312,1221,4.0,959932486\n312,1222,4.0,959931255\n312,1228,4.0,959932557\n312,1231,4.0,959933028\n312,1240,5.0,959931255\n312,1244,4.0,959939330\n312,1264,5.0,959931209\n312,1267,4.0,959935398\n312,1291,2.0,959931340\n312,1299,5.0,959935577\n312,1320,1.0,959931793\n312,1339,4.0,959934871\n312,1344,4.0,959935435\n312,1370,4.0,959931628\n312,1385,4.0,959931646\n312,1391,3.0,959931822\n312,1392,4.0,959933584\n312,1393,2.0,959934682\n312,1396,3.0,959939065\n312,1405,3.0,959934205\n312,1438,1.0,959931731\n312,1466,3.0,959937286\n312,1500,3.0,959933556\n312,1513,4.0,959934156\n312,1517,2.0,959933834\n312,1527,1.0,959931593\n312,1544,3.0,959931861\n312,1566,2.0,959934006\n312,1569,4.0,959934045\n312,1573,3.0,959939091\n312,1580,2.0,959931438\n312,1584,4.0,959939091\n312,1610,4.0,959931402\n312,1612,2.0,959933510\n312,1614,3.0,959934123\n312,1616,3.0,959931843\n312,1617,4.0,959935398\n312,1641,1.0,959933924\n312,1653,4.0,959939065\n312,1673,5.0,959993155\n312,1674,4.0,959935620\n312,1676,1.0,959931670\n312,1683,3.0,959934767\n312,1687,2.0,959931793\n312,1701,3.0,959934123\n312,1719,5.0,959932557\n312,1721,2.0,959934823\n312,1729,2.0,959937286\n312,1734,5.0,959933985\n312,1747,3.0,959934026\n312,1777,2.0,959933985\n312,1784,5.0,959933853\n312,1797,2.0,959938977\n312,1821,4.0,959934906\n312,1831,1.0,959931886\n312,1875,3.0,959933584\n312,1876,2.0,959939109\n312,1882,1.0,959932376\n312,1883,2.0,959933896\n312,1885,3.0,959933200\n312,1897,4.0,959934663\n312,1912,3.0,959931296\n312,1916,2.0,959931593\n312,1917,1.0,959931709\n312,1918,2.0,959931709\n312,1923,2.0,959933584\n312,1956,4.0,959935620\n312,2002,3.0,959931754\n312,2020,4.0,959935620\n312,2022,3.0,959935650\n312,2071,3.0,959930966\n312,2105,4.0,959935514\n312,2124,4.0,959933947\n312,2167,2.0,959931418\n312,2174,3.0,959935483\n312,2247,3.0,959931004\n312,2252,2.0,959934096\n312,2289,5.0,959933465\n312,2291,4.0,959934746\n312,2302,3.0,959933853\n312,2303,5.0,959932508\n312,2331,4.0,959933537\n312,2333,3.0,959993057\n312,2353,2.0,959931438\n312,2384,2.0,959933537\n312,2391,4.0,959937256\n312,2395,5.0,959933805\n312,2396,3.0,959933171\n312,2424,1.0,959934138\n312,2427,2.0,959931402\n312,2436,3.0,959934026\n312,2499,4.0,959933200\n312,2539,3.0,959934138\n312,2571,4.0,959931277\n312,2580,4.0,959937286\n312,2599,4.0,959933171\n312,2628,1.0,959931130\n312,2671,4.0,959934071\n312,2683,2.0,959934096\n312,2692,5.0,959931255\n312,2700,4.0,959933584\n312,2723,2.0,959931772\n312,2759,2.0,959933465\n312,2762,2.0,959931078\n312,2770,3.0,959933872\n312,2797,3.0,959935483\n312,2808,1.0,959931911\n312,2858,5.0,959931078\n312,2890,3.0,959993057\n312,2908,5.0,959931078\n312,2916,2.0,959931572\n312,2919,4.0,959935650\n312,2943,2.0,959934644\n312,2959,5.0,959931099\n312,2968,3.0,959935483\n312,2985,3.0,959931362\n312,2997,4.0,959931078\n312,3006,3.0,959931078\n312,3019,5.0,959935595\n312,3044,3.0,959934704\n312,3046,4.0,959933805\n312,3067,5.0,959935620\n312,3107,3.0,959931670\n312,3113,2.0,959931160\n312,3114,3.0,959933153\n312,3160,3.0,959933006\n312,3253,2.0,959933947\n312,3256,5.0,959931438\n312,3267,2.0,959931319\n312,3274,2.0,959931754\n312,3358,3.0,959933584\n312,3404,2.0,959931296\n312,3418,5.0,959931545\n312,3424,4.0,959935620\n312,3471,4.0,959933100\n312,3498,4.0,959939349\n312,3527,1.0,959931340\n312,3528,2.0,959934945\n312,3578,5.0,959931362\n312,3623,1.0,959931507\n312,3702,5.0,959931277\n313,1,4.0,1105354580\n313,2,3.0,1101033291\n313,5,3.5,1105355064\n313,10,3.5,1105354679\n313,19,2.5,1105354923\n313,25,3.0,1105354786\n313,32,3.0,1101033175\n313,34,4.0,1105354644\n313,47,4.0,1105354631\n313,110,5.0,1105354565\n313,135,4.0,1101033638\n313,150,3.5,1105354563\n313,165,3.5,1105354615\n313,186,3.0,1101033008\n313,198,3.5,1101033081\n313,208,2.0,1105354773\n313,215,3.5,1101034071\n313,253,4.0,1105354740\n313,266,3.5,1101033905\n313,288,2.5,1105354821\n313,318,5.0,1105354569\n313,339,3.5,1105354752\n313,344,2.5,1105354598\n313,345,3.5,1101033059\n313,355,3.0,1101033625\n313,356,4.5,1101033896\n313,357,3.5,1105354716\n313,364,5.0,1101033255\n313,367,3.5,1105354687\n313,376,4.0,1105355097\n313,377,3.5,1105354585\n313,380,4.0,1101033909\n313,381,3.5,1168879130\n313,457,4.5,1105354540\n313,480,4.0,1105354520\n313,500,3.5,1101033270\n313,520,3.5,1101033046\n313,527,5.0,1101033181\n313,539,4.5,1101033922\n313,552,3.5,1168878813\n313,586,3.0,1105354830\n313,587,3.0,1168878664\n313,588,4.5,1101033165\n313,589,3.5,1105353824\n313,590,4.0,1105354559\n313,595,4.0,1105354621\n313,597,3.0,1101033915\n313,648,4.0,1105354605\n313,733,4.5,1105354664\n313,736,3.0,1101033262\n313,778,4.0,1105355003\n313,784,2.0,1101033238\n313,788,3.5,1101034175\n313,832,4.0,1105355172\n313,904,4.0,1105355246\n313,910,4.0,1101033595\n313,1059,3.5,1101033569\n313,1079,4.0,1105354918\n313,1088,4.0,1131563301\n313,1090,4.0,1101033011\n313,1097,4.0,1105354695\n313,1127,3.5,1105355033\n313,1183,2.0,1105354935\n313,1198,4.0,1105354657\n313,1201,2.0,1168878094\n313,1219,3.5,1105355084\n313,1240,3.5,1105353833\n313,1246,3.5,1105355156\n313,1258,3.5,1105355137\n313,1270,4.0,1105354661\n313,1287,5.0,1101033548\n313,1345,3.0,1124136576\n313,1350,3.0,1169979961\n313,1387,4.0,1105354907\n313,1393,3.0,1101033911\n313,1407,3.0,1105355144\n313,1485,4.0,1101033026\n313,1518,4.0,1105353876\n313,1544,3.5,1105355253\n313,1573,3.5,1105355059\n313,1580,4.0,1105354801\n313,1594,3.0,1168879066\n313,1597,5.0,1101033113\n313,1608,3.0,1105355232\n313,1615,4.0,1168879374\n313,1625,4.5,1101033077\n313,1641,3.5,1105355109\n313,1682,3.5,1101033220\n313,1721,5.0,1101033204\n313,1732,3.0,1101033021\n313,1784,4.0,1105354978\n313,1801,3.5,1101034030\n313,1835,3.0,1101033513\n313,1894,3.5,1101033506\n313,1917,4.0,1105355121\n313,1923,4.0,1101033160\n313,1954,4.0,1171729496\n313,1961,4.0,1105354883\n313,2006,4.0,1101033916\n313,2011,3.0,1105355165\n313,2012,3.0,1105355211\n313,2028,4.0,1105354707\n313,2080,4.0,1124136253\n313,2081,4.0,1124136803\n313,2194,4.5,1126291311\n313,2353,4.5,1101033061\n313,2384,4.5,1101033476\n313,2394,5.0,1124136790\n313,2396,3.0,1101033932\n313,2409,4.0,1171729500\n313,2410,3.5,1171729506\n313,2420,3.5,1133022976\n313,2421,3.5,1133022979\n313,2422,3.5,1133022980\n313,2424,3.0,1101033980\n313,2490,3.0,1124137127\n313,2571,4.0,1105354721\n313,2605,3.5,1124136533\n313,2617,4.0,1105355257\n313,2671,4.5,1101033899\n313,2687,4.0,1124136502\n313,2700,4.0,1105355205\n313,2706,2.5,1105355031\n313,2710,3.5,1105355069\n313,2712,2.5,1101033187\n313,2724,2.5,1168878763\n313,2762,3.5,1101033184\n313,2770,3.5,1101033090\n313,2858,3.5,1105354669\n313,2959,2.5,1105355020\n313,2978,3.5,1101033858\n313,2997,2.0,1105354870\n313,3052,1.5,1101033102\n313,3101,4.0,1101033073\n313,3114,4.0,1105355075\n313,3147,4.5,1124136217\n313,3176,3.0,1101033050\n313,3252,4.0,1101033399\n313,3301,3.5,1101033422\n313,3386,2.0,1101033405\n313,3408,4.0,1105353999\n313,3578,4.5,1105353992\n313,3617,3.0,1105354360\n313,3623,4.0,1101033169\n313,3744,4.0,1133022745\n313,3753,3.5,1105353918\n313,3755,4.0,1101034532\n313,3798,3.5,1101034508\n313,3827,4.0,1133022592\n313,3897,4.5,1101032998\n313,3948,4.0,1124137118\n313,3969,3.5,1101033367\n313,3977,4.0,1124137103\n313,3999,3.0,1101033351\n313,4014,4.0,1101034221\n313,4015,2.0,1101033364\n313,4018,3.5,1101034317\n313,4020,4.0,1101034544\n313,4022,4.0,1105353968\n313,4025,3.5,1133022549\n313,4069,4.0,1101034414\n313,4161,2.5,1133022718\n313,4226,3.5,1101033190\n313,4246,4.5,1101033347\n313,4270,4.0,1105354412\n313,4299,3.5,1101033303\n313,4306,4.0,1105354099\n313,4308,5.0,1105354160\n313,4310,5.0,1101034321\n313,4344,2.0,1133022515\n313,4369,2.5,1105354465\n313,4370,0.5,1101033327\n313,4643,2.5,1133022724\n313,4718,2.5,1101033331\n313,4720,3.0,1101034472\n313,4776,3.5,1105354087\n313,4814,3.0,1101033748\n313,4816,4.0,1168878919\n313,4821,3.5,1133022185\n313,4823,4.0,1101034312\n313,4848,1.0,1101033300\n313,4865,3.0,1105354398\n313,4886,4.5,1168878351\n313,4901,3.0,1105353961\n313,4963,4.0,1105353952\n313,4973,3.5,1143233338\n313,4979,0.5,1101033325\n313,4992,3.0,1101033754\n313,4993,4.5,1101033172\n313,4994,4.0,1101034397\n313,4995,4.5,1126291220\n313,5014,4.5,1105353937\n313,5026,3.0,1105354195\n313,5151,2.0,1101033720\n313,5152,4.0,1133022392\n313,5218,5.0,1101033314\n313,5266,3.5,1124136465\n313,5299,3.0,1101034215\n313,5349,4.5,1105353986\n313,5389,3.5,1133021953\n313,5400,3.0,1101034513\n313,5418,4.5,1105354014\n313,5445,3.5,1105354027\n313,5459,3.5,1133022729\n313,5481,2.5,1124136441\n313,5502,3.5,1101034445\n313,5528,2.0,1101033701\n313,5574,4.0,1133022618\n313,5620,3.5,1101034325\n313,5669,4.5,1101033334\n313,5673,0.5,1101033320\n313,5679,5.0,1105354376\n313,5785,2.5,1168879256\n313,5810,3.5,1124136473\n313,5872,2.5,1133022505\n313,5903,3.0,1168878898\n313,5952,4.5,1101033310\n313,5989,4.5,1105354105\n313,5991,3.0,1101033282\n313,5995,5.0,1130952560\n313,6155,3.5,1101033693\n313,6156,3.5,1101033709\n313,6157,3.0,1133022253\n313,6213,3.0,1105354477\n313,6281,4.0,1101034547\n313,6287,3.0,1101033697\n313,6323,4.0,1101034453\n313,6373,4.0,1101033660\n313,6377,4.5,1105354172\n313,6378,4.0,1126291247\n313,6503,4.0,1101033667\n313,6534,3.5,1105354366\n313,6537,3.5,1105353814\n313,6539,4.5,1101034468\n313,6550,3.0,1168879237\n313,6565,5.0,1124136240\n313,6617,4.0,1168879226\n313,6711,4.0,1101034242\n313,6873,3.0,1101034424\n313,6874,3.5,1133022542\n313,6927,3.0,1101034358\n313,6944,3.5,1168879207\n313,6947,2.5,1126291348\n313,6986,4.0,1124136264\n313,7090,2.0,1133022447\n313,7143,5.0,1124136223\n313,7147,3.5,1105354168\n313,7153,5.0,1124137048\n313,7154,4.0,1101034394\n313,7158,2.5,1145779228\n313,7162,4.0,1105354141\n313,7163,3.0,1101034505\n313,7173,3.0,1101034417\n313,7320,4.0,1131563303\n313,7324,3.5,1133022122\n313,7325,2.0,1168879187\n313,7361,2.5,1124136290\n313,7438,3.5,1133022434\n313,7439,4.0,1105353856\n313,7458,4.0,1133022400\n313,8093,2.0,1133022603\n313,8360,4.5,1124136782\n313,8361,3.0,1133022137\n313,8369,3.0,1133022765\n313,8529,3.0,1101034225\n313,8576,3.5,1105354074\n313,8622,4.5,1105355378\n313,8636,3.5,1101034464\n313,8644,4.0,1105353912\n313,8665,4.0,1124137027\n313,8783,2.5,1106766487\n313,8798,4.0,1124136425\n313,8830,2.5,1133022366\n313,8831,2.5,1131563276\n313,8860,3.0,1133022565\n313,8874,3.5,1133022459\n313,8907,3.5,1168879506\n313,8908,5.0,1130952611\n313,8917,2.0,1133022173\n313,8949,3.0,1126981159\n313,8957,3.5,1133021876\n313,8961,4.5,1133021798\n313,8963,0.5,1143233256\n313,8970,3.0,1130952543\n313,8984,3.5,1105353776\n313,27788,2.5,1126981177\n313,30707,4.0,1168878424\n313,30822,4.0,1133021854\n313,31878,3.0,1133021823\n313,32029,3.5,1133022496\n313,33166,3.5,1168878442\n313,33437,4.0,1145779209\n313,33615,4.0,1130952655\n313,33794,3.0,1133021776\n313,35836,3.5,1168878865\n313,36525,3.0,1145779190\n313,37727,3.0,1168879464\n313,37733,3.0,1145779249\n313,44022,4.0,1168879445\n313,45210,3.0,1168878327\n313,45501,2.5,1168878134\n313,46578,3.5,1168878527\n314,1,2.0,1437338091\n314,260,5.0,1437338205\n314,318,5.0,1437338217\n314,356,4.5,1437338070\n314,480,4.5,1437338076\n314,593,4.5,1437338080\n314,1036,4.0,1437338223\n314,1196,5.0,1437338208\n314,1198,5.0,1437338214\n314,1270,3.5,1437338099\n314,1291,5.0,1437338212\n314,1676,4.5,1437338268\n314,2542,4.0,1437338271\n314,2571,4.5,1437338095\n314,50872,2.5,1437338186\n314,58559,5.0,1437338637\n314,79132,4.5,1437338648\n314,92259,5.0,1437338632\n314,109487,5.0,1437338296\n314,112183,3.5,1437338369\n314,112552,4.5,1437338173\n314,112556,5.0,1437338287\n314,112852,4.5,1437338356\n314,114935,4.0,1437338388\n314,115210,5.0,1437338391\n314,115569,4.0,1437338353\n314,115617,4.0,1437338347\n314,115713,4.0,1437338345\n314,116797,4.0,1437338305\n314,117176,4.0,1437338373\n314,119145,4.0,1437338381\n314,122882,5.0,1437338283\n314,122892,4.0,1437338367\n314,127098,4.0,1437338299\n315,39,1.0,1046663491\n315,260,1.0,1046663515\n315,497,4.0,1046663943\n315,922,4.0,1046663870\n315,953,4.0,1046663466\n315,1253,1.0,1046663943\n315,1270,5.0,1046663990\n315,1278,5.0,1046663943\n315,1573,5.0,1046663466\n315,1726,1.0,1046663515\n315,1944,3.0,1046663888\n315,2028,5.0,1046663491\n315,2109,3.0,1046663515\n315,2300,5.0,1046663870\n315,2546,1.0,1046663435\n315,2762,3.0,1046663491\n315,2947,3.0,1046663466\n315,3099,1.0,1046663990\n315,3671,5.0,1046663466\n315,3735,5.0,1046663870\n315,4587,2.0,1046663435\n315,5015,1.0,1046663870\n315,5377,3.0,1046663888\n315,5464,1.0,1046663913\n315,5788,1.0,1046663913\n315,5879,3.0,1046663751\n315,5880,1.0,1046663682\n315,5881,1.0,1046663682\n315,5882,1.0,1046663723\n315,5902,5.0,1046663657\n315,5941,2.0,1046663682\n315,5943,1.0,1046663723\n315,5944,1.0,1046663723\n315,5945,4.0,1046663682\n315,5952,3.0,1046663627\n315,5954,5.0,1046663657\n315,5957,1.0,1046663703\n315,5958,2.0,1046663703\n315,5959,1.0,1046663627\n315,5991,3.0,1046663627\n315,6001,2.0,1046663913\n315,6003,2.0,1046663627\n315,6006,1.0,1046663682\n315,6012,1.0,1046663723\n315,6013,1.0,1046663751\n315,6014,1.0,1046663751\n315,6057,1.0,1046663775\n315,6058,3.0,1046663703\n315,6060,1.0,1046663751\n315,6154,1.0,1046663775\n315,6155,2.0,1046663703\n315,6156,2.0,1046663627\n315,6157,3.0,1046663703\n315,6183,2.0,1046663870\n315,6188,5.0,1046663627\n316,260,4.0,1460822646\n316,541,3.0,1460822805\n316,589,3.5,1460822688\n316,593,2.0,1460822698\n316,1036,3.5,1460822680\n316,1136,4.5,1460822801\n316,1148,4.0,1460823163\n316,1196,4.0,1460822650\n316,1198,4.0,1460822652\n316,1210,4.0,1460822659\n316,1240,4.0,1460822695\n316,1291,4.0,1460822661\n316,2571,3.5,1460822655\n316,3300,3.0,1460823050\n316,3481,4.0,1460823298\n316,3578,4.0,1460822964\n316,3623,4.0,1460822984\n316,3717,3.0,1460822896\n316,3751,3.5,1460822994\n316,3755,2.5,1460822903\n316,3793,4.0,1460822968\n316,3827,3.0,1460823090\n316,3967,3.5,1460823036\n316,3996,3.0,1460823275\n316,4011,3.5,1460822862\n316,4025,3.0,1460822943\n316,4246,3.0,1460823007\n316,4306,3.5,1460822966\n316,4310,3.0,1460822953\n316,4344,3.5,1460823444\n316,4367,3.5,1460823040\n316,4638,2.5,1460823401\n316,4643,3.0,1460822924\n316,4718,3.0,1460822930\n316,4734,4.0,1460823069\n316,4816,3.5,1460823034\n316,4886,3.5,1460822734\n316,4896,4.0,1460822990\n316,4963,4.0,1460822976\n316,4993,4.0,1460822671\n316,4995,3.0,1460822807\n316,5010,1.5,1460822810\n316,5349,3.5,1460823280\n316,5377,3.5,1460823346\n316,5378,4.0,1460822986\n316,5418,5.0,1460822728\n316,5445,3.5,1460822977\n316,5459,3.0,1460822885\n316,5481,3.5,1460822927\n316,5816,4.0,1460823300\n316,5872,3.0,1460823080\n316,5952,4.0,1460822670\n316,5956,3.0,1460823044\n316,6157,3.5,1460823093\n316,6218,3.5,1460823047\n316,6365,3.5,1460822988\n316,6373,3.5,1460822893\n316,6377,3.0,1460822971\n316,6378,3.0,1460822717\n316,6539,4.0,1460822969\n316,6541,3.5,1460823108\n316,6863,3.5,1460822911\n316,6874,4.0,1460822974\n316,6934,4.0,1460823311\n316,6942,3.5,1460822916\n316,7153,4.0,1460822658\n316,7438,4.0,1460823282\n316,8368,4.0,1460822719\n316,8528,4.0,1460823452\n316,8665,4.0,1460822794\n316,8874,5.0,1460823148\n316,8961,4.0,1460822732\n316,8972,3.5,1460823455\n316,8984,4.0,1460823411\n316,26614,4.0,1460823154\n316,27611,2.0,1460823142\n316,30793,3.0,1460823361\n316,33493,4.0,1460823308\n316,33679,3.5,1460823374\n316,33794,3.5,1460823184\n316,34048,2.5,1460823392\n316,34162,3.5,1460823380\n316,34405,4.0,1460822804\n316,39183,2.0,1460823439\n316,40815,4.0,1460823326\n316,44191,4.0,1460823177\n316,45499,4.0,1460823397\n316,45722,4.0,1460823332\n316,48385,3.0,1460823355\n316,49272,4.0,1460823553\n316,50872,3.0,1460823324\n316,51255,4.0,1460823200\n316,51662,4.0,1460823318\n316,54001,4.0,1460823157\n316,54272,3.5,1460823432\n316,54286,4.5,1460822704\n316,56174,3.0,1460823377\n316,58559,3.0,1460822673\n316,59315,4.0,1460822689\n316,59369,2.0,1460822778\n316,59784,3.5,1460823425\n316,60069,3.0,1460822722\n316,63082,3.5,1460823516\n316,68157,4.0,1460823315\n316,68358,4.0,1460822692\n316,68954,4.0,1460822691\n316,69844,4.0,1460822793\n316,73017,4.0,1460822741\n316,76251,3.5,1460822715\n316,77561,4.0,1460823430\n316,78034,3.5,1460823489\n316,78499,3.5,1460823370\n316,79132,3.5,1460822686\n316,81834,4.0,1460822796\n316,81845,3.0,1460822856\n316,84772,4.5,1460823212\n316,87232,3.5,1460822724\n316,88125,4.5,1460822775\n316,88140,4.5,1460822737\n316,89745,4.5,1460822708\n316,91500,3.5,1460823175\n316,91542,4.0,1460823557\n316,91630,4.0,1460822813\n316,94070,4.0,1460823477\n316,96079,4.5,1460822739\n316,97913,3.0,1460822791\n316,98809,4.0,1460823169\n316,102445,4.0,1460823201\n316,102903,4.0,1460823173\n316,103341,4.0,1460823214\n316,108190,3.0,1460823167\n316,109374,4.5,1460823457\n316,110102,4.0,1460822789\n316,111362,4.0,1460823562\n316,111759,3.0,1460822868\n316,112852,4.0,1460822701\n316,122886,4.0,1460822676\n316,122900,3.5,1460823145\n316,129428,3.5,1460823483\n316,134130,4.0,1460822873\n317,150,4.0,847633374\n317,153,2.0,847633434\n317,165,4.0,847633433\n317,185,4.0,847633596\n317,208,4.0,847633596\n317,231,3.0,847633469\n317,292,3.0,847633521\n317,296,1.0,847633375\n317,316,5.0,847633469\n317,318,4.0,847633521\n317,329,5.0,847633521\n317,344,2.0,847633433\n317,349,3.0,847633469\n317,356,4.0,847633469\n317,380,4.0,847633375\n317,454,4.0,847633631\n317,457,5.0,847633433\n317,480,4.0,847633520\n317,588,3.0,847633433\n317,590,3.0,847633374\n317,592,3.0,847633374\n317,595,3.0,847633469\n318,1,1.0,862902604\n318,5,3.0,862902663\n318,6,3.0,862902663\n318,9,4.0,862902803\n318,36,3.0,862902663\n318,41,3.0,862902858\n318,95,4.0,862902604\n318,260,1.0,862902663\n318,376,3.0,862902714\n318,494,3.0,862902663\n318,605,3.0,862903225\n318,608,3.0,862902663\n318,648,4.0,862902604\n318,653,3.0,862902714\n318,673,4.0,862902909\n318,704,5.0,862903068\n318,711,2.0,862902909\n318,731,3.0,862903293\n318,733,3.0,862902663\n318,736,3.0,862902604\n318,737,4.0,862902803\n318,743,3.0,862902803\n318,760,2.0,862903604\n318,761,1.0,862902909\n318,778,4.0,862902803\n318,780,5.0,862902604\n318,782,3.0,862903129\n318,783,3.0,862902803\n318,784,4.0,862902714\n318,786,4.0,862902663\n318,788,3.0,862902714\n318,798,4.0,862903194\n318,799,3.0,862903009\n318,805,4.0,862902751\n318,830,3.0,862902980\n318,832,4.0,862902803\n318,849,3.0,862902980\n318,852,4.0,862902803\n318,991,3.0,862903194\n318,996,3.0,862903224\n318,1004,4.0,862903225\n318,1041,3.0,862903129\n318,1047,4.0,862903009\n318,1057,4.0,862903358\n318,1059,3.0,862902980\n318,1061,3.0,862902980\n318,1133,3.0,862903604\n318,1210,1.0,862902803\n318,1356,4.0,862902751\n318,1363,3.0,862903194\n318,1367,2.0,862902909\n318,1391,1.0,862902980\n318,1393,4.0,862902858\n318,1416,2.0,862903099\n318,1429,5.0,862903267\n318,1432,4.0,862903428\n318,1438,4.0,862903267\n318,1479,4.0,862903479\n318,1499,5.0,862903528\n319,11,4.0,834759704\n319,17,3.0,834759756\n319,39,3.0,834759561\n319,95,3.0,834759756\n319,110,4.0,834759497\n319,141,5.0,834759756\n319,153,4.0,834759426\n319,196,4.0,834759704\n319,253,3.0,834759479\n319,316,4.0,834759445\n319,344,3.0,834759426\n319,349,3.0,834759426\n319,356,3.0,834759671\n319,380,3.0,834759389\n319,435,2.0,834759633\n319,480,4.0,834759730\n319,553,3.0,834759671\n319,589,3.0,834759802\n319,592,3.0,834759389\n319,593,4.0,834759479\n320,296,4.5,1424366551\n320,318,4.0,1424366411\n320,356,4.0,1424366509\n320,527,4.0,1424366416\n320,541,5.0,1424366884\n320,904,4.5,1424366807\n320,908,4.0,1424366936\n320,912,5.0,1424366786\n320,924,3.5,1424366900\n320,1172,5.0,1424366533\n320,1206,4.5,1424366734\n320,1704,4.0,1424366430\n320,2010,4.0,1424366898\n320,2324,3.5,1424366498\n320,2571,4.5,1424366427\n320,2762,3.5,1424366433\n320,2858,3.0,1424366512\n320,3147,3.5,1424366522\n320,3578,3.5,1460751890\n320,4226,4.0,1424366793\n320,4306,3.5,1460751884\n320,4343,2.0,1460752160\n320,4643,3.5,1460752010\n320,4874,3.5,1460752076\n320,4886,3.5,1460751896\n320,4973,3.5,1424366500\n320,5445,4.0,1460751904\n320,5881,3.0,1460752293\n320,5945,3.5,1460752129\n320,5995,4.0,1424366515\n320,6874,4.0,1460751900\n320,6942,4.0,1460751996\n320,7438,4.0,1460751910\n320,8622,3.5,1460752032\n320,27831,3.5,1460752281\n320,30707,4.0,1460751966\n320,30749,4.0,1424366798\n320,30793,3.5,1460752024\n320,39183,2.0,1460752092\n320,41285,3.5,1460752219\n320,44191,4.0,1460751923\n320,44555,4.5,1460751369\n320,56367,3.5,1424366603\n320,60069,2.5,1460751930\n320,60397,3.0,1460752409\n320,63082,4.0,1424366972\n320,64614,4.0,1460752036\n320,68237,4.0,1460752074\n320,68358,4.0,1460751978\n320,68954,3.5,1460751940\n320,81845,4.0,1424366940\n320,85414,4.0,1460752139\n320,96610,3.5,1460752164\n320,104841,4.0,1460752132\n320,109487,4.0,1460751969\n320,115713,4.0,1432825064\n320,116797,4.5,1424366789\n320,134130,4.0,1460751392\n321,1,3.0,939420838\n321,21,5.0,939420702\n321,50,4.0,939420971\n321,164,4.0,939399601\n321,232,5.0,939400966\n321,293,4.0,939421228\n321,296,5.0,939400862\n321,319,5.0,939421228\n321,348,4.0,939401242\n321,350,3.0,939399601\n321,551,5.0,939420207\n321,562,3.0,939401033\n321,568,4.0,939420702\n321,593,3.0,939420971\n321,608,4.0,939420971\n321,707,4.0,939400777\n321,800,4.0,939399420\n321,837,4.0,939401165\n321,913,5.0,939398171\n321,930,4.0,939398171\n321,942,3.0,939398171\n321,1131,4.0,939398445\n321,1132,3.0,939398445\n321,1148,4.0,939401033\n321,1150,5.0,939398768\n321,1171,4.0,939420777\n321,1172,5.0,939398768\n321,1179,3.0,939400777\n321,1188,4.0,939420838\n321,1196,1.0,939398278\n321,1217,5.0,939398446\n321,1224,4.0,939398532\n321,1228,5.0,939398278\n321,1246,2.0,939398768\n321,1249,4.0,939421228\n321,1264,5.0,939398446\n321,1265,4.0,939420777\n321,1284,5.0,939398171\n321,1464,5.0,939399601\n321,1500,4.0,939420838\n321,1580,3.0,939420702\n321,1617,4.0,939400777\n321,1625,4.0,939400625\n321,1645,4.0,939399601\n321,1683,4.0,939420971\n321,1689,3.0,939400625\n321,1711,3.0,939400625\n321,1713,4.0,939400966\n321,1732,5.0,939399420\n321,1760,3.0,939420702\n321,1883,5.0,939401099\n321,1892,2.0,939399420\n321,1909,2.0,939399420\n321,1918,1.0,939420207\n321,1923,2.0,939401033\n321,1961,2.0,939398445\n321,2020,3.0,939398532\n321,2065,4.0,939398446\n321,2066,5.0,939398171\n321,2068,4.0,939398278\n321,2069,3.0,939398278\n321,2076,5.0,939398446\n321,2194,2.0,939398445\n321,2243,3.0,939398532\n321,2278,2.0,939421164\n321,2289,4.0,939401165\n321,2302,3.0,939420777\n321,2312,2.0,939398532\n321,2352,3.0,939398768\n321,2384,4.0,939401165\n321,2395,4.0,939420207\n321,2396,5.0,939400966\n321,2605,1.0,939421164\n321,2919,4.0,939398768\n321,2940,5.0,939398171\n322,164,3.0,974698800\n322,451,4.0,974698993\n322,903,5.0,974698657\n322,906,5.0,974698657\n322,910,3.0,974697728\n322,912,4.0,974697780\n322,924,5.0,974698657\n322,931,5.0,974698657\n322,942,4.0,974698657\n322,1086,5.0,974698728\n322,1092,4.0,974698993\n322,1212,5.0,974698574\n322,1459,2.0,974698993\n322,1589,3.0,974698993\n322,1608,2.0,974697780\n322,1617,5.0,974698574\n322,1625,2.0,974698870\n322,1627,4.0,974698993\n322,1721,3.0,974697728\n322,1732,4.0,974698870\n322,1913,5.0,974698574\n322,1964,4.0,974698657\n322,1968,2.0,974697680\n322,2024,4.0,974698800\n322,2076,2.0,974698728\n322,2206,3.0,974698728\n322,2467,5.0,974698800\n322,2686,3.0,974698800\n322,3072,4.0,974697637\n322,3176,3.0,974698993\n322,3251,3.0,974698993\n322,3386,2.0,974698800\n322,3445,4.0,974698870\n322,3706,5.0,974698870\n322,3730,4.0,974698574\n322,3788,3.0,974698800\n322,3897,5.0,974698401\n322,3925,4.0,974698322\n322,3950,4.0,974698172\n322,3952,5.0,974698172\n322,3959,3.0,974698096\n322,3963,5.0,974698096\n322,3981,3.0,974697953\n323,186,3.5,1150487585\n323,225,3.0,1150487447\n323,236,4.0,1150487529\n323,315,3.5,1150487590\n323,318,4.5,1150487770\n323,494,3.0,1150487437\n323,527,4.5,1150487711\n323,784,4.0,1150487480\n323,832,4.0,1150487464\n323,858,4.5,1150487750\n323,912,5.0,1150487777\n323,920,5.0,1150487430\n323,1250,4.5,1150487631\n323,1639,2.5,1150487558\n323,2006,2.0,1150487640\n323,2054,3.5,1150487454\n323,2081,3.5,1150487566\n323,3176,3.5,1150487607\n323,4034,3.0,1150487515\n323,4973,5.0,1150487785\n323,4995,4.5,1150487633\n323,5445,3.0,1150487473\n323,6539,4.5,1150487651\n324,1,4.0,1451524648\n324,2,4.0,1451524483\n324,19,3.0,1451524520\n324,32,3.5,1451524254\n324,34,5.0,1451524308\n324,62,3.5,1451524516\n324,73,4.5,1451527890\n324,110,4.0,1451524229\n324,111,3.5,1451524657\n324,141,4.0,1451524426\n324,150,4.0,1451525052\n324,185,3.0,1451524398\n324,208,1.0,1451524326\n324,260,3.5,1451526226\n324,318,4.0,1451519630\n324,356,4.0,1451519729\n324,364,3.5,1451526209\n324,367,4.0,1451524284\n324,500,4.0,1451524282\n324,527,3.0,1451519636\n324,551,4.0,1451524538\n324,588,4.0,1451524258\n324,590,3.5,1451524249\n324,592,4.0,1451524244\n324,593,4.0,1451524234\n324,1197,4.5,1451524278\n324,1200,3.0,1451524345\n324,1225,4.0,1451524529\n324,1246,4.0,1451524524\n324,1265,4.0,1451524299\n324,1517,3.5,1451524477\n324,1682,4.0,1451524353\n324,1704,3.5,1451519722\n324,1917,3.0,1451524480\n324,1961,4.0,1451524385\n324,2028,4.0,1451519698\n324,2174,4.0,1451524542\n324,2502,4.0,1451524509\n324,2571,4.0,1451519692\n324,2762,3.5,1451519709\n324,2791,3.5,1451524555\n324,2918,4.0,1451524471\n324,3114,4.0,1451524422\n324,3578,3.5,1451528111\n324,3752,3.0,1451528398\n324,3753,2.5,1451528232\n324,3755,3.5,1451528284\n324,3793,3.5,1451528129\n324,3911,3.5,1451528303\n324,3988,4.5,1451528572\n324,4022,4.0,1451528211\n324,4025,2.5,1451528317\n324,4148,3.0,1451528476\n324,4226,3.5,1451528123\n324,4306,4.0,1451528118\n324,4638,4.0,1451523605\n324,4643,3.0,1451528363\n324,4874,3.0,1451528539\n324,4886,3.5,1451524384\n324,4896,4.0,1451524561\n324,4973,3.5,1451524338\n324,4993,2.5,1451528100\n324,4995,3.5,1451524416\n324,5010,2.5,1451523472\n324,5218,3.0,1451528251\n324,5266,3.5,1451528503\n324,5349,3.5,1451524420\n324,5459,3.5,1451523462\n324,5481,3.5,1451523557\n324,5502,2.5,1451523485\n324,5816,3.5,1451523310\n324,5945,3.0,1451524087\n324,5952,3.0,1451528105\n324,5989,3.5,1451528171\n324,6287,1.5,1451528764\n324,6333,3.5,1451523301\n324,6377,3.5,1451528139\n324,6539,4.0,1451528132\n324,6541,4.0,1451528664\n324,6753,4.0,1451528023\n324,6787,3.5,1451526358\n324,6807,4.0,1451526872\n324,6863,4.0,1451528318\n324,6870,3.5,1451528377\n324,6934,3.5,1451528265\n324,6957,3.5,1451524184\n324,7147,3.5,1451523380\n324,7254,3.0,1451528307\n324,7361,4.0,1451524410\n324,7419,4.0,1451525526\n324,7438,1.5,1451526815\n324,7458,4.0,1451523922\n324,7502,3.0,1451519656\n324,8368,3.5,1451523411\n324,8376,4.0,1451523618\n324,8464,2.5,1451528410\n324,8528,3.5,1451524015\n324,8529,3.0,1451524083\n324,8641,3.0,1451524034\n324,8644,3.5,1451523476\n324,8810,3.5,1451528828\n324,8865,3.0,1451528960\n324,8961,4.0,1451528146\n324,8970,3.0,1451523911\n324,8972,3.5,1451528618\n324,26649,3.5,1451525514\n324,27002,3.5,1451525090\n324,30707,3.5,1451523451\n324,30812,3.0,1451528552\n324,30825,3.0,1451528714\n324,34048,2.5,1451528506\n324,34150,3.5,1451528780\n324,35836,2.5,1451528294\n324,38038,3.5,1451527954\n324,38499,4.0,1451525745\n324,40629,3.5,1451525471\n324,41569,3.0,1451528563\n324,45722,4.0,1451528287\n324,46972,3.5,1451528945\n324,52435,4.5,1451527821\n324,53996,2.5,1451528535\n324,54001,3.5,1451528490\n324,55908,3.0,1451526529\n324,56367,3.5,1451525750\n324,58559,3.5,1451524328\n324,59387,5.0,1451525028\n324,59615,4.0,1451528644\n324,64614,3.5,1451524895\n324,66934,3.5,1451526253\n324,68099,4.5,1451525719\n324,68319,3.0,1451528858\n324,70286,3.5,1451525464\n324,72998,3.5,1451528247\n324,77561,3.5,1451528601\n324,77846,4.0,1451526684\n324,79132,3.5,1451524512\n324,86332,3.5,1451528822\n324,86345,3.5,1451524852\n324,88744,3.5,1451528900\n324,91500,3.5,1451528599\n324,91529,3.5,1451526364\n324,92259,2.5,1451519647\n324,98124,3.5,1451525560\n324,98809,3.0,1451528732\n324,99114,3.5,1451528426\n324,106100,3.5,1451525111\n324,106487,3.0,1451528907\n324,109487,3.5,1451528367\n324,116797,4.0,1451526328\n324,117176,3.5,1451526024\n324,149532,3.0,1451519751\n325,31,4.5,1356316520\n325,105,2.0,1356316532\n325,277,1.5,1356316525\n325,585,4.0,1356316527\n325,724,1.5,1356316545\n325,914,1.5,1356316525\n325,1022,1.5,1356316544\n325,1061,3.5,1356316549\n325,1129,3.0,1356316550\n325,1172,2.0,1356316546\n325,1339,2.5,1356316514\n325,1371,3.5,1356316515\n325,1562,1.0,1356316539\n325,1569,4.0,1356316516\n325,2193,1.0,1356316540\n325,2694,2.0,1356316541\n325,3039,3.0,1356316542\n325,3072,2.0,1356316547\n325,3911,2.0,1356316512\n325,4085,4.5,1356316518\n326,60,4.0,966009905\n326,314,5.0,966009951\n326,337,2.0,966009788\n326,590,3.0,966009930\n326,653,1.0,966009905\n326,919,4.0,966009930\n326,933,4.0,966009788\n326,969,5.0,966009982\n326,986,3.0,966009951\n326,1073,5.0,966010015\n326,1127,4.0,966010015\n326,1193,2.0,966009788\n326,1196,4.0,966009930\n326,1197,5.0,966009930\n326,1210,4.0,966009982\n326,1254,4.0,966009905\n326,1259,2.0,966009930\n326,1287,3.0,966009930\n326,1291,4.0,966009982\n326,1374,3.0,966009788\n326,1396,5.0,966009788\n326,1580,2.0,966009982\n326,1931,4.0,966009951\n326,2450,1.0,966009905\n326,2987,4.0,966010015\n326,3308,3.0,966009788\n326,3412,4.0,966009930\n327,32,4.0,1225363971\n327,47,3.5,1225363967\n327,223,5.0,1225363960\n327,231,4.5,1225363953\n327,260,4.5,1225363950\n327,288,3.0,1225363946\n327,296,5.0,1225363942\n327,364,4.0,1225363931\n327,500,3.5,1225363929\n327,539,3.0,1225363926\n327,592,3.0,1225363917\n327,608,5.0,1225363913\n327,1196,4.0,1225363909\n327,1200,5.0,1225363905\n327,1220,5.0,1225364145\n327,1259,4.0,1225364121\n327,1265,3.0,1225363902\n327,1274,5.0,1225364111\n327,1347,4.0,1225363658\n327,1375,4.5,1225364095\n327,1376,4.0,1225364098\n327,1479,4.0,1225364084\n327,1589,4.0,1225363733\n327,1704,4.5,1225363895\n327,1722,4.0,1225364079\n327,1805,4.5,1225364075\n327,1923,3.5,1225363893\n327,1954,5.0,1225364072\n327,2001,4.0,1225364064\n327,2268,4.0,1225364058\n327,2371,4.0,1225363692\n327,2394,3.5,1225363701\n327,2572,4.0,1225364053\n327,2600,2.0,1225363744\n327,2628,4.0,1225363890\n327,2640,5.0,1225364050\n327,2688,4.0,1225363695\n327,2763,4.0,1225364048\n327,2826,4.0,1225363643\n327,2840,4.0,1225363774\n327,2916,4.0,1225364045\n327,3033,5.0,1225364032\n327,3087,4.0,1225363756\n327,3247,3.0,1225363679\n327,3257,3.0,1225363711\n327,3273,4.0,1225363724\n327,3285,4.5,1225363764\n327,3499,3.5,1225364022\n327,3623,4.5,1225364021\n327,4018,3.5,1225364015\n327,4027,5.0,1225364013\n327,4310,4.5,1225364010\n327,4369,4.5,1225363718\n327,4643,3.0,1225364008\n327,4878,5.0,1225364005\n327,6373,2.5,1225363671\n327,6502,5.0,1225363999\n327,6537,3.5,1225363993\n327,6863,2.5,1225363996\n327,6874,5.0,1225363989\n327,6934,4.5,1225363987\n327,7143,4.5,1225363977\n327,8360,4.0,1225363975\n328,1,4.0,1147996106\n328,25,3.0,1148006147\n328,34,4.0,1147996835\n328,110,4.0,1148005847\n328,141,3.5,1148006136\n328,150,4.0,1148005838\n328,151,3.5,1147995739\n328,163,3.5,1147995765\n328,246,3.0,1147997185\n328,260,4.0,1147996590\n328,300,3.0,1148006198\n328,316,3.5,1148006049\n328,318,4.5,1147996930\n328,356,3.0,1148005830\n328,364,3.5,1148000620\n328,380,3.5,1148005854\n328,432,2.5,1147995652\n328,457,3.0,1147997263\n328,480,3.5,1148005827\n328,588,3.5,1148000624\n328,593,3.0,1148005820\n328,595,3.5,1148000617\n328,608,3.0,1147996612\n328,648,2.5,1148006024\n328,720,4.5,1147996017\n328,736,3.5,1148006053\n328,745,4.5,1147995987\n328,780,3.5,1148005860\n328,899,4.0,1147996989\n328,904,4.0,1147995769\n328,908,4.0,1147995684\n328,910,4.0,1147996672\n328,919,4.0,1147996597\n328,938,2.5,1147998775\n328,1022,4.0,1147997723\n328,1032,3.0,1147997752\n328,1073,4.0,1148006097\n328,1079,3.0,1147996615\n328,1085,3.0,1147999926\n328,1103,3.0,1147997579\n328,1136,3.0,1147996355\n328,1148,4.5,1147996112\n328,1196,4.5,1147996535\n328,1197,3.5,1147996423\n328,1198,3.5,1147996198\n328,1200,3.5,1147996649\n328,1203,4.0,1147996505\n328,1207,4.5,1147996884\n328,1213,3.0,1147996791\n328,1214,3.5,1147996682\n328,1223,4.5,1147996260\n328,1231,3.0,1147996833\n328,1259,3.5,1147997023\n328,1265,3.5,1147996670\n328,1266,3.5,1147996632\n328,1270,3.5,1148006062\n328,1278,3.5,1147995774\n328,1283,3.5,1147997384\n328,1288,4.0,1147995753\n328,1291,3.5,1147996953\n328,1387,3.0,1147996269\n328,1394,3.0,1147996801\n328,1449,3.0,1147996910\n328,1485,1.5,1147995674\n328,1527,3.5,1148006222\n328,1580,4.0,1148006122\n328,1617,3.5,1147996642\n328,1721,2.5,1148006128\n328,1943,3.5,1147999966\n328,2043,4.0,1147999958\n328,2054,3.5,1147995711\n328,2080,3.5,1147997689\n328,2081,3.5,1148000539\n328,2087,3.5,1147997762\n328,2096,4.0,1147997726\n328,2105,3.0,1148006461\n328,2137,3.0,1148006401\n328,2139,3.0,1148000532\n328,2141,3.5,1148000546\n328,2142,3.0,1148000669\n328,2194,3.0,1147997029\n328,2294,3.0,1148000644\n328,2355,3.5,1147997180\n328,2406,3.5,1147995744\n328,2599,4.0,1147995727\n328,2628,1.0,1148006150\n328,2640,3.0,1147995693\n328,2700,1.0,1147995686\n328,2716,3.5,1148006179\n328,2761,3.0,1147995994\n328,2762,3.5,1147996957\n328,2804,3.0,1147996183\n328,2858,4.0,1148006067\n328,2918,3.5,1147996743\n328,2941,3.5,1147998831\n328,2947,3.5,1147996459\n328,2948,3.5,1147996786\n328,2987,4.0,1148000529\n328,3034,3.0,1147997301\n328,3037,1.5,1147997191\n328,3114,4.0,1147995909\n328,3359,3.5,1147996654\n328,3363,3.0,1147996752\n328,3396,3.5,1147996202\n328,3471,3.5,1147996942\n328,3507,4.0,1147996544\n328,3508,3.5,1147996351\n328,3516,2.5,1147997797\n328,3615,2.5,1148000940\n328,3675,3.0,1147997757\n328,3681,3.0,1147996516\n328,3751,3.5,1148000748\n328,3897,3.5,1147996961\n328,3911,3.0,1147996693\n328,3996,3.0,1147996698\n328,4016,3.0,1148000775\n328,4027,4.0,1147997209\n328,4306,4.0,1148000733\n328,4322,3.0,1147996096\n328,4329,3.0,1147996796\n328,4357,4.5,1147997782\n328,4366,3.0,1148000917\n328,4406,3.5,1147996247\n328,4446,3.0,1148000928\n328,4802,3.5,1147997623\n328,4886,4.0,1148000721\n328,4990,3.0,1148000923\n328,5085,3.0,1147998815\n328,5159,3.0,1148000672\n328,5168,3.5,1147998764\n328,5218,3.5,1148000780\n328,5444,3.5,1148000768\n328,5618,4.5,1148000725\n328,5690,4.0,1148000505\n328,5782,3.5,1147997294\n328,5882,3.0,1148000810\n328,6231,3.5,1147999904\n328,6237,3.5,1147997803\n328,6239,3.0,1147998690\n328,6358,4.0,1147997873\n328,6377,3.5,1147996238\n328,6773,5.0,1148000736\n328,6785,4.0,1147998778\n328,6889,1.5,1148000944\n328,6947,3.5,1147997243\n328,6970,4.5,1147997433\n328,6979,3.0,1147997222\n328,7099,2.0,1148000500\n328,7395,3.5,1147998796\n328,7614,3.5,1147998698\n328,7697,3.5,1147999990\n328,7826,3.0,1147996404\n328,8360,4.0,1148000744\n328,8368,4.0,1147996828\n328,8372,3.0,1148000991\n328,8464,3.5,1147997327\n328,8502,3.0,1148000105\n328,8623,4.0,1147996340\n328,8798,3.5,1147997012\n328,8874,2.0,1147996483\n328,8907,3.5,1148000953\n328,8961,3.5,1147996149\n328,8965,1.5,1148000847\n328,26662,4.0,1148000491\n328,32031,3.5,1148000823\n328,33615,2.5,1148000827\n328,33660,2.0,1147997308\n328,34405,4.5,1147996210\n328,38038,4.5,1147996101\n328,40815,4.0,1147996915\n329,1,5.0,867072004\n329,3,3.0,867072039\n329,5,3.0,867072039\n329,6,5.0,867072039\n329,7,4.0,867072073\n329,25,5.0,867072005\n329,32,3.0,867072004\n329,95,3.0,867072005\n329,104,3.0,867072073\n329,260,5.0,867072039\n329,494,3.0,867072039\n329,648,4.0,867072004\n329,653,3.0,867072073\n329,708,4.0,867072073\n329,733,4.0,867072039\n329,736,4.0,867072004\n329,780,4.0,867072004\n329,786,3.0,867072039\n329,802,5.0,867072073\n329,1073,3.0,867072039\n329,1210,4.0,867072117\n329,1356,5.0,867072073\n330,16,3.0,948574059\n330,22,3.0,948576623\n330,25,3.0,948577275\n330,32,4.0,948578017\n330,41,5.0,948577200\n330,50,4.0,948731488\n330,58,4.0,948577603\n330,80,5.0,948577126\n330,110,4.0,948575949\n330,132,1.0,948576723\n330,150,2.0,948577776\n330,164,3.0,948576623\n330,165,2.0,948576723\n330,207,4.0,948576143\n330,213,5.0,948577039\n330,231,2.0,948731347\n330,232,4.0,948577631\n330,246,5.0,948577543\n330,265,5.0,948577232\n330,293,5.0,948576522\n330,300,3.0,948578017\n330,301,5.0,948574126\n330,318,4.0,948577379\n330,337,3.0,948577507\n330,342,4.0,948575236\n330,349,3.0,948576522\n330,350,4.0,948574412\n330,373,5.0,948576522\n330,389,4.0,948577776\n330,457,4.0,948575949\n330,480,3.0,948575888\n330,483,4.0,948577275\n330,497,4.0,948575236\n330,508,3.0,948577847\n330,527,5.0,948577164\n330,589,3.0,948576522\n330,593,1.0,948577340\n330,595,4.0,948576914\n330,628,3.0,948576522\n330,707,2.0,948576723\n330,899,4.0,948576871\n330,924,1.0,948574466\n330,994,4.0,948577507\n330,1028,1.0,948576871\n330,1032,3.0,948576914\n330,1035,5.0,948574126\n330,1081,3.0,948575358\n330,1094,5.0,948577200\n330,1172,5.0,948575236\n330,1176,2.0,948577701\n330,1179,3.0,948577543\n330,1188,3.0,948577442\n330,1198,2.0,948574126\n330,1249,5.0,948576522\n330,1252,3.0,948574467\n330,1285,4.0,948575236\n330,1401,4.0,948577847\n330,1407,1.0,948576674\n330,1428,5.0,948731410\n330,1459,3.0,948574412\n330,1466,3.0,948577408\n330,1575,5.0,948577442\n330,1580,4.0,948575845\n330,1608,3.0,948576763\n330,1610,3.0,948576763\n330,1617,2.0,948574520\n330,1639,1.0,948577897\n330,1683,5.0,948578017\n330,1694,4.0,948577728\n330,1704,4.0,948577603\n330,1777,1.0,948731214\n330,1892,4.0,948731380\n330,1904,3.0,948575027\n330,1913,4.0,948574412\n330,1914,4.0,948577701\n330,1950,4.0,948574412\n330,1966,2.0,948577898\n330,2028,4.0,948575752\n330,2102,3.0,948576871\n330,2278,3.0,948575752\n330,2336,5.0,948577275\n330,2353,3.0,948576417\n330,2467,4.0,948574412\n330,2565,3.0,948576871\n330,2570,3.0,948731457\n330,2622,4.0,948575129\n330,2690,4.0,948731262\n330,2916,3.0,948576522\n330,3067,4.0,948575236\n330,3095,3.0,948574126\n330,3100,4.0,948577933\n330,3246,4.0,948577543\n330,3256,3.0,948576674\n330,3258,2.0,948575129\n330,3260,4.0,948577232\n331,24,4.0,1323373212\n331,175,3.0,1323373331\n331,196,3.0,1323373122\n331,256,2.0,1323373191\n331,527,4.5,1323373563\n331,762,1.5,1323373159\n331,2005,5.0,1323373177\n331,2137,5.0,1323373292\n331,2470,3.0,1323373139\n331,2657,4.0,1323373114\n331,2717,1.0,1323373227\n331,2803,4.0,1323373324\n331,3107,3.5,1323373240\n331,3254,3.0,1323373311\n331,3911,1.5,1323373185\n331,4571,3.0,1323373234\n331,4954,2.0,1323373810\n331,4963,4.5,1323373813\n331,5618,4.0,1323373762\n331,5991,5.0,1323373752\n331,52975,5.0,1323373738\n331,58803,4.0,1323373792\n331,69122,4.0,1323373826\n331,80463,5.0,1323373780\n331,89864,5.0,1323373641\n332,70,5.0,1147971495\n332,145,4.5,1147971536\n332,158,0.5,1147971452\n332,163,3.5,1147971849\n332,315,3.5,1147971462\n332,552,0.5,1147971470\n332,1089,5.0,1147971955\n332,1241,4.0,1147971996\n332,1320,4.0,1147971480\n332,1372,0.5,1147971528\n332,1375,0.5,1147971554\n332,1376,0.5,1147971467\n332,1690,4.5,1147971626\n332,2167,4.5,1147971623\n332,3535,3.0,1147972071\n332,5378,0.5,1147971635\n332,5418,1.5,1147971644\n332,5918,3.0,1147971878\n332,6333,1.5,1147971652\n332,6377,1.5,1147971541\n332,6874,5.0,1147971963\n332,7022,5.0,1147971979\n332,7153,0.5,1147971430\n332,7438,5.0,1147971965\n332,8225,4.0,1147972073\n332,8957,4.0,1147972090\n332,27022,5.0,1147971745\n332,27788,2.0,1147971872\n332,32587,5.0,1147971939\n332,33834,3.5,1147971898\n332,39446,4.5,1147971860\n332,40732,4.5,1147972108\n333,1,4.0,1441197471\n333,318,5.0,1441197184\n333,356,4.5,1441197368\n333,527,5.0,1441197187\n333,588,3.5,1441198986\n333,589,4.0,1441197456\n333,858,4.5,1441197210\n333,912,4.0,1441199161\n333,953,4.0,1441198237\n333,1265,2.5,1441197491\n333,1527,4.5,1441199303\n333,1954,5.0,1441199800\n333,2028,4.0,1441197268\n333,2324,5.0,1441199041\n333,2409,4.5,1441199814\n333,2410,4.5,1441199818\n333,2411,4.5,1441199821\n333,2412,4.0,1441199823\n333,2431,4.5,1441198038\n333,2501,4.0,1441197894\n333,2571,5.0,1441197235\n333,2918,4.0,1441199130\n333,3114,4.0,1441198911\n333,3751,4.0,1441198963\n333,3916,4.0,1441198156\n333,3996,4.0,1441199152\n333,4014,4.5,1441199174\n333,4022,4.0,1441198060\n333,4306,4.5,1441198864\n333,4823,4.0,1441199218\n333,4886,4.5,1441198883\n333,4995,5.0,1441197739\n333,5218,5.0,1441198921\n333,5418,4.5,1441197743\n333,5985,3.0,1441199472\n333,5989,4.5,1441198286\n333,6377,4.0,1441198886\n333,6539,4.5,1441197751\n333,6776,5.0,1441199422\n333,7293,4.5,1441199194\n333,8360,4.0,1441198895\n333,8529,5.0,1441199051\n333,8581,4.0,1441198384\n333,8665,4.5,1441199351\n333,8970,4.5,1441198013\n333,30707,4.5,1441198744\n333,31685,5.0,1441199189\n333,33615,4.5,1441198936\n333,33660,3.5,1441197876\n333,43396,3.5,1441197867\n333,45517,4.0,1441199005\n333,47099,5.0,1441197835\n333,47610,4.5,1441197786\n333,49651,4.5,1441198082\n333,50703,5.0,1441199769\n333,54001,4.0,1441197796\n333,54272,2.5,1441199101\n333,54286,4.5,1441197387\n333,56174,4.0,1441197780\n333,63082,4.0,1441198728\n333,68954,3.5,1441197346\n333,69644,4.0,1441199063\n333,72641,4.5,1441198164\n333,72998,4.5,1441199310\n333,73881,5.0,1441199444\n333,74787,3.0,1441198229\n333,74789,4.0,1441199709\n333,78499,4.0,1441197363\n333,79132,5.0,1441197262\n333,80463,3.0,1441198325\n333,81562,4.0,1441198586\n333,81845,4.0,1441198356\n333,89045,4.5,1441199805\n333,89492,4.0,1441198303\n333,103335,4.5,1441198988\n333,104913,4.5,1441198315\n333,105844,3.5,1441198673\n333,109487,4.5,1441197391\n333,116797,5.0,1441197436\n333,117176,4.0,1441197950\n333,141668,5.0,1441198482\n334,1,5.0,1447031887\n334,260,4.0,1447031417\n334,296,5.0,1447031705\n334,318,4.0,1447031384\n334,356,5.0,1447031758\n334,778,3.0,1447031800\n334,858,5.0,1447031501\n334,1917,3.0,1447031435\n334,2028,5.0,1447031703\n334,2355,3.0,1447031445\n334,2571,4.0,1447031390\n334,2959,4.0,1447031401\n334,3147,4.0,1447031430\n334,3462,5.0,1447031719\n334,6016,5.0,1447031512\n334,6874,3.5,1447031894\n334,8873,3.0,1447033619\n334,44191,3.5,1447031863\n334,46578,3.0,1447031873\n334,48394,3.0,1447031803\n334,55721,4.5,1447031834\n334,60069,4.0,1447031733\n334,68954,3.5,1447031737\n334,79132,4.0,1447031394\n334,81834,2.0,1447033624\n334,85342,4.0,1447031855\n334,99114,5.0,1447031702\n334,106100,4.5,1447031881\n334,112552,4.5,1447031752\n334,115713,3.0,1447031473\n334,116797,4.0,1447031460\n334,117444,4.0,1447031477\n334,122882,4.5,1447031896\n334,134853,4.0,1447031453\n335,169,2.5,1232147376\n335,858,5.0,1232148481\n335,922,3.5,1232147137\n335,969,4.0,1232164692\n335,1096,4.0,1232149814\n335,1212,4.0,1232149335\n335,1281,4.0,1232147413\n335,1287,3.0,1232147020\n335,1293,4.5,1232148492\n335,1381,2.0,1232147308\n335,2379,2.0,1232147403\n335,2533,2.5,1232147383\n335,2739,4.0,1232147174\n335,2949,2.5,1232147083\n335,2993,2.5,1232147268\n335,3147,4.0,1232149182\n335,3155,3.0,1232147349\n335,3479,3.5,1232147293\n335,3984,2.5,1232147260\n335,4223,4.0,1232149624\n335,6818,4.5,1232149449\n335,55417,3.0,1232149132\n335,63082,4.0,1232148894\n336,1,2.0,995826976\n336,260,5.0,995827310\n336,356,5.0,995826491\n336,527,5.0,995826976\n336,904,5.0,995826913\n336,908,4.0,995827082\n336,912,3.0,995826913\n336,919,5.0,995827082\n336,922,4.0,995827025\n336,923,1.0,995827178\n336,926,5.0,995827082\n336,933,3.0,995827178\n336,953,5.0,995826976\n336,954,3.0,995827025\n336,1019,3.0,995826491\n336,1084,1.0,995826491\n336,1204,1.0,995827082\n336,1207,5.0,995827263\n336,1250,5.0,995827082\n336,1269,1.0,995827310\n336,1372,2.0,995826491\n336,1387,1.0,995826976\n336,1939,5.0,995826976\n336,3196,5.0,995827082\n336,3501,5.0,995826491\n336,3634,3.0,995826976\n336,4191,1.0,995826851\n336,4406,5.0,995826790\n336,4427,4.0,995826851\n336,4486,1.0,995826737\n336,4539,3.0,995826491\n337,260,4.0,1447176378\n337,329,5.0,1447176408\n337,541,4.0,1447176441\n337,589,5.0,1447176450\n337,891,1.0,1447176249\n337,1196,5.0,1447176393\n337,1199,5.0,1447176456\n337,1200,4.0,1447176462\n337,1206,4.0,1447176472\n337,1321,1.0,1447176367\n337,1328,1.0,1447176357\n337,1339,1.0,1447176313\n337,1342,2.0,1447176325\n337,1345,2.0,1447176340\n337,1356,5.0,1447176421\n337,1376,4.0,1447176430\n337,1969,2.0,1447176300\n337,1974,2.0,1447176257\n337,2160,1.0,1447176196\n337,2167,1.0,1447176222\n338,2,3.0,841656624\n338,17,4.0,841656668\n338,25,4.0,841656889\n338,31,3.0,841656923\n338,34,4.0,841656380\n338,36,4.0,841656923\n338,39,3.0,841656489\n338,47,4.0,841656328\n338,62,4.0,841656782\n338,105,3.0,841656923\n338,110,3.0,841656284\n338,141,3.0,841656696\n338,150,4.0,841656066\n338,153,3.0,841656121\n338,158,3.0,841656725\n338,161,3.0,841656206\n338,168,3.0,841656756\n338,185,3.0,841656284\n338,193,2.0,841656889\n338,208,3.0,841656247\n338,224,4.0,841656889\n338,225,3.0,841656380\n338,235,4.0,841656696\n338,236,3.0,841656590\n338,265,3.0,841656756\n338,282,3.0,841656590\n338,292,3.0,841656206\n338,296,3.0,841656067\n338,300,3.0,841656328\n338,318,4.0,841656206\n338,337,5.0,841656624\n338,344,3.0,841656121\n338,350,3.0,841656557\n338,355,4.0,841657033\n338,356,4.0,841656247\n338,357,4.0,841656557\n338,364,4.0,841656328\n338,367,4.0,841656381\n338,377,3.0,841656379\n338,410,4.0,841656328\n338,454,3.0,841656284\n338,457,3.0,841656157\n338,480,3.0,841656284\n338,500,3.0,841656415\n338,508,4.0,841656725\n338,509,4.0,841656624\n338,515,3.0,841657033\n338,527,5.0,841656524\n338,539,3.0,841656524\n338,588,3.0,841656121\n338,589,5.0,841656328\n338,590,3.0,841656065\n338,592,3.0,841656064\n338,593,5.0,841656157\n338,595,4.0,841656157\n338,597,3.0,841656489\n338,648,4.0,841656923\n339,47,4.5,1446664412\n339,110,4.5,1446663189\n339,145,3.5,1446664152\n339,165,3.0,1446663793\n339,260,3.0,1446663107\n339,266,4.0,1446663797\n339,293,5.0,1446663271\n339,318,5.0,1446663091\n339,356,5.0,1446663193\n339,377,4.0,1446663808\n339,474,3.0,1446663591\n339,527,5.0,1446663097\n339,541,3.0,1446663233\n339,786,3.0,1446664201\n339,858,3.0,1446663199\n339,861,4.5,1446663924\n339,1036,4.0,1446663178\n339,1196,3.0,1446663109\n339,1198,2.5,1446663113\n339,1210,4.0,1446663370\n339,1232,3.5,1446663351\n339,1249,5.0,1446663500\n339,1270,4.0,1446663206\n339,1370,3.5,1446663933\n339,1527,4.0,1446663600\n339,1573,4.5,1446664021\n339,1608,2.5,1446664047\n339,2012,4.5,1446664145\n339,2028,4.5,1446663181\n339,2268,4.5,1446663538\n339,2273,4.0,1446663949\n339,2278,4.5,1446663744\n339,2571,5.0,1446663100\n339,2692,4.5,1446663301\n339,3006,4.5,1446663449\n339,3147,4.5,1446664432\n339,3578,5.0,1446663396\n339,3681,4.0,1446663383\n339,3949,3.5,1446663291\n339,4018,4.5,1446664222\n339,4489,4.5,1446663810\n339,5418,3.5,1446663437\n339,5507,3.5,1446664353\n339,5574,3.5,1446664043\n339,5809,3.5,1446664218\n339,5888,4.5,1446663701\n339,5952,4.0,1446663212\n339,5995,5.0,1446663273\n339,6365,3.5,1446664062\n339,6378,4.5,1446663738\n339,6539,4.0,1446663503\n339,6874,2.0,1446663455\n339,7143,3.5,1446663630\n339,7153,4.0,1446663187\n339,7438,2.0,1446664496\n339,8644,4.5,1446663881\n339,30707,5.0,1446663484\n339,30816,3.5,1446663724\n339,33679,3.5,1446664157\n339,34319,3.5,1446663944\n339,36519,3.5,1446664208\n339,53125,4.0,1446663969\n339,53972,4.0,1446663752\n339,54286,3.5,1446663377\n339,57528,3.5,1446664035\n339,64620,4.5,1446663550\n339,64716,4.5,1446663580\n339,65514,3.5,1446663393\n339,67255,4.5,1446664471\n339,68159,4.5,1446664080\n339,68554,4.0,1446664142\n339,70286,4.0,1446663490\n339,71530,4.5,1446664136\n339,73017,4.0,1446663556\n339,74458,5.0,1446663425\n339,74510,4.5,1446663568\n339,74727,5.0,1446664477\n339,79132,5.0,1446663224\n339,81229,4.5,1446663676\n339,84844,4.5,1446663663\n339,89087,2.5,1446664173\n339,91500,2.0,1446663648\n339,91542,3.5,1446663131\n339,91630,4.0,1446663670\n339,91658,4.5,1446663509\n339,92259,5.0,1446663231\n339,96610,2.5,1446663607\n339,96737,3.0,1446663766\n339,97752,2.0,1446663698\n339,99112,3.5,1446663859\n339,99114,2.5,1446663299\n339,101362,3.0,1446664180\n339,103042,2.5,1446664026\n339,104441,3.5,1446664211\n339,104590,4.0,1446663814\n339,108190,1.5,1446663973\n339,109487,4.0,1446663139\n339,111360,3.0,1446664254\n339,111781,3.5,1446663658\n339,113862,4.0,1446663905\n339,115210,4.0,1446663621\n339,116823,3.0,1446663772\n339,121618,3.0,1446663727\n339,130490,2.0,1446664132\n339,132796,3.5,1446664308\n340,6,4.0,1410374053\n340,47,5.0,1410374238\n340,293,4.0,1410374113\n340,296,3.5,1410374199\n340,318,5.0,1410252785\n340,356,5.0,1410373987\n340,364,5.0,1410374454\n340,858,5.0,1410252787\n340,1036,3.5,1410373938\n340,1221,5.0,1410252801\n340,1222,3.0,1410373990\n340,1291,4.0,1410374067\n340,1665,3.0,1410252318\n340,1704,5.0,1410374025\n340,1954,3.5,1410374221\n340,2085,2.5,1410252048\n340,2412,3.0,1410252300\n340,2542,5.0,1410374096\n340,2571,3.5,1410374122\n340,2805,4.0,1410252220\n340,2808,2.5,1410252265\n340,2951,4.0,1410373968\n340,3578,4.0,1410374015\n340,3617,2.5,1410252068\n340,3681,4.0,1410373981\n340,3704,2.5,1410252194\n340,3972,4.0,1410252342\n340,4262,4.5,1410374229\n340,4993,5.0,1410374092\n340,5283,2.0,1410252547\n340,5463,3.0,1410252382\n340,5952,5.0,1410374099\n340,5989,5.0,1410373917\n340,7360,3.0,1410252286\n340,7502,4.0,1410252794\n340,46965,4.0,1410252587\n340,77561,3.0,1410252306\n340,102125,3.0,1410252666\n340,106489,5.0,1410252751\n341,14,4.0,1240055572\n341,31,4.5,1240055463\n341,1172,4.0,1240055494\n341,1267,3.5,1240055479\n341,1272,3.5,1240055522\n341,1343,4.0,1240055469\n341,1748,0.5,1240053898\n341,1892,4.5,1240833566\n341,1947,3.0,1240055515\n341,1959,4.0,1240055726\n341,1960,3.5,1240055565\n341,2336,4.0,1240055448\n341,2396,4.0,1240833487\n341,2686,3.5,1240055690\n341,2707,4.0,1240055560\n341,2890,5.0,1240055418\n341,2947,0.5,1240053901\n341,3181,5.0,1240833141\n341,4404,1.0,1240833108\n341,5527,4.0,1240833509\n341,6883,4.5,1240833608\n341,36527,5.0,1240833496\n342,14,3.0,945125271\n342,25,4.0,945124900\n342,36,4.0,945123774\n342,50,5.0,945123389\n342,58,5.0,945123389\n342,150,5.0,945124003\n342,162,3.0,945123204\n342,246,5.0,945123774\n342,260,4.0,945123389\n342,296,3.0,945123204\n342,300,4.0,945125169\n342,306,5.0,945124454\n342,308,5.0,945125603\n342,318,5.0,945123774\n342,321,4.0,945126412\n342,337,4.0,945124963\n342,367,4.0,945125894\n342,373,5.0,945123519\n342,440,4.0,945123680\n342,448,4.0,945125095\n342,474,5.0,945124647\n342,508,3.0,945125730\n342,509,4.0,945126150\n342,527,5.0,945123389\n342,529,5.0,945123519\n342,593,5.0,945123680\n342,608,5.0,945123204\n342,647,3.0,945122168\n342,733,4.0,945126412\n342,800,5.0,945123519\n342,858,5.0,945123009\n342,866,5.0,945126061\n342,898,5.0,945124052\n342,899,4.0,945123389\n342,902,4.0,945123774\n342,903,4.0,945123774\n342,904,5.0,945123204\n342,906,4.0,945125730\n342,908,5.0,945123604\n342,911,5.0,945124455\n342,912,5.0,945123083\n342,916,5.0,945124578\n342,919,4.0,945123680\n342,920,5.0,945124802\n342,923,5.0,945123204\n342,924,5.0,945123519\n342,934,5.0,945124647\n342,948,4.0,945125095\n342,953,5.0,945123680\n342,954,5.0,945124578\n342,971,5.0,945123680\n342,1073,4.0,945126565\n342,1082,4.0,945125169\n342,1086,4.0,945124346\n342,1090,4.0,945126061\n342,1093,3.0,945122610\n342,1094,3.0,945123774\n342,1097,4.0,945124963\n342,1103,4.0,945123519\n342,1120,4.0,945126061\n342,1147,5.0,945123519\n342,1179,4.0,945123774\n342,1185,4.0,945123519\n342,1193,5.0,945122123\n342,1194,4.0,945126317\n342,1196,3.0,945122231\n342,1198,4.0,945123389\n342,1203,5.0,945123389\n342,1204,5.0,945123204\n342,1208,4.0,945123204\n342,1213,5.0,945123204\n342,1214,4.0,945124900\n342,1219,4.0,945123947\n342,1220,4.0,945125894\n342,1221,5.0,945123009\n342,1222,5.0,945125271\n342,1225,4.0,945123947\n342,1228,5.0,945123084\n342,1230,5.0,945123009\n342,1231,5.0,945123604\n342,1234,5.0,945123604\n342,1247,5.0,945123519\n342,1250,4.0,945123204\n342,1252,5.0,945123009\n342,1259,5.0,945124647\n342,1265,5.0,945123604\n342,1266,4.0,945123947\n342,1267,4.0,945124003\n342,1271,5.0,945126061\n342,1272,5.0,945123680\n342,1276,5.0,945123947\n342,1278,5.0,945123390\n342,1286,4.0,945126150\n342,1295,4.0,945125271\n342,1304,5.0,945123204\n342,1307,5.0,945124648\n342,1343,4.0,945126317\n342,1344,5.0,945124802\n342,1358,4.0,945124648\n342,1387,4.0,945123390\n342,1396,4.0,945126150\n342,1401,4.0,945126061\n342,1537,5.0,945123519\n342,1573,2.0,945126240\n342,1580,4.0,945124578\n342,1610,3.0,945125271\n342,1617,4.0,945123084\n342,1633,4.0,945123390\n342,1639,4.0,945124346\n342,1678,4.0,945124802\n342,1680,5.0,945124963\n342,1682,3.0,945126061\n342,1704,5.0,945124578\n342,1713,2.0,945122285\n342,1944,4.0,945123084\n342,1947,4.0,945124963\n342,1950,5.0,945124003\n342,1952,4.0,945123390\n342,1953,4.0,945123084\n342,1954,5.0,945125169\n342,1955,4.0,945122285\n342,1958,5.0,945125816\n342,1959,4.0,945125272\n342,1961,5.0,945125730\n342,1962,5.0,945124578\n342,1965,3.0,945124802\n342,1966,4.0,945123204\n342,1968,3.0,945125603\n342,1997,4.0,945123519\n342,2022,2.0,945125272\n342,2028,5.0,945123390\n342,2100,4.0,945125816\n342,2132,5.0,945123390\n342,2137,4.0,945126240\n342,2176,5.0,945126150\n342,2202,5.0,945126061\n342,2243,3.0,945123774\n342,2248,4.0,945126061\n342,2268,5.0,945126240\n342,2289,4.0,945123604\n342,2291,4.0,945125347\n342,2302,5.0,945125347\n342,2313,4.0,945123519\n342,2340,3.0,945124455\n342,2395,3.0,945122874\n342,2396,4.0,945122874\n342,2406,3.0,945125730\n342,2427,5.0,945124455\n342,2453,4.0,945126317\n342,2501,4.0,945125272\n342,2529,4.0,945126061\n342,2539,4.0,945126150\n342,2565,4.0,945126150\n342,2657,3.0,945125603\n342,2671,3.0,945127151\n342,2694,3.0,945122474\n342,2712,4.0,945122610\n342,2716,3.0,945122610\n342,2720,2.0,945127024\n342,2739,4.0,945126317\n342,2779,4.0,945126061\n342,2791,5.0,945124003\n342,2795,4.0,945125730\n342,2804,5.0,945123084\n342,2819,4.0,945123774\n342,2866,4.0,945124578\n342,2871,4.0,945123519\n342,2906,4.0,945127024\n342,2918,4.0,945125347\n342,2942,3.0,945122285\n342,2961,4.0,945122874\n342,2971,4.0,945124802\n342,2973,4.0,945123390\n342,2985,2.0,945125169\n342,2987,3.0,945122874\n342,2988,4.0,945123680\n342,3020,1.0,945126061\n342,3068,4.0,945125169\n342,3071,4.0,945125169\n342,3104,5.0,945124346\n342,3111,4.0,945124900\n342,3114,4.0,945122874\n342,3135,4.0,945124648\n342,3141,4.0,945123519\n342,3152,5.0,945124900\n342,3169,2.0,945123009\n342,5060,4.0,945123888\n343,1,5.0,881166397\n343,6,5.0,881166915\n343,25,5.0,881166495\n343,32,4.0,881166832\n343,36,4.0,881166665\n343,41,2.0,881166832\n343,52,1.0,881166707\n343,62,2.0,881166685\n343,81,4.0,881166884\n343,94,3.0,881167085\n343,260,5.0,881166665\n343,605,4.0,881167197\n343,608,3.0,881166350\n343,633,3.0,881167085\n343,635,3.0,881167220\n343,648,4.0,881166971\n343,661,4.0,881167220\n343,733,5.0,881166350\n343,745,5.0,881166495\n343,778,5.0,881166832\n343,780,4.0,881167177\n343,785,3.0,881167159\n343,802,1.0,881166915\n343,832,2.0,881166397\n343,852,4.0,881167220\n343,858,5.0,881166452\n343,866,4.0,881167085\n343,994,5.0,881166495\n343,1006,3.0,881166350\n343,1042,5.0,881167197\n343,1060,5.0,881166452\n343,1073,5.0,881167085\n343,1112,4.0,881166733\n343,1210,5.0,881166495\n343,1356,4.0,881166971\n343,1393,3.0,881166733\n343,1407,4.0,881166015\n343,1422,3.0,881166070\n343,1459,4.0,881166884\n343,1485,4.0,881166015\n343,1552,4.0,881167085\n343,1672,4.0,881165990\n344,1,4.0,853736711\n344,5,2.0,850723898\n344,23,3.0,850728598\n344,29,3.0,850725820\n344,34,1.0,850727257\n344,39,3.0,853736623\n344,46,3.0,850727867\n344,47,5.0,850725078\n344,50,5.0,850727506\n344,52,4.0,853734890\n344,53,5.0,850726154\n344,82,4.0,850725819\n344,110,4.0,850725246\n344,122,3.0,850726963\n344,144,3.0,850726013\n344,153,1.0,850725506\n344,156,4.0,850724257\n344,161,4.0,850728472\n344,165,3.0,850725682\n344,168,2.0,850725682\n344,185,3.0,850725460\n344,194,5.0,850727633\n344,208,2.0,850725506\n344,224,5.0,850726737\n344,225,4.0,850728269\n344,231,3.0,850727014\n344,232,5.0,850724829\n344,253,5.0,850728825\n344,260,5.0,850725078\n344,266,5.0,850727384\n344,268,5.0,850727827\n344,288,3.0,850725078\n344,290,5.0,850724685\n344,292,3.0,850727842\n344,293,4.0,850728432\n344,296,4.0,850725078\n344,299,5.0,850724751\n344,316,3.0,850725624\n344,318,5.0,850727506\n344,329,3.0,850728412\n344,333,3.0,850727124\n344,337,5.0,850727506\n344,339,3.0,850726631\n344,349,4.0,850725567\n344,350,4.0,850728064\n344,353,4.0,850725278\n344,356,5.0,850727633\n344,357,5.0,850726013\n344,358,3.0,850727968\n344,364,4.0,850726361\n344,367,3.0,850727180\n344,368,4.0,850726758\n344,377,3.0,850725317\n344,380,3.0,850725682\n344,413,4.0,850727124\n344,423,2.0,850725409\n344,431,5.0,850727574\n344,434,3.0,850725624\n344,440,4.0,850726689\n344,442,3.0,850725567\n344,454,4.0,850728064\n344,457,4.0,850725179\n344,474,4.0,850725246\n344,480,2.0,850725317\n344,481,4.0,850727603\n344,485,2.0,850725624\n344,489,3.0,850727090\n344,490,4.0,850728494\n344,493,3.0,850727726\n344,497,5.0,850726472\n344,500,4.0,850726940\n344,504,3.0,850725409\n344,507,4.0,850725179\n344,508,4.0,850727574\n344,509,3.0,850725819\n344,515,5.0,850726094\n344,516,3.0,850726908\n344,517,4.0,850725369\n344,519,1.0,850725719\n344,522,3.0,850725369\n344,527,4.0,850727507\n344,529,4.0,850727633\n344,539,3.0,850726824\n344,541,5.0,850725078\n344,543,4.0,850726798\n344,544,2.0,850725506\n344,553,3.0,850727894\n344,586,2.0,850727257\n344,587,3.0,850727384\n344,588,5.0,850726335\n344,589,4.0,850725317\n344,590,3.0,850727313\n344,592,2.0,850725460\n344,593,5.0,850728432\n344,595,3.0,850726333\n344,597,2.0,850727335\n344,632,5.0,850724724\n344,733,3.0,850723898\n344,778,5.0,850724146\n344,780,3.0,853736577\n344,836,2.0,853736722\n344,850,5.0,850726201\n344,924,3.0,850727726\n344,981,1.0,850728732\n344,1027,5.0,850726361\n344,1036,3.0,850725278\n344,1079,5.0,850726579\n344,1080,4.0,850726490\n344,1088,3.0,850727384\n344,1090,5.0,850727603\n344,1091,3.0,850726963\n344,1092,3.0,850728494\n344,1094,3.0,850727574\n344,1097,3.0,850727801\n344,1100,3.0,850725425\n344,1101,3.0,850725317\n344,1124,4.0,850727827\n344,1125,3.0,850726689\n344,1127,4.0,850728494\n344,1136,4.0,850726472\n344,1186,4.0,850727827\n344,1193,5.0,850727506\n344,1196,5.0,850725105\n344,1198,5.0,850725105\n344,1200,4.0,850725179\n344,1201,5.0,850725179\n344,1203,4.0,850727633\n344,1204,4.0,850725105\n344,1208,4.0,850727574\n344,1210,5.0,850725246\n344,1213,4.0,850727542\n344,1214,3.0,850725105\n344,1216,4.0,850725246\n344,1219,3.0,850728472\n344,1220,4.0,850726512\n344,1222,4.0,850724865\n344,1225,5.0,850727542\n344,1231,4.0,850727663\n344,1233,4.0,850725953\n344,1240,4.0,850725179\n344,1241,3.0,850726614\n344,1246,5.0,850727507\n344,1247,5.0,850727313\n344,1249,4.0,850726013\n344,1250,4.0,850727603\n344,1258,3.0,850728825\n344,1259,4.0,850726473\n344,1263,5.0,850727663\n344,1265,4.0,850726511\n344,1266,4.0,850728472\n344,1270,4.0,850726579\n344,1272,4.0,850727663\n344,1274,4.0,850726117\n344,1275,3.0,850725179\n344,1277,4.0,850726036\n344,1282,3.0,850726361\n344,1291,5.0,850725278\n344,1300,4.0,850726036\n344,1302,3.0,850727726\n344,1307,3.0,850726473\n344,1320,3.0,850725369\n344,1343,3.0,850728550\n344,1344,3.0,850727992\n344,1347,2.0,850728879\n344,1350,3.0,850728856\n344,1354,5.0,850724455\n344,1370,3.0,850725369\n344,1372,4.0,850725317\n344,1373,4.0,850725506\n344,1376,3.0,850728513\n344,1377,2.0,850725317\n344,1378,3.0,850725317\n344,1380,4.0,850726737\n344,1381,1.0,850727154\n344,1385,4.0,850725369\n344,1387,3.0,850728513\n344,1388,1.0,850728732\n345,1,4.5,1106949170\n345,5,2.0,1109278713\n345,6,2.5,1106949297\n345,25,4.0,1106949274\n345,32,5.0,1106948903\n345,34,4.0,1106949220\n345,36,2.5,1106949280\n345,45,3.5,1106864318\n345,47,4.5,1106949213\n345,50,4.5,1106948900\n345,62,3.5,1106949300\n345,110,4.5,1106949154\n345,111,5.0,1106948533\n345,141,3.5,1106949270\n345,153,2.0,1106948886\n345,196,2.0,1107044186\n345,223,5.0,1107044169\n345,235,4.0,1107044163\n345,253,2.0,1106949259\n345,260,4.0,1106949162\n345,293,3.0,1107044182\n345,296,5.0,1106949130\n345,318,5.0,1106949157\n345,329,2.0,1106949223\n345,344,0.5,1106949199\n345,345,3.0,1107044176\n345,353,4.0,1107044148\n345,356,3.5,1106949140\n345,364,4.5,1106948864\n345,370,1.5,1107044139\n345,377,2.0,1106949188\n345,480,2.0,1106949143\n345,527,4.5,1106949181\n345,529,4.0,1109278687\n345,539,2.5,1106949253\n345,585,3.5,1106864381\n345,587,2.0,1106949243\n345,588,4.0,1106949184\n345,592,3.5,1106864572\n345,593,4.5,1106949134\n345,608,5.0,1106948873\n345,648,2.0,1106948869\n345,780,1.5,1106949169\n345,858,5.0,1106948879\n345,903,4.5,1106864321\n345,904,4.0,1106948645\n345,910,4.0,1107044114\n345,924,3.5,1107044119\n345,1073,4.5,1106864773\n345,1080,4.0,1107044103\n345,1084,3.5,1106864371\n345,1094,4.5,1107044058\n345,1193,5.0,1109289703\n345,1196,4.5,1106864752\n345,1197,2.5,1106864698\n345,1198,4.5,1106949226\n345,1200,1.5,1106864770\n345,1206,5.0,1106864731\n345,1208,5.0,1107044076\n345,1210,4.0,1106948856\n345,1213,5.0,1109289708\n345,1214,4.0,1109289749\n345,1215,3.5,1107044090\n345,1219,5.0,1106864720\n345,1220,5.0,1106864708\n345,1222,4.0,1109289737\n345,1225,4.5,1107044062\n345,1227,5.0,1109278745\n345,1228,2.5,1106948662\n345,1250,5.0,1106864285\n345,1252,4.5,1107044060\n345,1259,5.0,1106948511\n345,1270,3.5,1106949228\n345,1276,4.5,1106864342\n345,1285,4.5,1106864388\n345,1291,4.0,1107044084\n345,1292,3.5,1106948655\n345,1297,4.0,1106948652\n345,1302,2.5,1106864760\n345,1304,4.0,1107044073\n345,1356,3.0,1106864714\n345,1358,4.5,1106948640\n345,1372,2.0,1106864312\n345,1374,3.5,1107044079\n345,1375,3.5,1106864356\n345,1376,3.0,1109278675\n345,1377,3.5,1107044035\n345,1380,4.5,1106864655\n345,1394,3.5,1106864673\n345,1517,4.0,1106864660\n345,1580,3.0,1106949290\n345,1584,4.5,1107044032\n345,1617,4.0,1106949283\n345,1639,4.5,1106948637\n345,1641,4.0,1106864687\n345,1673,3.0,1106864339\n345,1682,4.5,1107044043\n345,1721,2.0,1106949288\n345,1747,4.5,1109278678\n345,1921,1.0,1106948624\n345,1968,4.5,1106864647\n345,2028,4.0,1106864664\n345,2072,4.5,1106948754\n345,2076,3.5,1106948610\n345,2174,1.5,1106948605\n345,2236,1.5,1106948750\n345,2291,1.0,1107043986\n345,2302,4.0,1106864576\n345,2324,2.5,1107043979\n345,2329,5.0,1109289598\n345,2380,0.5,1109278809\n345,2381,0.5,1109278805\n345,2382,1.0,1106948746\n345,2383,0.5,1109278798\n345,2396,5.0,1106864601\n345,2502,4.0,1106864291\n345,2571,4.5,1106948524\n345,2580,4.5,1106948629\n345,2628,3.5,1106948516\n345,2641,2.5,1106948618\n345,2657,1.5,1106864308\n345,2692,5.0,1109289680\n345,2700,5.0,1109278673\n345,2710,2.5,1106864583\n345,2712,2.5,1107043989\n345,2723,4.0,1106948590\n345,2762,4.5,1106949302\n345,2770,4.0,1106864373\n345,2791,4.5,1107043961\n345,2804,4.5,1109289746\n345,2858,5.0,1106864597\n345,2871,4.0,1106948573\n345,2890,4.5,1106948585\n345,2918,5.0,1106864605\n345,2959,5.0,1109289668\n345,3052,3.5,1106864386\n345,3101,1.5,1106864349\n345,3114,4.5,1106948494\n345,3176,2.0,1106864594\n345,3189,3.0,1109278787\n345,3262,4.5,1109278782\n345,3298,4.0,1106948570\n345,3317,5.0,1106948592\n345,3471,4.5,1107043976\n345,3543,5.0,1106949066\n345,3578,2.0,1107043973\n345,3751,4.0,1106948581\n345,3793,4.0,1106949030\n345,3882,1.0,1106948713\n345,3897,5.0,1109289731\n345,3949,4.5,1106949037\n345,3977,2.0,1107043957\n345,3994,4.5,1106948559\n345,4002,4.5,1106949012\n345,4022,4.0,1107043991\n345,4034,3.0,1106949021\n345,4056,3.0,1106948707\n345,4226,4.5,1106949054\n345,4306,4.0,1106949027\n345,4327,4.0,1109289711\n345,4361,3.0,1106948991\n345,4370,3.0,1106948998\n345,4571,3.5,1106949005\n345,4641,5.0,1106948537\n345,4720,4.0,1106948552\n345,4873,2.5,1106948687\n345,4878,5.0,1109289630\n345,4886,4.5,1109289673\n345,4967,4.5,1109289719\n345,4975,4.0,1106948547\n345,4979,4.5,1106948978\n345,4993,4.0,1106948505\n345,5060,5.0,1106948956\n345,5291,4.5,1109289751\n345,5299,3.5,1106948970\n345,5349,4.5,1109278684\n345,5378,3.5,1106948963\n345,5618,5.0,1109289670\n345,5690,4.5,1109289603\n345,5952,4.5,1106864401\n345,5989,3.5,1106948947\n345,5991,3.5,1106948938\n345,6016,4.5,1109289640\n345,6203,1.0,1106948924\n345,6331,3.5,1109289700\n345,6350,5.0,1109289650\n345,6377,4.5,1109289626\n345,6385,4.5,1106948691\n345,6620,4.5,1109289705\n345,6711,5.0,1106948916\n345,6721,3.0,1106948802\n345,6870,4.0,1109289723\n345,6874,5.0,1109289741\n345,7034,4.5,1109289694\n345,7099,4.5,1106948776\n345,7137,4.0,1106948780\n345,7139,4.5,1109289609\n345,7153,4.5,1109289582\n345,7361,5.0,1109289590\n345,7366,1.5,1106948784\n345,7438,4.5,1109289632\n345,8207,4.5,1109289663\n345,8337,4.5,1109289643\n345,8464,4.0,1109289629\n345,8784,4.0,1109289615\n345,8949,4.5,1109289594\n345,8961,5.0,1106864465\n345,8966,4.0,1106864486\n345,8970,3.0,1106864455\n345,8981,4.0,1106864501\n345,8983,3.5,1106864491\n345,30707,4.5,1109289577\n345,30749,4.5,1106864446\n345,30810,4.5,1106864478\n346,2,2.0,1044652107\n346,29,2.0,1159125941\n346,32,3.0,1044650722\n346,47,2.5,1159128814\n346,110,2.0,1044651821\n346,112,4.0,1159125081\n346,185,4.0,1044651233\n346,196,3.0,1044651203\n346,260,5.0,1044648612\n346,316,3.0,1044651135\n346,318,1.0,1159124456\n346,319,2.0,1044649300\n346,344,3.5,1159128840\n346,353,4.0,1044648813\n346,367,3.0,1044652069\n346,368,4.0,1159125471\n346,379,4.0,1044651203\n346,442,4.0,1044649194\n346,480,1.0,1044648660\n346,485,5.0,1044649210\n346,504,4.0,1044651233\n346,520,4.0,1159125870\n346,527,1.0,1159128828\n346,541,5.0,1044650699\n346,555,4.0,1159125836\n346,558,1.0,1044650181\n346,589,5.0,1044651576\n346,590,1.0,1044648639\n346,593,2.0,1159128831\n346,608,1.0,1159128938\n346,648,4.0,1159128857\n346,653,2.0,1044652201\n346,663,2.0,1044649542\n346,671,5.0,1044650809\n346,674,3.0,1044651203\n346,735,5.0,1159125969\n346,741,5.0,1044650519\n346,750,2.0,1044650699\n346,780,3.0,1044651233\n346,788,1.0,1044652162\n346,861,4.5,1159124321\n346,876,5.0,1044651484\n346,924,1.0,1044650857\n346,1009,3.0,1044652162\n346,1036,3.5,1159125390\n346,1059,2.0,1044649687\n346,1073,4.0,1044651937\n346,1097,2.0,1044650881\n346,1126,2.0,1044652232\n346,1127,1.0,1044650979\n346,1129,4.0,1159124816\n346,1136,5.0,1044651321\n346,1148,3.0,1044650501\n346,1196,5.0,1044650663\n346,1197,5.0,1044648688\n346,1198,5.0,1044649399\n346,1199,5.0,1044650597\n346,1200,4.0,1044650752\n346,1201,3.0,1044651484\n346,1210,5.0,1044650809\n346,1214,3.5,1159734271\n346,1215,5.0,1044650047\n346,1222,3.0,1044651602\n346,1240,5.0,1044650752\n346,1241,0.5,1159124840\n346,1243,5.0,1044649704\n346,1255,0.5,1159125209\n346,1261,5.0,1044651802\n346,1268,2.0,1159125417\n346,1270,4.0,1044648718\n346,1274,2.0,1044650722\n346,1275,4.0,1044651714\n346,1277,4.0,1044651576\n346,1287,2.0,1044651676\n346,1301,3.0,1044650881\n346,1320,2.0,1044651233\n346,1371,3.0,1044651043\n346,1374,4.0,1044651633\n346,1376,3.0,1044650979\n346,1387,1.0,1044651602\n346,1391,2.0,1044651104\n346,1396,2.5,1159125385\n346,1429,4.5,1159125235\n346,1517,3.0,1159125669\n346,1527,2.0,1044650857\n346,1573,2.0,1044650947\n346,1580,3.5,1159125413\n346,1587,4.5,1159124808\n346,1623,1.0,1044650197\n346,1645,4.0,1044649922\n346,1653,4.0,1044650857\n346,1663,3.5,1159125281\n346,1676,4.0,1044651160\n346,1721,1.0,1044648746\n346,1748,3.0,1044650722\n346,1754,5.0,1044651714\n346,1755,2.0,1159125436\n346,1799,2.5,1159124855\n346,1848,1.0,1044652026\n346,1884,0.5,1159125460\n346,1921,4.0,1044651135\n346,1924,4.0,1044648718\n346,1965,3.0,1044650809\n346,1967,4.0,1044651990\n346,2000,5.0,1044651802\n346,2003,4.0,1159124869\n346,2005,4.0,1044652107\n346,2006,4.0,1044651714\n346,2009,4.0,1159124865\n346,2010,1.0,1044650857\n346,2011,4.5,1159734795\n346,2012,4.0,1044651160\n346,2019,2.0,1044650633\n346,2021,2.0,1044651203\n346,2034,4.0,1044651203\n346,2041,5.0,1044649978\n346,2046,4.0,1044650881\n346,2054,3.0,1044652201\n346,2087,1.0,1044652026\n346,2100,1.0,1044652069\n346,2105,5.0,1044651104\n346,2115,4.5,1159125138\n346,2116,3.0,1044649757\n346,2134,5.0,1159124977\n346,2140,4.0,1044650778\n346,2143,3.0,1044652201\n346,2161,3.0,1044652162\n346,2162,2.0,1044652201\n346,2167,3.0,1159124961\n346,2174,3.0,1044648688\n346,2193,4.0,1044651990\n346,2232,5.0,1044650809\n346,2273,4.0,1044650295\n346,2275,1.0,1159125179\n346,2363,3.5,1159124390\n346,2406,4.0,1044649653\n346,2407,1.0,1044651043\n346,2455,1.0,1044650857\n346,2527,2.0,1044650809\n346,2528,5.0,1044651104\n346,2533,3.0,1044648660\n346,2560,1.0,1044649323\n346,2571,5.0,1044650752\n346,2600,2.0,1044651135\n346,2625,4.0,1044651633\n346,2628,1.0,1044648746\n346,2641,5.0,1044651104\n346,2657,2.0,1044651008\n346,2662,4.0,1044650979\n346,2668,3.0,1044651160\n346,2716,4.5,1159124990\n346,2762,1.0,1044649873\n346,2763,5.0,1044648813\n346,2780,5.0,1044649323\n346,2791,3.5,1159125784\n346,2797,5.0,1044651990\n346,2879,3.0,1044649978\n346,2880,5.0,1044649978\n346,2916,5.0,1159124955\n346,2918,1.5,1159125956\n346,2924,5.0,1044650181\n346,2949,3.0,1044651714\n346,2968,5.0,1044651937\n346,2985,5.0,1044650947\n346,2997,5.0,1044650123\n346,3032,5.0,1044650947\n346,3033,3.0,1044651008\n346,3039,4.0,1159125498\n346,3052,4.5,1159125484\n346,3070,5.0,1044650699\n346,3081,4.5,1159125061\n346,3087,3.5,1159125232\n346,3114,3.5,1159128941\n346,3153,5.0,1044651714\n346,3159,1.0,1044652322\n346,3175,5.0,1044650778\n346,3213,4.5,1159124316\n346,3265,4.0,1159125655\n346,3275,4.0,1159125014\n346,3300,2.0,1044650899\n346,3397,1.5,1159125450\n346,3438,3.0,1044649465\n346,3452,5.0,1044649687\n346,3479,4.0,1044651990\n346,3489,3.0,1044652162\n346,3527,3.0,1044651043\n346,3624,5.0,1044650325\n346,3627,5.0,1044650519\n346,3638,3.0,1044651104\n346,3699,2.0,1044650778\n346,3702,4.0,1044650778\n346,3703,4.0,1044650722\n346,3740,5.0,1044651740\n346,3745,5.0,1044651135\n346,3755,1.0,1044649571\n346,3763,3.0,1044651821\n346,3771,5.0,1044651633\n346,3793,5.0,1044650881\n346,3807,4.0,1159124767\n346,3868,4.0,1159125176\n346,3905,4.5,1159124742\n346,3959,4.0,1044650918\n346,3972,4.0,1044650181\n346,3977,5.0,1044649105\n346,3993,1.0,1159125711\n346,3996,4.0,1044651517\n346,3997,1.0,1044649271\n346,4085,4.0,1159125224\n346,4105,3.5,1159124748\n346,4121,5.0,1044651043\n346,4128,4.5,1159124735\n346,4133,5.0,1044650181\n346,4166,5.0,1159124704\n346,4232,5.0,1044651740\n346,4275,3.0,1044652162\n346,4306,4.0,1044651937\n346,4344,3.0,1044650340\n346,4440,3.0,1159124727\n346,4441,3.0,1159124785\n346,4442,5.0,1044651840\n346,4446,2.0,1044650857\n346,4467,5.0,1044651990\n346,4492,3.0,1044651104\n346,4545,4.0,1159125496\n346,4565,5.0,1044649448\n346,4566,5.0,1044649448\n346,4567,5.0,1044649448\n346,4571,5.0,1044648999\n346,4587,2.0,1044650881\n346,4624,0.5,1159124336\n346,4687,1.0,1044648999\n346,4696,5.0,1044650422\n346,4701,4.0,1044650295\n346,4717,5.0,1044651484\n346,4846,5.0,1044648718\n346,4874,2.0,1044652069\n346,4878,3.0,1044650454\n346,4887,4.0,1044651160\n346,4890,4.0,1044649300\n346,4896,5.0,1044649653\n346,4941,5.0,1044650857\n346,4952,3.0,1044651062\n346,4963,4.0,1044650270\n346,4980,5.0,1044648999\n346,4993,4.0,1044649757\n346,4995,1.5,1159128944\n346,5021,4.0,1044651289\n346,5026,1.0,1159124947\n346,5040,4.0,1044652201\n346,5055,1.0,1044651740\n346,5069,3.0,1044652107\n346,5110,2.0,1159125695\n346,5146,4.0,1044651937\n346,5219,5.0,1044650979\n346,5243,4.0,1044650197\n346,5247,3.5,1159125171\n346,5349,5.0,1044650857\n346,5378,1.0,1044650010\n346,5444,4.5,1159125259\n346,5445,1.0,1044649374\n346,5459,1.0,1044651043\n346,5460,5.0,1044651366\n346,5463,3.0,1044650358\n346,5522,3.5,1159124332\n346,5540,4.0,1044652107\n346,5541,4.0,1044650454\n346,5621,4.0,1044649073\n346,5782,5.0,1044651517\n346,5816,4.5,1159125644\n346,5833,1.5,1159125465\n346,5902,2.0,1044649059\n346,5903,4.5,1159124711\n346,5952,1.0,1044649757\n346,6095,3.0,1044649757\n346,6104,4.0,1044651399\n346,6242,0.5,1159124789\n346,6333,4.5,1159125121\n346,6350,4.0,1159125406\n346,6539,4.0,1159125269\n346,6582,4.5,1159125275\n346,6618,5.0,1159124967\n346,6659,3.5,1159124804\n346,6721,4.0,1159124756\n346,6722,3.5,1159124299\n346,6755,1.0,1159124832\n346,6790,3.0,1159125647\n346,6808,1.5,1159125479\n346,6857,4.0,1159124715\n346,6979,5.0,1159125018\n346,7022,5.0,1159125194\n346,7045,3.5,1159125159\n346,7090,4.5,1159125772\n346,7153,1.0,1159128934\n346,7360,4.0,1159125132\n346,7361,4.0,1159128852\n346,7373,2.5,1159125447\n346,7482,3.5,1159124729\n346,7757,4.5,1159125162\n346,7844,5.0,1159125892\n346,7899,3.5,1159124519\n346,8368,4.0,1159128848\n346,8623,4.0,1159125763\n346,8633,5.0,1159124744\n346,8636,4.5,1159124412\n346,8795,2.5,1159734171\n346,8807,5.0,1159125289\n346,8874,5.0,1159125127\n346,8917,4.0,1159125230\n346,8961,4.0,1159128818\n346,26152,5.0,1159125118\n346,26554,4.5,1159125777\n346,26585,3.5,1159124937\n346,26865,4.5,1161039726\n346,27801,4.5,1159125165\n346,31804,3.5,1159125651\n346,31878,5.0,1159124825\n346,33004,1.0,1159125671\n346,33493,1.5,1159128833\n346,33679,2.5,1159125895\n346,33794,1.0,1159128925\n346,33834,4.5,1159124328\n346,34332,4.5,1159125808\n346,34405,3.0,1159734728\n346,36708,3.0,1159129160\n346,40815,4.0,1159128916\n346,42718,4.0,1159124630\n346,44191,4.0,1159125394\n346,45183,4.5,1159124988\n346,45722,4.5,1159125824\n347,74,1.5,1463337048\n347,260,4.5,1462999757\n347,527,4.5,1463337285\n347,778,3.5,1463337278\n347,786,4.0,1463337100\n347,858,4.0,1463337247\n347,1196,4.5,1462999885\n347,1198,4.0,1462999907\n347,1210,4.5,1462999910\n347,1214,4.0,1463337339\n347,1721,4.0,1462999830\n347,2571,3.0,1462999924\n347,4085,4.0,1463337015\n347,4993,5.0,1462999606\n347,5952,4.5,1462999871\n347,6539,3.0,1462999928\n347,7153,4.5,1462999872\n347,33493,4.5,1462999930\n347,98809,3.0,1462999877\n347,106489,3.0,1462999878\n347,118696,3.0,1462999892\n347,122886,4.5,1462999906\n348,24,2.0,960838511\n348,32,5.0,960838861\n348,73,4.0,960838695\n348,111,5.0,960838178\n348,175,5.0,960838545\n348,235,5.0,960838629\n348,293,4.0,960838511\n348,296,3.0,960838418\n348,299,5.0,960837928\n348,334,1.0,960838484\n348,337,5.0,960838418\n348,356,5.0,960838052\n348,509,1.0,960838418\n348,523,5.0,960838484\n348,562,5.0,960838658\n348,574,5.0,960838990\n348,593,4.0,960838362\n348,678,5.0,960838438\n348,778,1.0,960838695\n348,982,1.0,960838890\n348,1050,1.0,960838847\n348,1179,5.0,960839056\n348,1193,4.0,960837928\n348,1207,1.0,960838362\n348,1213,1.0,960838832\n348,1221,1.0,960838418\n348,1233,4.0,960838418\n348,1247,5.0,960838695\n348,1251,1.0,960838891\n348,1345,5.0,960839485\n348,1348,1.0,960839437\n348,1358,5.0,960838891\n348,1673,5.0,960838303\n348,1682,5.0,960839375\n348,1719,5.0,960838461\n348,1952,5.0,960838303\n348,2002,1.0,960838511\n348,2020,1.0,960838629\n348,2026,4.0,960839472\n348,2076,5.0,960838418\n348,2160,5.0,960839449\n348,2289,5.0,960838960\n348,2324,1.0,960838362\n348,2438,4.0,960838075\n348,2858,5.0,960838511\n348,2966,5.0,960838461\n348,3067,5.0,960838960\n348,3089,5.0,960838461\n348,3223,5.0,960838484\n348,3476,5.0,960838202\n348,3504,5.0,960838557\n348,3678,1.0,960839056\n348,4424,1.0,960838338\n349,480,4.0,1019266191\n349,593,4.0,1019266057\n349,880,3.0,1019266057\n349,1097,3.0,1019266083\n349,1210,3.0,1019266108\n349,1222,5.0,1019266191\n349,1285,4.0,1019266135\n349,1792,3.0,1019266191\n349,1961,3.0,1019266019\n349,2106,5.0,1019266191\n349,2542,5.0,1019266191\n349,3316,4.0,1019266438\n349,3744,2.0,1019266438\n349,3793,3.0,1019266345\n349,3949,3.0,1019266019\n349,3977,2.0,1019266345\n349,3996,4.0,1019266345\n349,4161,4.0,1019266398\n349,4299,5.0,1019266378\n349,4344,4.0,1019266378\n349,4367,3.0,1019266478\n349,4369,2.0,1019266438\n349,4638,3.0,1019266438\n350,1,4.0,1005938887\n350,36,5.0,1011046129\n350,50,4.0,1006983651\n350,69,5.0,1011715100\n350,104,5.0,1003179103\n350,260,4.0,1006983681\n350,318,5.0,1006983667\n350,356,4.0,1003179997\n350,432,3.0,1011046684\n350,454,4.0,1011046161\n350,471,3.0,1011714986\n350,590,5.0,1007496143\n350,805,5.0,1011046144\n350,858,3.0,1009819887\n350,904,2.0,1009819954\n350,1017,4.0,1026761540\n350,1073,2.0,1003179997\n350,1089,5.0,1030653368\n350,1127,4.0,1003179360\n350,1196,5.0,1003179148\n350,1197,5.0,1003179965\n350,1198,5.0,1003179008\n350,1200,4.0,1011046768\n350,1210,5.0,1011046768\n350,1220,2.0,1009819790\n350,1221,4.0,1009812752\n350,1240,4.0,1003179997\n350,1257,5.0,1026761343\n350,1270,4.0,1005938947\n350,1271,5.0,1009820311\n350,1291,5.0,1008865251\n350,1298,5.0,1011046852\n350,1380,3.0,1003179050\n350,1444,4.0,1005939045\n350,1580,4.0,1026761387\n350,1586,2.0,1011046852\n350,1674,5.0,1005844032\n350,1676,2.0,1011046878\n350,1732,4.0,1011714963\n350,1911,2.0,1004548586\n350,1959,4.0,1009820147\n350,1968,4.0,1005938921\n350,2005,5.0,1009819905\n350,2012,4.0,1011046668\n350,2115,5.0,1008865251\n350,2150,4.0,1004548442\n350,2302,4.0,1006983454\n350,2324,5.0,1004548387\n350,2371,5.0,1009819833\n350,2372,4.0,1009819833\n350,2395,4.0,1009820194\n350,2402,4.0,1026761580\n350,2404,4.0,1026761689\n350,2433,4.0,1003179449\n350,2502,5.0,1003179668\n350,2505,1.0,1009819762\n350,2571,4.0,1006983789\n350,2594,4.0,1009812692\n350,2598,3.0,1003179701\n350,2599,4.0,1005939061\n350,2605,4.0,1003179496\n350,2628,3.0,1003178947\n350,2683,4.0,1003179386\n350,2688,3.0,1009820233\n350,2699,1.0,1009819762\n350,2706,5.0,1003179386\n350,2716,4.0,1003179535\n350,2770,2.0,1003179421\n350,2794,3.0,1003179103\n350,2803,4.0,1011046173\n350,2804,4.0,1005938988\n350,2858,5.0,1003179360\n350,2890,4.0,1011046817\n350,2916,3.0,1003180011\n350,2944,4.0,1011046792\n350,2959,5.0,1031253809\n350,3053,3.0,1003179598\n350,3083,3.0,1009812670\n350,3147,4.0,1009819969\n350,3175,2.0,1004548587\n350,3177,4.0,1009820680\n350,3298,4.0,1003179421\n350,3328,5.0,1027357068\n350,3355,4.0,1004548234\n350,3397,3.0,1005938947\n350,3408,5.0,1011714784\n350,3409,4.0,1003178986\n350,3424,4.0,1005939045\n350,3448,4.0,1011046838\n350,3481,5.0,1009820705\n350,3484,4.0,1027357845\n350,3513,4.0,1027357433\n350,3556,4.0,1010430829\n350,3617,5.0,1003179720\n350,3623,4.0,1003179610\n350,3624,4.0,1003179031\n350,3717,4.0,1003179535\n350,3752,1.0,1003179585\n350,3755,3.0,1009820645\n350,3760,4.0,1009820311\n350,3844,4.0,1009820291\n350,3852,4.0,1004548282\n350,3861,4.0,1027357149\n350,3869,4.0,1003179148\n350,3897,4.0,1005939082\n350,3916,4.0,1027356842\n350,3946,3.0,1027358284\n350,3948,4.0,1010430829\n350,3972,3.0,1027357274\n350,3988,4.0,1003179557\n350,3994,5.0,1011046520\n350,3996,3.0,1027356492\n350,3999,2.0,1027358188\n350,4008,4.0,1011046800\n350,4010,3.0,1011715032\n350,4011,5.0,1011046551\n350,4018,3.0,1027357649\n350,4019,3.0,1027356550\n350,4022,3.0,1003179449\n350,4027,5.0,1027356738\n350,4031,3.0,1011046605\n350,4034,4.0,1004906355\n350,4095,5.0,1007496163\n350,4219,4.0,1005938848\n350,4226,5.0,1003179950\n350,4235,5.0,1004547984\n350,4239,4.0,1003180058\n350,4246,4.0,1027357018\n350,4247,3.0,1027357977\n350,4265,1.0,1011046551\n350,4306,4.0,1005843942\n350,4308,1.0,1008800783\n350,4321,4.0,1011046655\n350,4367,3.0,1009820660\n350,4369,4.0,1009820757\n350,4372,4.0,1004548442\n350,4378,5.0,1009820771\n350,4489,4.0,1006983170\n350,4534,3.0,1011046700\n350,4535,4.0,1011046645\n350,4621,2.0,1003179081\n350,4641,5.0,1005938420\n350,4643,2.0,1009820645\n350,4728,5.0,1027357094\n350,4776,4.0,1006983468\n350,4816,4.0,1010430774\n350,4844,4.0,1027356825\n350,4874,5.0,1027357068\n350,4886,4.0,1005844006\n350,4958,5.0,1007412290\n350,4963,5.0,1026761298\n350,4967,5.0,1026761849\n350,4973,4.0,1027017461\n350,4975,3.0,1008800801\n350,4979,5.0,1026761298\n350,4989,2.0,1027356424\n350,4993,5.0,1009820645\n350,5010,4.0,1026761298\n350,5015,2.0,1026761329\n350,5065,2.0,1027017885\n350,5107,3.0,1026761485\n350,5299,5.0,1026761041\n350,5325,3.0,1026761071\n350,5378,4.0,1027357222\n350,5401,4.0,1026761041\n350,5438,3.0,1026761485\n350,5449,3.0,1026761002\n350,5502,4.0,1030653473\n351,94,4.0,975637114\n351,277,4.0,975636830\n351,524,5.0,975636796\n351,589,3.0,975636584\n351,858,5.0,975637170\n351,908,5.0,975636664\n351,912,5.0,975637211\n351,950,5.0,975637211\n351,951,4.0,975636664\n351,1035,5.0,975636734\n351,1129,3.0,975636902\n351,1171,4.0,975636963\n351,1193,4.0,975636402\n351,1207,5.0,975637170\n351,1249,3.0,975636664\n351,1250,4.0,975636664\n351,1259,5.0,975636584\n351,1269,5.0,975636734\n351,1286,5.0,975636664\n351,1288,2.0,975636402\n351,1580,5.0,975636902\n351,1673,4.0,975636863\n351,1968,5.0,975636435\n351,2291,4.0,975636664\n351,2668,5.0,975636402\n351,2791,5.0,975636796\n351,2792,3.0,975636584\n351,2948,5.0,975636796\n351,2956,4.0,975636483\n351,3481,3.0,975636664\n351,3512,4.0,975636734\n351,3624,4.0,975636830\n351,3793,5.0,975636988\n351,3957,4.0,975636902\n351,3959,4.0,975636796\n351,3963,5.0,975636963\n351,3984,4.0,975636830\n351,4003,3.0,975636963\n351,4007,3.0,975636963\n351,4008,3.0,975636734\n352,32,3.5,1420521602\n352,47,4.0,1420521236\n352,260,5.0,1420521218\n352,296,4.0,1420521220\n352,316,3.0,1420521390\n352,318,5.0,1420521083\n352,480,4.5,1420521355\n352,551,4.0,1420521964\n352,593,4.0,1420521113\n352,741,4.0,1420521686\n352,1080,4.0,1420521573\n352,1097,2.5,1420521315\n352,1193,3.5,1420521110\n352,1196,5.0,1420521199\n352,1197,4.5,1420521229\n352,1198,4.5,1420521187\n352,1213,2.5,1420521115\n352,1220,4.0,1420521325\n352,1259,4.0,1420521806\n352,1278,4.0,1420521605\n352,1356,4.5,1420521336\n352,1732,4.0,1420521628\n352,1907,4.0,1420521990\n352,2115,3.5,1420521328\n352,2329,3.0,1420521234\n352,2716,4.0,1420521311\n352,2918,3.5,1420521416\n352,2959,4.5,1420521184\n352,3000,4.5,1420521838\n352,3114,4.0,1420521403\n352,3671,4.0,1420521398\n352,3793,3.5,1420521518\n352,4016,4.0,1420522005\n352,4306,4.0,1420521869\n352,4886,3.5,1420521969\n352,5146,3.0,1420522012\n352,5618,5.0,1420521840\n352,5690,4.0,1420521855\n352,5971,4.5,1420521376\n352,6283,4.0,1420522122\n352,6350,4.0,1420521847\n352,6377,4.0,1420521966\n352,6857,3.0,1420521956\n352,7099,4.5,1420521839\n352,26662,3.5,1420521856\n352,26776,4.0,1420521853\n352,26903,4.5,1420521862\n352,27904,2.5,1420522045\n352,31658,4.0,1420521419\n352,32456,3.0,1420521962\n352,32587,3.0,1420521438\n352,34405,4.0,1420521690\n352,52885,3.5,1420521917\n352,58559,4.5,1420521128\n352,59315,4.0,1420521127\n352,60069,3.0,1420521135\n352,61240,3.5,1420521536\n352,62336,4.0,1420521690\n352,64614,4.0,1420521528\n352,65261,4.0,1420521850\n352,66934,4.0,1420521412\n352,67255,4.0,1420521748\n352,68157,4.0,1420521137\n352,71535,3.5,1420521612\n352,72998,3.5,1420521140\n352,79132,4.0,1420521131\n352,79274,4.0,1420521978\n352,83132,3.5,1420521926\n352,85780,3.0,1420522115\n352,91529,4.0,1420521425\n352,97913,4.0,1420521882\n352,98604,4.0,1420521986\n352,103659,3.5,1420522024\n352,104283,4.0,1420521984\n352,104419,4.5,1420522118\n352,106100,4.0,1420521818\n352,106920,2.5,1420521762\n352,108932,4.0,1420521558\n352,109374,3.0,1420521152\n352,111362,3.5,1420521161\n352,111759,3.5,1420521157\n352,112175,3.5,1420521872\n352,112852,4.5,1420521153\n352,115927,4.0,1420522234\n353,1,3.5,1112268707\n353,2,2.0,1114172641\n353,10,3.0,1112269534\n353,19,2.5,1114172667\n353,21,3.0,1114172187\n353,32,2.5,1112268781\n353,34,0.5,1112269498\n353,47,3.5,1137410807\n353,62,3.5,1114172352\n353,72,2.5,1136869961\n353,93,1.5,1143548997\n353,95,2.5,1112269639\n353,104,3.5,1137410803\n353,110,3.5,1112268696\n353,112,2.0,1111488891\n353,150,2.0,1112268690\n353,151,2.5,1111488897\n353,153,1.5,1112268795\n353,161,3.0,1112269579\n353,163,3.5,1137410796\n353,165,3.5,1137410799\n353,170,2.0,1121586797\n353,180,2.5,1162168524\n353,204,1.5,1142771606\n353,208,0.5,1112269592\n353,231,2.5,1157498718\n353,253,3.0,1111665498\n353,260,3.0,1137410813\n353,292,1.0,1112269562\n353,293,3.5,1140388874\n353,296,3.5,1137410781\n353,315,2.0,1111488937\n353,316,3.0,1112268804\n353,317,1.5,1114172679\n353,318,4.0,1112268693\n353,344,3.0,1112268790\n353,349,3.0,1157498632\n353,356,3.5,1112268672\n353,364,2.0,1112269493\n353,367,2.5,1112269536\n353,370,2.0,1111488924\n353,377,1.5,1112268785\n353,380,2.0,1112268700\n353,410,1.5,1162168908\n353,432,1.0,1111488865\n353,434,1.5,1137112928\n353,440,3.0,1140388959\n353,442,1.0,1114172673\n353,454,1.0,1112269583\n353,457,3.0,1112268684\n353,474,3.0,1114172422\n353,480,3.0,1112268680\n353,485,2.0,1115640584\n353,500,1.0,1162168825\n353,502,0.5,1111490504\n353,586,2.5,1157499041\n353,588,3.0,1112268776\n353,589,3.5,1137410787\n353,590,3.0,1157420797\n353,592,2.5,1127823463\n353,593,3.5,1140388882\n353,597,1.5,1112269514\n353,637,1.0,1218607737\n353,648,1.5,1112268792\n353,708,2.0,1114172662\n353,733,2.0,1112269508\n353,736,1.5,1112269483\n353,743,1.5,1121586846\n353,745,2.5,1137410881\n353,750,3.0,1113055194\n353,780,1.5,1112268704\n353,784,1.0,1111488859\n353,786,1.0,1114172646\n353,818,1.5,1143549055\n353,832,2.0,1111488884\n353,849,1.0,1112270191\n353,858,3.5,1208220638\n353,908,3.5,1137410851\n353,924,3.0,1113054752\n353,1036,4.0,1157420800\n353,1073,2.0,1112269586\n353,1079,2.5,1162168953\n353,1089,3.0,1136938728\n353,1090,3.5,1137410857\n353,1097,3.0,1112269570\n353,1101,2.0,1162168960\n353,1129,2.0,1112270195\n353,1136,3.5,1157498732\n353,1196,3.0,1137410877\n353,1197,3.5,1140388869\n353,1198,3.5,1111490656\n353,1200,3.5,1112270151\n353,1201,3.5,1111491858\n353,1208,2.5,1157420775\n353,1210,3.5,1137410870\n353,1214,3.0,1157420817\n353,1220,3.0,1157420794\n353,1222,3.0,1137410834\n353,1240,3.0,1162168846\n353,1250,3.0,1147819223\n353,1259,3.0,1140388886\n353,1261,3.0,1218607671\n353,1262,3.5,1113055180\n353,1263,1.5,1218607758\n353,1265,3.0,1114172289\n353,1270,3.0,1157420782\n353,1288,0.5,1218607772\n353,1291,3.0,1157420805\n353,1293,2.0,1147819209\n353,1298,3.5,1111489982\n353,1320,3.0,1112270157\n353,1367,1.5,1113054702\n353,1370,2.0,1112268858\n353,1377,2.0,1112268885\n353,1387,3.5,1113052996\n353,1388,1.5,1113053001\n353,1389,1.0,1113053002\n353,1391,2.0,1111666098\n353,1393,2.5,1157499049\n353,1408,3.5,1113055154\n353,1517,3.5,1113053607\n353,1527,3.5,1111490028\n353,1562,1.0,1112268878\n353,1580,1.0,1112269622\n353,1587,3.5,1113055007\n353,1610,3.5,1218607482\n353,1653,3.5,1157499173\n353,1676,2.5,1111667692\n353,1682,3.0,1157498754\n353,1690,2.0,1112270149\n353,1704,3.5,1137410838\n353,1721,1.5,1112268246\n353,1917,3.0,1157498692\n353,1918,2.0,1112269106\n353,1974,2.0,1113053072\n353,1975,1.5,1113053073\n353,1976,1.0,1113053076\n353,2000,3.5,1112269096\n353,2001,2.5,1112269101\n353,2002,2.5,1112269104\n353,2005,2.5,1142686776\n353,2011,3.0,1157499059\n353,2012,3.0,1157420785\n353,2018,1.0,1111490108\n353,2028,3.0,1140388876\n353,2054,1.0,1157499123\n353,2081,2.0,1113474473\n353,2115,3.0,1113395536\n353,2174,2.0,1162171547\n353,2194,4.0,1209425068\n353,2268,3.5,1112270985\n353,2278,3.5,1208220558\n353,2353,3.5,1157499186\n353,2355,3.0,1114172711\n353,2376,1.5,1143549311\n353,2401,3.0,1208220502\n353,2403,3.5,1112270308\n353,2404,1.5,1218607732\n353,2406,3.0,1157499169\n353,2460,1.0,1113474577\n353,2516,0.5,1127824651\n353,2533,2.0,1112270197\n353,2542,3.5,1137410770\n353,2571,3.5,1218608058\n353,2572,2.0,1111490641\n353,2618,3.0,1137410829\n353,2628,2.0,1111491401\n353,2662,2.0,1113055256\n353,2683,2.5,1113053609\n353,2699,3.5,1157499116\n353,2710,0.5,1111488828\n353,2716,3.0,1113473936\n353,2761,3.0,1137410842\n353,2762,3.5,1137410927\n353,2795,2.5,1142769576\n353,2797,3.0,1157498643\n353,2815,2.0,1127824843\n353,2826,3.0,1113054732\n353,2858,4.0,1208220752\n353,2916,2.0,1114172706\n353,2918,2.0,1162171550\n353,2944,3.0,1157420802\n353,2950,2.0,1111490244\n353,2959,4.0,1112270059\n353,2986,0.5,1218607725\n353,2987,3.0,1114172684\n353,3005,2.5,1112269270\n353,3020,3.5,1137410901\n353,3033,3.5,1113053125\n353,3039,3.5,1113473956\n353,3052,3.0,1208220563\n353,3081,2.0,1208220573\n353,3114,3.0,1113053769\n353,3147,3.0,1113052808\n353,3175,1.0,1157500855\n353,3178,3.5,1142686800\n353,3213,2.0,1127823461\n353,3253,3.0,1137410935\n353,3257,2.0,1111490254\n353,3264,3.0,1115641728\n353,3271,2.5,1137410914\n353,3275,3.5,1113054636\n353,3298,3.0,1208220635\n353,3300,2.5,1142770246\n353,3404,2.5,1112268243\n353,3448,3.0,1113055140\n353,3471,3.0,1157499085\n353,3510,3.0,1113395111\n353,3527,3.0,1137410921\n353,3535,4.0,1210658011\n353,3552,2.5,1113395539\n353,3555,1.5,1142770499\n353,3578,2.5,1147819172\n353,3624,2.5,1142770233\n353,3633,3.0,1113474467\n353,3682,3.0,1112268566\n353,3697,2.5,1111667324\n353,3701,1.0,1112270144\n353,3717,2.5,1142770540\n353,3745,3.0,1112268203\n353,3753,2.5,1142770391\n353,3785,2.0,1111667506\n353,3793,3.5,1111488845\n353,3836,2.5,1157420811\n353,3868,3.0,1121586807\n353,3869,2.5,1121586828\n353,3948,3.0,1157498658\n353,3977,1.0,1142770548\n353,3979,1.0,1218607744\n353,3991,1.0,1113054700\n353,3994,3.5,1157499078\n353,3996,3.5,1114172730\n353,4011,4.0,1142944347\n353,4019,3.5,1142688648\n353,4027,3.5,1157498637\n353,4034,1.5,1157499030\n353,4085,3.5,1112270064\n353,4105,3.0,1115640493\n353,4124,0.5,1113053004\n353,4143,1.5,1143548842\n353,4148,2.5,1113052924\n353,4159,2.0,1113054784\n353,4166,3.0,1137410924\n353,4223,4.0,1137410760\n353,4224,1.5,1143292388\n353,4238,3.0,1142770523\n353,4239,3.5,1113472746\n353,4262,3.5,1136938679\n353,4270,0.5,1142770557\n353,4306,3.5,1111488843\n353,4310,1.5,1112270009\n353,4344,2.5,1142770532\n353,4369,3.5,1137410903\n353,4370,1.5,1113054830\n353,4387,2.5,1142770632\n353,4388,2.0,1111667509\n353,4446,2.0,1144113312\n353,4489,2.5,1113054646\n353,4526,1.0,1112270160\n353,4563,1.0,1111489965\n353,4616,3.5,1125833054\n353,4623,3.5,1113054223\n353,4638,1.0,1142771658\n353,4701,1.5,1142770526\n353,4721,2.5,1140389006\n353,4735,1.5,1111666157\n353,4776,3.5,1113055024\n353,4816,3.5,1140388889\n353,4826,3.0,1137410897\n353,4855,3.5,1112268585\n353,4866,2.5,1142770408\n353,4878,4.0,1115642189\n353,4886,3.0,1157498680\n353,4895,2.5,1113054276\n353,4901,3.0,1142770167\n353,4958,2.0,1142770502\n353,4963,3.5,1137410910\n353,4973,3.0,1157498626\n353,4974,2.5,1114171563\n353,4993,2.0,1111488838\n353,5010,3.5,1113055129\n353,5040,2.5,1113055009\n353,5047,1.0,1113053356\n353,5049,3.0,1113395550\n353,5055,3.0,1113054467\n353,5064,3.5,1113052800\n353,5093,1.5,1115641675\n353,5103,3.5,1112270320\n353,5110,3.5,1137410929\n353,5152,3.0,1137410938\n353,5218,3.0,1137410907\n353,5219,2.5,1112526489\n353,5254,2.0,1142770414\n353,5255,1.5,1142688699\n353,5312,2.0,1121599105\n353,5316,3.5,1140388864\n353,5323,1.0,1113053042\n353,5349,3.5,1112270265\n353,5377,3.0,1157496139\n353,5378,2.5,1111491403\n353,5400,2.0,1142770530\n353,5418,3.5,1140388856\n353,5420,1.0,1112268305\n353,5445,2.0,1142770249\n353,5463,2.0,1142770632\n353,5500,3.0,1111666267\n353,5502,2.5,1157498727\n353,5507,2.5,1208220686\n353,5558,2.5,1142944360\n353,5564,1.0,1113054913\n353,5572,3.0,1113054325\n353,5574,2.5,1142770598\n353,5630,3.0,1113052909\n353,5669,3.5,1140388859\n353,5672,0.5,1115642258\n353,5678,2.0,1142770463\n353,5810,3.0,1113054840\n353,5815,1.0,1143292235\n353,5819,3.5,1111665493\n353,5833,3.0,1142770340\n353,5872,2.0,1113053542\n353,5874,2.5,1113053066\n353,5903,3.5,1137217265\n353,5938,0.5,1111489409\n353,5945,2.0,1113054879\n353,5952,3.0,1111490758\n353,5989,3.5,1157498700\n353,6040,2.0,1112526471\n353,6156,1.0,1142770555\n353,6188,3.0,1140388928\n353,6213,2.0,1142770595\n353,6283,2.5,1142770255\n353,6287,2.0,1113053387\n353,6323,3.0,1113473944\n353,6333,3.0,1112268983\n353,6365,2.0,1111667391\n353,6377,3.0,1115641196\n353,6378,3.0,1113052762\n353,6383,3.0,1111667006\n353,6502,3.5,1113054769\n353,6537,3.0,1140388945\n353,6539,3.5,1140388931\n353,6548,2.0,1142770542\n353,6593,1.5,1113053099\n353,6595,1.5,1142770601\n353,6615,2.0,1113053030\n353,6709,2.0,1142770566\n353,6754,3.0,1142770427\n353,6755,3.0,1127049084\n353,6806,3.0,1142770332\n353,6808,3.5,1113055147\n353,6863,3.5,1112270073\n353,6870,2.0,1157288550\n353,6874,3.5,1140388914\n353,6879,3.0,1233617660\n353,6880,1.5,1113474573\n353,6888,2.5,1111667510\n353,6893,3.5,1135034113\n353,6934,2.5,1111667390\n353,6936,3.5,1140388909\n353,6957,3.0,1115430991\n353,6979,3.5,1113055143\n353,6995,1.0,1111489222\n353,7000,2.5,1111489212\n353,7004,2.0,1111489205\n353,7005,0.5,1111489202\n353,7007,3.5,1111489197\n353,7090,2.5,1115640571\n353,7108,1.5,1111666015\n353,7143,3.5,1112270282\n353,7153,3.0,1111490658\n353,7163,2.0,1142770536\n353,7164,3.0,1142770447\n353,7254,3.0,1142686782\n353,7257,2.5,1142767066\n353,7293,3.0,1113054808\n353,7317,2.0,1113052586\n353,7325,3.5,1113053440\n353,7360,3.0,1142686775\n353,7373,2.5,1142770430\n353,7376,3.0,1140389472\n353,7438,3.5,1112268544\n353,7439,3.5,1140388933\n353,7445,4.0,1137410774\n353,7789,2.0,1113054722\n353,7842,1.0,1208220547\n353,7894,3.5,1113395803\n353,8010,3.0,1209425088\n353,8340,3.5,1125833503\n353,8360,3.0,1113053885\n353,8363,2.5,1113132670\n353,8371,2.0,1142770411\n353,8376,2.5,1157288501\n353,8387,0.5,1111666565\n353,8464,3.5,1140388939\n353,8493,3.0,1140388922\n353,8622,3.0,1208221719\n353,8636,2.5,1142770239\n353,8641,3.0,1157496146\n353,8644,2.5,1113053459\n353,8665,3.5,1113397165\n353,8666,1.0,1111490393\n353,8798,3.0,1140388906\n353,8810,1.5,1142770634\n353,8860,0.5,1111490032\n353,8861,2.5,1112526491\n353,8865,1.5,1142770441\n353,8874,3.5,1142770178\n353,8917,2.5,1140388941\n353,8957,2.5,1127824488\n353,8961,3.0,1113132650\n353,8972,2.0,1142770395\n353,8983,2.5,1142770344\n353,26555,1.0,1111489345\n353,26614,4.0,1233617459\n353,27611,3.5,1233617467\n353,27660,3.0,1157419761\n353,27831,2.5,1162168395\n353,27839,2.5,1127825002\n353,30707,3.5,1147819193\n353,30793,3.0,1140388901\n353,31162,2.0,1140388774\n353,31221,1.5,1140389542\n353,31420,2.0,1142770436\n353,31878,3.0,1137217397\n353,32019,3.5,1127049249\n353,32029,3.5,1127049290\n353,32587,3.5,1140388936\n353,32596,1.0,1142770545\n353,33004,3.0,1140388911\n353,33162,3.5,1142770262\n353,33437,3.5,1140388947\n353,33493,2.5,1121586428\n353,33495,1.5,1135034014\n353,33615,2.5,1157287565\n353,33679,3.5,1136938913\n353,33794,3.5,1127823464\n353,33834,2.5,1133262087\n353,34048,2.0,1121586417\n353,34162,3.5,1125833510\n353,34271,2.0,1145524603\n353,34319,2.5,1142770171\n353,34332,3.0,1137217413\n353,34334,2.0,1127824245\n353,34405,4.0,1142770161\n353,34523,1.0,1233617794\n353,34534,3.0,1142770403\n353,35957,3.0,1142770399\n353,36397,1.5,1136869909\n353,36519,1.5,1144119164\n353,36529,3.5,1162168454\n353,36708,3.5,1158099473\n353,37380,2.5,1143549554\n353,37386,1.0,1145524623\n353,37477,2.5,1143549546\n353,37731,3.5,1209425018\n353,38061,3.5,1137410764\n353,40278,3.0,1148731749\n353,40339,2.0,1162168411\n353,40723,2.0,1157288428\n353,40815,3.0,1135033726\n353,41566,3.0,1136756111\n353,42002,1.0,1147825749\n353,42011,1.5,1148731798\n353,42723,1.0,1157288528\n353,42738,2.5,1148731770\n353,43396,3.5,1162168544\n353,43904,2.5,1157288446\n353,43919,2.0,1157496085\n353,44004,2.5,1145524725\n353,44191,4.0,1157495888\n353,44195,3.5,1157287619\n353,44199,3.0,1162168424\n353,44665,3.5,1208220483\n353,44761,4.5,1208220694\n353,45081,2.5,1157496063\n353,45431,2.0,1157287533\n353,45499,3.5,1157496133\n353,45517,3.0,1157287487\n353,45722,3.0,1157420464\n353,45726,2.5,1157420523\n353,45732,0.5,1218607909\n353,46335,2.5,1157420517\n353,46530,3.5,1157420460\n353,46965,3.0,1208221659\n353,46970,4.0,1209425040\n353,47044,3.5,1157420469\n353,47099,2.5,1208220495\n353,47200,3.5,1162168380\n353,47640,2.0,1218607765\n353,47997,3.0,1218607933\n353,48304,3.0,1208220534\n353,48385,1.0,1218607978\n353,48516,4.0,1162168293\n353,49272,4.0,1208220491\n353,49530,4.0,1208220486\n353,50923,3.0,1210658026\n353,51255,3.5,1209425024\n353,51662,4.5,1208220521\n353,53129,3.0,1233617806\n353,53550,3.5,1210658246\n353,53894,2.5,1208221743\n353,53956,3.5,1218607464\n353,53972,3.5,1233617651\n353,54286,4.0,1208220476\n353,54503,3.5,1208220517\n353,54736,3.0,1209424939\n353,54995,3.0,1233617646\n353,54997,3.5,1218607444\n353,55765,3.0,1233617479\n353,56003,1.5,1210658040\n353,56174,2.5,1210631397\n353,56251,2.5,1218607426\n353,56336,1.0,1233617525\n353,58559,4.0,1218607414\n353,58998,3.5,1233617640\n353,59315,4.5,1210631370\n353,59369,4.0,1233617371\n353,59784,3.5,1233617801\n353,60753,3.5,1233617716\n353,62849,3.5,1233617765\n354,1,5.0,846062607\n354,11,5.0,846062456\n354,44,4.0,846062533\n354,112,5.0,846062521\n354,151,5.0,846062587\n354,153,3.0,846062277\n354,165,2.0,846062521\n354,173,4.0,846062733\n354,232,5.0,846062587\n354,235,5.0,846062378\n354,253,3.0,846062378\n354,265,5.0,846062521\n354,288,3.0,846062342\n354,316,3.0,846062294\n354,318,5.0,846062317\n354,329,3.0,846062317\n354,344,2.0,846062709\n354,348,5.0,846062722\n354,349,4.0,846062587\n354,353,5.0,846062403\n354,356,1.0,846062317\n354,357,4.0,846062627\n354,364,3.0,846062342\n354,370,3.0,846062598\n354,377,4.0,846062342\n354,380,4.0,846062255\n354,410,5.0,846062353\n354,440,5.0,846062450\n354,442,4.0,846062490\n354,457,4.0,846062294\n354,466,4.0,846062542\n354,471,5.0,846062674\n354,475,5.0,846062433\n354,477,5.0,846062554\n354,480,3.0,846062317\n354,497,5.0,846062533\n354,515,4.0,846062521\n354,520,3.0,846062637\n354,527,5.0,846062403\n354,551,4.0,846062476\n354,552,3.0,846062674\n354,587,1.0,846062433\n354,588,2.0,846062277\n354,589,5.0,846062331\n354,590,3.0,846062255\n354,592,4.0,846062255\n354,593,5.0,846062277\n354,594,3.0,846062554\n354,595,4.0,846062294\n354,596,4.0,846062627\n354,597,3.0,846062570\n354,1073,5.0,846062490\n355,1,3.0,1130104529\n355,2,3.0,1130105802\n355,6,4.0,1130105736\n355,10,3.5,1130105680\n355,19,3.0,1130104070\n355,32,4.0,1130104575\n355,47,5.0,1130104016\n355,50,3.5,1130104665\n355,70,3.0,1130107009\n355,95,3.0,1130106030\n355,110,4.0,1130103927\n355,150,3.0,1130104834\n355,153,3.0,1130105632\n355,165,3.0,1130105625\n355,168,3.0,1130106026\n355,173,1.5,1130103496\n355,185,2.5,1130105708\n355,208,3.0,1130105711\n355,231,3.5,1130105668\n355,253,4.5,1130106831\n355,260,5.0,1130104442\n355,292,3.5,1130105685\n355,293,4.5,1130105217\n355,296,4.5,1130104805\n355,316,4.0,1130105639\n355,318,5.0,1130104447\n355,344,3.0,1130105620\n355,356,5.0,1130104000\n355,364,4.0,1130103962\n355,367,3.0,1130105665\n355,377,4.0,1130103635\n355,380,3.5,1130105599\n355,434,3.5,1130105691\n355,442,4.0,1130105830\n355,454,4.0,1130105694\n355,457,3.0,1130104827\n355,480,3.5,1130104814\n355,500,2.0,1130105672\n355,508,4.0,1130105808\n355,527,4.0,1130104539\n355,541,4.5,1130105246\n355,551,4.0,1130105966\n355,588,3.0,1130105608\n355,589,4.0,1130104451\n355,590,4.0,1130104821\n355,592,3.5,1130103875\n355,593,4.5,1130104596\n355,597,2.5,1130105660\n355,648,3.5,1130105617\n355,733,3.5,1130105654\n355,736,2.5,1209553969\n355,750,3.5,1130105160\n355,778,4.5,1130105837\n355,780,3.0,1130104075\n355,858,5.0,1130104975\n355,902,3.5,1130104136\n355,904,4.5,1207514270\n355,919,4.5,1130105780\n355,924,5.0,1130105168\n355,968,4.5,1130106843\n355,1020,3.0,1130105096\n355,1036,4.0,1130103902\n355,1073,3.5,1130105701\n355,1079,4.0,1130105812\n355,1080,4.0,1130103444\n355,1089,4.5,1130105821\n355,1090,4.0,1130104400\n355,1092,4.0,1130105868\n355,1097,4.0,1130106682\n355,1101,2.0,1130103452\n355,1127,4.0,1130103925\n355,1136,5.0,1130104631\n355,1193,4.5,1130105742\n355,1196,5.0,1130104964\n355,1198,5.0,1130104436\n355,1200,5.0,1130103782\n355,1206,5.0,1130105166\n355,1208,3.5,1130105303\n355,1210,4.5,1130104607\n355,1214,5.0,1130103639\n355,1215,3.0,1130106796\n355,1220,4.0,1130105573\n355,1221,5.0,1130105233\n355,1222,5.0,1130105164\n355,1240,4.0,1130104485\n355,1253,4.5,1130106676\n355,1258,5.0,1130105151\n355,1259,4.0,1130104639\n355,1261,3.0,1130106805\n355,1265,4.0,1130106735\n355,1270,4.0,1130103886\n355,1274,4.0,1130103670\n355,1275,4.0,1130106021\n355,1291,5.0,1130103891\n355,1320,3.5,1130105046\n355,1333,4.5,1130106794\n355,1342,3.5,1130107164\n355,1347,4.0,1130106862\n355,1356,3.5,1130105765\n355,1380,2.5,1130103515\n355,1387,4.0,1130105282\n355,1393,3.0,1130105772\n355,1438,3.0,1130106177\n355,1517,4.0,1130105844\n355,1527,4.5,1130105784\n355,1580,4.0,1130105719\n355,1584,4.5,1130105824\n355,1625,4.5,1130103958\n355,1645,4.0,1130106915\n355,1676,4.0,1130105864\n355,1721,2.0,1130105724\n355,1732,4.0,1130106000\n355,1892,3.5,1130106181\n355,1909,3.0,1130104080\n355,1917,1.5,1130103428\n355,1921,4.0,1130106692\n355,1961,4.0,1130105769\n355,1994,3.0,1130106808\n355,1997,4.0,1130106770\n355,2012,3.5,1130103461\n355,2028,4.5,1130104473\n355,2115,4.5,1130103475\n355,2138,3.0,1130103839\n355,2167,4.0,1130103631\n355,2174,3.5,1130103431\n355,2232,4.0,1130103853\n355,2288,4.0,1130106672\n355,2329,4.0,1130104445\n355,2353,2.5,1130104744\n355,2376,4.0,1130106159\n355,2428,2.0,1130106139\n355,2455,4.5,1130106868\n355,2459,4.0,1130107057\n355,2467,4.5,1209553879\n355,2496,3.5,1130105002\n355,2529,4.0,1130103828\n355,2550,4.5,1130106874\n355,2571,5.0,1130104439\n355,2628,4.0,1130105731\n355,2683,4.0,1130105797\n355,2692,4.5,1130106536\n355,2699,2.0,1130103540\n355,2700,4.0,1130103503\n355,2706,3.5,1130105977\n355,2710,4.5,1130103438\n355,2712,4.0,1130105175\n355,2716,4.0,1130105750\n355,2735,2.5,1130106144\n355,2746,3.5,1130107045\n355,2762,4.5,1130104453\n355,2808,2.0,1130106149\n355,2858,5.0,1130105648\n355,2916,4.5,1130105846\n355,2944,3.0,1130106479\n355,2948,3.5,1130105569\n355,2959,5.0,1130104483\n355,2997,4.0,1130105760\n355,3020,3.5,1130106117\n355,3052,3.5,1130104681\n355,3062,3.5,1209553890\n355,3081,4.0,1130106815\n355,3114,3.0,1138732097\n355,3147,5.0,1130103946\n355,3264,1.0,1130107167\n355,3300,4.0,1138731882\n355,3355,3.0,1130105066\n355,3386,3.5,1130103773\n355,3409,3.5,1130106109\n355,3448,3.5,1130103934\n355,3461,4.0,1130106850\n355,3471,4.0,1130105293\n355,3499,4.0,1130106781\n355,3527,4.0,1130103909\n355,3535,4.0,1130106943\n355,3578,4.0,1130103980\n355,3593,1.5,1130106083\n355,3686,3.5,1130106079\n355,3697,3.0,1130106073\n355,3745,2.5,1130106089\n355,3793,3.0,1130103629\n355,3869,4.0,1130105090\n355,3897,3.0,1130103492\n355,3917,4.0,1130106950\n355,3949,4.5,1130106600\n355,3959,4.0,1130106094\n355,3994,3.0,1138731854\n355,3996,2.0,1130106729\n355,4011,5.0,1231028613\n355,4022,3.0,1209553994\n355,4027,3.5,1130105314\n355,4085,2.5,1130104740\n355,4102,4.0,1130103951\n355,4105,3.5,1130106773\n355,4148,3.5,1130107074\n355,4223,3.5,1130105297\n355,4226,4.0,1130104968\n355,4262,4.0,1130106493\n355,4306,4.0,1130104635\n355,4571,4.0,1130104148\n355,4641,2.0,1130104210\n355,4643,2.5,1138731934\n355,4720,2.0,1130103817\n355,4878,4.0,1130104567\n355,4886,4.0,1130104502\n355,4896,2.5,1130107283\n355,4963,3.5,1130104516\n355,4973,4.5,1130105240\n355,4993,4.5,1130103790\n355,4995,3.5,1130105997\n355,5065,3.5,1130105079\n355,5127,3.0,1130105012\n355,5219,3.5,1130107108\n355,5254,3.5,1130107020\n355,5349,3.5,1130103954\n355,5378,4.0,1138731888\n355,5418,4.0,1130104513\n355,5445,3.5,1130104049\n355,5459,2.0,1138731938\n355,5463,2.5,1138731928\n355,5502,3.5,1130103642\n355,5618,4.5,1130106507\n355,5630,3.0,1130104726\n355,5663,3.0,1130107006\n355,5669,4.0,1209554045\n355,5679,3.0,1130103777\n355,5816,3.0,1130107278\n355,5833,3.0,1130106947\n355,5952,5.0,1130103479\n355,5989,4.0,1130106495\n355,6016,1.0,1207512737\n355,6242,4.0,1130106778\n355,6250,2.5,1138731965\n355,6323,2.0,1138731989\n355,6333,4.0,1130103973\n355,6365,3.0,1138731925\n355,6377,4.0,1130104489\n355,6502,3.5,1130104697\n355,6537,3.0,1138731891\n355,6539,4.0,1130104470\n355,6541,1.5,1138731945\n355,6707,2.0,1130105019\n355,6711,4.5,1209554006\n355,6731,3.5,1130106882\n355,6754,3.0,1130107034\n355,6874,2.0,1130104536\n355,6934,3.0,1138731907\n355,6947,3.5,1130103651\n355,7000,3.0,1130105028\n355,7022,3.5,1130106792\n355,7045,3.5,1138732117\n355,7046,3.5,1130106970\n355,7147,4.0,1130104569\n355,7153,5.0,1130103822\n355,7347,3.5,1130107121\n355,7360,3.5,1130104621\n355,7361,4.5,1130106490\n355,7373,1.5,1130103702\n355,7387,4.5,1130103690\n355,7438,1.0,1130104522\n355,7454,2.0,1130105024\n355,7482,3.0,1130104547\n355,7586,4.0,1130105859\n355,7980,3.0,1209553867\n355,8132,4.0,1209553898\n355,8225,4.0,1130106996\n355,8360,4.5,1130104561\n355,8361,1.0,1138731916\n355,8368,3.0,1130107295\n355,8369,3.0,1130107125\n355,8371,1.0,1138731899\n355,8464,3.5,1130106587\n355,8493,3.0,1130103930\n355,8636,3.0,1130104735\n355,8665,3.5,1209553981\n355,8783,2.5,1130107001\n355,8810,3.0,1138731954\n355,8874,4.0,1130106035\n355,8961,4.5,1130104467\n355,8985,3.0,1130107118\n355,31658,4.0,1209553772\n355,31696,3.0,1130106932\n355,32587,4.5,1130104601\n355,32743,3.5,1209553987\n355,33004,3.0,1138731859\n355,33493,4.0,1130103937\n355,33794,3.5,1130104430\n355,33834,3.0,1138732002\n355,34048,4.0,1138731878\n355,34319,3.0,1138731875\n355,34405,3.0,1138731794\n355,36529,4.0,1136478292\n355,37380,2.0,1138731973\n355,40815,3.5,1138732086\n355,44191,3.5,1209553902\n355,44195,4.0,1209553841\n355,45722,2.5,1154637855\n355,46578,4.5,1207513028\n355,48516,5.0,1231028583\n355,49272,4.0,1209553870\n355,51662,3.5,1207512963\n355,54272,4.0,1209554008\n355,54286,4.0,1209553784\n355,55290,4.0,1207512922\n355,55820,4.0,1207512760\n355,56782,4.0,1207512773\n355,58559,5.0,1231028576\n355,59315,4.5,1231028602\n355,60069,4.0,1231028598\n356,144,3.0,1168393789\n356,207,3.0,1168393740\n356,338,2.0,1168393796\n356,361,4.5,1168393759\n356,382,2.5,1168393776\n356,799,3.5,1168393731\n356,994,3.5,1168393727\n356,1222,2.0,1204729534\n356,2145,4.0,1168393706\n356,2231,5.0,1168393767\n356,2360,0.5,1204729502\n356,2501,5.0,1168393694\n356,2581,3.5,1168393688\n356,2688,2.5,1168393754\n356,2707,3.0,1168393665\n356,2722,3.5,1168393671\n356,3354,5.0,1168393763\n356,8133,1.5,1204729566\n356,31410,1.5,1204729529\n356,44555,0.5,1204729492\n356,55444,0.5,1204729507\n357,1,5.0,832768614\n357,19,4.0,832768689\n357,32,5.0,832768675\n357,48,4.0,832768792\n357,58,5.0,832768932\n357,141,3.0,832768749\n357,158,3.0,832768749\n357,161,4.0,832768614\n357,203,4.0,832768899\n357,223,4.0,832768792\n357,231,4.0,832768596\n357,249,5.0,832769004\n357,253,5.0,832768626\n357,265,5.0,832768729\n357,272,4.0,832768808\n357,277,3.0,832768831\n357,329,3.0,832768597\n357,342,5.0,832768914\n357,344,4.0,832768573\n357,364,5.0,832768831\n357,410,3.0,832768651\n357,432,3.0,832768700\n357,454,4.0,832768870\n357,551,5.0,832769003\n357,581,5.0,832769126\n357,588,5.0,832768573\n357,592,4.0,832768402\n357,595,5.0,832768597\n357,720,5.0,832769127\n357,745,5.0,832769127\n358,1,5.0,957480017\n358,3,1.0,957479796\n358,5,2.0,957795334\n358,6,3.0,957481884\n358,7,4.0,957479451\n358,11,3.0,957479332\n358,12,1.0,957795321\n358,17,5.0,957479132\n358,19,1.0,957795512\n358,21,4.0,957480201\n358,32,3.0,957535632\n358,34,5.0,957535406\n358,39,5.0,957479350\n358,46,1.0,957479762\n358,47,3.0,957534524\n358,48,3.0,957479812\n358,50,5.0,957534412\n358,52,4.0,957480336\n358,58,5.0,957479201\n358,64,1.0,957479883\n358,65,1.0,957795547\n358,70,1.0,957534713\n358,81,1.0,957534758\n358,102,1.0,957795493\n358,104,1.0,957480355\n358,110,1.0,957481791\n358,111,5.0,957535373\n358,116,5.0,957481511\n358,140,3.0,957479575\n358,141,3.0,957794739\n358,144,4.0,957480683\n358,153,2.0,957534758\n358,157,1.0,957795183\n358,215,5.0,957479332\n358,223,5.0,957480418\n358,224,4.0,957479624\n358,231,1.0,957795134\n358,236,4.0,957479451\n358,237,3.0,957479703\n358,246,5.0,957481491\n358,252,3.0,957479743\n358,260,5.0,957534387\n358,276,2.0,957479837\n358,289,3.0,957479556\n358,296,5.0,957534455\n358,317,2.0,957794949\n358,318,5.0,957535132\n358,337,3.0,957535632\n358,339,3.0,957479382\n358,344,1.0,957795265\n358,348,5.0,957794540\n358,355,2.0,957795423\n358,356,5.0,957794665\n358,357,5.0,957479306\n358,360,2.0,957795531\n358,361,3.0,957479518\n358,362,3.0,957479518\n358,364,4.0,957534968\n358,367,3.0,957478845\n358,368,2.0,957794852\n358,370,1.0,957795295\n358,371,4.0,957480788\n358,372,4.0,957481045\n358,374,1.0,957795493\n358,377,3.0,957479382\n358,378,2.0,957479653\n358,380,2.0,957479575\n358,413,2.0,957795210\n358,414,2.0,957481180\n358,419,1.0,957795512\n358,420,2.0,957795351\n358,429,1.0,957795408\n358,432,1.0,957795321\n358,434,2.0,957534758\n358,435,2.0,957481136\n358,440,4.0,957480471\n358,441,4.0,957480147\n358,450,3.0,957480718\n358,457,2.0,957481809\n358,466,1.0,957481180\n358,470,1.0,957795464\n358,471,5.0,957479605\n358,474,5.0,957481884\n358,485,2.0,957795073\n358,492,4.0,957480666\n358,493,4.0,957481745\n358,500,4.0,957794812\n358,505,1.0,957795464\n358,509,4.0,957479332\n358,514,4.0,957480252\n358,516,2.0,957481098\n358,518,1.0,957481256\n358,520,2.0,957795408\n358,527,5.0,957535243\n358,529,5.0,957535632\n358,539,3.0,957481136\n358,543,2.0,957794883\n358,551,2.0,957480788\n358,552,1.0,957795073\n358,556,4.0,957481511\n358,569,2.0,957480621\n358,585,4.0,957481136\n358,586,3.0,957481235\n358,587,4.0,957479393\n358,588,5.0,957480336\n358,589,5.0,957481835\n358,592,4.0,957534524\n358,593,5.0,957535293\n358,594,4.0,957534930\n358,595,5.0,957481358\n358,596,3.0,957534907\n358,597,4.0,957479451\n358,605,2.0,957479488\n358,608,5.0,957534412\n358,663,1.0,957794774\n358,673,2.0,957535032\n358,707,2.0,957534692\n358,708,3.0,957479418\n358,710,1.0,957795351\n358,719,1.0,957795210\n358,725,1.0,957795164\n358,762,1.0,957534713\n358,765,1.0,957795373\n358,778,4.0,957535880\n358,783,3.0,957481379\n358,784,1.0,957795164\n358,785,3.0,957480734\n358,788,4.0,957481199\n358,802,4.0,957479469\n358,804,2.0,957479796\n358,829,1.0,957481419\n358,838,2.0,957480490\n358,852,1.0,957480718\n358,858,5.0,957481665\n358,869,3.0,957534648\n358,898,5.0,957479102\n358,899,5.0,957481300\n358,900,5.0,957479179\n358,902,5.0,957479230\n358,905,5.0,957479957\n358,907,4.0,957479605\n358,908,5.0,957535132\n358,909,4.0,957480107\n358,910,5.0,957479938\n358,911,4.0,957480336\n358,912,5.0,957535155\n358,913,5.0,957481581\n358,914,3.0,957481300\n358,915,3.0,957479306\n358,919,5.0,957481300\n358,920,3.0,957479132\n358,921,5.0,957480121\n358,922,5.0,957481564\n358,923,5.0,957535115\n358,926,5.0,957535334\n358,928,4.0,957479102\n358,933,4.0,957479230\n358,934,4.0,957480147\n358,942,4.0,957534455\n358,945,4.0,957794487\n358,946,4.0,957480017\n358,951,5.0,957479973\n358,952,4.0,957794565\n358,953,5.0,957535347\n358,954,5.0,957535593\n358,969,4.0,957479080\n358,1007,3.0,957795017\n358,1010,3.0,957481235\n358,1016,3.0,957794929\n358,1022,4.0,957481334\n358,1023,5.0,957534930\n358,1028,4.0,957480496\n358,1030,3.0,957535018\n358,1031,3.0,957481379\n358,1035,4.0,957481334\n358,1042,4.0,957480621\n358,1057,4.0,957479469\n358,1059,1.0,957479488\n358,1060,5.0,957480182\n358,1064,4.0,957795094\n358,1073,4.0,957480312\n358,1077,5.0,957480047\n358,1078,4.0,957480336\n358,1079,4.0,957480201\n358,1081,4.0,957480589\n358,1082,4.0,957535456\n358,1084,4.0,957534455\n358,1088,3.0,957481379\n358,1089,3.0,957534455\n358,1091,1.0,957795242\n358,1093,1.0,957481400\n358,1094,5.0,957479132\n358,1100,1.0,957479868\n358,1104,5.0,957535293\n358,1125,3.0,957478808\n358,1129,3.0,957481855\n358,1135,3.0,957480666\n358,1136,4.0,957480017\n358,1147,5.0,957481524\n358,1167,1.0,957795493\n358,1171,3.0,957480381\n358,1172,5.0,957480107\n358,1179,4.0,957481598\n358,1187,3.0,957535632\n358,1189,4.0,957481495\n358,1193,5.0,957478845\n358,1196,5.0,957481722\n358,1197,5.0,957479160\n358,1198,5.0,957481665\n358,1201,3.0,957481809\n358,1203,5.0,957535347\n358,1207,5.0,957535191\n358,1210,5.0,957481884\n358,1212,5.0,957795691\n358,1213,5.0,957534432\n358,1220,5.0,957480240\n358,1221,5.0,957481665\n358,1224,5.0,957535429\n358,1225,5.0,957535155\n358,1227,3.0,957534524\n358,1228,5.0,957535406\n358,1230,5.0,957479103\n358,1234,5.0,957480030\n358,1242,5.0,957481769\n358,1244,5.0,957479201\n358,1247,5.0,957479080\n358,1250,5.0,957535293\n358,1256,4.0,957794456\n358,1257,2.0,957480541\n358,1259,4.0,957480090\n358,1265,5.0,957479179\n358,1266,5.0,957481628\n358,1267,5.0,957481564\n358,1269,4.0,957794456\n358,1270,4.0,957480090\n358,1272,5.0,957535373\n358,1276,5.0,957479957\n358,1278,5.0,957480017\n358,1279,4.0,957480418\n358,1281,5.0,957480090\n358,1282,4.0,957481317\n358,1285,3.0,957480066\n358,1286,2.0,957479703\n358,1287,4.0,957481884\n358,1288,5.0,957480047\n358,1291,3.0,957481769\n358,1297,2.0,957480355\n358,1304,5.0,957481722\n358,1307,5.0,957479281\n358,1339,1.0,957479680\n358,1344,3.0,957481598\n358,1352,2.0,957534583\n358,1353,1.0,957479762\n358,1357,4.0,957479382\n358,1358,5.0,957535301\n358,1359,2.0,957795210\n358,1376,3.0,957481769\n358,1377,2.0,957481213\n358,1378,1.0,957794929\n358,1379,1.0,957795017\n358,1380,5.0,957479624\n358,1381,3.0,957479896\n358,1387,3.0,957481745\n358,1391,1.0,957481098\n358,1393,4.0,957479281\n358,1395,4.0,957480240\n358,1396,3.0,957534487\n358,1409,3.0,957480804\n358,1414,5.0,957481045\n358,1416,3.0,957481419\n358,1441,3.0,957479605\n358,1449,4.0,957794594\n358,1453,1.0,957795464\n358,1457,2.0,957479653\n358,1461,1.0,957795321\n358,1466,4.0,957534455\n358,1479,1.0,957479703\n358,1485,4.0,957480666\n358,1487,4.0,957481419\n358,1500,4.0,957480223\n358,1513,4.0,957481180\n358,1517,4.0,957480381\n358,1526,1.0,957795321\n358,1541,2.0,957479704\n358,1556,1.0,957479896\n358,1562,1.0,957534859\n358,1566,4.0,957481379\n358,1569,4.0,957479518\n358,1580,3.0,957481809\n358,1581,1.0,957795242\n358,1589,3.0,957534502\n358,1597,3.0,957479534\n358,1602,1.0,957795512\n358,1610,3.0,957481855\n358,1614,4.0,957480770\n358,1617,4.0,957481564\n358,1620,3.0,957534583\n358,1627,1.0,957534758\n358,1629,1.0,957479728\n358,1641,4.0,957480490\n358,1642,2.0,957795408\n358,1645,4.0,957534583\n358,1646,1.0,957481045\n358,1647,1.0,957534859\n358,1663,4.0,957480418\n358,1674,4.0,957479160\n358,1688,4.0,957481358\n358,1689,1.0,957481045\n358,1694,5.0,957535880\n358,1701,4.0,957480287\n358,1707,1.0,957795531\n358,1721,2.0,957479332\n358,1729,4.0,957534487\n358,1732,4.0,957534487\n358,1747,4.0,957480223\n358,1772,1.0,957795493\n358,1777,5.0,957479451\n358,1784,4.0,957478845\n358,1801,1.0,957479556\n358,1821,2.0,957479653\n358,1835,2.0,957479680\n358,1837,1.0,957795321\n358,1839,1.0,957795593\n358,1855,1.0,957795134\n358,1863,1.0,957795493\n358,1883,4.0,957794689\n358,1888,2.0,957481235\n358,1894,3.0,957479728\n358,1911,4.0,957481180\n358,1912,4.0,957481791\n358,1918,2.0,957534692\n358,1934,5.0,957480398\n358,1938,5.0,957535373\n358,1939,5.0,957535456\n358,1940,5.0,957535586\n358,1942,5.0,957535406\n358,1944,5.0,957479080\n358,1945,5.0,957534432\n358,1946,4.0,957479179\n358,1947,4.0,957479306\n358,1950,5.0,957535293\n358,1952,5.0,957535429\n358,1953,3.0,957481745\n358,1954,5.0,957481835\n358,1958,4.0,957794665\n358,1959,2.0,957479253\n358,1963,5.0,957794594\n358,1966,3.0,957794540\n358,1968,4.0,957478808\n358,2000,4.0,957481809\n358,2001,3.0,957480683\n358,2002,2.0,957534692\n358,2003,2.0,957480734\n358,2004,1.0,957794990\n358,2011,3.0,957480572\n358,2012,2.0,957794883\n358,2014,3.0,957481098\n358,2015,3.0,957794739\n358,2018,4.0,957534930\n358,2020,4.0,957479160\n358,2023,1.0,957534648\n358,2027,1.0,957534758\n358,2028,4.0,957481722\n358,2044,2.0,957795210\n358,2053,1.0,957795210\n358,2054,3.0,957481256\n358,2060,1.0,957478845\n358,2064,5.0,957480090\n358,2065,5.0,957479230\n358,2078,3.0,957534907\n358,2080,4.0,957479332\n358,2081,5.0,957480165\n358,2082,1.0,957795164\n358,2085,3.0,957534968\n358,2092,3.0,957481450\n358,2095,3.0,957794949\n358,2096,4.0,957534930\n358,2098,1.0,957795094\n358,2099,4.0,957481317\n358,2100,4.0,957479361\n358,2108,3.0,957480270\n358,2109,3.0,957480449\n358,2110,3.0,957534558\n358,2111,2.0,957480704\n358,2112,2.0,957534487\n358,2124,2.0,957480666\n358,2125,4.0,957479230\n358,2126,3.0,957534842\n358,2130,5.0,957479160\n358,2133,1.0,957480561\n358,2134,2.0,957794837\n358,2135,4.0,957481400\n358,2136,3.0,957480704\n358,2137,4.0,957534907\n358,2141,3.0,957535018\n358,2144,4.0,957480165\n358,2145,3.0,957480770\n358,2146,2.0,957479743\n358,2150,3.0,957794620\n358,2174,1.0,957480182\n358,2194,4.0,957481835\n358,2231,4.0,957534502\n358,2241,2.0,957795034\n358,2243,5.0,957480121\n358,2245,2.0,957480621\n358,2247,4.0,957480639\n358,2248,5.0,957479132\n358,2249,3.0,957794852\n358,2252,4.0,957480804\n358,2253,1.0,957795276\n358,2255,1.0,957794949\n358,2259,2.0,957479864\n358,2261,2.0,957794812\n358,2262,2.0,957479488\n358,2265,2.0,957795593\n358,2266,2.0,957479762\n358,2268,3.0,957534524\n358,2278,1.0,957534648\n358,2286,1.0,957795034\n358,2289,5.0,957479996\n358,2290,3.0,957480589\n358,2291,3.0,957479201\n358,2297,1.0,957479556\n358,2300,5.0,957481300\n358,2301,3.0,957480381\n358,2302,4.0,957480270\n358,2306,2.0,957478845\n358,2316,1.0,957479762\n358,2321,5.0,957480433\n358,2324,5.0,957480090\n358,2335,2.0,957795295\n358,2352,2.0,957480270\n358,2355,4.0,957480471\n358,2356,4.0,957481045\n358,2359,5.0,957794507\n358,2369,3.0,957481045\n358,2371,4.0,957794701\n358,2372,1.0,957795242\n358,2374,3.0,957795258\n358,2375,1.0,957481180\n358,2378,1.0,957794910\n358,2379,1.0,957795442\n358,2380,1.0,957795563\n358,2381,1.0,957795531\n358,2382,1.0,957795593\n358,2383,1.0,957795577\n358,2384,4.0,957480336\n358,2385,2.0,957480770\n358,2389,1.0,957534842\n358,2392,1.0,957795464\n358,2394,4.0,957481400\n358,2395,5.0,957794540\n358,2396,5.0,957479268\n358,2398,4.0,957535880\n358,2405,4.0,957479575\n358,2406,4.0,957480490\n358,2407,4.0,957480639\n358,2413,2.0,957795073\n358,2416,3.0,957481098\n358,2418,4.0,957795073\n358,2423,3.0,957794722\n358,2424,3.0,957480683\n358,2431,1.0,957795034\n358,2447,1.0,957480589\n358,2463,4.0,957480471\n358,2468,1.0,957479728\n358,2469,1.0,957479430\n358,2470,4.0,957480666\n358,2471,2.0,957795423\n358,2472,3.0,957480513\n358,2473,1.0,957795356\n358,2478,1.0,957795134\n358,2497,1.0,957479812\n358,2498,1.0,957795210\n358,2506,1.0,957479575\n358,2518,4.0,957480398\n358,2529,4.0,957481855\n358,2539,4.0,957481136\n358,2555,1.0,957795563\n358,2558,2.0,957479796\n358,2561,3.0,957534758\n358,2567,3.0,957794837\n358,2571,5.0,957481769\n358,2581,3.0,957480704\n358,2605,2.0,957534842\n358,2607,3.0,957535632\n358,2616,3.0,957534713\n358,2628,3.0,957478953\n358,2657,1.0,957480182\n358,2671,5.0,957479350\n358,2683,5.0,957480621\n358,2690,4.0,957794565\n358,2699,1.0,957794970\n358,2716,3.0,957794487\n358,2717,1.0,957795223\n358,2724,2.0,957479006\n358,2728,4.0,957478845\n358,2735,2.0,957795408\n358,2736,4.0,957481136\n358,2738,2.0,957480704\n358,2746,3.0,957480639\n358,2747,2.0,957480312\n358,2750,5.0,957480287\n358,2762,5.0,957478931\n358,2770,4.0,957794636\n358,2779,5.0,957480381\n358,2791,4.0,957794487\n358,2792,1.0,957795094\n358,2794,1.0,957795183\n358,2795,2.0,957480147\n358,2796,1.0,957481256\n358,2797,5.0,957480107\n358,2804,4.0,957535191\n358,2805,2.0,957479704\n358,2822,2.0,957479704\n358,2829,5.0,957478988\n358,2858,4.0,957479938\n358,2861,2.0,957478971\n358,2863,2.0,957794507\n358,2872,2.0,957481855\n358,2875,3.0,957479653\n358,2915,3.0,957480165\n358,2918,4.0,957480165\n358,2941,2.0,957479418\n358,2942,3.0,957479837\n358,2944,4.0,957481745\n358,2947,5.0,957481745\n358,2949,4.0,957481769\n358,2950,1.0,957479837\n358,2961,1.0,957479006\n358,2971,3.0,957481300\n358,2973,5.0,957480017\n358,2987,4.0,957481598\n358,2991,3.0,957481835\n358,3006,5.0,957478931\n358,3019,4.0,957534432\n358,3033,2.0,957795164\n358,3035,4.0,957480066\n358,3039,5.0,957480287\n358,3040,3.0,957480561\n358,3042,1.0,957795547\n358,3043,1.0,957794990\n358,3060,2.0,957480312\n358,3062,3.0,957535632\n358,3072,4.0,957480066\n358,3087,3.0,957794789\n358,3104,4.0,957480312\n358,3108,3.0,957535429\n358,3113,1.0,957478808\n358,3114,5.0,957479996\n358,3142,3.0,957481400\n358,3146,1.0,957795351\n358,3147,3.0,957535429\n358,3148,4.0,957535373\n358,3159,4.0,957534930\n358,3174,4.0,957480449\n358,3178,2.0,957534859\n358,3206,1.0,957479837\n358,3210,4.0,957794565\n358,3235,1.0,957481199\n358,3244,4.0,957479418\n358,3247,3.0,957534713\n358,3248,2.0,957795493\n358,3253,3.0,957480147\n358,3254,2.0,957795134\n358,3255,5.0,957480381\n358,3257,2.0,957479796\n358,3258,2.0,957480770\n358,3259,3.0,957479518\n358,3263,4.0,957481235\n358,3269,1.0,957479624\n358,3272,2.0,957534558\n358,3301,1.0,957534758\n358,3307,5.0,957479080\n358,3308,4.0,957480530\n358,3334,4.0,957534432\n358,3358,5.0,957479080\n358,3359,5.0,957535334\n358,3361,5.0,957480047\n358,3362,5.0,957479973\n358,3363,4.0,957480067\n358,3387,3.0,957480770\n358,3396,4.0,957480147\n358,3414,2.0,957479680\n358,3418,3.0,957481791\n358,3421,4.0,957480147\n358,3424,5.0,957535632\n358,3435,5.0,957481565\n358,3436,2.0,957479864\n358,3448,4.0,957480561\n358,3450,3.0,957481045\n358,3451,4.0,957794620\n358,3462,5.0,957479938\n358,3468,5.0,957535155\n358,3469,5.0,957535334\n358,3481,4.0,957794636\n358,3497,2.0,957481199\n358,3500,4.0,957794970\n358,3501,4.0,957479332\n358,3504,5.0,957479996\n358,3507,5.0,957480513\n358,3524,5.0,957479605\n358,3525,3.0,957481199\n358,3526,4.0,957480067\n358,3527,3.0,957481884\n358,3528,2.0,957479743\n358,3529,2.0,957534648\n358,3536,3.0,957479253\n358,3543,5.0,957479973\n358,3549,2.0,957481358\n358,3552,4.0,957794665\n358,3591,4.0,957480530\n358,3600,3.0,957481438\n358,3608,2.0,957480223\n358,3614,3.0,957480147\n358,3622,4.0,957794990\n358,5060,3.0,957480090\n359,58,4.5,1339234594\n359,215,4.0,1339226955\n359,290,3.5,1339234496\n359,306,4.5,1339226806\n359,307,4.5,1339234785\n359,318,4.0,1339227774\n359,364,4.5,1339234054\n359,527,4.0,1339227806\n359,590,3.0,1339234028\n359,858,3.5,1339227801\n359,912,3.0,1339227824\n359,922,3.5,1339227831\n359,1015,2.0,1339227101\n359,1193,4.0,1339227854\n359,1198,3.5,1339227884\n359,1295,4.5,1339227138\n359,1446,4.0,1339234412\n359,1635,3.0,1339226888\n359,1779,3.0,1339226841\n359,1959,4.5,1339226916\n359,2053,1.0,1339226986\n359,2324,3.0,1339227944\n359,2336,4.5,1339234043\n359,2384,4.0,1339226902\n359,2405,3.0,1339226849\n359,2840,3.0,1339226939\n359,2858,4.0,1339227965\n359,2959,3.5,1339227894\n359,3100,4.0,1339226877\n359,3159,4.5,1339227028\n359,3258,3.5,1339227144\n359,4069,0.5,1339227065\n359,4973,3.5,1339227876\n359,5791,4.5,1339234086\n359,6235,4.0,1339234563\n359,6385,4.5,1339227125\n359,7327,4.0,1339234180\n359,7396,4.0,1339234208\n359,8014,4.0,1339234361\n359,8656,4.5,1339234319\n359,26587,5.0,1339234126\n359,27611,4.5,1339234266\n359,30707,3.0,1339234586\n359,44555,2.5,1339227849\n359,81845,4.5,1339234217\n359,89759,3.0,1339234765\n360,47,4.0,967345012\n360,50,5.0,967345139\n360,111,5.0,967345139\n360,161,5.0,967345307\n360,457,5.0,967345161\n360,474,4.0,967345184\n360,593,5.0,967345139\n360,608,4.0,967345097\n360,628,4.0,967345256\n360,904,4.0,967345115\n360,924,4.0,967345139\n360,1036,4.0,967345184\n360,1089,4.0,967345231\n360,1097,3.0,967344975\n360,1200,4.0,967345184\n360,1219,4.0,967345115\n360,1240,4.0,967345184\n360,1358,4.0,967345208\n360,1562,2.0,967345012\n360,1617,4.0,967345097\n360,1674,4.0,967345208\n360,1732,4.0,967345307\n360,1953,3.0,967345161\n360,2058,3.0,967345307\n360,2160,4.0,967345184\n360,2278,3.0,967345307\n360,2313,2.0,967344975\n360,2391,3.0,967345208\n360,2571,4.0,967345208\n360,2616,2.0,967344975\n360,2764,4.0,967345256\n360,2871,4.0,967345231\n360,2916,3.0,967345256\n360,3101,5.0,967345256\n360,3147,5.0,967345256\n360,3168,3.0,967345012\n360,3501,2.0,967344975\n360,3763,3.0,967345231\n361,1,3.0,864050973\n361,3,4.0,864051071\n361,7,3.0,864051197\n361,9,3.0,864051357\n361,12,3.0,864051423\n361,14,4.0,864051274\n361,17,5.0,864050973\n361,25,4.0,864050974\n361,32,3.0,864050973\n361,41,4.0,864051423\n361,52,4.0,864051274\n361,58,3.0,864051274\n361,65,3.0,864051423\n361,66,4.0,864051423\n361,74,4.0,864051423\n361,76,4.0,864051563\n361,79,3.0,864051274\n361,86,3.0,864051563\n361,88,4.0,864051563\n361,100,3.0,864051423\n361,107,4.0,864051423\n361,135,3.0,864051274\n361,140,3.0,864051357\n361,260,5.0,864051071\n361,376,3.0,864051197\n361,494,3.0,864051071\n361,608,3.0,864051071\n361,609,3.0,864051495\n361,628,3.0,864051274\n361,631,4.0,864051563\n361,637,4.0,864051274\n361,640,3.0,864051494\n361,647,4.0,864051494\n361,648,3.0,864050973\n361,653,5.0,864051197\n361,661,4.0,864051357\n361,671,4.0,864051563\n361,673,4.0,864051494\n361,707,3.0,864051494\n361,711,4.0,864051494\n361,719,3.0,864051357\n361,724,3.0,864051423\n361,733,1.0,864051071\n361,736,5.0,864050973\n361,737,4.0,864051357\n361,743,3.0,864051357\n361,748,3.0,864051563\n361,761,4.0,864051494\n361,762,3.0,864051197\n361,765,2.0,864051563\n361,778,3.0,864051356\n361,780,5.0,864050973\n361,783,4.0,864051357\n361,785,3.0,864051494\n361,786,3.0,864051071\n361,788,4.0,864051197\n361,802,3.0,864051274\n361,805,4.0,864051274\n361,830,3.0,864051563\n361,832,4.0,864051357\n361,839,5.0,864051563\n361,852,3.0,864051357\n361,858,4.0,864051423\n361,1073,4.0,864051071\n361,1183,5.0,864051495\n361,1210,5.0,864051274\n361,1356,5.0,864051197\n361,1367,5.0,864051494\n361,1393,3.0,864051423\n361,1405,3.0,864051563\n362,50,5.0,1217952715\n362,70,3.5,1218567120\n362,235,3.0,1218567124\n362,288,4.0,1224963415\n362,293,5.0,1218724314\n362,296,4.5,1217952678\n362,318,5.0,1217952389\n362,356,4.0,1218723685\n362,541,4.5,1218566916\n362,551,5.0,1217952361\n362,592,4.0,1218723629\n362,593,5.0,1218723634\n362,616,3.5,1218567128\n362,750,4.0,1218566999\n362,858,4.0,1217952550\n362,903,3.5,1218567042\n362,924,3.0,1218567744\n362,996,2.0,1218567324\n362,1080,4.0,1218566888\n362,1125,3.5,1218566950\n362,1136,3.5,1218567070\n362,1193,4.0,1218566971\n362,1197,4.5,1218723739\n362,1198,4.0,1218566955\n362,1206,4.5,1218566907\n362,1208,3.5,1218567130\n362,1213,4.0,1218566990\n362,1219,4.0,1217952929\n362,1220,4.0,1226330599\n362,1222,3.5,1218566993\n362,1258,3.5,1218566947\n362,1265,3.5,1218724035\n362,1270,5.0,1218723692\n362,1289,4.0,1218566977\n362,1291,4.5,1218566898\n362,1339,4.5,1221861886\n362,1617,5.0,1217952539\n362,1674,3.5,1218567037\n362,1732,4.5,1217952624\n362,1747,3.5,1218567039\n362,1884,2.5,1218567246\n362,1961,3.5,1221032485\n362,2028,2.5,1218723616\n362,2115,3.5,1218567115\n362,2194,3.5,1218724093\n362,2324,4.5,1225615319\n362,2329,4.5,1217952771\n362,2470,2.5,1218567250\n362,2497,2.0,1217951780\n362,2571,4.5,1217952562\n362,2683,2.5,1218723725\n362,2716,4.0,1221032516\n362,2729,3.5,1218567086\n362,2730,3.5,1218567010\n362,2762,4.0,1218724085\n362,2770,2.0,1218567265\n362,2858,5.0,1217952858\n362,2959,2.5,1218567262\n362,3020,4.0,1218566996\n362,3404,2.5,1217951793\n362,3481,4.5,1221032430\n362,3949,3.5,1218567044\n362,4011,4.0,1218846296\n362,4027,4.5,1218724322\n362,4144,3.5,1218566982\n362,4226,3.5,1218567081\n362,4246,3.5,1228895445\n362,4296,3.5,1218567084\n362,4306,4.0,1218724042\n362,4370,2.0,1218567748\n362,4878,4.0,1218566902\n362,4963,4.0,1218723591\n362,4973,5.0,1217952751\n362,4993,3.0,1221032460\n362,5025,2.5,1218567156\n362,5377,4.0,1218724121\n362,5618,3.5,1218566932\n362,5643,2.5,1218567149\n362,5669,4.5,1221861778\n362,5684,2.0,1218567159\n362,5945,3.5,1218566867\n362,6365,2.5,1218567259\n362,6377,4.5,1218723688\n362,6539,4.5,1218723611\n362,6662,4.5,1217952591\n362,6711,5.0,1218723698\n362,6807,3.5,1218567060\n362,6874,4.0,1217952971\n362,6942,4.5,1221861907\n362,7022,3.0,1218567253\n362,7073,3.5,1218566941\n362,7147,4.5,1218566920\n362,7438,3.5,1218723603\n362,8327,4.5,1218566905\n362,8376,3.0,1218566845\n362,8947,3.0,1218567246\n362,8961,4.5,1218724089\n362,8970,4.0,1218724108\n362,27523,5.0,1217952196\n362,27772,4.0,1218566892\n362,27773,2.5,1217952728\n362,27821,3.5,1218566855\n362,30793,4.0,1221032687\n362,30803,3.5,1218567144\n362,33166,4.5,1217952087\n362,33794,4.0,1221032362\n362,37729,4.0,1218567005\n362,37733,5.0,1217952497\n362,40414,4.0,1218566973\n362,40629,2.0,1221861669\n362,40819,3.0,1225615282\n362,44555,5.0,1218724166\n362,45722,4.0,1221032593\n362,46578,3.5,1266941394\n362,50068,3.0,1221861714\n362,56251,4.5,1217952337\n362,56757,4.0,1218566930\n362,58559,5.0,1221032341\n362,71464,4.5,1266941356\n363,1,5.0,942344684\n363,29,4.0,942345584\n363,32,4.0,942345584\n363,34,5.0,938890526\n363,47,5.0,938890950\n363,48,4.0,942344923\n363,50,4.0,938890887\n363,110,1.0,938890781\n363,198,4.0,942345753\n363,256,2.0,942345996\n363,260,5.0,942345584\n363,316,2.0,942346590\n363,322,2.0,938890637\n363,327,2.0,942345331\n363,346,3.0,942345239\n363,364,4.0,942344685\n363,379,2.0,942346624\n363,480,4.0,942345895\n363,527,5.0,938890433\n363,541,5.0,942345710\n363,551,4.0,942345138\n363,588,4.0,942344755\n363,589,5.0,938890637\n363,594,5.0,942344755\n363,595,5.0,942344755\n363,596,5.0,942344755\n363,608,5.0,938890526\n363,616,4.0,942344923\n363,661,3.0,942344963\n363,709,2.0,942344812\n363,720,5.0,938890781\n363,745,5.0,942344684\n363,750,4.0,942345710\n363,780,2.0,942345958\n363,783,4.0,942344873\n363,899,5.0,942345138\n363,900,4.0,942345172\n363,901,4.0,942345172\n363,908,4.0,942345426\n363,914,5.0,942345138\n363,919,5.0,942345138\n363,926,5.0,942345426\n363,948,4.0,942345464\n363,949,4.0,942345464\n363,1022,4.0,942344873\n363,1023,4.0,942344685\n363,1024,3.0,942344812\n363,1025,3.0,942344962\n363,1028,5.0,942345138\n363,1029,4.0,942344923\n363,1031,3.0,942345287\n363,1032,4.0,942344873\n363,1035,5.0,942345138\n363,1037,1.0,942347119\n363,1057,5.0,942345239\n363,1064,2.0,942344962\n363,1081,5.0,942345239\n363,1088,2.0,942345287\n363,1093,3.0,942345287\n363,1097,4.0,942345710\n363,1103,5.0,942345493\n363,1104,5.0,942345464\n363,1127,4.0,942345895\n363,1148,5.0,942344685\n363,1175,5.0,942345710\n363,1196,5.0,942345584\n363,1199,4.0,942345710\n363,1200,5.0,942345648\n363,1210,5.0,942345648\n363,1214,5.0,942345709\n363,1223,4.0,942344755\n363,1240,5.0,942345710\n363,1270,3.0,942345648\n363,1274,4.0,942344755\n363,1282,5.0,942344812\n363,1287,5.0,942345493\n363,1288,4.0,942345138\n363,1320,3.0,942347003\n363,1356,3.0,942345710\n363,1371,2.0,942346774\n363,1372,2.0,942345958\n363,1374,4.0,942345753\n363,1375,3.0,942346708\n363,1376,4.0,942345802\n363,1380,5.0,942345203\n363,1381,2.0,942345364\n363,1391,4.0,942346708\n363,1416,5.0,942345172\n363,1527,4.0,942345996\n363,1544,2.0,942346708\n363,1566,4.0,942344923\n363,1573,4.0,942345753\n363,1584,5.0,942345647\n363,1617,4.0,938890950\n363,1648,4.0,938890887\n363,1653,4.0,942345802\n363,1676,1.0,942346708\n363,1680,3.0,938890887\n363,1682,5.0,938890950\n363,1688,4.0,942345014\n363,1690,4.0,942346590\n363,1701,2.0,938890950\n363,1760,2.0,942345331\n363,1856,4.0,942345364\n363,1907,3.0,942344755\n363,1917,1.0,942346624\n363,1921,4.0,942345895\n363,1947,5.0,942345172\n363,1951,5.0,942345138\n363,1965,4.0,942345842\n363,2010,5.0,942345584\n363,2011,3.0,942345895\n363,2012,2.0,942345753\n363,2018,4.0,942344812\n363,2021,2.0,942345996\n363,2028,1.0,938890526\n363,2033,3.0,942345066\n363,2048,4.0,942344923\n363,2054,3.0,942347119\n363,2078,5.0,942344684\n363,2080,4.0,942344812\n363,2081,5.0,942344812\n363,2083,3.0,942345331\n363,2084,2.0,942345287\n363,2085,4.0,942344873\n363,2087,4.0,942344755\n363,2090,4.0,942344923\n363,2092,1.0,942345066\n363,2094,4.0,942346590\n363,2096,5.0,942344684\n363,2105,3.0,942346590\n363,2112,5.0,938890887\n363,2135,4.0,942345172\n363,2137,3.0,942344812\n363,2139,4.0,942344685\n363,2140,5.0,942345842\n363,2289,5.0,938890637\n363,2294,4.0,942344873\n363,2355,4.0,942344812\n363,2357,4.0,938890950\n363,2394,4.0,942345014\n363,2407,3.0,942345895\n363,2436,4.0,942344303\n363,2446,1.0,942344159\n363,2450,2.0,942346708\n363,2455,3.0,942346708\n363,2486,3.0,942343676\n363,2504,4.0,942344496\n363,2506,2.0,942343613\n363,2525,2.0,942345802\n363,2528,4.0,942345647\n363,2545,4.0,942343899\n363,2546,3.0,942343613\n363,2558,4.0,942344159\n363,2565,4.0,942345331\n363,2571,3.0,942343576\n363,2575,4.0,942343576\n363,2580,4.0,942343768\n363,2581,3.0,942344464\n363,2583,4.0,942344234\n363,2599,5.0,942343839\n363,2607,3.0,942344063\n363,2622,3.0,942344063\n363,2626,5.0,942344006\n363,2628,3.0,938890782\n363,2640,4.0,942345842\n363,2641,4.0,942346590\n363,2642,1.0,942345802\n363,2657,4.0,942345842\n363,2664,4.0,942345802\n363,2671,4.0,942343768\n363,2690,4.0,942344337\n363,2692,5.0,938890950\n363,2699,2.0,938890887\n363,2700,4.0,938726161\n363,2701,1.0,938726398\n363,2702,4.0,938890202\n363,2704,4.0,938726203\n363,2710,5.0,938726243\n363,2712,2.0,938726398\n363,2731,4.0,942345426\n363,2746,5.0,942345287\n363,2762,4.0,938726161\n363,2775,3.0,938890302\n363,2808,3.0,942346774\n363,2858,4.0,938726161\n363,2876,3.0,942345066\n363,2883,3.0,938890146\n363,2894,3.0,938726849\n363,2908,4.0,942343440\n363,2916,3.0,942345996\n363,2939,3.0,942345518\n363,2959,3.0,942344200\n363,2961,4.0,942344270\n363,2971,4.0,942345287\n363,2985,3.0,942345842\n363,2987,5.0,942344685\n363,2997,5.0,942343440\n363,3000,4.0,942344812\n363,3034,3.0,942344923\n363,3070,4.0,942346708\n364,47,0.5,1444534953\n364,293,0.5,1444534861\n364,306,0.5,1444531218\n364,318,4.5,1444529786\n364,541,1.5,1444530591\n364,1210,0.5,1444529859\n364,1240,0.5,1444530549\n364,1265,5.0,1444530183\n364,1732,4.5,1444535154\n364,2424,5.0,1444530507\n364,3948,0.5,1444529207\n364,4018,4.0,1444529719\n364,6350,4.5,1444531634\n364,7161,3.5,1444535319\n364,8464,4.5,1444531774\n364,26662,2.0,1444530767\n364,26776,1.0,1444531520\n364,27611,0.5,1444534753\n364,31658,2.0,1444530605\n364,34321,5.0,1444531397\n364,45722,4.5,1444528740\n364,46578,4.5,1444529344\n364,56367,4.0,1444535229\n364,64957,4.5,1444531032\n364,66934,4.0,1444530678\n364,68358,0.5,1444530023\n364,72998,0.5,1444529424\n364,78499,0.5,1444535027\n364,93040,5.0,1444530856\n364,97938,4.0,1444531065\n364,106696,4.5,1444530256\n364,109249,5.0,1444529595\n364,109374,5.0,1444530662\n364,115617,4.5,1444530384\n364,118997,4.5,1444530087\n364,134853,5.0,1444530607\n365,150,5.0,1359307169\n365,355,1.0,1359306693\n365,362,3.5,1359306735\n365,364,4.0,1359308357\n365,480,4.5,1359307164\n365,852,4.0,1359306676\n365,909,5.0,1359306830\n365,914,5.0,1359308393\n365,1021,5.0,1359306914\n365,1035,4.5,1359308442\n365,1103,5.0,1359306795\n365,1206,3.5,1359307117\n365,1345,3.0,1359306715\n365,1380,4.5,1359308401\n365,1517,4.0,1359307121\n365,1580,4.5,1359307127\n365,1772,3.5,1359308554\n365,1784,4.5,1359307138\n365,1947,5.0,1359306722\n365,1961,5.0,1359307133\n365,2012,5.0,1359307109\n365,2081,5.0,1359308525\n365,2352,3.0,1359306774\n365,2642,4.5,1359306821\n365,2863,5.0,1359308362\n365,3101,3.0,1359306662\n365,3263,4.5,1359306802\n365,3398,4.0,1359308467\n365,3635,4.0,1359306870\n365,3753,4.0,1359308719\n365,3967,4.5,1359308906\n365,4816,3.0,1359307212\n365,4936,4.0,1359308371\n365,4993,5.0,1359307092\n365,4994,5.0,1359308797\n365,4995,5.0,1359308698\n365,5418,5.0,1359308896\n365,5459,4.0,1359307207\n365,5481,4.0,1359306753\n365,5991,5.0,1359307478\n365,6333,5.0,1359308625\n365,6378,4.0,1359307200\n365,6503,4.5,1359306898\n365,6711,3.5,1359308883\n365,7153,4.5,1359308613\n365,8644,4.0,1359307471\n365,8665,5.0,1359307195\n365,8796,3.5,1359308507\n365,8833,4.0,1359308878\n365,8949,3.0,1359307468\n365,8961,4.5,1359308868\n365,8984,4.0,1359307510\n365,33794,3.5,1359307188\n365,40819,4.5,1359308738\n365,44195,4.0,1359308859\n365,45447,4.0,1359308734\n365,46578,4.0,1359308847\n365,48780,5.0,1359307464\n365,50872,4.0,1359307460\n365,53322,4.0,1359307496\n365,58154,3.5,1359308837\n365,58559,3.0,1359308833\n365,63082,3.5,1359308695\n365,68554,3.0,1359308770\n365,70286,2.0,1359308818\n365,72998,5.0,1359307175\n365,80463,4.0,1359307485\n365,80489,3.5,1359308764\n365,89745,3.0,1359307481\n365,97304,5.0,1359307046\n366,24,4.0,1306282555\n366,44,3.5,1306282507\n366,419,3.0,1306282686\n366,724,2.5,1306282543\n366,2134,3.0,1306282642\n366,2139,1.5,1306282697\n366,2398,1.0,1306282680\n366,2642,2.5,1306282660\n366,2723,4.5,1306282549\n366,2739,1.0,1306282635\n366,2761,3.5,1306282570\n366,2881,3.5,1306282577\n366,3100,1.5,1306282638\n366,3624,4.0,1306282587\n366,4011,4.0,1306283238\n366,4246,4.5,1306283841\n366,4886,4.0,1306283219\n366,4973,5.0,1306282976\n366,6377,4.0,1306282998\n366,7317,4.0,1306284255\n366,8874,4.0,1306283227\n366,8961,5.0,1306283200\n366,27251,4.0,1306283826\n366,33615,4.0,1306284272\n366,45431,4.5,1306284301\n366,46578,4.0,1306283212\n366,47518,4.5,1306282924\n366,50872,3.0,1306283234\n366,52287,4.0,1306284288\n366,55732,2.0,1306284276\n366,56152,3.0,1306284252\n366,60126,4.0,1306283373\n366,61348,0.5,1306282929\n366,68358,5.0,1306282704\n367,6,2.0,1128631216\n367,21,3.0,1128633376\n367,95,4.0,1128631025\n367,160,2.5,1128632887\n367,172,2.0,1128632878\n367,173,0.5,1128632898\n367,208,0.5,1128632919\n367,223,3.5,1128633407\n367,260,5.0,1128632755\n367,357,4.0,1128634060\n367,380,4.5,1128633206\n367,440,4.0,1128633308\n367,457,4.5,1128631222\n367,490,4.0,967059919\n367,539,3.0,1128633424\n367,541,5.0,1128632807\n367,555,3.5,1128631203\n367,589,4.5,1128631229\n367,608,4.5,1128633112\n367,750,4.0,1128633142\n367,911,3.5,1128633117\n367,969,5.0,1128632828\n367,1005,3.0,967059919\n367,1036,4.5,1128632716\n367,1089,4.0,1128632823\n367,1127,3.0,997908852\n367,1196,5.0,1128632771\n367,1197,2.0,1128632782\n367,1198,5.0,1128632801\n367,1200,5.0,1128632705\n367,1214,4.5,1128632793\n367,1220,5.0,1128631185\n367,1222,5.0,1128632812\n367,1230,2.0,967059919\n367,1234,3.0,1128633099\n367,1240,3.5,1128632762\n367,1264,4.0,1128632835\n367,1269,4.5,1128633094\n367,1270,4.0,1128633978\n367,1275,3.0,967059919\n367,1291,2.0,1128631207\n367,1297,4.5,1128633328\n367,1378,3.5,1128631063\n367,1385,4.5,1128631056\n367,1387,4.0,1128632738\n367,1518,3.5,1128631080\n367,1542,4.0,1128634023\n367,1556,1.5,1128632914\n367,1564,4.0,1128634008\n367,1580,3.0,1128633228\n367,1610,5.0,1128631147\n367,1641,4.0,1128634043\n367,1663,3.0,1128633027\n367,1747,4.0,1128633443\n367,1845,2.0,1128633400\n367,1917,3.5,1128632906\n367,1968,4.0,1128633973\n367,2000,4.5,1128633015\n367,2001,3.5,1128633213\n367,2005,2.0,967059919\n367,2028,4.0,1128632693\n367,2109,0.5,1128634100\n367,2288,4.5,1128631195\n367,2302,3.5,1128633314\n367,2321,3.0,1128633457\n367,2396,5.0,1128634095\n367,2406,5.0,1128633270\n367,2571,5.0,1128631234\n367,2692,3.5,1128632819\n367,2699,4.0,997908871\n367,2707,4.0,967059919\n367,2710,4.0,997908906\n367,2716,2.5,1128633056\n367,2804,5.0,1128633066\n367,2826,1.0,997908852\n367,2858,3.5,1128633087\n367,2915,4.5,1128633369\n367,2918,2.5,1128633994\n367,2935,4.0,1128633163\n367,2987,3.5,1128633446\n367,2997,5.0,997908889\n367,3005,1.0,997908906\n367,3104,4.5,1128632700\n367,3107,3.5,1128631068\n367,3108,3.0,1128634076\n367,3175,4.0,1128633265\n367,3253,2.5,1128633335\n367,3316,3.5,1128632895\n367,3358,4.5,1128634083\n367,3421,1.0,1128633957\n367,3526,3.5,1128634049\n367,3552,3.0,1128633047\n367,3578,4.5,1128631132\n367,3623,5.0,967059959\n367,3624,1.0,967059959\n367,3717,3.0,1128632872\n367,3740,3.5,1128633179\n367,3751,4.0,967059959\n367,3753,3.0,967059959\n367,3793,2.0,967059959\n367,3819,4.5,1128633134\n367,3826,3.0,967059919\n367,3952,3.0,977953460\n367,3975,3.0,977953515\n367,3977,1.0,977953490\n367,3981,4.0,977953490\n367,3986,4.0,977953515\n367,3994,2.0,977953588\n367,3996,5.0,1128632742\n367,3998,3.0,977953438\n367,3999,4.0,977953588\n367,4002,3.5,1128633418\n367,4011,4.5,1128631177\n367,4027,4.0,1128634104\n367,4052,3.0,997908871\n367,4128,5.0,1128633199\n367,4270,3.0,995902971\n367,4305,2.0,995902946\n367,4343,2.0,997908739\n367,4344,3.0,997908739\n367,4351,3.5,1128631065\n367,4367,3.0,995902992\n367,4370,1.0,995902971\n367,4387,4.0,995902946\n367,4444,4.0,1128631164\n367,4448,3.0,997908799\n367,4499,0.5,1128633478\n367,4570,4.5,1128633299\n367,4618,2.0,995902911\n367,4621,3.0,995902911\n367,4623,4.0,995902911\n367,4625,1.0,995902911\n367,4626,5.0,995902911\n367,4627,4.0,995902911\n367,4629,2.0,995902879\n367,4632,5.0,995902879\n367,4638,3.0,995902860\n367,4643,4.0,997908810\n367,4654,3.0,995902841\n367,4661,4.0,995902828\n367,4664,3.0,995902828\n367,4680,2.0,995902795\n367,4681,4.0,995902795\n367,4682,3.0,995902795\n367,4699,2.0,997908712\n367,4705,4.0,995902761\n367,4706,4.0,995902761\n367,4713,2.0,995902743\n367,4720,5.0,999892199\n367,4723,4.0,999892168\n367,4734,2.0,999892168\n367,4735,2.0,999892199\n367,4814,4.0,1008350748\n367,4887,2.0,1008350767\n367,4954,3.0,1128633191\n367,4963,3.0,1008350684\n367,5021,2.0,1128634031\n367,5049,3.0,1128633033\n367,5095,4.0,1128633254\n367,5299,3.5,1128633470\n367,5400,3.5,1128631031\n367,5459,4.0,1128632864\n367,5872,2.5,1128631041\n367,6003,4.0,1128633435\n367,6539,4.0,1128631199\n367,6541,2.0,1128632909\n367,6564,2.5,1128632884\n367,6636,3.5,1128634057\n367,6659,4.5,1128632989\n367,6764,3.5,1128633176\n367,6863,2.5,1128633464\n367,6874,3.0,1128632720\n367,6974,5.0,1128633037\n367,7027,3.0,1128631141\n367,7093,0.5,1128634002\n367,7107,4.0,1128633969\n367,7361,4.5,1128633105\n367,7438,2.0,1128632710\n367,7482,4.5,1128631249\n367,8228,4.0,1128632846\n367,8366,3.5,1128633986\n367,8623,4.0,1128633487\n367,8665,4.0,1128631122\n367,8689,4.0,1128633043\n367,8810,3.5,1128632868\n367,8874,3.5,1128632726\n367,8910,4.0,1128634019\n367,8968,2.5,1128631044\n367,32029,3.0,1128631087\n367,33493,3.5,1128631108\n367,33679,3.5,1124484227\n367,33794,3.5,1124484188\n367,34048,3.5,1124484237\n367,34143,3.5,1124484218\n367,34319,3.5,1124484247\n367,34334,3.0,1124484192\n367,34405,2.5,1128630931\n367,34532,3.5,1124484244\n367,35957,3.0,1128630983\n367,36401,2.5,1128630995\n367,36509,2.5,1128630980\n367,36517,3.5,1128630964\n367,36519,2.5,1128630968\n367,36529,3.0,1128630951\n367,37386,3.5,1138381509\n367,37720,3.0,1128630937\n367,37727,2.5,1128630977\n367,40583,4.0,1138381483\n367,40614,3.5,1138381501\n367,40826,0.5,1139605739\n367,40959,3.0,1138381471\n367,41285,2.0,1139605732\n367,41716,2.5,1138381438\n367,41997,3.0,1138381452\n367,42007,2.0,1138381491\n367,42011,2.0,1139605759\n367,42738,3.0,1138381468\n368,260,4.0,962592057\n368,265,4.0,984866989\n368,541,5.0,962592009\n368,593,4.0,962591544\n368,920,3.0,962591583\n368,1073,4.0,984866989\n368,1077,4.0,962592082\n368,1200,4.0,962592057\n368,1377,2.0,962591615\n368,1387,3.0,962591615\n368,2581,3.0,971563675\n368,2628,4.0,962591805\n368,2664,4.0,971563764\n368,2724,3.0,971563644\n368,2739,4.0,962591583\n368,2858,5.0,962591733\n368,3101,3.0,962591615\n368,3175,3.0,962591805\n368,3176,5.0,962591733\n368,3429,5.0,962591544\n368,3948,5.0,971639968\n369,2,3.0,847465664\n369,10,3.0,847465494\n369,21,3.0,847465592\n369,32,4.0,847465620\n369,39,3.0,847465620\n369,47,4.0,847465541\n369,50,3.0,847465592\n369,110,5.0,847465494\n369,150,4.0,847465333\n369,153,3.0,847465393\n369,165,3.0,847465392\n369,185,3.0,847465494\n369,208,3.0,847465494\n369,253,4.0,847465518\n369,282,4.0,847465696\n369,288,3.0,847465517\n369,292,3.0,847465462\n369,296,4.0,847465334\n369,316,3.0,847465421\n369,317,3.0,847465641\n369,318,5.0,847465462\n369,329,3.0,847465462\n369,339,4.0,847465517\n369,344,3.0,847465393\n369,349,3.0,847465422\n369,350,4.0,847465641\n369,356,5.0,847465421\n369,364,4.0,847465541\n369,367,3.0,847465541\n369,377,4.0,847465541\n369,380,2.0,847465334\n369,410,3.0,847465565\n369,432,3.0,847465664\n369,434,3.0,847465462\n369,440,4.0,847465641\n369,442,3.0,847465696\n369,454,4.0,847465517\n369,457,4.0,847465393\n369,474,4.0,847465696\n369,480,4.0,847465462\n369,500,4.0,847465541\n369,509,4.0,847465696\n369,527,5.0,847465592\n369,539,4.0,847465592\n369,587,5.0,847465565\n369,588,4.0,847465393\n369,589,4.0,847465517\n369,590,5.0,847465333\n369,592,4.0,847465333\n369,595,4.0,847465421\n369,597,4.0,847465565\n370,32,4.5,1096511821\n370,44,4.0,1096512154\n370,110,4.0,1096510780\n370,151,4.0,1096511390\n370,168,3.0,1096512066\n370,188,4.0,1096510929\n370,235,4.0,1096511967\n370,260,4.5,1096511412\n370,288,4.0,1096511878\n370,318,5.0,1096511027\n370,329,3.0,1096511840\n370,367,3.5,1096511851\n370,466,3.0,1096495851\n370,509,4.0,1096511934\n370,527,4.0,1096511813\n370,541,3.5,1096510762\n370,585,4.0,1096512160\n370,589,4.0,1096511796\n370,780,3.0,1096511799\n370,912,4.0,1096511921\n370,924,4.5,1096511929\n370,953,4.5,1096496354\n370,1088,3.0,1096511298\n370,1092,3.0,1096510750\n370,1196,4.0,1096511418\n370,1197,4.5,1096511245\n370,1201,4.0,1096496934\n370,1206,4.5,1096510599\n370,1207,5.0,1096495898\n370,1208,5.0,1096510658\n370,1210,4.0,1096511421\n370,1215,5.0,1096496378\n370,1261,5.0,1096510854\n370,1263,4.0,1096512218\n370,1265,4.5,1096511898\n370,1275,3.0,1096496943\n370,1285,4.0,1099962785\n370,1356,3.0,1096510820\n370,1371,3.5,1096512181\n370,1372,3.0,1096512105\n370,1374,4.0,1096512005\n370,1375,4.5,1096496921\n370,1464,5.0,1096510884\n370,1517,4.5,1096512019\n370,1580,3.5,1096511883\n370,1584,5.0,1096510809\n370,1625,5.0,1096496911\n370,1645,4.5,1096512170\n370,1673,3.5,1096512122\n370,1748,4.5,1096512198\n370,1756,3.5,1096510933\n370,2153,2.0,1096510685\n370,2167,3.5,1096496963\n370,2470,3.0,1096496951\n370,2502,3.5,1096511360\n370,2549,0.5,1096511040\n370,2571,4.5,1096511861\n370,2617,4.0,1096512052\n370,2628,2.5,1096511436\n370,2640,4.0,1096495870\n370,2700,4.0,1096495867\n370,2762,5.0,1096511467\n370,2770,4.0,1096496929\n370,2840,4.5,1096510977\n370,2959,4.5,1096511972\n370,3033,4.0,1096496974\n370,3052,4.5,1096512163\n370,3147,5.0,1096512119\n370,3578,4.5,1096511945\n370,3994,4.0,1096512193\n370,3996,4.0,1096512001\n370,4022,4.5,1096495888\n370,4105,5.0,1096510858\n370,4226,4.0,1096512091\n370,4349,4.0,1096510796\n370,4735,4.0,1096510873\n370,4975,3.5,1096511489\n370,4993,5.0,1096510955\n370,5349,4.5,1096512187\n370,5378,3.0,1096511438\n370,5952,5.0,1096510959\n370,6615,3.5,1096511097\n370,6754,4.0,1096511332\n370,7153,5.0,1096510958\n370,7318,2.0,1099365665\n370,7366,3.0,1099365673\n370,7379,4.0,1099365698\n370,7438,5.0,1099365622\n370,7439,3.0,1099365732\n370,7445,4.0,1099365627\n370,7649,5.0,1096510704\n370,7810,4.5,1096510713\n370,7811,3.5,1096510720\n370,7812,3.5,1096510726\n370,7991,4.0,1096510840\n370,8810,3.0,1096511085\n370,8861,3.5,1096510669\n370,8874,4.5,1096511117\n370,8928,3.5,1099365691\n370,8947,5.0,1099962827\n371,17,4.5,1462744286\n371,47,4.5,1462737831\n371,110,4.5,1462745271\n371,293,4.0,1462734440\n371,296,4.5,1462743973\n371,318,5.0,1462734560\n371,356,5.0,1462733874\n371,587,4.0,1462741796\n371,589,4.0,1462742520\n371,593,4.5,1462743140\n371,1089,4.5,1462744064\n371,1193,4.5,1462741757\n371,1270,3.0,1462741750\n371,1625,5.0,1462736680\n371,1645,4.5,1462747133\n371,1653,2.5,1462741737\n371,1721,5.0,1462734532\n371,1835,3.5,1462744885\n371,2000,4.0,1462745283\n371,2001,4.0,1462745300\n371,2028,4.0,1462745382\n371,2058,4.0,1462869075\n371,2324,3.5,1462733902\n371,2542,4.5,1462743990\n371,2571,5.0,1462734412\n371,2762,3.5,1462745838\n371,2858,4.0,1462742673\n371,2959,4.0,1462735589\n371,3147,4.5,1462869292\n371,3285,3.5,1462743093\n371,3717,3.5,1462744841\n371,3753,4.0,1462745275\n371,3785,3.5,1462746555\n371,3863,3.5,1462746589\n371,3948,4.0,1462746403\n371,3969,4.0,1462746792\n371,3999,3.5,1462747003\n371,4011,4.5,1462742591\n371,4018,4.0,1462746547\n371,4299,4.5,1462741644\n371,4306,4.0,1462746350\n371,4308,4.0,1462746477\n371,4370,0.5,1462868494\n371,4681,4.0,1462744685\n371,4699,4.0,1462885691\n371,4718,2.0,1462746572\n371,4963,4.0,1462745249\n371,4973,4.5,1462743220\n371,4993,1.5,1462869155\n371,4995,4.5,1462746372\n371,5218,4.0,1462746448\n371,5872,4.5,1462741770\n371,5952,2.0,1462746345\n371,5956,3.0,1462742811\n371,5989,5.0,1462735578\n371,5995,3.5,1462746460\n371,6187,4.5,1462741549\n371,6373,3.5,1462746519\n371,6874,0.5,1462869165\n371,7153,2.0,1462746347\n371,7254,4.0,1462744617\n371,7438,0.5,1462868939\n371,7669,4.5,1462744304\n371,8360,4.0,1462746417\n371,8529,4.0,1462745411\n371,8644,3.5,1462742448\n371,8665,3.0,1462742017\n371,8972,3.5,1462744864\n371,8981,4.5,1462743461\n371,8984,3.0,1462745242\n371,30707,4.5,1462746497\n371,30812,3.5,1462742783\n371,30825,3.5,1462746861\n371,32029,5.0,1462736542\n371,33679,3.0,1462744726\n371,37733,5.0,1462736852\n371,40629,4.5,1462744259\n371,44199,4.5,1462741792\n371,44761,1.0,1462825058\n371,45447,3.0,1462745416\n371,45517,4.0,1462746814\n371,45720,4.5,1462868435\n371,45722,4.0,1462746481\n371,47610,4.5,1462745791\n371,48043,2.0,1462747037\n371,48304,5.0,1462734159\n371,48516,5.0,1462734228\n371,49530,4.0,1462742802\n371,51662,4.0,1462741983\n371,53125,4.0,1462745575\n371,53322,3.5,1462745144\n371,53972,4.5,1462869053\n371,53996,2.0,1462746656\n371,54259,4.5,1462738341\n371,54286,3.0,1462742021\n371,55498,3.5,1462745573\n371,55765,5.0,1462742125\n371,56174,3.5,1462746600\n371,56633,4.5,1462869022\n371,56782,4.0,1462746746\n371,58154,4.5,1462744222\n371,58803,4.5,1462742605\n371,59369,3.5,1462746712\n371,59421,4.0,1462744634\n371,59784,4.0,1462746729\n371,60069,4.0,1462746392\n371,60072,2.5,1462744758\n371,60950,4.0,1462745710\n371,62374,4.5,1462742880\n371,63082,4.5,1462746064\n371,64957,4.5,1462741577\n371,68554,3.0,1462745405\n371,69640,5.0,1462742240\n371,71838,5.0,1462736650\n371,72998,3.0,1462746433\n371,73017,4.0,1462746582\n371,74458,4.0,1462736892\n371,79132,4.0,1462742795\n371,81591,3.5,1462743386\n371,81788,5.0,1462734657\n371,81834,2.0,1462746659\n371,81845,4.5,1462742573\n371,84392,5.0,1462736159\n371,86880,4.0,1462742301\n371,89118,2.0,1462885476\n371,90439,4.5,1462869245\n371,90600,5.0,1462735974\n371,91690,5.0,1472326024\n371,92259,5.0,1462747119\n371,94780,1.0,1462869777\n371,96079,3.0,1462746836\n371,97938,4.5,1462746090\n371,98809,2.0,1462746810\n371,103235,4.5,1462745883\n371,104303,4.5,1462744649\n371,105585,2.0,1462868905\n371,105844,4.0,1462745113\n371,109374,4.5,1462743193\n371,109487,2.5,1462741740\n371,110352,4.5,1462743821\n371,111443,3.0,1462745692\n371,112556,4.5,1462741921\n371,113829,3.5,1462868922\n371,115170,4.0,1462868738\n371,115210,4.0,1462745107\n371,116797,5.0,1462737571\n371,117176,5.0,1462737932\n371,118696,2.0,1462738278\n371,122882,0.5,1462868934\n371,122886,1.0,1462734459\n371,122888,5.0,1473624419\n371,122904,1.0,1462885196\n371,134130,4.5,1462741940\n371,134853,4.5,1462741931\n371,137857,4.0,1462745935\n371,138208,4.5,1462741804\n371,139385,4.0,1462734470\n371,140110,4.5,1472325135\n371,142448,4.0,1462745546\n371,143385,4.5,1462745370\n371,148626,4.0,1462747151\n372,242,3.0,958004753\n372,265,3.0,958004317\n372,357,4.0,958004626\n372,539,4.0,958004432\n372,597,5.0,958004492\n372,902,4.0,958003634\n372,907,4.0,958003969\n372,912,4.0,958004270\n372,916,4.0,958004212\n372,945,4.0,958003970\n372,955,4.0,958004094\n372,969,4.0,958004294\n372,1066,4.0,958004094\n372,1067,4.0,958004094\n372,1079,3.0,958004154\n372,1088,4.0,958004568\n372,1172,3.0,958004346\n372,1188,3.0,958004154\n372,1220,4.0,958004879\n372,1230,3.0,958004018\n372,1278,2.0,958003656\n372,1307,4.0,958004409\n372,1537,4.0,958004047\n372,1569,4.0,958003833\n372,1641,4.0,958003782\n372,2390,3.0,958004180\n372,2424,4.0,958004841\n372,2529,2.0,958003602\n372,2671,5.0,958004544\n372,2724,5.0,958004520\n372,2791,2.0,958004018\n372,2935,4.0,958003970\n372,2942,4.0,958004588\n373,16,4.0,938979342\n373,25,4.0,938980304\n373,34,4.0,938979750\n373,36,4.0,938979530\n373,39,5.0,938979601\n373,45,4.0,938980460\n373,50,4.0,938980398\n373,111,4.0,938980398\n373,162,5.0,938980350\n373,246,5.0,938980029\n373,260,4.0,939234909\n373,265,4.0,938980350\n373,296,5.0,938979896\n373,318,5.0,938979601\n373,348,4.0,938979530\n373,356,3.0,938979970\n373,457,4.0,938979750\n373,515,4.0,938979102\n373,527,4.0,938979159\n373,538,4.0,938979970\n373,555,4.0,938980129\n373,589,4.0,938979224\n373,608,5.0,938980029\n373,778,5.0,938980029\n373,800,4.0,938979970\n373,858,5.0,939234909\n373,921,4.0,939035640\n373,994,5.0,938980350\n373,1073,4.0,939235114\n373,1077,4.0,939235206\n373,1078,4.0,939235075\n373,1079,4.0,939035899\n373,1080,4.0,939235075\n373,1090,4.0,939038160\n373,1091,1.0,939036840\n373,1096,5.0,939038160\n373,1097,3.0,939038451\n373,1124,4.0,939038451\n373,1131,4.0,939037615\n373,1132,4.0,939037615\n373,1135,4.0,939036707\n373,1136,4.0,939234909\n373,1147,5.0,938979816\n373,1172,5.0,939035640\n373,1183,5.0,938980460\n373,1193,5.0,939234909\n373,1196,4.0,939037794\n373,1197,5.0,939035640\n373,1202,4.0,939035899\n373,1206,4.0,939235113\n373,1208,4.0,939234947\n373,1211,4.0,939035899\n373,1214,3.0,939234947\n373,1220,3.0,939035899\n373,1221,5.0,939234909\n373,1225,4.0,939038160\n373,1228,5.0,939038160\n373,1230,5.0,939234948\n373,1238,4.0,939035899\n373,1242,4.0,939038160\n373,1243,4.0,938980460\n373,1244,4.0,939235075\n373,1245,5.0,938979816\n373,1246,4.0,939038451\n373,1252,5.0,939235114\n373,1259,4.0,939036360\n373,1261,5.0,939036360\n373,1263,5.0,939235075\n373,1270,2.0,939036360\n373,1273,4.0,939035692\n373,1278,3.0,939234947\n373,1285,4.0,939036360\n373,1288,5.0,939035640\n373,1292,4.0,939235038\n373,1297,2.0,939036707\n373,1299,5.0,939038451\n373,1300,5.0,939038160\n373,1307,4.0,939036623\n373,1381,2.0,939037390\n373,1387,4.0,939235173\n373,1394,5.0,939035692\n373,1395,4.0,939036840\n373,1446,3.0,938979224\n373,1537,4.0,938980029\n373,1594,4.0,938980398\n373,1617,4.0,938979689\n373,1639,3.0,938980398\n373,1663,4.0,939036707\n373,1674,4.0,939037794\n373,1678,4.0,938979102\n373,1682,3.0,938980029\n373,1704,4.0,938979648\n373,1721,3.0,938979816\n373,1784,4.0,938980460\n373,1885,4.0,938980460\n373,1913,4.0,939234948\n373,1921,2.0,938980129\n373,1922,4.0,938979970\n373,1923,4.0,938979750\n373,1954,4.0,939235173\n373,1958,3.0,939036623\n373,1961,4.0,939037615\n373,1962,3.0,939037615\n373,1965,4.0,939035692\n373,1968,3.0,939036757\n373,1982,4.0,939235114\n373,2003,3.0,939036757\n373,2011,2.0,939036757\n373,2013,3.0,939235206\n373,2020,4.0,939037615\n373,2022,4.0,939038451\n373,2028,3.0,938979530\n373,2054,3.0,939036920\n373,2064,4.0,939036623\n373,2065,4.0,939035692\n373,2073,3.0,939036793\n373,2081,2.0,939036623\n373,2088,2.0,939037390\n373,2100,3.0,939036873\n373,2108,4.0,938979601\n373,2109,4.0,939235173\n373,2112,3.0,938980398\n373,2114,3.0,939037615\n373,2134,2.0,939036757\n373,2137,4.0,939235173\n373,2144,3.0,939036707\n373,2145,2.0,939036757\n373,2150,3.0,939035692\n373,2174,4.0,939035692\n373,2194,4.0,939037794\n373,2241,3.0,939036840\n373,2243,4.0,939036360\n373,2245,3.0,939036840\n373,2246,2.0,939037390\n373,2247,4.0,939036920\n373,2248,4.0,939035692\n373,2255,3.0,939035899\n373,2262,3.0,939037390\n373,2290,4.0,939037341\n373,2291,4.0,938979896\n373,2294,3.0,938979750\n373,2301,3.0,939035899\n373,2302,3.0,938980304\n373,2303,4.0,939235173\n373,2312,4.0,939037794\n373,2313,4.0,939037615\n373,2318,5.0,938980460\n373,2324,5.0,938979896\n373,2333,4.0,938979970\n373,2349,3.0,939035692\n373,2352,4.0,939036840\n373,2356,4.0,938978788\n373,2369,3.0,939037341\n373,2371,1.0,939036360\n373,2372,1.0,939036873\n373,2375,1.0,939035640\n373,2378,1.0,939036757\n373,2379,1.0,939037341\n373,2380,1.0,939037390\n373,2381,1.0,939037390\n373,2382,1.0,939037341\n373,2383,1.0,939037341\n373,2389,3.0,938978849\n373,2390,4.0,938979816\n373,2391,5.0,938979530\n373,2395,5.0,938978380\n373,2396,4.0,938978659\n373,2406,3.0,939035640\n373,2407,1.0,939035640\n373,2413,1.0,939036757\n373,2416,3.0,939035692\n373,2417,3.0,939036920\n373,2442,3.0,938978788\n373,2443,3.0,938979970\n373,2457,3.0,939036793\n373,2463,3.0,939035899\n373,2469,3.0,939036920\n373,2473,1.0,939037390\n373,2492,3.0,938978849\n373,2504,2.0,938978849\n373,2518,3.0,939035692\n373,2520,4.0,939235113\n373,2528,3.0,939235206\n373,2539,3.0,938978702\n373,2542,4.0,938978788\n373,2567,3.0,938978849\n373,2580,4.0,938978788\n373,2583,4.0,938978702\n373,2589,4.0,938978887\n373,2598,3.0,938978887\n373,2599,5.0,938980350\n373,2617,3.0,938978887\n373,2628,1.0,938980129\n373,2657,3.0,939234909\n373,2710,4.0,938977877\n373,2712,3.0,938977943\n373,2716,2.0,939035640\n373,2717,2.0,939037390\n373,2730,4.0,939235206\n373,2733,1.0,939037390\n373,2750,4.0,939036793\n373,2770,3.0,938977795\n373,2779,3.0,939235206\n373,2791,4.0,939035640\n373,2792,2.0,939037341\n373,2794,1.0,939037341\n373,2795,3.0,939036793\n373,2797,2.0,939035640\n373,2819,4.0,939234947\n373,2844,4.0,938978001\n373,2858,5.0,938977762\n373,2890,4.0,938977834\n373,2915,4.0,939036757\n373,2918,3.0,939036707\n373,2924,4.0,939235075\n373,2926,4.0,939036840\n373,2971,4.0,939234909\n373,2973,5.0,939037420\n373,5060,4.0,939235038\n374,1025,3.0,1038954848\n374,1197,1.0,1038954785\n374,1210,4.0,1038954906\n374,1961,4.0,1038954808\n374,2028,4.0,1038954848\n374,3252,4.0,1038954883\n374,3392,3.0,1038954906\n374,3614,2.0,1038954848\n374,4010,3.0,1038954848\n374,4284,3.0,1038954865\n374,4886,3.0,1038955053\n374,5092,3.0,1038955184\n374,5151,4.0,1038955202\n374,5225,5.0,1038955006\n374,5254,5.0,1038955155\n374,5293,4.0,1038955053\n374,5312,5.0,1038955202\n374,5313,3.0,1038955184\n374,5323,1.0,1038955309\n374,5324,4.0,1038955249\n374,5329,5.0,1038955053\n374,5349,3.0,1038955053\n374,5378,4.0,1038955053\n374,5387,5.0,1038955309\n374,5388,4.0,1038955155\n374,5400,4.0,1038955184\n374,5414,4.0,1038955310\n374,5415,5.0,1038955310\n374,5419,3.0,1038955249\n374,5449,3.0,1038955249\n374,5481,2.0,1038954785\n374,5841,1.0,1038955532\n374,5927,1.0,1038955397\n375,10,4.0,845491929\n375,110,3.0,845491999\n375,150,5.0,845491809\n375,165,3.0,845491845\n375,231,1.0,845491869\n375,253,5.0,845491999\n375,288,4.0,845491999\n375,296,4.0,845491809\n375,316,3.0,845491869\n375,329,4.0,845491901\n375,344,2.0,845491845\n375,349,5.0,845491845\n375,356,4.0,845491901\n375,377,5.0,845492059\n375,380,4.0,845491809\n375,434,3.0,845491901\n375,454,5.0,845491999\n375,457,4.0,845491870\n375,480,4.0,845491901\n375,588,1.0,845491845\n375,589,3.0,845492059\n375,590,3.0,845491809\n375,592,4.0,845491809\n375,593,5.0,845491869\n375,595,1.0,845491869\n376,318,4.0,974427397\n376,527,5.0,974427310\n376,593,5.0,974427228\n376,852,2.0,1005529265\n376,858,4.0,974427270\n376,904,4.0,1005529990\n376,908,3.0,1005529964\n376,910,5.0,1005530013\n376,912,4.0,1005529913\n376,920,5.0,974427329\n376,922,5.0,1005529937\n376,926,4.0,1005530030\n376,942,3.0,1005529990\n376,1183,5.0,974426796\n376,1193,5.0,974426796\n376,1207,5.0,1005529913\n376,1212,3.0,1005529266\n376,1219,5.0,1005530013\n376,1221,4.0,974427228\n376,1230,4.0,974427375\n376,1233,4.0,1005530069\n376,1247,5.0,1005530069\n376,1254,5.0,1005529964\n376,1267,4.0,1005529990\n376,1299,5.0,1005529823\n376,1938,4.0,974427354\n376,1945,5.0,1005529889\n376,1952,4.0,1005529964\n376,1956,5.0,974427228\n376,1957,3.0,1005530135\n376,1961,5.0,974426827\n376,2132,5.0,1005530135\n376,2396,5.0,1005529937\n376,2944,2.0,974426827\n376,2969,4.0,1005529823\n376,3095,4.0,1005530088\n376,3201,4.0,974427354\n376,3330,4.0,974427251\n376,3350,4.0,1005530069\n376,3467,3.0,1005530069\n376,3468,3.0,1005529163\n376,3549,4.0,1005529841\n376,3678,4.0,974427290\n376,3685,3.0,974426663\n376,3916,3.0,1005529235\n376,3948,2.0,1005529235\n376,3978,2.0,1005529163\n376,3980,3.0,1005529235\n376,4223,4.0,1005529410\n376,4226,2.0,1005529410\n376,4234,3.0,1005529442\n376,4238,5.0,1005529442\n376,4239,2.0,1005529410\n376,4263,5.0,1005530088\n376,4270,1.0,1005529472\n376,4306,3.0,1005529410\n376,4361,5.0,1005530013\n376,4427,5.0,1005529858\n376,4432,4.0,1005530069\n377,262,4.0,1187053471\n377,542,3.5,1187053497\n377,595,4.5,1187053714\n377,724,5.0,1187053874\n377,934,3.0,1187053490\n377,1344,3.0,1187053434\n377,1848,4.0,1187053762\n377,2124,3.5,1187053642\n377,2174,2.5,1187053722\n377,2622,2.5,1187053517\n377,3754,2.0,1187053650\n377,4899,4.5,1187053751\n377,4980,4.0,1187053744\n377,7444,3.0,1187053630\n377,8666,3.5,1187053812\n377,30793,5.0,1187053818\n377,41566,4.0,1187053846\n377,44225,2.5,1187053684\n377,49647,3.5,1187053826\n377,52975,3.0,1187054114\n377,53125,2.5,1187054108\n377,53974,2.0,1187054127\n377,53993,3.0,1187053620\n377,54004,2.5,1187054120\n377,54272,3.5,1187054100\n378,50,3.0,1443291723\n378,293,4.0,1443291942\n378,296,4.5,1443291864\n378,318,4.0,1443291712\n378,372,3.5,1443293335\n378,527,4.0,1443291728\n378,551,4.0,1443292516\n378,750,4.0,1443291924\n378,778,4.5,1443293328\n378,902,3.5,1443294654\n378,903,4.0,1443292011\n378,1073,3.0,1443292606\n378,1089,4.0,1443291960\n378,1120,3.5,1443294063\n378,1193,4.5,1443291735\n378,1199,4.5,1443292128\n378,1206,4.0,1443292022\n378,1235,4.5,1443292141\n378,1244,3.5,1443292031\n378,1258,4.0,1443294005\n378,1265,3.0,1443292295\n378,1271,3.5,1443294585\n378,1285,3.5,1443292515\n378,1333,3.5,1443292505\n378,1653,3.5,1443292470\n378,1884,3.5,1443292527\n378,1968,3.5,1443292399\n378,2174,3.5,1443295158\n378,2291,4.0,1443295133\n378,2500,2.5,1443293348\n378,2502,3.0,1443292117\n378,2542,4.5,1443293280\n378,2692,3.0,1443294427\n378,2729,4.0,1443294014\n378,2858,3.5,1443291877\n378,2918,3.5,1443292168\n378,2959,4.5,1443291865\n378,3147,3.0,1443292722\n378,3408,3.0,1443291752\n378,3462,4.0,1443291967\n378,3535,4.5,1443625623\n378,3793,0.5,1443625488\n378,3844,3.5,1443294608\n378,3897,3.5,1443294963\n378,3949,4.0,1443293368\n378,3967,4.0,1443292439\n378,3992,4.0,1443292729\n378,4011,4.0,1443293263\n378,4022,3.0,1443294370\n378,4226,4.5,1443293243\n378,4246,2.5,1443625530\n378,4306,0.5,1443625487\n378,4447,0.5,1443625603\n378,4848,4.5,1443625554\n378,4878,4.5,1443292188\n378,4886,0.5,1443625482\n378,4963,0.5,1443625478\n378,4979,4.0,1443292460\n378,5218,0.5,1443625534\n378,5349,0.5,1443625454\n378,5418,0.5,1443625499\n378,5989,4.5,1443625470\n378,5991,3.0,1443625615\n378,5995,4.0,1443291969\n378,6367,3.0,1443294906\n378,6377,0.5,1443625494\n378,6539,0.5,1443625489\n378,6710,3.0,1443294175\n378,6870,4.0,1443292341\n378,6874,4.0,1443293193\n378,6942,3.5,1443293068\n378,6953,3.5,1443625875\n378,7254,2.5,1443625610\n378,7323,4.5,1443292228\n378,7438,4.0,1443293200\n378,7451,2.0,1443625817\n378,8360,0.5,1443625509\n378,8376,3.5,1443625666\n378,8665,0.5,1443625513\n378,8957,0.5,1443625747\n378,8961,0.5,1443625460\n378,8984,0.5,1443625865\n378,30749,3.5,1443293210\n378,30793,4.0,1443295152\n378,30812,3.0,1443292716\n378,32898,4.0,1443292552\n378,33679,0.5,1443625653\n378,33794,0.5,1443625500\n378,37729,4.0,1443295136\n378,46578,4.5,1443292223\n378,47610,3.5,1443294439\n378,48738,4.0,1443293001\n378,50912,3.5,1443294446\n378,52722,0.5,1443625829\n378,53318,3.5,1443294238\n378,54190,4.0,1443295025\n378,54286,0.5,1443625536\n378,55052,4.5,1443293010\n378,55247,3.0,1443293517\n378,56367,3.5,1443293153\n378,56715,4.0,1443295224\n378,58559,0.5,1443625495\n378,60069,0.5,1443625516\n378,61240,3.0,1443293448\n378,62849,4.0,1443293284\n378,63082,4.0,1443292201\n378,64034,3.5,1443292389\n378,64957,3.0,1443625801\n378,68073,4.5,1443294941\n378,68157,4.5,1443293373\n378,71899,3.0,1443293511\n378,72226,3.5,1443293802\n378,74458,3.5,1443292219\n378,76251,3.0,1443625781\n378,79132,4.0,1443293185\n378,80463,3.0,1443293670\n378,81591,3.5,1443292339\n378,82931,3.5,1443292894\n378,86504,4.0,1443293260\n378,86882,4.0,1443294242\n378,88810,4.5,1443292213\n378,90376,4.0,1443292569\n378,91500,1.0,1443625827\n378,95873,3.5,1443294223\n378,96373,4.0,1443292675\n378,96821,4.0,1443625938\n378,97921,4.0,1443292410\n378,99114,4.5,1443292054\n378,101741,4.5,1443293035\n378,104374,4.0,1443294481\n378,104863,3.5,1443294539\n378,105593,4.0,1443293029\n378,106100,3.5,1443293425\n378,106438,3.5,1443292420\n378,109374,4.5,1443293315\n378,110645,4.5,1443292853\n378,111622,2.5,1443293065\n378,112556,2.5,1443292203\n378,112804,4.0,1443294103\n378,114265,3.5,1443293076\n378,115569,3.0,1443293683\n378,116797,4.5,1443291760\n378,116897,4.5,1443293566\n378,117176,3.5,1443292443\n378,129653,3.0,1443292970\n378,130580,3.5,1443293021\n378,134569,3.5,1443293964\n379,1,3.5,1378180411\n379,32,4.0,1378180038\n379,47,4.5,1378180195\n379,110,4.0,1378180018\n379,296,4.5,1378180188\n379,318,5.0,1378179951\n379,356,4.5,1378180177\n379,457,3.5,1378180023\n379,527,4.5,1378179962\n379,589,4.0,1378180198\n379,593,4.0,1378180173\n379,778,4.5,1378180065\n379,1080,4.0,1378180057\n379,1136,4.0,1378180225\n379,1206,4.0,1378180102\n379,1225,3.0,1378180129\n379,1240,4.0,1378180034\n379,1586,1.0,1378179748\n379,1682,3.5,1378180260\n379,1704,3.5,1378180184\n379,1717,2.0,1378179751\n379,1732,4.5,1378180302\n379,1831,4.0,1378179739\n379,1955,4.0,1378179847\n379,1961,4.0,1378180237\n379,2002,3.0,1378179689\n379,2028,4.5,1378180217\n379,2194,4.0,1378180068\n379,2278,3.0,1378179675\n379,2324,4.0,1378180111\n379,2329,4.0,1378180267\n379,2571,4.0,1378180271\n379,2720,3.5,1378179904\n379,2762,3.5,1378180030\n379,2808,1.5,1378179891\n379,2858,4.5,1378180208\n379,2959,4.0,1378180317\n379,2986,3.5,1378179824\n379,2997,4.0,1378180076\n379,3005,4.5,1378179771\n379,3113,4.0,1378179814\n379,3147,4.5,1378180191\n379,3273,2.0,1378179779\n379,3578,4.0,1378180278\n379,3717,3.0,1378179695\n379,3949,4.5,1378180296\n379,4306,3.5,1378180015\n379,4878,4.5,1378180308\n379,4963,3.5,1378180326\n379,4973,3.5,1378180265\n379,4993,4.0,1378180312\n379,5418,3.5,1378180358\n379,5952,4.0,1378180322\n379,5989,3.5,1378180304\n379,5995,4.5,1378180291\n379,6377,4.0,1378180276\n379,6503,2.0,1378179914\n379,6539,2.5,1378180355\n379,6874,3.0,1378180336\n379,6947,3.0,1378179788\n379,7153,4.0,1378180341\n379,7361,4.0,1378180315\n379,7438,3.0,1378180338\n379,8665,3.5,1378180376\n379,30707,3.5,1378180055\n379,44555,4.5,1378179982\n379,46578,1.5,1378180350\n379,48394,4.0,1378180373\n379,48516,4.0,1378180365\n379,58559,4.0,1378179986\n379,63082,3.0,1378180369\n380,1,4.0,1048092869\n380,6,4.0,952358438\n380,11,2.0,949367730\n380,16,4.0,1204995996\n380,19,4.0,949367918\n380,21,4.0,949367561\n380,22,3.0,1151120862\n380,24,3.0,949384487\n380,25,4.0,949374401\n380,32,5.0,1038621928\n380,34,4.0,949367479\n380,39,3.0,949367778\n380,45,3.0,949367602\n380,47,5.0,1038621751\n380,50,5.0,1022553465\n380,81,2.5,1151120724\n380,104,4.0,994729376\n380,110,5.0,949368612\n380,145,3.0,949368908\n380,150,4.0,1115007153\n380,161,4.0,1115007216\n380,180,3.0,949367730\n380,185,0.5,1053104159\n380,196,2.0,950073791\n380,209,3.0,949384839\n380,223,5.0,949367653\n380,235,2.0,949367561\n380,246,4.0,949373968\n380,253,4.0,1078365598\n380,260,4.0,1151120183\n380,293,4.0,1048092878\n380,296,5.0,949369345\n380,300,4.0,949374246\n380,316,4.0,950073716\n380,318,4.0,1151120177\n380,322,4.0,1055871639\n380,327,1.0,949368459\n380,333,4.0,949367975\n380,337,2.0,949374184\n380,339,2.0,949367975\n380,344,4.0,949367918\n380,353,4.0,949368805\n380,356,5.0,949367498\n380,367,3.0,949367730\n380,379,4.0,950073716\n380,380,3.0,949367516\n380,410,3.0,949367750\n380,438,3.0,994729891\n380,463,3.0,968949106\n380,471,4.0,949367667\n380,474,4.0,1246055968\n380,480,4.0,949368305\n380,508,4.0,949374266\n380,514,3.0,949367627\n380,539,1.5,1115007209\n380,541,4.0,950073539\n380,542,3.0,994729706\n380,543,4.0,949367778\n380,587,2.0,949367653\n380,588,4.0,994729345\n380,589,4.0,949368612\n380,590,4.0,949370820\n380,592,4.5,1053103704\n380,593,5.0,949371458\n380,597,3.0,1151120242\n380,608,4.0,1069525211\n380,628,4.0,949374493\n380,647,4.0,949374342\n380,653,3.0,1151120362\n380,708,3.0,949367730\n380,733,4.0,1151120237\n380,737,1.0,950073791\n380,750,4.5,1153282831\n380,780,4.0,949368348\n380,785,2.0,949367778\n380,788,3.0,950073791\n380,802,4.0,949384786\n380,810,0.5,1053104130\n380,829,1.0,994729981\n380,832,4.0,949367256\n380,849,2.0,950073791\n380,852,2.0,949367580\n380,858,4.5,1074218298\n380,880,2.0,949368459\n380,924,5.0,950073539\n380,968,4.0,1153284618\n380,999,4.0,949369503\n380,1036,4.0,1115007251\n380,1037,4.0,950073716\n380,1042,2.0,994728530\n380,1047,4.0,949369753\n380,1060,4.0,949367778\n380,1061,4.0,949369503\n380,1073,4.0,994729345\n380,1089,4.0,949371584\n380,1090,5.0,994728493\n380,1120,4.0,1155144266\n380,1129,4.0,950073667\n380,1136,4.0,1100625853\n380,1193,3.0,949367256\n380,1196,4.0,949368575\n380,1197,5.0,949368044\n380,1200,4.0,1115007263\n380,1208,3.0,1050185494\n380,1210,4.0,1199154622\n380,1214,4.0,1048092868\n380,1215,5.0,1044822050\n380,1220,4.0,949368720\n380,1221,4.0,1074218307\n380,1222,3.5,1152117709\n380,1225,5.0,1133970781\n380,1228,4.0,1153282854\n380,1240,5.0,949368088\n380,1242,4.0,949368575\n380,1246,3.5,1171815872\n380,1257,4.0,1155347240\n380,1263,4.0,1151120719\n380,1265,4.0,949367498\n380,1267,4.0,990807007\n380,1270,3.0,949367239\n380,1272,4.5,1155144385\n380,1275,4.0,1155347237\n380,1285,4.0,1048092872\n380,1302,4.0,949369098\n380,1339,3.5,1151120799\n380,1358,4.0,1151120148\n380,1374,4.0,950073603\n380,1387,4.0,949368575\n380,1391,1.0,949368459\n380,1393,4.0,1153282390\n380,1394,4.0,1115007312\n380,1405,3.0,949367869\n380,1409,3.0,949367918\n380,1441,3.0,949367535\n380,1474,2.0,951715390\n380,1476,4.0,949367818\n380,1500,4.0,949367653\n380,1513,3.0,949367975\n380,1515,1.0,951715614\n380,1517,5.0,949367602\n380,1518,1.0,949368909\n380,1527,4.0,950073603\n380,1544,3.0,949368459\n380,1573,3.0,949368348\n380,1580,3.0,949367627\n380,1584,4.0,950073603\n380,1586,1.0,949367256\n380,1591,4.0,949368498\n380,1603,2.0,949368459\n380,1604,3.0,949371159\n380,1608,2.0,949368924\n380,1610,4.0,949368700\n380,1625,4.0,1152398273\n380,1639,4.0,949374109\n380,1645,3.5,1151120586\n380,1646,3.0,994729949\n380,1648,4.0,1220050526\n380,1653,4.0,949368305\n380,1667,2.0,949368909\n380,1672,4.0,949374401\n380,1676,3.0,950073667\n380,1682,4.0,949374401\n380,1704,4.0,949374184\n380,1713,0.5,1053104127\n380,1721,3.0,949367125\n380,1729,3.0,949369395\n380,1747,2.0,949367653\n380,1748,4.0,1197778932\n380,1769,3.0,949368781\n380,1772,1.0,1242341788\n380,1777,3.0,1151120513\n380,1779,2.0,949370325\n380,1784,4.0,949367479\n380,1805,3.0,949374423\n380,1810,3.0,949374301\n380,1831,2.0,949368410\n380,1833,2.0,949370997\n380,1876,3.0,949368348\n380,1882,2.0,950073823\n380,1883,3.0,949367889\n380,1894,2.0,1048092873\n380,1909,3.0,949368348\n380,1911,3.0,949369220\n380,1917,4.0,949368379\n380,1923,5.0,949371402\n380,1961,4.0,1078365659\n380,1968,4.0,1155347244\n380,2000,4.0,994729345\n380,2009,4.0,950073667\n380,2028,5.0,949368545\n380,2034,2.0,950073716\n380,2058,2.0,1048092875\n380,2060,3.0,994729706\n380,2064,4.0,949373968\n380,2105,4.0,950073603\n380,2108,3.0,949367682\n380,2109,4.0,949368155\n380,2124,4.0,949367223\n380,2138,4.0,1199154787\n380,2167,4.0,949368827\n380,2174,3.5,1151120809\n380,2195,3.0,949370464\n380,2231,3.5,1076467613\n380,2268,4.0,949374367\n380,2273,3.0,949368909\n380,2288,3.0,950073539\n380,2291,4.0,949374342\n380,2302,3.0,949367516\n380,2324,4.0,949371535\n380,2329,4.0,1053104268\n380,2334,4.0,949370917\n380,2340,2.0,1048092867\n380,2353,3.5,1115007320\n380,2355,4.0,949367479\n380,2359,4.0,949369890\n380,2387,3.0,989251546\n380,2392,1.0,994729891\n380,2395,4.0,949384532\n380,2396,3.0,949367479\n380,2424,1.0,949367869\n380,2427,3.0,949372111\n380,2428,1.0,949368459\n380,2433,4.0,949384407\n380,2455,4.0,950073603\n380,2456,3.0,950073791\n380,2468,2.0,994729734\n380,2478,2.0,949372204\n380,2485,3.0,949384532\n380,2490,5.0,949373828\n380,2501,4.0,949374184\n380,2502,4.0,997744381\n380,2539,4.0,949367750\n380,2541,3.5,1053103977\n380,2542,4.0,1156983208\n380,2549,2.0,950073716\n380,2558,2.0,949367479\n380,2571,5.0,949368060\n380,2572,3.5,1053103879\n380,2574,0.5,1053104102\n380,2580,4.0,949369377\n380,2587,3.0,949367841\n380,2597,2.0,964459351\n380,2598,3.0,967766964\n380,2599,3.0,949367432\n380,2605,3.0,949384450\n380,2613,3.0,950073667\n380,2616,2.0,979503268\n380,2628,3.0,950073667\n380,2671,4.0,950074721\n380,2672,3.0,949384532\n380,2681,3.0,981849626\n380,2683,5.0,956018176\n380,2687,4.0,949371249\n380,2688,3.0,952965036\n380,2694,3.0,949371991\n380,2700,5.0,949367561\n380,2701,2.0,994728875\n380,2702,2.0,952015158\n380,2706,4.0,949371991\n380,2707,4.0,1153283007\n380,2710,2.0,1038622299\n380,2719,2.0,949372244\n380,2722,2.0,994728918\n380,2723,2.0,994729037\n380,2724,2.0,953139668\n380,2759,2.0,979503268\n380,2761,3.0,1225671627\n380,2762,5.0,949370886\n380,2770,2.0,952358473\n380,2771,2.0,969466047\n380,2779,4.0,1153284033\n380,2791,4.0,1204995992\n380,2804,4.5,1053103779\n380,2805,3.0,951715000\n380,2809,1.0,981849644\n380,2841,3.0,953788712\n380,2858,5.0,1006212693\n380,2860,2.0,953571161\n380,2866,4.0,1153284395\n380,2872,4.0,949368700\n380,2882,2.0,970549299\n380,2883,4.0,965239787\n380,2890,4.5,1053103721\n380,2906,1.0,968176527\n380,2916,4.0,949368739\n380,2918,5.0,994729207\n380,2959,5.0,956954136\n380,2968,4.0,949369949\n380,2976,2.0,1001111262\n380,2987,4.0,949384532\n380,2996,2.0,965665129\n380,2997,4.0,959705699\n380,3020,4.0,1220050520\n380,3033,5.0,950073667\n380,3052,4.0,993057415\n380,3053,3.0,955343269\n380,3054,1.0,949367373\n380,3082,3.0,979575715\n380,3088,4.0,1268687863\n380,3098,4.0,1153283553\n380,3114,5.0,949367296\n380,3135,4.0,950074494\n380,3138,3.0,949372204\n380,3146,2.0,961968982\n380,3147,3.0,961606813\n380,3148,3.5,1151120635\n380,3156,2.0,984417990\n380,3157,3.0,959705699\n380,3173,4.0,949367359\n380,3174,3.0,1038622400\n380,3175,3.0,979019170\n380,3176,3.0,963252658\n380,3178,3.0,990807007\n380,3186,3.0,992365496\n380,3189,3.0,965665061\n380,3210,4.0,950074494\n380,3219,4.0,949372137\n380,3247,2.0,949369580\n380,3248,2.0,949372204\n380,3252,4.0,1153282407\n380,3253,3.0,949367535\n380,3254,3.0,949367653\n380,3255,3.0,949367730\n380,3263,4.5,1053103805\n380,3287,3.0,951714891\n380,3298,3.0,965065592\n380,3300,2.5,1086972554\n380,3301,3.0,951882253\n380,3354,2.0,984417939\n380,3361,4.0,1022553465\n380,3362,5.0,994729178\n380,3408,3.0,971651444\n380,3421,5.0,994729178\n380,3471,4.5,1153284501\n380,3480,4.0,1151120802\n380,3481,3.5,1153284384\n380,3494,3.5,1354053692\n380,3499,3.5,1153283616\n380,3510,3.0,992365439\n380,3534,2.0,988050629\n380,3536,3.0,990807119\n380,3552,4.0,1197778962\n380,3555,4.0,991199217\n380,3578,5.0,1038621571\n380,3593,1.0,994873570\n380,3615,3.0,962915584\n380,3617,3.0,982004037\n380,3624,4.0,960827657\n380,3646,2.0,989251570\n380,3671,4.0,1199154721\n380,3717,2.0,993529575\n380,3744,3.0,988821724\n380,3751,3.0,975348298\n380,3752,3.0,1048092874\n380,3753,3.0,994729037\n380,3755,3.0,978244558\n380,3786,3.0,1038622299\n380,3793,4.0,965065617\n380,3798,3.0,998410567\n380,3809,4.0,1153283303\n380,3827,2.0,1001111219\n380,3861,2.5,1151120614\n380,3896,4.0,1012852143\n380,3897,4.0,971651424\n380,3901,2.0,1009990947\n380,3916,4.0,1008344514\n380,3948,3.0,984244305\n380,3949,4.0,1153282715\n380,3950,4.0,1171814768\n380,3952,4.0,1003769204\n380,3968,2.5,1053104054\n380,3977,4.0,989943421\n380,3979,1.0,1007181649\n380,3988,3.0,1038622363\n380,3994,5.0,1038621928\n380,3996,4.0,1003169272\n380,4002,5.0,995904491\n380,4007,4.5,1153283940\n380,4011,4.0,994637811\n380,4015,3.0,994637831\n380,4022,3.0,994091053\n380,4023,3.0,1029429105\n380,4025,2.0,1004982771\n380,4027,5.0,1038621697\n380,4033,4.0,1038622062\n380,4069,1.0,1115007342\n380,4102,4.5,1153282411\n380,4105,2.5,1155061803\n380,4161,3.0,1003769107\n380,4220,4.0,1199154794\n380,4223,4.0,1153282297\n380,4226,5.0,991669535\n380,4239,4.0,1048092877\n380,4246,3.0,991157991\n380,4247,3.0,1004982717\n380,4280,4.0,1153283978\n380,4306,5.0,991158013\n380,4310,3.5,1053103860\n380,4322,4.0,1199154633\n380,4340,2.0,1006212576\n380,4343,2.0,1038622575\n380,4344,3.0,1007502145\n380,4367,4.0,1008046507\n380,4369,2.0,1078365724\n380,4370,3.0,994637876\n380,4406,4.0,1184514649\n380,4448,4.0,1009441827\n380,4452,3.0,1009047007\n380,4465,4.0,1215786625\n380,4489,2.0,994729305\n380,4557,4.0,1153283265\n380,4571,4.0,994729376\n380,4623,4.0,994729178\n380,4638,2.0,1038621952\n380,4643,3.5,1053103757\n380,4718,3.0,1018399636\n380,4720,3.0,1022553338\n380,4732,4.0,1033057720\n380,4734,4.0,1015897410\n380,4757,1.5,1151120437\n380,4776,3.0,1003508362\n380,4814,3.0,1019061388\n380,4816,2.0,1016300050\n380,4823,2.5,1053103964\n380,4844,3.0,1018399550\n380,4867,3.0,1022553383\n380,4874,4.0,1021304631\n380,4878,4.0,1170867504\n380,4886,4.0,1048092870\n380,4887,3.0,1038621698\n380,4889,3.0,1008006336\n380,4890,4.0,1006212524\n380,4896,3.0,1038622632\n380,4901,4.0,1020494331\n380,4963,4.0,1009991008\n380,4973,4.5,1153282787\n380,4974,4.0,1045103540\n380,4975,4.0,1023827848\n380,4979,2.5,1053104082\n380,4993,4.5,1153282692\n380,4994,3.0,1025496071\n380,4995,4.0,1025388876\n380,5010,5.0,1017676921\n380,5013,2.0,1028754810\n380,5025,4.0,1024880901\n380,5048,2.0,1023827988\n380,5055,4.5,1151120353\n380,5110,3.5,1058381430\n380,5152,4.0,1153757517\n380,5218,3.0,1204995713\n380,5219,3.5,1053103931\n380,5254,4.0,1031532128\n380,5266,2.5,1152398921\n380,5293,3.0,1032798486\n380,5294,4.5,1153597554\n380,5312,4.0,1034014255\n380,5349,4.0,1024641174\n380,5378,2.5,1117220231\n380,5388,4.0,1023127593\n380,5418,3.0,1024274794\n380,5445,4.0,1042475027\n380,5464,3.5,1066321825\n380,5481,4.5,1053103604\n380,5502,3.5,1092439838\n380,5505,3.5,1151120422\n380,5507,2.5,1058381465\n380,5523,2.0,1069525336\n380,5528,3.0,1033324686\n380,5530,1.0,1058829635\n380,5572,2.5,1084989370\n380,5574,2.5,1069525481\n380,5577,4.0,1153283628\n380,5617,3.5,1153284587\n380,5666,2.5,1104376275\n380,5669,4.0,1153284609\n380,5673,3.5,1069525365\n380,5782,4.5,1153282710\n380,5803,2.5,1069525416\n380,5810,4.0,1038785257\n380,5816,3.0,1069525444\n380,5872,3.0,1038621079\n380,5900,2.0,1071899862\n380,5903,4.0,1197778967\n380,5927,1.0,1038622131\n380,5945,2.5,1070843893\n380,5952,4.0,1042474998\n380,5954,3.5,1074399322\n380,5989,3.5,1080662949\n380,5991,3.0,1078365333\n380,5995,4.0,1156983259\n380,6003,4.0,1151120520\n380,6013,2.5,1076945856\n380,6060,2.5,1087696504\n380,6157,3.5,1076467637\n380,6188,3.5,1152398938\n380,6212,3.0,1076945804\n380,6263,2.0,1081652787\n380,6281,2.5,1152398928\n380,6287,3.0,1055872079\n380,6323,4.0,1153282177\n380,6333,4.0,1072749244\n380,6365,4.0,1068327371\n380,6373,3.0,1055872066\n380,6377,2.5,1153284242\n380,6378,3.5,1156303206\n380,6502,3.5,1072749195\n380,6503,1.5,1151120546\n380,6537,3.0,1057943091\n380,6539,3.5,1058381284\n380,6548,2.5,1310743035\n380,6565,4.0,1155490845\n380,6586,4.0,1062638292\n380,6587,1.5,1151120682\n380,6615,2.5,1065025743\n380,6708,4.0,1153282677\n380,6710,4.0,1153680860\n380,6753,4.0,1155491055\n380,6754,3.0,1065025711\n380,6763,1.5,1151120496\n380,6787,4.5,1153282822\n380,6863,3.0,1155308516\n380,6874,4.0,1066321806\n380,6879,3.5,1333409889\n380,6887,2.5,1101525385\n380,6890,3.0,1129613463\n380,6932,3.5,1102394150\n380,6934,4.0,1068327357\n380,6936,4.0,1070401647\n380,6947,3.0,1069525141\n380,6953,4.0,1101525306\n380,6957,5.0,1073452487\n380,6979,4.0,1197779005\n380,7090,3.5,1119206739\n380,7143,4.0,1105211195\n380,7147,4.0,1119205366\n380,7150,2.0,1115007088\n380,7153,3.5,1073452510\n380,7156,5.0,1152398817\n380,7160,4.0,1225671861\n380,7162,3.0,1105211172\n380,7173,1.0,1151120441\n380,7235,3.0,1153282088\n380,7254,4.0,1113713008\n380,7263,4.0,1153282437\n380,7285,3.5,1153283966\n380,7293,3.0,1151120524\n380,7294,2.0,1084989345\n380,7317,3.5,1086806729\n380,7325,2.0,1151120488\n380,7346,3.0,1118604351\n380,7348,3.0,1112471909\n380,7361,4.5,1199155046\n380,7362,2.5,1111949891\n380,7366,3.0,1111949937\n380,7373,3.5,1104376292\n380,7438,4.0,1084989308\n380,7445,3.0,1153282166\n380,7451,3.5,1155096587\n380,7458,3.0,1153680780\n380,7481,4.5,1153283298\n380,7502,5.0,1304471638\n380,8130,3.0,1152398931\n380,8360,4.0,1087020820\n380,8361,1.0,1086107212\n380,8366,3.5,1153680417\n380,8369,1.5,1144256781\n380,8371,3.5,1116123441\n380,8376,4.0,1153283396\n380,8464,4.0,1153284402\n380,8528,3.0,1151120477\n380,8529,2.5,1153680774\n380,8622,3.5,1088543398\n380,8636,4.0,1089389819\n380,8644,3.0,1153680768\n380,8645,3.5,1153680754\n380,8665,4.0,1097088548\n380,8781,3.5,1153025788\n380,8783,3.0,1151120851\n380,8784,4.0,1153284261\n380,8796,2.5,1153284377\n380,8798,3.5,1118604367\n380,8807,4.5,1129522924\n380,8810,3.0,1129523104\n380,8860,3.0,1151120326\n380,8861,3.0,1153680829\n380,8871,3.5,1144125098\n380,8874,3.0,1251755126\n380,8910,4.0,1133970715\n380,8917,4.5,1097970305\n380,8931,3.5,1155491176\n380,8937,4.0,1153282640\n380,8946,2.5,1119207041\n380,8949,3.5,1113940524\n380,8961,5.0,1102276295\n380,8970,4.0,1129523640\n380,8972,2.0,1153680784\n380,8983,4.0,1199154734\n380,8984,2.0,1151511075\n380,8985,3.0,1151120315\n380,26614,4.0,1229224633\n380,26812,4.0,1246055424\n380,27002,4.0,1246055217\n380,27611,4.5,1246055433\n380,27706,3.5,1155489590\n380,27788,3.5,1152117692\n380,27821,3.0,1153680815\n380,27831,4.0,1161572315\n380,27846,4.0,1199154944\n380,27899,3.0,1116190852\n380,27904,3.0,1305558898\n380,27912,4.0,1170867664\n380,30707,4.0,1153326390\n380,30793,4.0,1155142978\n380,30810,3.0,1105381228\n380,30812,4.0,1133675627\n380,30822,3.0,1153680404\n380,30825,2.0,1151120485\n380,31162,3.0,1153282973\n380,31221,3.0,1151120033\n380,31685,2.5,1153680800\n380,31696,3.0,1112471722\n380,31878,4.5,1153283821\n380,32587,4.5,1159573403\n380,32598,2.5,1151120529\n380,33004,3.5,1142815839\n380,33154,3.5,1173473257\n380,33162,3.5,1156526639\n380,33166,4.5,1156430563\n380,33493,4.5,1153282385\n380,33615,2.5,1150651050\n380,33660,4.0,1151511003\n380,33679,3.5,1142815935\n380,33794,3.5,1148239951\n380,33826,4.0,1285369134\n380,34048,2.5,1153680802\n380,34129,2.0,1153025742\n380,34143,2.0,1153025760\n380,34150,2.5,1159573386\n380,34162,4.0,1154806067\n380,34319,2.5,1310743041\n380,34332,3.0,1153680610\n380,34334,2.0,1148314797\n380,34338,4.0,1155491411\n380,34405,4.5,1157857147\n380,34523,3.5,1164517078\n380,34530,1.0,1151120096\n380,34536,4.0,1153283179\n380,35836,4.0,1153282662\n380,36401,2.0,1151511026\n380,36517,3.5,1155741035\n380,36529,4.0,1154322415\n380,36708,4.0,1171815526\n380,37380,3.0,1157258500\n380,37384,3.5,1167183334\n380,37727,1.5,1154806042\n380,37853,3.0,1170867632\n380,38798,3.0,1156701450\n380,38992,3.0,1156039257\n380,39398,3.0,1184952665\n380,40278,4.0,1148078041\n380,40583,3.5,1157348935\n380,40614,3.0,1148077881\n380,40819,3.5,1220050412\n380,40851,2.0,1156526623\n380,40946,4.0,1304471407\n380,41566,2.5,1158767654\n380,41569,3.5,1155489556\n380,41716,4.0,1159767674\n380,41997,4.0,1285369110\n380,42011,2.0,1162226503\n380,42725,4.0,1185810894\n380,42738,3.0,1262394454\n380,43396,3.5,1199154505\n380,43928,3.0,1155830948\n380,43936,2.0,1176911757\n380,44191,4.5,1157840394\n380,44195,4.5,1167183311\n380,44199,4.0,1185810699\n380,44665,4.0,1198282619\n380,44761,4.5,1172374512\n380,44788,4.0,1176911727\n380,44974,4.0,1193154257\n380,45028,2.5,1185810768\n380,45186,3.5,1170867570\n380,45447,3.5,1171174904\n380,45499,3.5,1151119951\n380,45517,3.0,1170867529\n380,45666,2.0,1204995728\n380,45672,3.0,1258735037\n380,45728,3.5,1170696076\n380,45732,3.0,1170696097\n380,45928,3.0,1185498588\n380,46322,4.0,1304471173\n380,46335,2.0,1370885737\n380,46530,4.0,1151974496\n380,46578,4.0,1198282972\n380,46723,3.5,1205101988\n380,46970,3.5,1173473238\n380,46976,4.0,1176911740\n380,47610,4.0,1172463034\n380,48304,4.5,1225671914\n380,48319,2.0,1208233354\n380,48385,3.5,1198283066\n380,48394,4.0,1193154423\n380,48516,4.0,1174961015\n380,48774,4.0,1170695971\n380,48780,4.5,1284522858\n380,48783,3.5,1198282958\n380,49272,4.0,1218317452\n380,49278,4.0,1312343953\n380,49284,3.5,1266698023\n380,49396,4.0,1204995724\n380,49530,4.0,1197778816\n380,49649,2.0,1203829080\n380,49822,4.0,1220050542\n380,50685,3.5,1234671662\n380,50794,3.5,1201755624\n380,51080,4.0,1220050394\n380,51088,4.0,1199154037\n380,51091,4.0,1220050534\n380,51255,3.0,1203829032\n380,51540,3.5,1246055795\n380,51662,4.5,1224441640\n380,52245,3.0,1357606490\n380,52281,3.0,1225671759\n380,52287,3.5,1304471450\n380,52435,4.0,1243140082\n380,52973,3.0,1220049955\n380,53000,3.0,1209272897\n380,53129,4.5,1246055906\n380,53318,3.0,1280193799\n380,53550,2.5,1243140212\n380,53894,2.5,1246055523\n380,53972,4.0,1225671892\n380,53996,3.0,1203829213\n380,54004,2.5,1219772043\n380,54259,3.5,1243140221\n380,54272,3.0,1199153758\n380,54281,3.5,1308936492\n380,54286,4.0,1243140093\n380,54331,3.5,1304471391\n380,54503,4.5,1220049950\n380,54736,3.5,1345582758\n380,54997,4.0,1231019954\n380,54999,4.0,1224441454\n380,55031,4.5,1284522937\n380,55116,4.0,1241965812\n380,55232,3.0,1199154055\n380,55267,2.5,1234671646\n380,55276,4.0,1304471179\n380,55280,4.0,1215786373\n380,55765,4.0,1255197436\n380,55820,4.0,1225672044\n380,55908,4.0,1259093551\n380,56003,3.0,1234671736\n380,56174,4.0,1200348950\n380,56367,5.0,1203274195\n380,56587,3.0,1218316887\n380,56715,3.0,1276272672\n380,56757,2.0,1227897767\n380,56782,4.5,1255197634\n380,56788,4.0,1243140203\n380,56885,3.0,1218316933\n380,56921,4.0,1229224617\n380,57368,3.0,1209790105\n380,57640,4.0,1304471487\n380,57669,4.0,1243139986\n380,58025,2.5,1219555100\n380,58154,3.0,1256498720\n380,58156,2.0,1357606451\n380,58295,4.0,1255197540\n380,58297,2.5,1262394482\n380,58559,5.0,1229224319\n380,58803,2.5,1262394420\n380,58839,2.5,1229224486\n380,58972,2.5,1215786604\n380,58998,4.0,1243140234\n380,59022,3.5,1215786528\n380,59037,2.0,1423240471\n380,59126,4.0,1238885997\n380,59315,4.0,1224441504\n380,59369,3.5,1237742818\n380,59594,3.0,1258734941\n380,59784,4.0,1243140462\n380,59810,4.5,1225671633\n380,60040,3.0,1229224418\n380,60069,4.0,1229224381\n380,60072,3.5,1229224471\n380,60074,3.5,1229224519\n380,60684,4.5,1278108067\n380,60756,4.0,1229224438\n380,61024,3.5,1304471496\n380,61132,4.0,1229224414\n380,61350,2.0,1265136805\n380,61352,3.5,1284175708\n380,61729,4.0,1246056054\n380,62155,3.5,1304471470\n380,62434,3.5,1304471463\n380,62437,3.5,1238885983\n380,62733,1.5,1280631804\n380,63072,4.0,1278107479\n380,63082,4.0,1231019895\n380,63113,3.5,1367968793\n380,63131,4.0,1265136712\n380,63859,4.0,1259093535\n380,64497,2.5,1237742861\n380,64614,4.0,1280193744\n380,64839,3.5,1341073231\n380,64957,4.0,1273036263\n380,65230,2.5,1325192031\n380,65642,3.0,1246081891\n380,65682,3.0,1262394463\n380,66934,4.0,1271694116\n380,67087,4.0,1265136692\n380,67267,3.5,1304471417\n380,67408,3.5,1304471448\n380,67734,4.0,1304471228\n380,67923,2.0,1370885731\n380,67997,3.5,1274651943\n380,68073,2.5,1304471413\n380,68159,3.5,1278729428\n380,68205,3.5,1272693158\n380,68237,4.0,1268067296\n380,68358,4.0,1253942898\n380,68791,4.0,1243784347\n380,68848,4.0,1285369269\n380,68952,3.5,1267468396\n380,68954,4.5,1245594146\n380,69122,4.5,1248563695\n380,69278,2.0,1357606461\n380,69436,1.5,1325192167\n380,69526,1.0,1310742995\n380,69606,1.5,1325191824\n380,69757,5.0,1284220402\n380,69951,3.0,1330910373\n380,70286,3.5,1250898312\n380,70336,2.5,1325191801\n380,70565,2.0,1325191835\n380,70597,2.5,1265136637\n380,70599,3.0,1284326108\n380,71057,3.5,1269482633\n380,71156,5.0,1269833118\n380,71205,3.5,1284217254\n380,71254,2.0,1325191809\n380,71264,4.0,1330910357\n380,71464,2.5,1283791912\n380,71466,3.5,1337908785\n380,71520,2.5,1325191862\n380,71530,3.0,1304471915\n380,71535,4.5,1290712046\n380,71668,2.0,1325191765\n380,71732,4.0,1282928423\n380,71745,2.0,1284522674\n380,72011,4.0,1268766965\n380,72308,4.0,1325191647\n380,72378,1.5,1325192174\n380,72489,4.0,1271482199\n380,72641,3.5,1304471147\n380,72731,2.0,1289705829\n380,72998,4.0,1261333933\n380,73015,2.5,1289761995\n380,73017,4.0,1262394512\n380,73023,3.0,1330910161\n380,73266,4.0,1278729262\n380,73268,3.0,1266685912\n380,73321,3.5,1279210727\n380,74275,4.0,1304470982\n380,74324,4.0,1284522963\n380,74458,4.0,1299351250\n380,74668,3.0,1278107490\n380,74685,4.0,1278729132\n380,74789,3.5,1268067320\n380,74795,3.5,1304471397\n380,75440,4.5,1357606444\n380,75985,3.0,1283791799\n380,76077,3.5,1282533639\n380,76093,3.5,1305558840\n380,76210,4.0,1272823168\n380,76251,4.5,1299351237\n380,76293,2.0,1325192043\n380,77364,3.5,1325191891\n380,77561,3.5,1289427383\n380,78209,4.5,1277136471\n380,78467,3.0,1325192107\n380,78469,2.5,1325192026\n380,78499,4.0,1304471106\n380,78703,3.5,1304471163\n380,79057,3.5,1292461398\n380,79091,3.5,1298682638\n380,79132,5.0,1280631729\n380,79185,2.0,1307719534\n380,79293,3.5,1325192053\n380,79299,2.5,1330910272\n380,79428,2.0,1325191779\n380,79702,5.0,1320206110\n380,80126,4.0,1325191687\n380,80166,2.5,1345582769\n380,80219,3.5,1299351013\n380,80363,3.5,1325191937\n380,80463,4.0,1357606195\n380,80489,4.0,1314630989\n380,80549,4.0,1289705853\n380,80693,3.5,1302052252\n380,80727,4.0,1304470960\n380,80831,3.5,1342972145\n380,80906,4.0,1302052203\n380,80917,3.0,1299351034\n380,81229,4.0,1298682646\n380,81516,4.0,1325191727\n380,81537,3.0,1304471007\n380,81564,4.0,1302052263\n380,81591,4.0,1330910129\n380,81782,3.5,1325191656\n380,81784,1.5,1325191613\n380,81847,4.0,1302650383\n380,82095,2.0,1304471048\n380,82202,2.5,1306518302\n380,82459,5.0,1354053689\n380,82461,3.5,1294449337\n380,82534,3.0,1345582482\n380,82852,1.5,1325192114\n380,83134,3.5,1348099816\n380,83613,2.5,1325191249\n380,83910,2.0,1325192084\n380,84152,4.5,1331684327\n380,84154,4.0,1432326972\n380,84160,3.5,1321405878\n380,84374,2.5,1352137991\n380,84392,4.0,1342972130\n380,84615,3.5,1312343884\n380,84772,3.0,1313442377\n380,84944,3.5,1330910332\n380,84954,2.5,1312343906\n380,85022,2.5,1313442428\n380,85131,2.5,1305558712\n380,85213,4.0,1330806443\n380,85397,2.0,1325192141\n380,85412,3.0,1314631004\n380,85510,4.0,1312343802\n380,86190,3.5,1335673595\n380,86293,2.0,1365440656\n380,86320,3.0,1330910443\n380,86332,3.0,1333408638\n380,86644,1.0,1370885715\n380,86833,4.0,1309904415\n380,86911,3.0,1339735415\n380,87232,4.0,1337908744\n380,87298,3.5,1325868326\n380,87306,2.5,1339735378\n380,87430,3.0,1333408750\n380,87485,2.5,1325191696\n380,87660,4.5,1341073417\n380,87869,3.0,1321405906\n380,88163,2.0,1341073290\n380,88405,3.5,1352137932\n380,88672,3.5,1325868275\n380,88744,3.0,1324429219\n380,88785,2.5,1345582728\n380,88812,3.0,1344876409\n380,89039,4.0,1345582450\n380,89047,3.5,1359520936\n380,89072,3.5,1325868216\n380,89470,4.0,1344290433\n380,89492,4.0,1357606214\n380,89745,4.0,1370732992\n380,89804,4.0,1370733128\n380,90405,4.0,1357606232\n380,90439,4.0,1341073397\n380,90719,3.5,1363372968\n380,90866,3.5,1352138013\n380,91077,3.5,1377901221\n380,91094,4.5,1325192254\n380,91483,2.5,1398564593\n380,91500,3.0,1392506403\n380,91529,4.0,1377901054\n380,91542,3.5,1365725107\n380,91622,2.5,1346648120\n380,91658,4.0,1370885530\n380,91842,3.0,1363548629\n380,91974,3.0,1358278456\n380,92234,2.5,1354053596\n380,92420,3.0,1344290120\n380,92694,3.5,1382395889\n380,93498,4.0,1334105106\n380,93510,3.5,1367424512\n380,93512,3.5,1346648156\n380,93840,3.5,1353864014\n380,94466,5.0,1441399089\n380,94478,2.5,1372691948\n380,94799,4.0,1377547507\n380,94864,3.5,1365440613\n380,94953,2.0,1389026524\n380,94959,3.5,1359996248\n380,95088,3.5,1367424496\n380,95307,2.5,1365440641\n380,95441,4.0,1341630259\n380,95510,2.5,1405036374\n380,95720,3.0,1372691922\n380,95875,3.5,1363548593\n380,96079,4.0,1386614981\n380,96110,3.0,1357606431\n380,96588,4.0,1383351746\n380,96610,4.0,1383351703\n380,96655,4.0,1392506399\n380,96728,3.0,1374511071\n380,96737,3.5,1357606293\n380,97304,4.0,1383603101\n380,97306,4.0,1361462409\n380,97752,2.0,1423240458\n380,97913,4.0,1405036192\n380,97938,4.0,1391314474\n380,98369,3.0,1369842629\n380,98961,4.0,1392506365\n380,99007,3.5,1370730038\n380,99117,2.5,1389026490\n380,99437,3.5,1358019304\n380,100383,4.0,1361816465\n380,100450,3.5,1363548526\n380,101285,3.0,1386614778\n380,101362,2.0,1386614831\n380,101525,4.0,1405036386\n380,101612,1.5,1389026412\n380,101741,3.5,1423240615\n380,101864,3.5,1390928637\n380,102123,4.0,1389026457\n380,102125,3.5,1405036355\n380,102407,3.5,1405036519\n380,102445,4.0,1405036200\n380,102819,3.5,1369842853\n380,102903,2.5,1378240198\n380,103042,3.5,1405036451\n380,103228,3.5,1405036345\n380,103249,4.0,1372432799\n380,103253,2.5,1390928719\n380,104841,3.5,1398564633\n380,104879,4.0,1405036195\n380,106002,3.5,1392933714\n380,106920,4.0,1432326917\n380,108932,4.0,1423240541\n380,109487,4.0,1417229264\n380,110730,2.0,1432326926\n380,111743,3.5,1402336295\n380,112623,2.5,1420491929\n380,115713,4.5,1432326899\n380,120799,2.0,1465156759\n380,122882,4.0,1460162750\n380,122886,4.0,1451584145\n380,122900,4.0,1465156677\n380,122902,1.5,1465156786\n380,122904,5.0,1460162747\n380,127152,4.0,1465156465\n380,131724,5.0,1465156469\n380,132796,1.0,1460162844\n380,133419,3.5,1434470933\n380,134130,4.0,1444664409\n380,134393,3.5,1465156737\n380,135518,2.5,1465156713\n380,135861,4.0,1441399394\n380,136598,3.0,1465156743\n380,138036,4.0,1465156659\n380,139385,4.0,1457979024\n380,140711,3.5,1465156767\n380,140928,2.0,1457978987\n381,5,4.0,1018646002\n381,25,5.0,1018682762\n381,36,5.0,1018682625\n381,47,1.0,1018646183\n381,186,3.0,1018645833\n381,207,4.0,1018682054\n381,217,3.0,1018682775\n381,218,2.0,1018682944\n381,252,3.0,1018646618\n381,270,3.0,1018682880\n381,289,5.0,1018682568\n381,339,4.0,1018646510\n381,356,3.0,1018645727\n381,360,3.0,1018646257\n381,361,3.0,1018681850\n381,368,3.0,1018681695\n381,380,2.0,1018683370\n381,412,4.0,1018682453\n381,442,1.0,1018646389\n381,480,3.0,1018645895\n381,539,4.0,1018682215\n381,588,5.0,1018683706\n381,593,2.0,1018683479\n381,595,5.0,1018682666\n381,597,3.0,1018646015\n381,608,1.0,1018682799\n381,697,4.0,1018682762\n381,708,5.0,1018681765\n381,720,5.0,1018646609\n381,780,2.0,1018646665\n381,786,4.0,1018646778\n381,830,4.0,1018646063\n381,832,4.0,1018683212\n381,848,3.0,1018646710\n381,858,5.0,1018645753\n381,914,4.0,1018646199\n381,1035,5.0,1018682431\n381,1036,3.0,1018683305\n381,1186,4.0,1018682994\n381,1200,2.0,1018645865\n381,1225,5.0,1018646404\n381,1270,4.0,1018645799\n381,1367,3.0,1018646479\n381,1485,3.0,1018646488\n381,1488,3.0,1018682926\n381,1499,1.0,1018682282\n381,1580,4.0,1018646120\n381,1584,2.0,1018682542\n381,1603,1.0,1018646240\n381,1608,1.0,1018681624\n381,1678,5.0,1018646434\n381,1721,5.0,1018683720\n381,1801,3.0,1018682074\n381,1917,2.0,1018646733\n381,1918,1.0,1018682007\n381,1961,5.0,1018645812\n381,2001,1.0,1018683212\n381,2058,4.0,1018682074\n381,2085,3.0,1018682179\n381,2167,2.0,1018681585\n381,2197,3.0,1018646166\n381,2294,5.0,1018683609\n381,2324,5.0,1018682215\n381,2364,2.0,1018682687\n381,2448,1.0,1018682714\n381,2469,3.0,1018683038\n381,2505,1.0,1018683545\n381,2581,3.0,1018646643\n381,2671,2.0,1018681730\n381,2683,4.0,1018682418\n381,2687,3.0,1018682926\n381,2712,2.0,1018683282\n381,2762,5.0,1018681926\n381,2856,4.0,1018646257\n381,2916,2.0,1018682298\n381,2953,2.0,1018646789\n381,3054,5.0,1018683107\n381,3100,3.0,1018681624\n381,3114,5.0,1018682469\n381,3157,3.0,1018646002\n381,3173,1.0,1018683493\n381,3186,4.0,1018682817\n381,3189,4.0,1018646609\n381,3256,2.0,1018683370\n381,3299,2.0,1018646166\n381,3452,1.0,1018682131\n381,3462,5.0,1018682378\n381,3535,1.0,1018683160\n381,3578,3.0,1018645883\n381,3614,3.0,1018681850\n381,3615,5.0,1018682726\n381,3751,4.0,1018645911\n381,3753,2.0,1018682158\n381,3785,3.0,1018645784\n381,3826,2.0,1018681711\n381,3910,5.0,1018683751\n381,3978,4.0,1018646778\n381,3994,3.0,1018646724\n381,3998,1.0,1018682190\n381,4014,3.0,1018683267\n381,4022,3.0,1018682269\n381,4069,3.0,1018646434\n381,4161,4.0,1018682522\n381,4270,2.0,1018683195\n381,4306,5.0,1018646350\n381,4447,5.0,1018682944\n381,4474,5.0,1018646778\n381,4569,1.0,1018683305\n381,4814,5.0,1018683560\n381,5218,5.0,1018683388\n382,1,3.5,1371772711\n382,2,3.0,1371780062\n382,5,3.0,1371829454\n382,7,5.0,1371778225\n382,11,5.0,1371773175\n382,17,4.0,1371773255\n382,34,4.0,1371772733\n382,39,2.0,1371780980\n382,48,3.5,1371777858\n382,62,3.5,1386364784\n382,104,1.0,1371829029\n382,150,3.0,1371773058\n382,158,2.5,1371780162\n382,216,2.0,1371828398\n382,231,1.0,1371780933\n382,260,3.5,1371780922\n382,261,5.0,1371773230\n382,262,3.0,1371825895\n382,265,2.0,1371781558\n382,317,3.0,1371773206\n382,318,3.0,1371773051\n382,339,2.0,1371827705\n382,356,3.0,1371829114\n382,364,3.0,1371772704\n382,500,3.0,1371829161\n382,529,4.0,1371829957\n382,539,3.0,1371780537\n382,586,3.0,1371780057\n382,588,3.0,1371777878\n382,595,4.0,1371777868\n382,605,4.0,1371827852\n382,783,3.0,1371778034\n382,838,3.0,1371780720\n382,852,3.0,1371780154\n382,899,5.0,1371781208\n382,900,3.0,1371783550\n382,916,4.0,1371781646\n382,953,4.0,1371782216\n382,988,2.5,1371781821\n382,1020,4.0,1371828977\n382,1021,3.0,1371829749\n382,1022,3.0,1371772409\n382,1028,4.0,1371781135\n382,1035,5.0,1371780423\n382,1042,2.5,1371781814\n382,1073,3.0,1371780951\n382,1197,4.0,1371772622\n382,1225,2.5,1371773160\n382,1230,2.5,1371773217\n382,1246,2.0,1371825836\n382,1247,2.0,1371829459\n382,1282,2.0,1371827581\n382,1288,2.0,1371781087\n382,1299,1.0,1371825793\n382,1302,4.0,1371783330\n382,1367,3.0,1371780138\n382,1380,3.5,1386364821\n382,1387,2.0,1371773146\n382,1393,3.0,1371828916\n382,1416,3.0,1371772431\n382,1449,2.0,1371826001\n382,1517,1.0,1371783509\n382,1569,2.5,1371827200\n382,1580,3.0,1371780052\n382,1584,2.0,1371773152\n382,1682,2.0,1371772934\n382,1688,3.5,1371777853\n382,1704,3.0,1371829191\n382,1721,2.0,1371825485\n382,1784,3.0,1371829243\n382,1835,2.0,1371780271\n382,1917,2.0,1371781019\n382,1957,4.0,1371778126\n382,2018,3.0,1371777895\n382,2036,2.0,1371829742\n382,2042,4.0,1371829755\n382,2059,5.0,1371773239\n382,2080,4.0,1371777804\n382,2081,3.0,1371777811\n382,2082,4.0,1371828998\n382,2084,4.0,1371781792\n382,2085,3.5,1371777786\n382,2087,4.0,1371777907\n382,2125,3.0,1371781603\n382,2324,3.0,1371781052\n382,2394,4.0,1371780108\n382,2396,3.0,1371780994\n382,2424,3.5,1386364728\n382,2432,4.0,1371766321\n382,2485,2.0,1371828438\n382,2501,3.5,1386364772\n382,2502,1.0,1371772883\n382,2571,3.0,1371773070\n382,2572,3.0,1371786902\n382,2581,3.0,1371781299\n382,2628,3.0,1371780047\n382,2671,3.0,1371827177\n382,2724,2.0,1371827168\n382,2918,2.0,1371787490\n382,2997,1.0,1371829200\n382,3051,2.0,1371786281\n382,3098,3.0,1371783365\n382,3114,3.0,1371773012\n382,3148,2.0,1371786418\n382,3160,2.0,1371780095\n382,3189,3.0,1371786374\n382,3270,5.0,1371766376\n382,3360,3.0,1371783440\n382,3408,3.0,1371781076\n382,3489,4.0,1371777957\n382,3549,3.0,1371786795\n382,3571,1.0,1371786188\n382,3594,5.0,1371781275\n382,3753,2.0,1371786912\n382,3825,2.5,1371781267\n382,3882,3.0,1371787509\n382,3897,2.0,1371772931\n382,3911,3.0,1371780090\n382,3916,4.0,1371786739\n382,3948,2.0,1371829076\n382,3967,3.0,1371828500\n382,3996,2.0,1371829213\n382,4014,4.0,1371781592\n382,4022,3.0,1371773184\n382,4025,3.0,1371827890\n382,4027,2.5,1371772911\n382,4039,3.0,1371781783\n382,4054,3.0,1371828683\n382,4090,2.0,1371780812\n382,4226,1.0,1371779758\n382,4246,3.0,1371780712\n382,4299,2.0,1371786885\n382,4306,4.0,1371772679\n382,4372,2.0,1371772545\n382,4700,4.0,1371780214\n382,4745,0.5,1371828765\n382,4816,1.0,1371780078\n382,4823,3.0,1371780211\n382,4880,2.0,1371786405\n382,4886,5.0,1371772669\n382,4896,4.0,1371773002\n382,4963,3.0,1371826049\n382,4973,5.0,1371772584\n382,4993,4.0,1375389423\n382,4995,3.0,1371772937\n382,5064,2.5,1371825566\n382,5066,2.0,1371828384\n382,5102,4.0,1371829008\n382,5267,3.0,1371783347\n382,5299,2.0,1371829432\n382,5349,3.0,1371773282\n382,5377,2.5,1371780706\n382,5415,3.0,1371772537\n382,5444,4.0,1371780202\n382,5502,2.0,1371772958\n382,5620,2.0,1371829449\n382,5816,4.0,1371781160\n382,5943,2.0,1371781897\n382,5952,4.0,1371780940\n382,5957,3.0,1371778344\n382,5989,2.0,1371825525\n382,5995,3.0,1371772923\n382,6155,2.5,1371778265\n382,6218,3.0,1371828380\n382,6296,2.0,1371825984\n382,6331,3.0,1371830059\n382,6367,1.0,1371827418\n382,6370,3.0,1371786949\n382,6377,4.5,1371772666\n382,6385,3.0,1371772895\n382,6539,2.5,1371787372\n382,6565,4.0,1371827036\n382,6593,3.0,1371781357\n382,6706,2.0,1371786995\n382,6711,2.0,1371781116\n382,6785,2.0,1371786855\n382,6863,4.0,1371828359\n382,6936,5.0,1371773316\n382,6942,3.5,1371772779\n382,6944,3.0,1371829402\n382,7153,4.0,1371780959\n382,7154,4.0,1371827126\n382,7162,2.0,1371766264\n382,7164,4.0,1371777949\n382,7254,0.5,1371772641\n382,7263,5.0,1371766338\n382,7316,1.0,1371827250\n382,7320,3.0,1371828707\n382,7361,1.0,1371826970\n382,7375,4.0,1371828734\n382,7451,3.0,1371781325\n382,7836,3.0,1371828188\n382,8360,3.0,1371772849\n382,8368,4.0,1371772717\n382,8376,1.0,1371780597\n382,8575,2.0,1371786976\n382,8641,1.0,1371829062\n382,8643,3.5,1371781290\n382,8784,3.0,1371772900\n382,8808,3.0,1371781965\n382,8866,3.5,1386364730\n382,8873,3.0,1371827688\n382,8911,2.5,1371827732\n382,8916,3.0,1371781877\n382,8961,5.0,1371772672\n382,8965,3.0,1371777985\n382,8970,3.5,1371772773\n382,8972,3.0,1371780181\n382,25937,2.0,1371786839\n382,26133,4.0,1371782235\n382,27706,2.0,1371780186\n382,27808,2.0,1371786268\n382,27815,3.0,1371825857\n382,27821,3.0,1371766351\n382,30825,3.0,1371829098\n382,32289,5.0,1371772831\n382,32598,4.0,1371783314\n382,33639,3.0,1371772692\n382,33679,2.5,1371826101\n382,34332,3.0,1371828408\n382,34336,3.0,1371780362\n382,36401,1.0,1371826888\n382,38038,3.0,1371782177\n382,39183,2.0,1371782283\n382,39292,2.0,1371782704\n382,39307,4.0,1371826998\n382,40629,5.0,1371779818\n382,40815,4.0,1371779941\n382,40826,2.5,1371781750\n382,41285,1.0,1371787188\n382,41566,5.0,1371779936\n382,41573,5.0,1371773087\n382,42015,2.0,1371786905\n382,42958,3.5,1387522452\n382,43917,3.0,1371786361\n382,45221,2.0,1371781381\n382,45447,2.0,1371828692\n382,45517,3.0,1371780775\n382,46062,4.0,1371780445\n382,46578,5.0,1371786297\n382,46919,4.0,1371786328\n382,46967,2.0,1371787257\n382,46972,3.5,1386364776\n382,47382,4.0,1371781283\n382,48385,1.0,1371780070\n382,48791,5.0,1371780622\n382,49286,3.0,1371778367\n382,49647,3.5,1371777996\n382,50872,5.0,1371772686\n382,51084,2.0,1371781438\n382,51705,2.0,1371786962\n382,51884,2.0,1371827436\n382,52287,3.0,1371777772\n382,52975,3.5,1386364814\n382,53123,4.0,1371781947\n382,54001,4.0,1371779950\n382,54276,4.0,1371780339\n382,55267,4.0,1371786260\n382,55280,3.0,1371766357\n382,56171,2.0,1371782082\n382,56367,2.5,1371780666\n382,56949,3.0,1371778248\n382,58347,4.0,1371781609\n382,58889,3.0,1371771812\n382,59258,3.5,1371781340\n382,59501,4.0,1371780402\n382,60069,3.0,1371772663\n382,60397,5.0,1371781771\n382,61071,4.0,1371766640\n382,61123,3.0,1371780451\n382,62155,2.0,1371787466\n382,62912,4.0,1371780448\n382,65230,3.0,1371786252\n382,66203,2.0,1371781913\n382,68135,4.0,1371781308\n382,68269,5.0,1389036408\n382,68838,4.0,1371781241\n382,68954,4.0,1371772674\n382,69406,2.0,1371827879\n382,69757,3.0,1371779797\n382,69844,4.0,1371779945\n382,70293,4.0,1371781582\n382,72641,5.0,1371773095\n382,72737,3.0,1371766473\n382,73290,3.0,1371786353\n382,76093,5.0,1371772682\n382,78101,2.0,1371828102\n382,78316,4.0,1371781621\n382,78499,4.0,1371772677\n382,79091,4.0,1374545113\n382,79824,5.0,1371767056\n382,80549,3.0,1371781368\n382,80551,1.0,1371827224\n382,80839,5.0,1371772760\n382,81834,4.0,1371772783\n382,81845,5.0,1371772860\n382,81847,5.0,1371772695\n382,82169,4.5,1371780409\n382,84954,2.0,1371786578\n382,86882,3.0,1371773102\n382,88125,4.0,1371772940\n382,88810,5.0,1371772970\n382,89194,3.0,1371825592\n382,89492,3.5,1386364790\n382,91535,2.5,1371772808\n382,91653,4.0,1371786389\n382,91886,4.0,1371780647\n382,94959,4.0,1371781505\n382,95167,4.0,1371780762\n382,96821,2.0,1371780679\n382,99149,3.5,1389940607\n382,101112,3.0,1386364764\n382,101612,3.0,1372825009\n382,106696,5.0,1386364528\n383,1,5.0,852806429\n383,6,3.0,852809757\n383,9,2.0,852809531\n383,14,3.0,852806963\n383,21,3.0,789652009\n383,25,2.0,852806430\n383,29,3.0,852806794\n383,32,5.0,852806429\n383,34,5.0,852810527\n383,36,3.0,852806794\n383,47,5.0,789652009\n383,52,4.0,852809131\n383,62,4.0,852806430\n383,68,3.0,852809018\n383,83,3.0,852809207\n383,95,3.0,852806429\n383,100,3.0,852809531\n383,110,3.0,852810325\n383,141,3.0,852806429\n383,150,4.0,852810325\n383,198,3.0,852810482\n383,260,5.0,852810326\n383,288,3.0,852810482\n383,296,5.0,852810326\n383,356,4.0,852810325\n383,376,3.0,852809443\n383,380,2.0,852810326\n383,457,5.0,852810325\n383,494,4.0,852808842\n383,562,4.0,852806600\n383,608,5.0,852808600\n383,628,4.0,852809018\n383,637,3.0,852806963\n383,640,3.0,852809687\n383,648,4.0,852806429\n383,671,3.0,852806794\n383,704,3.0,852809832\n383,707,2.0,852810015\n383,733,3.0,852806896\n383,736,3.0,852806429\n383,748,3.0,852806896\n383,766,5.0,852808661\n383,780,4.0,852806429\n383,784,2.0,852808600\n383,786,3.0,852808492\n383,798,3.0,852809443\n383,802,3.0,852806896\n383,805,3.0,852806600\n383,832,4.0,852806896\n383,836,2.0,852809531\n383,1046,3.0,852809207\n383,1049,4.0,852808842\n383,1073,3.0,852806963\n383,1079,3.0,789652009\n383,1080,4.0,852810326\n383,1111,2.0,852809319\n383,1183,3.0,852808600\n383,1198,4.0,852810527\n383,1356,4.0,852806794\n383,1357,5.0,852808661\n383,1419,3.0,852810136\n383,4424,3.0,852809355\n384,10,3.5,1168644826\n384,19,3.0,1153417956\n384,23,3.0,1153762438\n384,34,3.0,1153498169\n384,47,4.0,1153740744\n384,70,4.0,1153759985\n384,95,2.0,1156526026\n384,110,4.5,1153421550\n384,145,3.5,1153158050\n384,153,3.0,1153157953\n384,160,1.0,1153149583\n384,165,3.5,1194003698\n384,168,3.0,1153937344\n384,172,2.0,1153936899\n384,173,4.0,1153149608\n384,193,2.5,1206313648\n384,223,3.0,1153740407\n384,231,4.0,1153158196\n384,260,4.5,1153325319\n384,288,4.5,1166395798\n384,296,4.5,1153156842\n384,303,3.0,1153949948\n384,315,2.5,1153762505\n384,344,3.5,1153417952\n384,353,3.5,1181585615\n384,356,3.0,1154365030\n384,361,2.5,1153740561\n384,364,3.0,1154367800\n384,367,3.5,1153417975\n384,372,3.0,1153763392\n384,377,4.0,1153501701\n384,379,3.5,1154110049\n384,380,4.5,1153157787\n384,393,2.5,1154110171\n384,420,3.0,1153149573\n384,434,4.0,1153762441\n384,442,4.0,1153157856\n384,454,3.0,1153740666\n384,457,3.0,1153762128\n384,466,4.0,1153149654\n384,480,3.5,1153502713\n384,481,3.0,1153740760\n384,485,4.0,1153157806\n384,500,3.0,1156525410\n384,507,3.0,1153986071\n384,519,3.0,1153502631\n384,520,3.0,1154110666\n384,527,3.0,1153501193\n384,541,4.0,1153158107\n384,589,5.0,1153155386\n384,592,4.0,1153157930\n384,648,4.0,1153498208\n384,653,1.5,1153149587\n384,673,3.0,1153573943\n384,733,5.0,1153158234\n384,778,3.0,1160340256\n384,780,3.0,1153763290\n384,784,1.5,1153762614\n384,786,3.0,1153503065\n384,798,2.0,1153762456\n384,836,2.0,1153937213\n384,880,1.5,1153866059\n384,990,2.5,1154110089\n384,996,3.5,1154549975\n384,1027,3.5,1154110669\n384,1047,3.5,1154366658\n384,1059,4.0,1153949927\n384,1092,3.0,1153502611\n384,1196,5.0,1153325345\n384,1198,4.0,1153763613\n384,1210,4.5,1153325343\n384,1214,3.5,1153937474\n384,1240,4.0,1153155394\n384,1258,4.0,1154109973\n384,1270,4.0,1153325387\n384,1275,3.5,1153501709\n384,1278,3.0,1153149669\n384,1291,4.5,1153501104\n384,1377,3.5,1153157957\n384,1405,3.0,1153753832\n384,1407,4.0,1153498632\n384,1408,3.0,1164578817\n384,1466,3.0,1154108634\n384,1479,3.0,1153866039\n384,1485,3.0,1153762629\n384,1488,3.0,1153740737\n384,1497,3.5,1154110168\n384,1499,1.0,1154110582\n384,1527,3.0,1153501715\n384,1544,3.0,1153502723\n384,1552,4.0,1153158246\n384,1562,3.0,1153157939\n384,1569,3.0,1153740927\n384,1573,4.5,1153158219\n384,1580,4.0,1153501518\n384,1587,3.5,1153503062\n384,1589,2.5,1153762453\n384,1608,3.0,1153417461\n384,1616,3.5,1153741082\n384,1644,3.0,1153949665\n384,1653,2.0,1153149600\n384,1658,3.0,1153740856\n384,1676,3.5,1153149689\n384,1682,3.0,1153418019\n384,1717,3.0,1153498638\n384,1721,4.0,1153325720\n384,1732,3.5,1203852511\n384,1801,2.5,1153417988\n384,1805,3.0,1153949610\n384,1835,2.5,1153740552\n384,1909,4.0,1206735657\n384,1911,2.5,1154108177\n384,1912,2.5,1153759995\n384,1917,2.5,1153149535\n384,1918,3.5,1153937428\n384,1923,4.5,1153158170\n384,2000,4.0,1153501032\n384,2001,4.0,1153937409\n384,2002,3.5,1153937430\n384,2006,3.5,1153417991\n384,2011,4.5,1153325390\n384,2012,3.5,1153325393\n384,2028,3.0,1153763616\n384,2054,2.5,1153149604\n384,2115,4.0,1153501478\n384,2153,2.0,1154107797\n384,2167,3.5,1153158093\n384,2181,3.0,1153937300\n384,2193,2.5,1153501613\n384,2279,3.0,1153949693\n384,2291,3.5,1154108753\n384,2329,4.0,1153421583\n384,2353,2.5,1153149680\n384,2387,3.5,1153740921\n384,2403,4.0,1153762465\n384,2404,3.0,1153762485\n384,2424,2.0,1154365167\n384,2428,3.0,1199317347\n384,2541,3.5,1153417924\n384,2542,4.5,1153155161\n384,2571,4.0,1153325636\n384,2605,2.5,1153937327\n384,2628,4.0,1153325356\n384,2640,3.5,1153149623\n384,2671,4.0,1154109146\n384,2701,3.0,1153763301\n384,2706,4.0,1153155656\n384,2710,1.5,1153149552\n384,2712,3.0,1153740657\n384,2716,3.5,1181585846\n384,2717,3.0,1153985946\n384,2762,3.0,1153498614\n384,2808,3.0,1154110051\n384,2856,3.0,1153157501\n384,2858,4.0,1153158278\n384,2916,3.0,1153503049\n384,2947,4.0,1153937297\n384,2948,4.0,1153937294\n384,2949,3.5,1153937288\n384,2959,4.0,1153157641\n384,2985,4.0,1153502626\n384,2986,3.0,1153502629\n384,2987,4.0,1154365034\n384,2997,4.0,1153740915\n384,3081,4.0,1154108617\n384,3113,3.0,1153503091\n384,3173,3.5,1171807687\n384,3268,2.5,1153762508\n384,3273,3.0,1153498640\n384,3300,3.0,1153408836\n384,3409,2.5,1153949715\n384,3484,3.0,1153417609\n384,3489,3.0,1153763535\n384,3527,3.5,1153157827\n384,3535,2.5,1168208412\n384,3578,4.0,1153501025\n384,3617,3.5,1154252767\n384,3623,4.0,1153149659\n384,3635,3.5,1153501095\n384,3717,3.0,1153740549\n384,3752,4.0,1153243424\n384,3785,4.0,1153157449\n384,3793,3.0,1153501317\n384,3798,3.5,1154365096\n384,3821,2.5,1154108170\n384,3948,4.0,1153326259\n384,3977,3.0,1153740911\n384,3984,2.5,1153937274\n384,3986,3.0,1153503093\n384,3997,2.0,1154367295\n384,4011,4.0,1153155218\n384,4018,3.0,1153937445\n384,4023,2.5,1156525368\n384,4085,3.5,1153501039\n384,4200,3.5,1154110067\n384,4226,4.0,1154110499\n384,4228,3.0,1153985951\n384,4246,4.0,1153418432\n384,4262,4.0,1153950106\n384,4306,3.0,1153740907\n384,4308,5.0,1153155342\n384,4310,2.5,1153418229\n384,4344,3.0,1154550292\n384,4351,3.5,1153936739\n384,4369,2.5,1153762036\n384,4388,3.5,1153157453\n384,4447,3.0,1156525443\n384,4558,3.0,1153503067\n384,4638,2.5,1153502726\n384,4660,3.5,1162724125\n384,4673,3.0,1153762511\n384,4718,3.5,1153155660\n384,4720,2.5,1153741074\n384,4776,3.5,1156525246\n384,4816,5.0,1153155359\n384,4848,4.0,1153865889\n384,4878,2.0,1153325809\n384,4890,3.0,1194779997\n384,4896,3.0,1153501693\n384,4901,2.5,1153740728\n384,4963,4.0,1153158943\n384,4974,3.0,1153861554\n384,4993,4.0,1153325557\n384,5010,4.0,1153501093\n384,5040,3.5,1153503095\n384,5093,2.5,1153503106\n384,5134,3.5,1153155787\n384,5218,3.5,1153158426\n384,5219,2.0,1153157989\n384,5254,2.5,1153158099\n384,5266,3.0,1154364909\n384,5293,1.5,1153950287\n384,5296,3.0,1153740900\n384,5299,2.5,1154252791\n384,5349,5.0,1153157895\n384,5377,2.5,1153470890\n384,5378,4.0,1153325361\n384,5388,1.5,1153950184\n384,5414,4.0,1153420196\n384,5418,3.0,1153501036\n384,5445,4.5,1153149615\n384,5507,4.5,1153157668\n384,5574,3.0,1162724059\n384,5609,3.0,1177679707\n384,5628,3.0,1153865834\n384,5784,2.5,1153159289\n384,5809,3.5,1156525892\n384,5816,3.0,1153501620\n384,5903,4.0,1153501361\n384,5915,3.5,1153762527\n384,5952,4.5,1153325564\n384,5954,4.0,1157896594\n384,5956,4.0,1153498596\n384,5957,0.5,1154367045\n384,5989,2.5,1153763523\n384,6003,4.5,1153759992\n384,6157,2.5,1153157972\n384,6188,3.0,1153501330\n384,6249,2.5,1199317158\n384,6263,2.5,1156526004\n384,6290,2.5,1154252571\n384,6333,4.0,1153501021\n384,6345,1.5,1154366898\n384,6365,4.0,1153325650\n384,6367,4.0,1153418409\n384,6377,3.0,1154367782\n384,6378,2.5,1153501230\n384,6379,2.0,1153159265\n384,6482,2.0,1153158186\n384,6502,2.0,1154253026\n384,6503,2.5,1153740892\n384,6537,3.5,1153155389\n384,6539,4.5,1153155499\n384,6541,2.0,1153937340\n384,6548,4.0,1153158052\n384,6595,2.5,1153949815\n384,6618,2.5,1153950191\n384,6664,4.0,1153503073\n384,6707,2.0,1163369681\n384,6708,3.5,1156525349\n384,6709,2.0,1154550243\n384,6754,2.5,1153243719\n384,6763,2.0,1153763365\n384,6793,3.0,1154367418\n384,6800,3.0,1153762450\n384,6835,4.0,1153937479\n384,6868,4.0,1153866020\n384,6873,4.0,1203852520\n384,6874,4.5,1153157065\n384,6880,3.0,1182095090\n384,6888,3.0,1153157455\n384,6934,4.0,1153325647\n384,6953,3.0,1154367113\n384,6957,3.5,1153865847\n384,7004,3.0,1153503077\n384,7007,3.0,1153936617\n384,7143,4.0,1153501013\n384,7147,4.0,1153155637\n384,7150,1.0,1154109596\n384,7153,4.5,1153149657\n384,7163,2.5,1153326546\n384,7173,2.5,1153763359\n384,7254,3.5,1177279299\n384,7265,3.0,1154518405\n384,7285,4.0,1153421531\n384,7317,4.0,1153154536\n384,7325,3.0,1153763413\n384,7346,3.0,1153865868\n384,7360,4.0,1153243574\n384,7361,4.5,1169420653\n384,7373,4.0,1153500098\n384,7438,4.0,1153157067\n384,7439,2.5,1153243753\n384,7444,1.5,1154366864\n384,7445,3.0,1153501291\n384,7448,0.5,1194687088\n384,7451,4.0,1154252816\n384,7454,2.5,1153243699\n384,7458,2.5,1153740721\n384,7569,3.0,1153937281\n384,7767,4.0,1188251910\n384,8132,3.5,1153950095\n384,8360,4.5,1153740888\n384,8371,4.0,1153157705\n384,8373,2.5,1153741065\n384,8528,4.0,1153763361\n384,8636,4.5,1153157898\n384,8640,2.5,1153418142\n384,8644,2.5,1153763286\n384,8665,2.5,1153761996\n384,8666,2.0,1153158078\n384,8798,2.5,1153740642\n384,8799,2.5,1164038275\n384,8810,2.0,1153157831\n384,8861,4.0,1153157991\n384,8870,2.5,1153757143\n384,8949,3.5,1153818870\n384,8957,4.0,1153157491\n384,8972,4.0,1199658240\n384,8981,5.0,1153155323\n384,8984,2.0,1153158950\n384,8985,2.0,1153158104\n384,27706,4.0,1153418116\n384,27831,3.5,1156369678\n384,27851,3.5,1154367666\n384,30707,4.0,1153158845\n384,30793,3.0,1154108626\n384,30812,3.5,1153949864\n384,30825,3.5,1153326239\n384,30848,2.5,1156525990\n384,31221,2.5,1153762066\n384,31420,3.5,1156718492\n384,31685,3.0,1188251867\n384,31696,2.0,1153937224\n384,32017,3.5,1167690416\n384,32031,3.0,1154367822\n384,32587,5.0,1153158148\n384,33164,3.5,1154295229\n384,33166,4.0,1153158876\n384,33493,4.5,1153325364\n384,33615,4.0,1153158415\n384,33679,2.5,1153693204\n384,33688,1.0,1153693437\n384,33794,4.0,1153157942\n384,34048,2.5,1153740637\n384,34150,2.5,1192397801\n384,34162,3.5,1153501350\n384,34319,3.5,1153326513\n384,34321,3.0,1186230443\n384,34520,3.0,1171233229\n384,36519,3.5,1159735211\n384,36529,3.0,1153158314\n384,36533,2.5,1176670883\n384,37382,4.0,1173045085\n384,37386,2.5,1156031897\n384,37733,3.0,1153157620\n384,37830,1.5,1153408760\n384,39292,2.0,1153759981\n384,39444,3.0,1156603856\n384,39446,3.5,1153573696\n384,39715,3.5,1168208495\n384,40339,3.0,1153827645\n384,41285,5.0,1153158519\n384,41566,3.0,1153827666\n384,41716,3.0,1210537804\n384,42002,3.5,1153950330\n384,42718,3.5,1171062863\n384,42723,3.5,1154549818\n384,42738,2.5,1157153417\n384,43919,2.0,1162763543\n384,43928,2.0,1174425297\n384,43932,2.0,1179698549\n384,44022,3.5,1153158429\n384,44191,3.0,1160947088\n384,44199,4.0,1153753763\n384,44665,4.5,1159134846\n384,44694,3.5,1162724092\n384,44972,2.5,1157277533\n384,45081,3.0,1165186176\n384,45186,3.5,1165622850\n384,45499,3.5,1164578889\n384,45501,2.5,1188944974\n384,45517,3.5,1156599554\n384,45720,3.0,1186308173\n384,45722,4.0,1156031925\n384,45732,3.0,1165622881\n384,45880,3.0,1164578843\n384,46578,4.0,1173015121\n384,46965,3.0,1171807617\n384,46967,3.5,1162120704\n384,46972,2.5,1194687057\n384,47044,3.0,1169420529\n384,47200,3.0,1190582038\n384,47610,2.5,1175991358\n384,47997,3.0,1207517095\n384,48082,4.0,1169420645\n384,48142,3.0,1160947058\n384,48385,1.0,1173015152\n384,48394,3.0,1183325591\n384,48516,4.0,1177279355\n384,48518,3.5,1183930540\n384,48596,3.0,1193607661\n384,48774,2.0,1170626730\n384,48780,4.5,1168208380\n384,48877,2.5,1174857826\n384,49272,4.0,1170280926\n384,49278,3.5,1178127751\n384,49286,4.0,1171807726\n384,49314,3.5,1193954319\n384,49528,2.0,1193000723\n384,49530,3.0,1199317467\n384,49649,2.0,1169248121\n384,50147,2.0,1200260337\n384,50189,2.5,1168644769\n384,50442,2.0,1182722181\n384,50794,4.0,1194266581\n384,50798,2.0,1196027197\n384,50872,4.0,1193607625\n384,51077,2.5,1189373186\n384,51255,4.5,1200867248\n384,51662,3.5,1175421862\n384,51935,3.5,1189978923\n384,52281,3.5,1181584930\n384,52458,3.5,1191496169\n384,52460,2.0,1206913086\n384,52644,3.0,1196982448\n384,52717,3.5,1210527385\n384,52722,4.5,1178127807\n384,52973,3.5,1206313623\n384,53121,2.5,1188944919\n384,53125,3.5,1180458284\n384,53322,3.0,1195503389\n384,53435,3.5,1196027153\n384,53464,3.0,1192397753\n384,53972,3.5,1194266561\n384,53996,4.5,1185700446\n384,53999,2.5,1197222113\n384,54001,3.0,1184453166\n384,54272,4.0,1189849074\n384,54286,3.5,1205625536\n384,54787,4.0,1210537775\n384,54995,3.5,1202078278\n384,54997,4.0,1206832549\n384,55232,3.0,1203852160\n384,55261,3.5,1194779891\n384,55272,3.5,1215982271\n384,55280,3.5,1211145076\n384,55282,4.0,1214773174\n384,55363,3.5,1203852097\n384,55765,3.5,1212441967\n384,55820,4.0,1205625591\n384,56156,3.5,1197838881\n384,56174,3.5,1212960869\n384,56286,2.0,1197222082\n384,56367,4.0,1210527364\n384,56757,3.5,1205625556\n384,56775,3.5,1199658251\n384,56949,3.0,1223841597\n384,57368,3.5,1211145054\n384,58559,4.0,1217196019\n384,59014,2.5,1223841566\n384,59315,4.0,1210527349\n384,59615,3.5,1212441921\n384,60040,3.0,1214773155\n384,61323,3.0,1223841553\n385,6,5.0,836679569\n385,10,3.0,836679100\n385,11,4.0,836679319\n385,16,5.0,836679592\n385,17,3.0,836679381\n385,19,3.0,836679159\n385,21,4.0,836679159\n385,22,3.0,836679569\n385,25,3.0,836679499\n385,36,4.0,836679544\n385,39,4.0,836679182\n385,45,4.0,836679709\n385,47,5.0,836679129\n385,50,5.0,836679182\n385,95,2.0,836679405\n385,105,3.0,836679499\n385,110,3.0,836679129\n385,111,5.0,836679223\n385,145,4.0,836679646\n385,150,4.0,836678950\n385,151,4.0,836679344\n385,160,2.0,836679223\n385,161,4.0,836679046\n385,163,1.0,836679592\n385,165,4.0,836678991\n385,173,3.0,836679288\n385,185,3.0,836679099\n385,196,3.0,836679319\n385,204,1.0,836679381\n385,207,3.0,836679708\n385,208,3.0,836679094\n385,218,3.0,836679671\n385,222,3.0,836679670\n385,223,3.0,836679521\n385,227,3.0,836679569\n385,230,5.0,836679621\n385,231,4.0,836679015\n385,235,5.0,836679344\n385,236,3.0,836679288\n385,237,3.0,836679544\n385,246,2.0,836679544\n385,253,3.0,836679096\n385,256,3.0,836679427\n385,261,4.0,836679381\n385,265,4.0,836679427\n385,266,3.0,836679223\n385,272,3.0,836679521\n385,273,3.0,836679569\n385,277,2.0,836679521\n385,282,4.0,836679288\n385,288,4.0,836679129\n385,292,3.0,836679046\n385,293,4.0,836679381\n385,296,5.0,836678951\n385,300,4.0,836679129\n385,315,4.0,836679256\n385,316,3.0,836679015\n385,317,3.0,836679159\n385,318,5.0,836679015\n385,337,5.0,836679319\n385,339,3.0,836679046\n385,342,3.0,836679671\n385,344,2.0,836678991\n385,348,3.0,836679592\n385,349,5.0,836678991\n385,350,4.0,836679381\n385,353,3.0,836679544\n385,356,5.0,836679223\n385,357,4.0,836679458\n385,367,1.0,836679256\n385,377,4.0,836679344\n385,380,3.0,836678953\n385,410,3.0,836679129\n385,420,3.0,836679182\n385,432,2.0,836679256\n385,434,3.0,836679046\n385,435,3.0,836679256\n385,440,4.0,836679319\n385,442,3.0,836679458\n385,454,3.0,836679182\n385,457,4.0,836679100\n385,468,4.0,836679592\n385,474,4.0,836679569\n385,480,4.0,836679256\n385,500,4.0,836679405\n385,508,3.0,836679621\n385,509,4.0,836679459\n385,515,4.0,836679621\n385,527,4.0,836679427\n385,539,3.0,836679458\n385,553,3.0,836679288\n385,555,5.0,836679458\n385,586,3.0,836679499\n385,587,3.0,836679480\n385,589,4.0,836679288\n385,590,3.0,836678949\n385,593,5.0,836679046\n385,597,3.0,836679480\n385,608,5.0,836679621\n386,16,4.0,1047028416\n386,25,4.0,1047028123\n386,31,2.0,1047028867\n386,32,4.0,1047028456\n386,50,4.0,1047029040\n386,92,4.0,1047027832\n386,111,4.0,1047027613\n386,230,3.0,1047028583\n386,299,4.0,1047112992\n386,306,4.0,1047113156\n386,307,3.0,1047113185\n386,308,4.0,1047028416\n386,342,3.0,1047028529\n386,380,2.0,1047028703\n386,431,3.0,1047028980\n386,435,1.0,1047028177\n386,450,3.0,1047027908\n386,508,4.0,1047027648\n386,527,5.0,1047027530\n386,543,3.0,1047028262\n386,552,2.0,1047028666\n386,743,1.0,1047028109\n386,920,4.0,1047027585\n386,1093,3.0,1047112809\n386,1097,3.0,1047027623\n386,1100,2.0,1047028703\n386,1120,3.0,1047027794\n386,1210,3.0,1047027544\n386,1246,4.0,1047028933\n386,1270,3.0,1047113169\n386,1376,2.0,1047028399\n386,1619,3.0,1047027908\n386,1644,2.0,1047028039\n386,1676,3.0,1047028837\n386,1682,3.0,1047027921\n386,1707,1.0,1047028010\n386,1805,3.0,1047027690\n386,1917,1.0,1047028399\n386,1923,3.0,1047028371\n386,1967,3.0,1047113250\n386,2011,3.0,1047113274\n386,2318,5.0,1047112890\n386,2336,3.0,1047112825\n386,2369,3.0,1047112809\n386,2394,3.0,1047113007\n386,2396,4.0,1047113044\n386,2428,2.0,1047112848\n386,2485,2.0,1047113044\n386,2541,3.0,1047112764\n386,2580,3.0,1047112870\n386,2600,3.0,1047113121\n386,2622,3.0,1047112967\n386,2671,3.0,1047028360\n386,2683,3.0,1047112686\n386,2686,4.0,1047028742\n386,2692,4.0,1047113024\n386,2706,3.0,1047028468\n386,2710,2.0,1047112723\n386,2712,3.0,1047028887\n386,2722,2.0,1047112764\n386,2761,3.0,1047112931\n386,2762,4.0,1047027690\n386,2769,2.0,1047028966\n386,2805,2.0,1047112967\n386,2806,2.0,1047113065\n386,2827,1.0,1047112686\n386,2858,4.0,1047112667\n386,2863,4.0,1047028482\n386,2908,4.0,1047112723\n386,2959,5.0,1047112848\n386,2987,2.0,1047028529\n386,2995,1.0,1047112890\n386,2997,4.0,1047112704\n386,3053,4.0,1047112948\n386,3081,3.0,1047113044\n386,3114,3.0,1047113105\n386,3120,2.0,1047028278\n386,3130,2.0,1047028611\n386,3160,4.0,1047112948\n386,3176,3.0,1047113065\n386,3203,4.0,1047028262\n386,3248,2.0,1047027690\n386,3257,2.0,1047028763\n386,3268,1.0,1047027988\n386,3273,2.0,1047113024\n386,3285,2.0,1047028627\n386,3300,3.0,1047112992\n386,3408,3.0,1047112825\n386,3409,2.0,1047112848\n386,3418,3.0,1047113237\n386,3535,3.0,1047028177\n386,3578,3.0,1047112870\n386,3593,1.0,1047112704\n386,3623,3.0,1047112967\n386,3751,3.0,1047112744\n386,3793,3.0,1047113121\n386,3798,2.0,1047113105\n386,3809,1.0,1047028922\n386,3826,1.0,1047112890\n386,3893,3.0,1047028666\n386,3967,4.0,1047028156\n386,3977,2.0,1047112744\n386,3986,2.0,1047112667\n386,3996,4.0,1047028611\n386,4022,3.0,1047112744\n386,4148,2.0,1047028109\n386,4226,4.0,1047029040\n386,4235,4.0,1047028177\n386,4372,3.0,1047027585\n386,4489,4.0,1047027961\n386,4501,2.0,1047028441\n386,4571,2.0,1047028551\n386,4876,1.0,1047028109\n386,4878,4.0,1047028070\n386,5064,3.0,1047028511\n386,5219,3.0,1047028145\n386,5313,1.0,1047028718\n386,5445,3.0,1047113200\n386,5541,2.0,1047028039\n386,5679,3.0,1047113237\n386,6242,4.0,1047113218\n387,11,4.0,975142478\n387,21,4.0,974675065\n387,36,3.0,974791396\n387,52,4.0,974675154\n387,104,3.0,974675189\n387,111,5.0,974791195\n387,141,4.0,974674711\n387,235,4.0,974674932\n387,300,4.0,975105163\n387,318,5.0,974791223\n387,322,5.0,974674960\n387,344,2.0,975142275\n387,348,5.0,975143557\n387,357,3.0,974674711\n387,428,5.0,975143535\n387,450,4.0,974674877\n387,515,5.0,974791526\n387,527,3.0,974669772\n387,585,4.0,975143412\n387,593,4.0,974791289\n387,596,5.0,974683041\n387,608,5.0,974791258\n387,635,5.0,974675154\n387,750,5.0,974709301\n387,858,5.0,974709301\n387,897,4.0,974683179\n387,898,5.0,974682847\n387,899,5.0,974790616\n387,900,4.0,974790672\n387,901,5.0,974670228\n387,902,4.0,974681984\n387,905,5.0,974682415\n387,907,5.0,974682622\n387,908,5.0,974670360\n387,909,5.0,974681984\n387,910,4.0,974670100\n387,911,5.0,975143765\n387,912,5.0,974682790\n387,913,4.0,974682790\n387,914,5.0,974790616\n387,915,5.0,974670100\n387,916,4.0,974670100\n387,918,5.0,974683041\n387,919,5.0,974682415\n387,920,4.0,974682461\n387,923,5.0,974682790\n387,924,4.0,974681838\n387,926,5.0,974670360\n387,929,4.0,974682847\n387,930,5.0,974682905\n387,931,4.0,974683115\n387,933,4.0,974670100\n387,934,4.0,974670188\n387,935,5.0,974670100\n387,936,4.0,974682461\n387,937,5.0,974670188\n387,938,4.0,974790771\n387,939,4.0,974670228\n387,940,4.0,974682512\n387,942,5.0,974682847\n387,945,5.0,974790616\n387,946,5.0,974682905\n387,948,4.0,974670578\n387,949,5.0,974670478\n387,950,5.0,974682461\n387,951,5.0,974682905\n387,952,3.0,974670188\n387,953,5.0,974683115\n387,954,5.0,974682415\n387,962,4.0,974682578\n387,969,5.0,975142348\n387,970,3.0,974670228\n387,973,5.0,974683219\n387,1019,4.0,975105356\n387,1028,3.0,974790672\n387,1029,5.0,974683041\n387,1035,5.0,974790819\n387,1057,4.0,974791016\n387,1066,5.0,974682578\n387,1081,5.0,974790887\n387,1082,5.0,975143617\n387,1083,3.0,974790887\n387,1084,5.0,974791169\n387,1088,4.0,974790964\n387,1096,4.0,974671165\n387,1103,4.0,974670428\n387,1104,4.0,974670428\n387,1113,3.0,975142730\n387,1124,4.0,974671109\n387,1172,5.0,974671010\n387,1193,5.0,974791559\n387,1196,4.0,974670914\n387,1203,5.0,974670428\n387,1208,5.0,975142636\n387,1213,5.0,974791444\n387,1221,5.0,974791195\n387,1225,3.0,974670914\n387,1228,5.0,974670962\n387,1230,5.0,975142585\n387,1231,4.0,974670962\n387,1242,4.0,974791526\n387,1247,5.0,974681905\n387,1250,5.0,974791526\n387,1253,3.0,974670428\n387,1254,5.0,974682847\n387,1256,5.0,974682415\n387,1259,4.0,974671067\n387,1269,4.0,974682976\n387,1276,5.0,974681905\n387,1281,4.0,974682905\n387,1284,4.0,974682847\n387,1287,3.0,974670529\n387,1288,5.0,974790672\n387,1292,5.0,975142977\n387,1293,3.0,974671067\n387,1302,5.0,974671165\n387,1304,5.0,975143592\n387,1380,1.0,974791016\n387,1394,4.0,975105163\n387,1395,4.0,974671165\n387,1396,3.0,974669842\n387,1409,3.0,974675154\n387,1416,4.0,974790964\n387,1641,4.0,974674644\n387,1673,4.0,975143303\n387,1674,4.0,974671010\n387,1694,3.0,975142636\n387,1704,5.0,974791314\n387,1732,4.0,974675154\n387,1747,3.0,974674907\n387,1784,5.0,975142730\n387,1883,4.0,974675037\n387,1923,5.0,974674907\n387,1926,2.0,974790964\n387,1932,4.0,974682622\n387,1933,5.0,974682578\n387,1934,5.0,974682622\n387,1938,5.0,974683179\n387,1939,5.0,974682847\n387,1940,3.0,974683179\n387,1942,5.0,974682976\n387,1943,4.0,974670529\n387,1944,4.0,974670428\n387,1945,5.0,974670478\n387,1946,5.0,974670478\n387,1947,4.0,974790672\n387,1950,4.0,974681984\n387,1952,5.0,974681838\n387,1953,5.0,974791588\n387,1957,4.0,974670915\n387,1962,4.0,974671202\n387,2020,3.0,974671010\n387,2028,5.0,974669842\n387,2069,3.0,974671202\n387,2078,4.0,974790887\n387,2080,4.0,974670188\n387,2081,5.0,974790771\n387,2108,4.0,974674851\n387,2130,4.0,974670962\n387,2132,4.0,974681905\n387,2150,5.0,975105051\n387,2176,4.0,974683219\n387,2178,3.0,975105012\n387,2182,4.0,974670578\n387,2202,4.0,974683041\n387,2203,5.0,974682790\n387,2204,4.0,974683041\n387,2206,4.0,974683115\n387,2212,4.0,974669842\n387,2243,4.0,974671010\n387,2248,4.0,974670962\n387,2266,2.0,975143592\n387,2289,3.0,974674675\n387,2300,4.0,974790616\n387,2302,5.0,974675037\n387,2303,5.0,974790672\n387,2321,4.0,974674851\n387,2352,4.0,974671067\n387,2356,4.0,975143724\n387,2366,4.0,974682512\n387,2381,1.0,975105163\n387,2395,4.0,974674807\n387,2396,4.0,974674619\n387,2539,4.0,974675086\n387,2728,3.0,974681905\n387,2736,4.0,975143467\n387,2770,3.0,975143365\n387,2791,4.0,975142382\n387,2792,4.0,975142382\n387,2804,5.0,974670874\n387,2847,4.0,974682578\n387,2858,5.0,974674619\n387,2870,4.0,975142887\n387,2874,5.0,974670188\n387,2917,4.0,975143261\n387,2929,4.0,974671165\n387,2935,5.0,974682790\n387,2936,5.0,974682976\n387,2940,4.0,974682976\n387,2941,3.0,974790887\n387,2971,5.0,974790771\n387,2981,5.0,975143535\n387,2988,4.0,974671067\n387,2997,5.0,974674749\n387,3006,4.0,974791444\n387,3011,5.0,974681905\n387,3035,5.0,974670100\n387,3038,5.0,974670360\n387,3061,4.0,974683219\n387,3068,5.0,974671109\n387,3086,3.0,974682651\n387,3088,4.0,974670100\n387,3093,3.0,974791223\n387,3095,5.0,974682847\n387,3096,4.0,974670188\n387,3097,5.0,974682790\n387,3105,4.0,975142789\n387,3146,3.0,974674907\n387,3152,4.0,974791396\n387,3167,5.0,975143642\n387,3174,4.0,974674749\n387,3196,5.0,974670360\n387,3199,4.0,974670188\n387,3201,5.0,974791588\n387,3217,4.0,974682512\n387,3253,1.0,974675189\n387,3298,4.0,975143303\n387,3307,5.0,974682415\n387,3308,4.0,974671165\n387,3330,3.0,974669772\n387,3334,4.0,974682976\n387,3341,4.0,974670100\n387,3358,5.0,974674749\n387,3359,5.0,974791258\n387,3360,4.0,974671109\n387,3363,5.0,974791223\n387,3364,5.0,975142730\n387,3368,4.0,975143075\n387,3379,3.0,974670529\n387,3420,5.0,975105356\n387,3421,4.0,975142585\n387,3423,4.0,975105220\n387,3435,5.0,974682790\n387,3446,3.0,974675005\n387,3451,4.0,974682021\n387,3462,4.0,974682461\n387,3467,4.0,974791258\n387,3468,5.0,974681905\n387,3469,4.0,974791314\n387,3475,5.0,974670529\n387,3496,3.0,975105084\n387,3504,5.0,974791338\n387,3522,2.0,975105220\n387,3543,4.0,974670874\n387,3545,5.0,974790616\n387,3548,4.0,974670100\n387,3549,2.0,974790771\n387,3559,3.0,974670529\n387,3566,4.0,975143105\n387,3599,3.0,974790819\n387,3600,3.0,974669842\n387,3604,5.0,974791016\n387,3606,4.0,974682977\n387,3671,3.0,975104951\n387,3675,4.0,974790925\n387,3678,4.0,974670478\n387,3685,4.0,974671067\n387,3730,5.0,974791289\n387,3735,4.0,974791338\n387,3736,5.0,974670360\n387,3737,5.0,974681905\n387,3792,4.0,974683219\n387,3801,4.0,974670478\n387,3871,4.0,974670360\n387,3873,4.0,974681779\n387,3911,4.0,975143028\n387,3929,5.0,974682905\n387,4008,4.0,975143365\n387,5866,5.0,1036457635\n388,6,5.0,946520615\n388,10,2.0,946521781\n388,14,4.0,946527775\n388,16,3.0,946534269\n388,20,1.0,946521220\n388,22,4.0,946522830\n388,23,2.0,946534576\n388,25,4.0,946532317\n388,29,3.0,965182022\n388,32,4.0,946527074\n388,36,4.0,946527132\n388,39,3.0,946533260\n388,41,2.0,946525631\n388,42,2.0,946520999\n388,45,2.0,946523444\n388,47,5.0,946522753\n388,49,3.0,946528236\n388,50,5.0,946522650\n388,62,3.0,946528837\n388,70,3.0,946520908\n388,72,5.0,946523596\n388,82,2.0,965182946\n388,88,3.0,946524155\n388,100,2.0,973840218\n388,101,4.0,946523209\n388,104,2.0,946523617\n388,105,2.0,946508346\n388,110,5.0,946509960\n388,111,5.0,946525718\n388,122,3.0,965183831\n388,125,4.0,946523325\n388,144,3.0,946523545\n388,145,3.0,946520884\n388,150,4.5,1097625220\n388,159,4.5,1053316150\n388,163,4.0,946520908\n388,165,3.0,965183098\n388,180,2.0,946524117\n388,186,2.5,1097625718\n388,188,2.0,946530945\n388,193,1.0,946529503\n388,198,3.0,946520824\n388,204,2.0,946520947\n388,216,2.0,946524155\n388,223,4.0,946509004\n388,231,5.0,946524061\n388,235,4.0,946523209\n388,246,5.0,946524879\n388,247,3.0,946526524\n388,253,3.0,946531003\n388,260,4.5,1097625248\n388,266,2.0,965183151\n388,272,4.0,946527535\n388,288,1.0,946521034\n388,292,1.0,946520968\n388,293,2.0,946522771\n388,296,5.0,946522591\n388,300,4.0,946527109\n388,318,5.0,946525738\n388,322,4.0,946528365\n388,330,3.0,965183436\n388,333,4.0,946523932\n388,337,4.0,965182221\n388,338,2.0,946534150\n388,340,2.0,946521654\n388,344,2.0,946523932\n388,349,5.0,946520805\n388,356,4.0,973840479\n388,357,3.0,946523348\n388,358,2.0,946529274\n388,363,4.0,946524933\n388,364,3.0,946522073\n388,370,2.5,1167703757\n388,377,4.0,946520673\n388,423,3.0,946534602\n388,428,3.0,965182366\n388,431,4.0,946522753\n388,432,2.5,1167703743\n388,434,4.0,946521750\n388,440,4.0,946523367\n388,441,4.0,999578153\n388,442,2.0,946521266\n388,454,3.0,946528888\n388,456,3.0,946527622\n388,457,5.0,946534256\n388,465,3.0,946510162\n388,466,3.0,1167703791\n388,467,2.0,946523463\n388,474,4.0,946534304\n388,475,4.0,946527109\n388,479,4.0,946521311\n388,480,4.0,946520805\n388,482,4.0,946534321\n388,493,4.0,946522753\n388,507,4.0,946520742\n388,508,5.0,965182563\n388,517,3.0,946520999\n388,518,3.0,946524201\n388,524,4.0,946528365\n388,527,5.0,946509889\n388,529,4.0,1097625704\n388,534,4.0,946533368\n388,535,4.0,946526258\n388,538,4.0,946527159\n388,541,5.0,946530195\n388,543,3.0,946523932\n388,544,1.0,965184179\n388,553,2.0,946509773\n388,586,3.0,946522351\n388,587,4.0,946523761\n388,589,4.0,946520567\n388,590,5.0,946509773\n388,592,3.0,946520784\n388,593,4.0,946525758\n388,597,3.0,1097625332\n388,608,5.0,946522591\n388,648,4.0,946520968\n388,663,4.0,946524019\n388,671,4.0,946523566\n388,725,3.0,946524019\n388,733,4.0,946520884\n388,750,4.0,946509889\n388,759,5.0,946524906\n388,778,5.0,946527213\n388,780,1.0,946510110\n388,784,4.0,973840164\n388,785,3.0,946509305\n388,787,5.0,946524879\n388,788,4.0,946523617\n388,832,4.0,946534351\n388,850,5.0,946529237\n388,852,4.0,946523696\n388,858,5.0,973840591\n388,861,3.0,946520742\n388,866,4.0,965182039\n388,912,4.0,1187550146\n388,919,4.0,946522187\n388,920,4.0,946509960\n388,923,4.0,946525453\n388,924,5.0,946526494\n388,953,4.0,946526462\n388,991,4.0,946510139\n388,1012,3.0,946522206\n388,1025,5.0,946522125\n388,1027,4.0,946529384\n388,1034,2.0,946522753\n388,1036,5.0,946520592\n388,1060,5.0,946523166\n388,1073,5.0,1097625360\n388,1085,4.0,946521633\n388,1089,4.0,946522650\n388,1090,5.0,946509990\n388,1092,2.0,946531679\n388,1093,2.0,946509140\n388,1095,5.0,946526474\n388,1097,4.0,946522206\n388,1101,3.0,946520947\n388,1127,4.0,946521654\n388,1148,5.0,946522032\n388,1150,5.0,946526274\n388,1171,4.0,946523262\n388,1178,5.0,997425285\n388,1179,5.0,946522669\n388,1183,4.0,973840441\n388,1185,5.0,946508541\n388,1193,5.0,946887028\n388,1196,4.0,946508346\n388,1197,5.0,946521488\n388,1198,5.0,946520553\n388,1199,4.0,946533764\n388,1200,5.0,946509924\n388,1203,5.0,946525738\n388,1204,5.0,946509924\n388,1207,3.0,946525738\n388,1208,5.0,946509924\n388,1210,5.0,946508541\n388,1213,5.0,946522591\n388,1214,5.0,966437837\n388,1215,3.0,946520615\n388,1217,4.0,973839483\n388,1218,2.0,992330812\n388,1219,4.0,1097625554\n388,1220,4.0,946523395\n388,1221,5.0,946520553\n388,1222,5.0,946510070\n388,1225,5.0,946525718\n388,1226,3.0,946523912\n388,1228,5.0,946525718\n388,1230,4.0,946874995\n388,1233,5.0,951159769\n388,1235,4.0,946523209\n388,1240,4.0,946520592\n388,1242,5.0,946510028\n388,1245,5.0,946527600\n388,1246,5.0,946527850\n388,1247,5.0,978158997\n388,1248,4.0,1118649115\n388,1250,5.0,946509960\n388,1252,5.0,965185411\n388,1254,4.0,947227144\n388,1258,5.0,946530891\n388,1259,5.0,946521510\n388,1262,5.0,946509889\n388,1265,4.0,946523140\n388,1266,5.0,946509726\n388,1267,4.5,1119458331\n388,1270,4.0,946508425\n388,1271,3.0,946528818\n388,1275,2.5,1167704086\n388,1279,4.0,946523788\n388,1280,4.0,946527520\n388,1287,5.0,946520615\n388,1291,5.0,946520702\n388,1293,4.5,1097626045\n388,1299,5.0,946509990\n388,1302,4.0,946527808\n388,1304,5.0,946509726\n388,1320,5.0,946521131\n388,1339,3.0,946530977\n388,1342,4.0,946531055\n388,1343,2.0,965182451\n388,1345,4.0,946530891\n388,1358,4.0,946527159\n388,1366,4.0,946529193\n388,1370,4.0,946520884\n388,1376,4.0,946520784\n388,1378,4.0,946509801\n388,1379,4.0,946509828\n388,1387,4.5,1097625455\n388,1388,3.0,946521338\n388,1393,4.0,946527634\n388,1394,3.0,946523099\n388,1396,4.0,946522771\n388,1404,2.0,946529025\n388,1405,3.0,946522110\n388,1408,5.0,946510070\n388,1449,4.0,977163638\n388,1459,2.0,946531706\n388,1464,1.0,1008747739\n388,1466,5.0,946522725\n388,1468,2.0,946532266\n388,1476,4.0,946523727\n388,1485,4.0,946523678\n388,1500,3.0,946522753\n388,1517,4.0,946523294\n388,1518,4.0,946534447\n388,1526,2.0,946524079\n388,1552,2.0,973840256\n388,1562,1.0,946521435\n388,1573,4.0,946520702\n388,1580,3.0,946520702\n388,1584,4.0,946528794\n388,1587,4.0,946520947\n388,1590,3.0,946521413\n388,1594,2.0,973840730\n388,1597,3.0,946521065\n388,1601,2.0,946522857\n388,1610,5.0,946520673\n388,1614,3.0,946523662\n388,1615,4.0,946521654\n388,1617,4.5,1097625389\n388,1620,3.0,946522857\n388,1625,5.0,946531653\n388,1635,4.0,946621687\n388,1639,3.0,946527520\n388,1641,4.0,965182136\n388,1645,4.0,946522753\n388,1653,4.0,946528794\n388,1663,4.0,946523444\n388,1670,4.0,946509960\n388,1673,5.0,946525758\n388,1682,3.5,1097625620\n388,1687,1.0,946521179\n388,1690,3.0,946521179\n388,1693,5.0,973839943\n388,1699,3.0,965182433\n388,1704,4.0,946527193\n388,1711,3.0,946522882\n388,1717,2.0,946530990\n388,1719,4.0,946527026\n388,1721,4.0,946528912\n388,1729,3.0,946522725\n388,1732,5.0,946522725\n388,1747,3.0,946523426\n388,1748,4.0,946530195\n388,1753,4.0,946523943\n388,1777,3.0,946523885\n388,1779,2.0,946521833\n388,1784,4.0,946523617\n388,1792,3.0,946521220\n388,1805,4.0,946522830\n388,1810,4.0,946527775\n388,1816,4.0,946523998\n388,1834,4.0,997169403\n388,1836,4.0,965183315\n388,1840,3.0,946528850\n388,1845,4.0,946523262\n388,1856,3.0,946524978\n388,1862,1.0,946531490\n388,1876,1.0,946521065\n388,1883,4.0,946523545\n388,1885,1.0,946523367\n388,1887,2.0,946521893\n388,1897,3.0,946532317\n388,1909,3.0,946531693\n388,1912,4.0,946520567\n388,1917,1.0,973839944\n388,1918,2.0,946521311\n388,1921,4.0,946533914\n388,1922,3.0,1007197549\n388,1923,5.0,946523232\n388,1927,5.0,946509889\n388,1946,5.0,946509661\n388,1958,4.0,946523445\n388,1960,5.0,946510070\n388,1961,5.0,965184908\n388,1962,4.0,946527535\n388,1966,4.0,965182512\n388,1968,4.0,946523325\n388,1970,2.0,946531085\n388,1996,3.0,946531516\n388,2000,4.0,946520742\n388,2001,3.0,946520999\n388,2002,3.0,946521266\n388,2005,5.0,946521820\n388,2006,4.0,946521584\n388,2009,3.0,973839782\n388,2011,3.0,946523740\n388,2012,3.0,946509801\n388,2013,4.0,946509381\n388,2020,4.0,946526462\n388,2022,4.5,1053316123\n388,2023,4.0,946528959\n388,2028,5.0,946510258\n388,2067,4.0,946510028\n388,2072,3.0,946524285\n388,2076,4.0,993142382\n388,2090,4.0,946522144\n388,2108,4.0,946523412\n388,2109,4.0,946523662\n388,2112,4.0,946522793\n388,2114,4.0,946528850\n388,2115,5.0,946520784\n388,2133,2.0,973839856\n388,2134,3.0,946523982\n388,2140,3.0,946522316\n388,2146,2.0,946529214\n388,2162,1.0,946530111\n388,2166,4.0,946528875\n388,2169,1.0,973840335\n388,2174,5.0,946523412\n388,2188,1.0,946508880\n388,2194,5.0,946520673\n388,2245,4.0,946523727\n388,2248,5.0,946523232\n388,2249,4.0,946523809\n388,2250,3.0,946529090\n388,2253,2.0,946524230\n388,2263,3.0,946534556\n388,2265,1.0,946521934\n388,2268,5.0,946522771\n388,2271,2.0,996044240\n388,2273,4.0,946534486\n388,2278,4.0,946522793\n388,2280,3.0,946522810\n388,2282,3.0,946528837\n388,2289,4.0,946523121\n388,2302,5.0,965182784\n388,2314,3.0,965182545\n388,2321,4.0,946523348\n388,2334,3.0,946521149\n388,2335,3.0,946524155\n388,2336,4.0,966437864\n388,2353,3.0,946520742\n388,2359,4.0,965182335\n388,2369,2.0,946523809\n388,2370,4.0,946521266\n388,2372,3.0,946523912\n388,2373,3.0,965185228\n388,2374,3.0,946524131\n388,2375,3.0,946524285\n388,2376,2.0,946521291\n388,2378,3.0,946524079\n388,2379,2.0,946524344\n388,2380,1.0,965185330\n388,2381,1.0,965185310\n388,2382,3.0,946524459\n388,2389,1.0,946522906\n388,2391,4.0,946522669\n388,2395,4.0,946509425\n388,2402,2.0,965185249\n388,2404,3.0,946521365\n388,2411,3.0,946521338\n388,2413,3.0,946532221\n388,2416,2.0,946523982\n388,2420,4.0,946529149\n388,2423,4.0,946523982\n388,2425,4.0,965182119\n388,2427,5.0,946510419\n388,2428,1.0,946509253\n388,2435,3.0,946529104\n388,2458,3.0,946524270\n388,2470,3.0,946521654\n388,2472,3.0,946523998\n388,2476,3.0,946521065\n388,2478,4.0,946524155\n388,2490,3.0,946509381\n388,2494,4.0,947227203\n388,2502,4.0,946509342\n388,2513,4.0,946531530\n388,2529,5.0,946520646\n388,2530,4.0,946521034\n388,2541,3.0,946509140\n388,2560,2.0,965182512\n388,2571,5.0,946520615\n388,2574,2.0,946509342\n388,2579,3.0,1008268025\n388,2580,5.0,946509253\n388,2599,5.0,946509199\n388,2610,4.0,946526437\n388,2628,2.0,1030322959\n388,2639,3.0,946528997\n388,2640,4.0,946533914\n388,2683,4.0,946508880\n388,2692,3.0,946508541\n388,2706,4.0,946508880\n388,2707,4.0,1047201148\n388,2710,3.0,946509004\n388,2712,3.0,946509199\n388,2716,5.0,966437990\n388,2717,3.0,946531099\n388,2728,5.0,946527026\n388,2730,5.0,946527834\n388,2734,4.0,946529214\n388,2735,3.0,946521413\n388,2745,5.0,946509535\n388,2750,4.0,946523325\n388,2761,4.0,965182201\n388,2762,4.0,1097625407\n388,2770,3.0,954582475\n388,2782,4.0,946531033\n388,2791,5.0,946523166\n388,2792,3.0,965185072\n388,2794,4.0,946524188\n388,2795,4.0,965184821\n388,2796,2.0,965185149\n388,2797,4.0,946523280\n388,2802,2.0,946533457\n388,2804,2.0,973840204\n388,2815,3.0,946521380\n388,2826,2.0,954582556\n388,2840,2.0,946534511\n388,2858,4.0,973839944\n388,2885,4.0,954582475\n388,2890,5.0,965182119\n388,2912,3.0,965182366\n388,2915,3.0,946523325\n388,2916,4.0,946520784\n388,2918,5.0,946523184\n388,2919,4.0,965184768\n388,2930,4.5,1114896909\n388,2943,3.0,946528837\n388,2944,5.0,946509960\n388,2952,5.0,973840647\n388,2953,1.0,946524403\n388,2959,3.0,965182285\n388,2966,5.0,965181752\n388,2976,3.0,965181792\n388,2979,2.0,965183056\n388,2985,5.0,946522793\n388,2986,3.0,946521200\n388,2990,2.0,946521104\n388,2997,5.0,946509004\n388,3006,5.0,986260550\n388,3019,4.0,994453108\n388,3033,4.0,946523982\n388,3034,4.0,946522056\n388,3036,5.0,946521606\n388,3046,2.0,946523483\n388,3052,3.0,973840377\n388,3060,4.0,946523248\n388,3071,5.0,946527850\n388,3072,3.0,946523232\n388,3077,4.0,1012456278\n388,3081,4.0,946509464\n388,3090,5.0,946527144\n388,3095,5.0,946526437\n388,3098,4.0,946527193\n388,3100,4.0,946527797\n388,3101,4.0,946534321\n388,3104,3.0,946520592\n388,3105,4.0,946527504\n388,3117,4.0,965181806\n388,3145,1.0,965181775\n388,3150,5.0,966927397\n388,3160,4.0,965182022\n388,3174,2.0,965181775\n388,3197,2.0,965185092\n388,3198,3.0,965185439\n388,3203,5.0,965184781\n388,3210,2.0,994030777\n388,3241,3.0,984300733\n388,3246,4.5,1053316197\n388,3250,3.0,965182705\n388,3252,4.0,965182842\n388,3254,3.0,965183296\n388,3255,4.0,965182720\n388,3256,4.0,965182738\n388,3259,4.0,965183182\n388,3263,4.0,965182466\n388,3271,4.0,965182303\n388,3298,4.0,966437899\n388,3317,4.0,986260308\n388,3342,5.0,951159820\n388,3355,4.0,973839295\n388,3360,4.0,1114897015\n388,3386,5.0,965182089\n388,3421,5.0,1066722919\n388,3424,4.0,965184794\n388,3426,3.0,965182652\n388,3441,4.0,965185054\n388,3448,5.0,973840591\n388,3452,3.0,965181589\n388,3481,4.5,1167703847\n388,3499,5.0,965182303\n388,3500,2.0,965183581\n388,3504,4.5,1114897240\n388,3509,3.0,973839240\n388,3510,4.0,977245217\n388,3526,4.0,965184844\n388,3527,5.0,965184821\n388,3528,2.0,965183199\n388,3535,3.0,965181626\n388,3539,4.0,993487326\n388,3556,4.0,978159019\n388,3557,3.0,965182928\n388,3571,3.0,977245242\n388,3578,4.0,997649625\n388,3614,4.0,965182889\n388,3617,3.0,978371023\n388,3624,3.0,973839080\n388,3683,5.0,994480772\n388,3686,4.0,965183215\n388,3697,4.0,965183131\n388,3698,4.0,965185029\n388,3704,4.0,965185371\n388,3720,3.0,991606971\n388,3724,4.5,1199226031\n388,3747,5.0,1005420389\n388,3752,3.0,979464307\n388,3753,2.0,965181612\n388,3755,3.0,977163722\n388,3783,5.0,986260262\n388,3852,4.0,986260664\n388,3896,1.0,973839141\n388,3897,5.0,973838986\n388,3902,4.5,1053316068\n388,3911,4.0,993142409\n388,3948,4.0,1097625977\n388,3949,2.0,991411716\n388,3950,3.0,993404351\n388,3952,3.0,986260217\n388,3983,4.0,1000015915\n388,3993,3.0,991606947\n388,3994,3.0,1005420434\n388,3996,4.0,984300679\n388,3998,3.0,977163679\n388,4007,4.5,1114896977\n388,4011,2.0,995388888\n388,4017,4.0,998591415\n388,4022,4.0,978371003\n388,4027,4.0,978416251\n388,4029,3.0,994030740\n388,4033,4.0,995868971\n388,4034,5.0,986260513\n388,4035,4.0,993665885\n388,4037,5.0,978158931\n388,4047,4.0,978158978\n388,4055,3.0,999248439\n388,4085,4.0,1114897216\n388,4103,5.0,1114898483\n388,4117,4.0,998591471\n388,4211,5.0,1114897195\n388,4223,3.0,998591438\n388,4226,5.0,991606993\n388,4235,4.0,1020828830\n388,4239,3.0,991974199\n388,4297,4.0,994558471\n388,4312,3.0,1017378806\n388,4326,4.5,1114896932\n388,4351,4.0,991975567\n388,4370,5.0,1024472308\n388,4378,4.0,1017378827\n388,4389,3.0,1008835743\n388,4391,4.0,1000015889\n388,4446,2.0,1006152888\n388,4448,3.0,1008630332\n388,4489,4.0,1072682254\n388,4537,4.5,1114897038\n388,4564,3.5,1053316581\n388,4616,3.5,1114898523\n388,4641,5.0,997051243\n388,4643,1.0,997649338\n388,4688,5.0,1114897763\n388,4718,3.0,1012027203\n388,4720,4.0,1022307058\n388,4723,4.0,1027558997\n388,4737,2.0,1014098545\n388,4776,4.0,1024796772\n388,4783,4.0,1066722747\n388,4816,3.0,1016259811\n388,4846,3.0,1020326560\n388,4848,4.0,1003004222\n388,4855,4.5,1114896996\n388,4865,4.0,1021749111\n388,4873,3.0,1021749091\n388,4881,4.0,1005420349\n388,4888,4.0,1020326510\n388,4896,3.0,1167703989\n388,4963,4.0,1008630374\n388,4965,4.0,1008487964\n388,4967,3.0,1019353060\n388,4975,1.0,1027349246\n388,4977,4.0,1012093742\n388,4979,4.0,1028642163\n388,4993,5.0,1044494397\n388,4995,3.0,1025899891\n388,5010,5.0,1011683096\n388,5013,5.0,1027090728\n388,5015,4.0,1035442041\n388,5026,2.0,1012027245\n388,5028,4.0,1014616812\n388,5060,5.0,946509924\n388,5064,4.0,1032327288\n388,5074,3.0,1013845763\n388,5103,3.5,1114898655\n388,5107,3.0,1027558972\n388,5225,5.0,1018236835\n388,5266,4.0,1018734971\n388,5297,4.0,1030340576\n388,5315,2.0,1030947625\n388,5349,4.0,1089481350\n388,5378,3.0,1030323030\n388,5388,3.0,1022376655\n388,5417,4.0,1027349290\n388,5418,4.0,1024788813\n388,5425,2.0,1023561710\n388,5445,4.0,1024941805\n388,5464,3.0,1027211134\n388,5505,3.0,1046479013\n388,5508,4.0,1030999212\n388,5527,3.0,1042126048\n388,5666,2.0,1040192834\n388,5669,4.0,1061482686\n388,5670,4.5,1056995673\n388,5673,4.0,1037056127\n388,5680,4.0,1050973941\n388,5686,3.0,1050973972\n388,5791,2.0,1039073196\n388,5808,2.0,1046902164\n388,5876,3.5,1066722617\n388,5902,4.5,1053316058\n388,5945,3.5,1056496972\n388,5952,4.5,1072682165\n388,5956,3.0,1047201078\n388,5989,4.5,1056497014\n388,5995,5.0,1042505680\n388,6016,4.0,1076803231\n388,6101,4.5,1114898046\n388,6159,1.5,1084581534\n388,6215,4.0,1056842759\n388,6223,1.0,1059711593\n388,6281,3.5,1058584319\n388,6287,2.0,1050973920\n388,6296,3.5,1065414842\n388,6333,4.0,1051941002\n388,6337,3.5,1067204445\n388,6365,4.0,1055662214\n388,6373,2.5,1062885084\n388,6378,3.5,1055662276\n388,6384,3.5,1071910951\n388,6440,5.0,1056496966\n388,6539,4.0,1058655673\n388,6552,4.5,1061792831\n388,6565,3.5,1077406095\n388,6612,4.0,1066722724\n388,6620,4.5,1062884732\n388,6638,4.0,1066722855\n388,6708,4.0,1097479392\n388,6711,4.5,1065414859\n388,6754,2.5,1104298768\n388,6760,4.0,1091210537\n388,6773,4.5,1085989847\n388,6796,4.0,1066722730\n388,6811,2.0,1066722877\n388,6832,3.0,1066722847\n388,6863,4.0,1114898800\n388,6867,4.0,1088270089\n388,6870,4.0,1077406010\n388,6874,4.0,1066532691\n388,6881,4.0,1079933683\n388,6932,4.5,1069317196\n388,6934,4.0,1071347441\n388,6947,4.5,1070755624\n388,6953,4.0,1072826845\n388,6957,4.0,1072826833\n388,6974,4.0,1096957574\n388,6979,4.5,1114896953\n388,7025,4.5,1114898388\n388,7090,4.0,1105855252\n388,7139,4.0,1072583014\n388,7143,2.5,1072682126\n388,7151,4.0,1087361738\n388,7153,4.0,1072583077\n388,7158,3.5,1084581512\n388,7162,4.0,1088799357\n388,7177,4.0,1092410892\n388,7325,3.5,1079933638\n388,7348,4.0,1112169908\n388,7361,4.0,1082848176\n388,7367,3.0,1104298828\n388,7438,2.0,1090183657\n388,8207,5.0,1114896939\n388,8337,4.0,1114897132\n388,8361,3.5,1099770701\n388,8451,4.0,1114898649\n388,8464,4.0,1087093182\n388,8527,3.0,1112169888\n388,8528,4.0,1088270131\n388,8622,4.0,1090106529\n388,8636,4.5,1090183696\n388,8640,3.0,1090106549\n388,8645,3.5,1114898633\n388,8665,4.0,1091312747\n388,8783,3.5,1091999799\n388,8784,3.0,1160404392\n388,8798,4.0,1104298841\n388,8800,3.5,1114896846\n388,8807,3.5,1124050419\n388,8873,3.5,1101593171\n388,8949,5.0,1100381747\n388,8983,4.0,1106005465\n388,26729,4.5,1177872304\n388,27721,4.5,1104821581\n388,27846,3.5,1154063228\n388,27850,2.5,1114897006\n388,27904,3.5,1154063211\n388,30707,4.0,1114896886\n388,30749,4.0,1114896822\n388,30812,3.5,1104298719\n388,30822,4.0,1112169847\n388,30825,3.5,1104298752\n388,32298,3.5,1112169929\n388,33162,3.0,1116109493\n388,33493,4.0,1118527843\n388,33794,4.5,1119458306\n388,33817,3.5,1120088786\n388,34162,4.5,1122278619\n388,35836,4.5,1154228523\n388,37240,4.0,1143429998\n388,37382,2.5,1143760255\n388,37741,4.5,1141434683\n388,38061,3.0,1154063247\n388,38886,4.5,1134863972\n388,39292,3.5,1143429907\n388,39414,4.0,1131422901\n388,40583,4.0,1134863929\n388,41566,3.0,1167703396\n388,41997,4.5,1135725076\n388,42418,4.5,1137969678\n388,44397,3.5,1143429984\n388,44555,4.5,1229027041\n388,45447,3.5,1167703367\n388,45722,4.0,1156377909\n388,45950,4.0,1154228443\n388,46578,4.0,1156377921\n388,47629,3.0,1187550128\n388,48082,4.0,1160958135\n388,48696,4.0,1182628058\n388,49822,3.5,1167799651\n388,49824,2.5,1229026839\n388,49961,3.5,1198964351\n388,50872,4.5,1198964476\n388,51884,3.5,1177872275\n388,53125,3.5,1182628095\n388,53894,4.5,1187550165\n388,54272,4.0,1187550052\n388,54286,3.5,1187550082\n388,55820,4.0,1198964331\n388,55830,3.5,1229026867\n388,58559,4.0,1229026930\n388,60756,4.0,1229027003\n389,2,4.0,829491840\n389,5,4.0,829491839\n389,10,4.0,829491840\n389,19,1.0,829492315\n389,22,3.0,829495183\n389,23,2.0,829492315\n389,54,4.0,829492315\n389,62,4.0,829491840\n389,74,4.0,829491839\n389,95,5.0,829491839\n389,110,5.0,829492315\n389,135,4.0,829491839\n389,150,4.0,829492315\n389,151,4.0,829492316\n389,153,3.0,829492315\n389,160,3.0,829492316\n389,161,4.0,829492316\n389,163,1.0,829492316\n389,168,4.0,829492316\n389,172,3.0,829492316\n389,173,2.0,829492316\n389,185,4.0,829495183\n389,204,3.0,829492316\n389,207,4.0,829492316\n389,208,4.0,829492316\n389,225,2.0,829492316\n389,231,1.0,829492316\n389,236,3.0,829492316\n389,237,3.0,829492316\n389,238,3.0,829492316\n389,248,4.0,829492316\n389,252,4.0,829492316\n389,253,2.0,829492316\n389,256,3.0,829492316\n389,266,4.0,829495183\n389,274,3.0,829492316\n389,276,3.0,829492316\n389,292,4.0,829492316\n389,316,4.0,829492316\n389,318,5.0,829492316\n389,333,5.0,829492316\n389,339,3.0,829492316\n389,344,2.0,829492315\n389,349,4.0,829492315\n389,380,5.0,829492316\n389,381,2.0,829492316\n389,432,3.0,829492315\n389,434,5.0,829492315\n389,588,4.0,829492315\n389,590,5.0,829492316\n389,595,4.0,829492315\n390,1,4.0,867073566\n390,3,5.0,867072842\n390,7,3.0,867072884\n390,9,3.0,867076328\n390,10,3.0,867076126\n390,11,5.0,867075845\n390,14,2.0,867072919\n390,15,3.0,867076269\n390,17,4.0,867072803\n390,21,5.0,867076176\n390,32,1.0,867072802\n390,43,3.0,867074211\n390,44,3.0,867076269\n390,52,3.0,867072918\n390,62,3.0,867072803\n390,65,2.0,867072979\n390,92,2.0,867073966\n390,95,3.0,867072802\n390,102,3.0,867073883\n390,104,1.0,867072884\n390,110,3.0,867076005\n390,112,4.0,867072884\n390,135,2.0,867072919\n390,141,5.0,867072802\n390,153,3.0,867076269\n390,165,4.0,867076176\n390,168,3.0,867076243\n390,173,3.0,867076294\n390,185,3.0,867076243\n390,204,3.0,867076243\n390,208,3.0,867076127\n390,227,3.0,867076294\n390,260,5.0,867072842\n390,296,5.0,867075838\n390,303,3.0,867076328\n390,315,3.0,867076328\n390,316,4.0,867076176\n390,339,5.0,867075841\n390,349,3.0,867076269\n390,357,3.0,867075839\n390,377,5.0,867076005\n390,379,3.0,867076243\n390,380,5.0,867076008\n390,423,3.0,867076327\n390,434,3.0,867076010\n390,438,3.0,867076351\n390,440,3.0,867075844\n390,457,3.0,867076126\n390,480,5.0,867076002\n390,494,4.0,867072842\n390,507,3.0,867076294\n390,517,4.0,867076269\n390,539,5.0,867075842\n390,541,3.0,867076243\n390,548,3.0,867076328\n390,589,3.0,867076003\n390,592,3.0,867076211\n390,608,4.0,867072842\n390,609,3.0,867073074\n390,613,3.0,867074211\n390,628,2.0,867072919\n390,637,2.0,867072919\n390,640,3.0,867073029\n390,647,2.0,867072979\n390,648,2.0,867072802\n390,653,4.0,867073609\n390,656,3.0,867074252\n390,667,2.0,867073883\n390,673,1.0,867072979\n390,694,1.0,867073940\n390,708,4.0,867073609\n390,710,2.0,867074211\n390,719,2.0,867072949\n390,733,4.0,867072841\n390,736,4.0,867072802\n390,742,1.0,867074367\n390,778,2.0,867072949\n390,780,5.0,867072802\n390,785,3.0,867073029\n390,786,4.0,867072842\n390,788,3.0,867072884\n390,798,3.0,867074292\n390,801,3.0,867074367\n390,802,4.0,867073609\n390,809,3.0,867074344\n390,810,2.0,867073939\n390,813,3.0,867074680\n390,818,2.0,867073940\n390,830,4.0,867073074\n390,832,3.0,867072949\n390,837,3.0,867073966\n390,838,4.0,867073939\n390,849,3.0,867073883\n390,852,3.0,867072949\n390,858,5.0,867072949\n390,861,4.0,867076294\n390,870,1.0,867074763\n390,880,1.0,867073883\n390,891,1.0,867073940\n390,991,2.0,867074292\n390,1036,5.0,867076007\n390,1042,4.0,867073940\n390,1047,3.0,867073883\n390,1049,4.0,867074211\n390,1101,3.0,867076127\n390,1113,3.0,867074383\n390,1120,4.0,867074211\n390,1129,3.0,867076243\n390,1183,3.0,867073029\n390,1196,5.0,867076002\n390,1197,4.0,867075844\n390,1198,5.0,867076002\n390,1200,3.0,867076126\n390,1201,3.0,867076211\n390,1204,3.0,867076176\n390,1210,5.0,867072919\n390,1214,3.0,867076127\n390,1221,5.0,867076211\n390,1240,3.0,867076126\n390,1242,2.0,867076211\n390,1270,5.0,867075841\n390,1275,3.0,867076176\n390,1287,3.0,867076126\n390,1291,3.0,867075844\n390,1304,5.0,867076176\n390,1320,3.0,867076294\n390,1356,5.0,867073609\n390,1363,3.0,867074252\n390,1370,3.0,867076211\n390,1371,3.0,867076211\n390,1372,3.0,867076176\n390,1373,3.0,867076243\n390,1374,5.0,867076126\n390,1375,3.0,867076176\n390,1376,5.0,867076007\n390,1377,3.0,867076243\n390,1385,3.0,867076211\n390,1393,5.0,867072979\n390,1405,1.0,867075909\n390,1409,4.0,867073723\n390,1410,2.0,867074518\n390,1429,4.0,867074292\n390,1431,1.0,867074344\n390,1459,3.0,867074406\n390,1461,3.0,867074518\n390,1463,4.0,867074777\n390,1499,2.0,867074631\n390,1513,3.0,867074680\n390,1515,5.0,867074649\n390,1527,3.0,867074406\n390,1544,5.0,867074406\n390,1562,3.0,867074905\n390,2019,3.0,867076127\n391,4,2.0,891534197\n391,17,4.0,891533092\n391,35,5.0,891533260\n391,45,3.0,891533920\n391,46,4.0,891534104\n391,47,3.0,891533670\n391,50,5.0,891533526\n391,58,5.0,891532936\n391,96,1.0,891532936\n391,110,4.0,891533562\n391,111,3.0,891534239\n391,144,5.0,891533787\n391,150,2.0,891533670\n391,151,2.0,891533961\n391,162,5.0,891533562\n391,222,4.0,891534008\n391,233,4.0,891534162\n391,272,5.0,891533260\n391,277,1.0,891533848\n391,280,4.0,891533670\n391,299,3.0,891532936\n391,300,4.0,891533884\n391,302,4.0,891533396\n391,318,5.0,891533562\n391,319,3.0,891532808\n391,331,3.0,891533594\n391,342,2.0,891533233\n391,347,4.0,891534104\n391,356,3.0,891533883\n391,357,4.0,891533148\n391,381,1.0,891533743\n391,382,1.0,891534197\n391,412,3.0,891534008\n391,475,4.0,891533526\n391,481,4.0,891534008\n391,493,3.0,891533743\n391,497,4.0,891533092\n391,501,4.0,891532848\n391,506,3.0,891533291\n391,508,2.0,891534008\n391,509,5.0,891534357\n391,515,5.0,891533055\n391,521,4.0,891533848\n391,522,5.0,891534357\n391,527,5.0,891533562\n391,531,4.0,891533260\n391,534,5.0,891533260\n391,535,5.0,891533624\n391,537,3.0,891533920\n391,555,4.0,891533920\n391,587,1.0,891534197\n391,590,3.0,891533670\n391,592,3.0,891534069\n391,728,5.0,891532936\n391,778,5.0,891534357\n391,838,4.0,891533291\n391,892,5.0,891533210\n391,924,3.0,891533670\n391,1097,1.0,891533787\n391,1131,4.0,891532976\n391,1132,5.0,891533006\n391,1171,3.0,891533743\n391,1172,5.0,891534357\n391,1175,5.0,891532881\n391,1180,5.0,891533210\n391,1183,5.0,891533414\n391,1185,5.0,891533092\n391,1190,1.0,891533210\n391,1193,5.0,891534357\n391,1199,2.0,891533562\n391,1202,5.0,891534357\n391,1204,3.0,891533526\n391,1206,3.0,891533210\n391,1207,5.0,891534357\n391,1208,5.0,891534357\n391,1212,5.0,891534357\n391,1224,4.0,891532936\n391,1225,5.0,891533594\n391,1237,5.0,891533961\n391,1243,4.0,891533055\n391,1245,3.0,891533961\n391,1246,3.0,891533920\n391,1249,4.0,891533396\n391,1254,5.0,891533526\n391,1262,3.0,891533701\n391,1263,5.0,891533701\n391,1268,4.0,891534070\n391,1271,4.0,891533884\n391,1273,5.0,891533624\n391,1276,5.0,891533624\n391,1277,4.0,891532976\n391,1279,3.0,891533884\n391,1283,4.0,891533594\n391,1287,4.0,891533920\n391,1290,4.0,891533701\n391,1293,4.0,891533526\n391,1296,5.0,891533112\n391,1298,1.0,891533787\n391,1301,5.0,891533594\n391,1302,3.0,891533884\n391,1306,1.0,891534162\n391,1344,2.0,891533624\n391,1357,4.0,891532848\n391,1419,3.0,891533055\n391,1596,3.0,891534410\n391,1611,5.0,891534069\n391,1617,5.0,891532748\n391,1641,4.0,891532748\n391,1643,5.0,891534455\n391,1673,3.0,891534410\n391,1721,1.0,891532748\n391,1722,3.0,891534410\n391,2019,5.0,891534357\n392,169,1.5,1226176992\n392,605,4.0,1226176964\n392,1104,3.0,1226176844\n392,1203,3.0,1226177143\n392,1566,2.0,1226176907\n392,2137,3.5,1226176873\n392,2329,4.5,1226177160\n392,2567,2.0,1226176936\n392,2747,2.0,1226177019\n392,2858,4.0,1226177156\n392,2926,4.0,1226176984\n392,2959,4.0,1226177270\n392,3034,2.0,1226176943\n392,3157,3.0,1226176916\n392,3273,1.0,1226176860\n392,3791,1.5,1226177002\n392,4973,4.0,1226177152\n392,6296,3.5,1226177035\n392,7361,4.0,1226177336\n392,8784,4.0,1226176813\n392,46976,3.0,1226177023\n392,47382,4.0,1226177308\n392,56949,3.0,1226177294\n392,58107,1.0,1226177310\n392,58559,4.5,1226177264\n393,16,2.5,1058471878\n393,187,3.5,1058472448\n393,235,4.5,1058471666\n393,432,1.5,1058471886\n393,435,2.0,1058471824\n393,497,4.0,1058471850\n393,585,2.0,1058473252\n393,589,1.0,1058472166\n393,594,2.5,1058471705\n393,728,3.5,1058472358\n393,753,3.5,1058472578\n393,801,3.0,1058473278\n393,920,3.5,1058471838\n393,934,2.0,1058472418\n393,1010,1.5,1058472676\n393,1027,1.5,1058473262\n393,1079,3.0,1058471682\n393,1120,4.0,1058472195\n393,1206,3.5,1058471814\n393,1208,4.0,1058471871\n393,1230,4.5,1058471722\n393,1247,4.0,1058471889\n393,1387,4.0,1058471697\n393,1394,4.5,1058471897\n393,1527,3.5,1058471831\n393,1580,1.5,1058472377\n393,1584,3.5,1058471819\n393,1923,3.5,1058472201\n393,1968,4.0,1058471657\n393,2453,1.5,1058472672\n393,2683,2.5,1058471811\n393,2706,3.5,1058471863\n393,2747,2.0,1058472608\n393,3104,3.5,1058472141\n393,3977,2.5,1058472591\n393,4936,3.0,1058472487\n393,5065,1.5,1058473293\n393,5673,4.0,1058472148\n393,5820,4.5,1058472096\n393,5917,1.5,1058472568\n393,5954,3.5,1058472106\n393,5992,4.0,1058472154\n393,5995,4.5,1058472089\n393,6333,2.5,1058472005\n393,6367,4.5,1058472021\n393,6380,5.0,1058471996\n393,6428,3.0,1058472420\n393,6436,4.0,1058472218\n393,6466,4.0,1058472363\n393,6477,3.0,1058472384\n393,6503,2.5,1058472040\n394,31,2.0,1297524887\n394,32,4.0,1298378877\n394,39,3.0,1298379688\n394,47,4.0,1298379179\n394,50,4.5,1297525294\n394,95,3.0,1298379707\n394,110,2.5,1298378793\n394,165,4.0,1298378968\n394,185,3.5,1298379917\n394,208,1.5,1298379803\n394,246,2.5,1297524856\n394,256,3.5,1297524871\n394,260,3.0,1298378889\n394,277,2.5,1297524876\n394,288,3.5,1298379893\n394,296,4.5,1298378819\n394,316,3.0,1298379015\n394,318,3.0,1297525296\n394,333,3.5,1297524836\n394,344,1.5,1298378785\n394,355,0.5,1297524890\n394,357,3.5,1298379617\n394,364,3.0,1298378951\n394,367,0.5,1298379281\n394,377,3.0,1298378869\n394,380,3.0,1298379000\n394,454,3.0,1298379824\n394,500,3.5,1298379427\n394,515,3.0,1297524852\n394,527,0.5,1297525234\n394,529,3.0,1297524846\n394,585,2.0,1297524893\n394,589,3.0,1298379101\n394,590,2.0,1298378901\n394,592,3.5,1298378754\n394,597,3.5,1298379340\n394,608,5.0,1298379775\n394,648,4.5,1298379363\n394,733,4.0,1298379043\n394,745,2.0,1297525155\n394,750,3.5,1297525141\n394,780,3.0,1298378956\n394,838,4.5,1297525192\n394,858,3.0,1298379411\n394,899,3.5,1297524879\n394,912,3.5,1297525265\n394,914,3.5,1297524899\n394,926,3.0,1297525299\n394,1060,2.0,1297524913\n394,1089,3.0,1298379567\n394,1092,3.0,1297524813\n394,1136,4.5,1297525144\n394,1148,2.0,1297525158\n394,1196,4.0,1298378936\n394,1197,5.0,1298379277\n394,1198,4.0,1297525136\n394,1203,3.0,1297525243\n394,1207,2.0,1297525262\n394,1210,3.5,1298379530\n394,1213,3.5,1298379513\n394,1221,3.0,1297525268\n394,1240,3.0,1298379161\n394,1258,3.5,1298379922\n394,1263,0.5,1297524895\n394,1265,4.0,1298379026\n394,1270,4.0,1298378747\n394,1285,5.0,1297524817\n394,1291,4.5,1298379228\n394,1293,1.5,1297524907\n394,1333,4.0,1297524822\n394,1375,3.5,1297524840\n394,1449,4.0,1297604284\n394,1517,3.5,1298379588\n394,1527,4.0,1298379396\n394,1580,4.0,1298379093\n394,1721,2.0,1298378961\n394,1747,2.0,1297524830\n394,1784,3.5,1298379293\n394,1968,4.5,1298379683\n394,2000,4.0,1298379945\n394,2028,1.0,1298378829\n394,2115,4.0,1298379419\n394,2174,3.0,1298379864\n394,2291,3.0,1298379598\n394,2396,4.0,1298379784\n394,2571,5.0,1298378974\n394,2628,4.0,1298378860\n394,2683,3.5,1298379193\n394,2716,3.5,1298379167\n394,2762,4.5,1298379110\n394,2791,4.0,1298379649\n394,2916,4.5,1298379366\n394,2997,4.0,1298379033\n394,3022,1.5,1297525167\n394,3052,4.5,1298379931\n394,3307,1.5,1297525164\n394,3481,4.5,1298379798\n394,3507,4.0,1297603435\n394,3623,3.5,1298379536\n394,3793,4.0,1298378941\n394,3948,3.5,1298379874\n394,3996,2.5,1298378898\n394,4027,3.5,1298379870\n394,4306,5.0,1298378932\n394,4350,1.0,1297603765\n394,4795,2.0,1297525178\n394,4886,3.0,1298378769\n394,4896,4.5,1298379235\n394,4963,5.0,1298379351\n394,4993,2.0,1298379006\n394,5008,2.0,1297525240\n394,5378,4.0,1298379097\n394,5418,4.0,1298379053\n394,5445,4.5,1298379058\n394,5637,1.5,1297603666\n394,5752,3.0,1297603671\n394,5816,4.5,1298379584\n394,5850,0.5,1297549437\n394,5989,3.5,1298379183\n394,6077,4.5,1297604697\n394,6125,4.5,1297604675\n394,6365,4.5,1298379213\n394,6600,1.0,1297549404\n394,6644,0.5,1297604043\n394,6711,3.0,1298379010\n394,6808,0.5,1297604002\n394,6874,4.0,1298379035\n394,7058,3.0,1297603770\n394,7147,2.0,1298379667\n394,7361,4.5,1298378823\n394,7419,4.0,1297604034\n394,7438,3.5,1298378778\n394,7502,1.5,1297525251\n394,7505,0.5,1297603192\n394,7762,3.0,1297603004\n394,7833,4.5,1297604385\n394,7934,3.0,1297604014\n394,8167,1.0,1297603355\n394,8275,0.5,1297603360\n394,8360,4.0,1298379560\n394,8368,4.5,1298379526\n394,8491,2.0,1297602848\n394,8507,0.5,1297603458\n394,8574,0.5,1297525187\n394,8636,3.0,1298379124\n394,8665,4.0,1298379416\n394,8711,4.5,1297604671\n394,8777,0.5,1297549397\n394,8961,3.0,1298378905\n394,8964,1.5,1297549400\n394,25737,0.5,1297603418\n394,25826,0.5,1297603203\n394,25874,0.5,1297549419\n394,25901,0.5,1297603755\n394,26009,0.5,1297603352\n394,26025,0.5,1297603480\n394,26188,0.5,1297603422\n394,26268,4.0,1297604566\n394,26342,3.5,1297603413\n394,26366,0.5,1297549441\n394,26425,3.5,1297604053\n394,26528,1.0,1297603010\n394,27351,1.0,1297549387\n394,27857,0.5,1297603451\n394,27879,0.5,1297603761\n394,31364,0.5,1297603425\n394,31921,4.0,1297602997\n394,32280,0.5,1297603742\n394,32464,3.0,1297603275\n394,32844,0.5,1297603998\n394,33760,3.5,1297549423\n394,42783,1.5,1297525259\n394,44555,1.5,1297525281\n394,46578,5.0,1298379407\n394,47997,1.5,1298378365\n394,48516,4.0,1298378883\n394,48780,4.0,1298379509\n394,49272,3.0,1298379107\n394,53038,0.5,1297603483\n394,53737,0.5,1297603987\n394,54286,4.5,1298379246\n394,54910,0.5,1297549393\n394,55167,0.5,1297603820\n394,55820,2.0,1298379564\n394,57453,2.5,1297602837\n394,58559,3.0,1298378736\n394,60137,0.5,1297603448\n394,60990,0.5,1297603454\n394,61323,3.5,1298301250\n394,66019,1.0,1297525273\n394,68884,0.5,1297549415\n394,69974,0.5,1297549439\n394,70846,0.5,1297603785\n394,74228,1.0,1297549413\n394,74327,0.5,1297549434\n394,76293,4.5,1298203833\n394,77658,3.0,1297603199\n394,78122,0.5,1297603990\n394,79132,5.0,1298129686\n394,79242,3.0,1297525184\n394,79274,0.5,1297603745\n394,79428,5.0,1298203985\n394,79702,4.5,1297604462\n394,81229,5.0,1298203785\n394,84312,1.0,1298378762\n395,110,3.0,953006694\n395,260,5.0,953007037\n395,415,2.0,953006775\n395,671,5.0,953007109\n395,1097,4.0,953007109\n395,1200,3.0,953006948\n395,1206,3.0,953006948\n395,1210,5.0,953007149\n395,1374,4.0,953007207\n395,1375,4.0,953007282\n395,1376,4.0,953007242\n395,1527,1.0,953007282\n395,2010,4.0,953007109\n395,2023,1.0,953006694\n395,2240,2.0,953006775\n395,2406,2.0,953006694\n395,2455,2.0,953007207\n395,2571,3.0,953007037\n395,2628,5.0,953007282\n395,2640,2.0,953007207\n395,2916,3.0,953007109\n395,2985,3.0,953007207\n395,3471,4.0,953007207\n396,1,5.0,834998311\n396,2,3.0,834998422\n396,10,3.0,834998293\n396,11,3.0,839253775\n396,12,4.0,838629846\n396,15,4.0,834998937\n396,17,4.0,839252545\n396,24,3.0,834998979\n396,29,4.0,839256240\n396,32,3.0,838629761\n396,44,3.0,834998502\n396,47,3.0,838629684\n396,50,4.0,834998349\n396,57,3.0,834999016\n396,65,2.0,841835432\n396,66,2.0,839252578\n396,76,3.0,838629626\n396,92,3.0,841742711\n396,93,4.0,834998961\n396,110,3.0,834998326\n396,150,5.0,834998231\n396,151,5.0,834998402\n396,153,3.0,834998259\n396,158,3.0,834998490\n396,160,3.0,834998361\n396,161,4.0,834998293\n396,168,2.0,834998490\n396,170,3.0,834998819\n396,172,3.0,834998490\n396,173,3.0,834998379\n396,177,3.0,834998937\n396,185,3.0,834998311\n396,188,3.0,839255200\n396,196,3.0,834998402\n396,198,4.0,834998859\n396,208,3.0,834998311\n396,234,3.0,834998766\n396,236,4.0,839253755\n396,237,3.0,834998588\n396,241,3.0,835000928\n396,249,3.0,838629725\n396,252,4.0,834998402\n396,253,4.0,834998311\n396,257,4.0,842867740\n396,272,3.0,834998552\n396,273,3.0,834998588\n396,274,3.0,839255123\n396,275,3.0,834999034\n396,276,3.0,834998566\n396,279,2.0,834999180\n396,289,3.0,839254108\n396,292,4.0,834998293\n396,295,3.0,835000969\n396,302,4.0,834999154\n396,303,3.0,834998787\n396,316,4.0,834998277\n396,317,3.0,834998336\n396,327,3.0,834998807\n396,328,3.0,834998914\n396,329,2.0,834998277\n396,338,3.0,834998807\n396,339,4.0,834998293\n396,340,3.0,839255220\n396,342,3.0,834998748\n396,344,2.0,834998259\n396,351,3.0,834998889\n396,353,3.0,834998730\n396,355,3.0,834998756\n396,356,3.0,834998388\n396,357,3.0,834998566\n396,362,3.0,834998901\n396,364,4.0,834998379\n396,367,4.0,834998379\n396,368,4.0,834998827\n396,370,1.0,834998874\n396,372,2.0,834998993\n396,380,3.0,834998231\n396,382,3.0,835000761\n396,405,2.0,834999136\n396,410,3.0,834998326\n396,412,2.0,841743006\n396,420,4.0,834998349\n396,432,2.0,834998361\n396,434,3.0,834998293\n396,435,2.0,834998379\n396,440,3.0,834998422\n396,442,3.0,834998519\n396,455,3.0,834998968\n396,457,3.0,834998326\n396,466,2.0,834998889\n396,468,4.0,838804862\n396,475,4.0,834998952\n396,480,5.0,834998402\n396,485,3.0,834998859\n396,489,1.0,834999107\n396,494,4.0,842867755\n396,497,5.0,839252831\n396,500,3.0,834998552\n396,505,3.0,835000900\n396,508,3.0,834998775\n396,514,3.0,835000182\n396,515,4.0,835000106\n396,519,2.0,834999054\n396,520,3.0,834998914\n396,533,3.0,834999054\n396,539,3.0,834998588\n396,542,3.0,835000808\n396,543,2.0,834998993\n396,546,3.0,834999054\n396,551,3.0,834998566\n396,552,3.0,834998787\n396,553,4.0,843048926\n396,575,3.0,835000803\n396,586,3.0,834998730\n396,587,3.0,834998616\n396,588,2.0,843049252\n396,589,4.0,834998502\n396,590,5.0,834998231\n396,592,4.0,834998231\n396,593,5.0,834998311\n396,594,3.0,834998901\n396,595,4.0,834998277\n396,596,3.0,834999002\n396,597,3.0,834998616\n396,610,3.0,834998787\n396,637,3.0,843048878\n396,648,5.0,834998842\n396,653,4.0,835172821\n396,724,4.0,847371184\n396,780,4.0,838804157\n396,786,3.0,838804170\n396,799,4.0,841743307\n396,880,4.0,841743368\n396,1015,4.0,841743081\n396,1020,3.0,841743135\n396,1022,3.0,843049253\n396,1027,3.0,841743199\n396,1028,4.0,841835490\n396,1035,5.0,843049223\n396,1036,3.0,841743572\n396,1079,4.0,843049094\n397,413,2.0,1268904250\n397,519,3.5,1268904290\n397,637,2.5,1268904234\n397,1385,2.5,1268904255\n397,1591,2.5,1268904278\n397,2761,3.5,1268905102\n397,2989,4.0,1268904333\n397,2990,4.0,1268904335\n397,3157,3.0,1268904301\n397,3263,3.5,1268904262\n397,3267,4.0,1268904322\n397,3688,2.5,1268904440\n397,3704,3.0,1268904281\n397,3972,4.0,1268904399\n397,3998,3.5,1268904446\n397,5218,4.0,1268905096\n397,5500,4.5,1268904436\n397,5618,4.5,1268904994\n397,5971,4.5,1268904987\n397,6283,4.0,1268905068\n397,6377,4.0,1268905080\n397,8132,4.5,1268904452\n397,8961,4.0,1268905099\n397,26776,4.5,1268904991\n397,31658,4.0,1268904980\n397,33615,3.0,1268905115\n397,45431,3.5,1268905033\n397,48982,3.5,1268905084\n397,50872,3.5,1268905149\n397,56251,3.0,1268905093\n397,58299,4.0,1268905025\n397,59784,3.5,1268905107\n397,60069,4.5,1268904269\n397,63859,3.5,1268905054\n397,65261,4.5,1268904754\n397,67252,3.0,1268904798\n397,68073,4.0,1268904890\n397,68358,4.0,1268904901\n397,68954,4.0,1268904996\n397,69275,3.0,1268904791\n397,69481,4.5,1268904704\n397,70286,4.0,1268904715\n397,70344,3.5,1268904739\n397,70862,3.0,1268904750\n397,71211,3.5,1268904748\n397,71248,2.5,1268904789\n397,71252,1.5,1268904807\n397,71254,3.5,1268904779\n397,71264,4.0,1268904736\n397,71518,3.5,1268904767\n397,71520,3.0,1268904772\n397,71530,3.0,1268904774\n397,71535,3.5,1268904768\n397,71838,3.0,1268904726\n397,72011,3.5,1268904764\n397,72171,4.0,1268904731\n397,72378,3.0,1268904776\n397,72489,2.5,1268904709\n397,72701,3.0,1268904793\n398,173,5.0,978407734\n398,593,3.0,978406191\n398,648,4.0,978406428\n398,1011,4.0,978407020\n398,1073,3.0,978406997\n398,1136,4.0,978406961\n398,1196,4.0,978407079\n398,1197,5.0,978407257\n398,1198,4.0,978406100\n398,1222,3.0,978407107\n398,1240,4.0,978407304\n398,1275,4.0,978407320\n398,1374,3.0,978407285\n398,1376,3.0,978406191\n398,1380,5.0,978406997\n398,1923,5.0,978406100\n398,1967,4.0,978407244\n398,2000,4.0,978407164\n398,2001,4.0,978407164\n398,2072,4.0,978407129\n398,2111,4.0,978407337\n398,2115,4.0,978407107\n398,2134,4.0,978407360\n398,2140,4.0,978407208\n398,2174,3.0,978407285\n398,2194,4.0,978407337\n398,2301,5.0,978407285\n398,2375,4.0,978407164\n398,2414,4.0,978407285\n398,2716,4.0,978407208\n398,2746,4.0,978407129\n398,2916,5.0,978407711\n398,3087,4.0,978407107\n398,3104,4.0,978407164\n398,3287,3.0,978406609\n398,3361,5.0,978407187\n398,3396,4.0,978406924\n398,3480,4.0,978407244\n398,3555,4.0,978406387\n398,3578,4.0,978406328\n398,3617,3.0,978406428\n398,3671,5.0,978406997\n398,3717,4.0,978406428\n398,3745,5.0,978406387\n398,3751,2.0,978406609\n398,3753,3.0,978406328\n398,3755,4.0,978406328\n398,3785,5.0,978406328\n398,3793,5.0,978406328\n398,3799,4.0,978406609\n398,3821,4.0,978406463\n398,3997,5.0,978406785\n398,4002,3.0,978407079\n399,10,3.0,841562243\n399,25,4.0,841562580\n399,47,2.0,841562530\n399,50,4.0,841562332\n399,193,2.0,841562580\n399,194,4.0,841562690\n399,296,5.0,841562655\n399,300,4.0,841562299\n399,318,4.0,841562212\n399,357,4.0,841562392\n399,434,2.0,841562212\n399,457,3.0,841562177\n399,471,5.0,841562601\n399,480,3.0,841562269\n399,481,1.0,841562644\n399,509,4.0,841562431\n399,586,1.0,841562354\n399,588,3.0,841562156\n399,593,4.0,841562177\n399,597,3.0,841562354\n400,10,3.0,840205137\n400,21,4.0,840205221\n400,32,4.0,840205237\n400,34,4.0,840205170\n400,39,4.0,840205237\n400,47,4.0,840205170\n400,50,5.0,840205221\n400,110,5.0,840205154\n400,150,4.0,840205051\n400,153,3.0,840205085\n400,160,2.0,840205237\n400,161,3.0,840205118\n400,165,4.0,840205085\n400,185,1.0,840205137\n400,208,3.0,840205137\n400,225,3.0,840205203\n400,231,3.0,840205101\n400,253,3.0,840205137\n400,266,3.0,840205253\n400,288,3.0,840205154\n400,292,3.0,840205118\n400,296,5.0,840205051\n400,300,3.0,840205170\n400,316,3.0,840205101\n400,317,3.0,840205221\n400,318,5.0,840205118\n400,329,4.0,840205118\n400,344,3.0,840205085\n400,348,4.0,840205404\n400,349,3.0,840205085\n400,356,4.0,840205154\n400,364,4.0,840205170\n400,367,4.0,840205203\n400,377,4.0,840205203\n400,380,4.0,840205051\n400,410,3.0,840205170\n400,420,2.0,840205221\n400,434,3.0,840205118\n400,435,3.0,840205253\n400,454,3.0,840205154\n400,457,4.0,840205101\n400,480,5.0,840205154\n400,500,3.0,840205221\n400,515,4.0,840205382\n400,527,4.0,840205253\n400,539,3.0,840205253\n400,586,4.0,840205237\n400,587,3.0,840205237\n400,588,4.0,840205085\n400,589,3.0,840205203\n400,590,4.0,840205051\n400,592,4.0,840205051\n400,593,5.0,840205101\n400,594,5.0,840205381\n400,595,4.0,840205101\n400,596,4.0,840205381\n400,597,3.0,840205253\n400,608,4.0,840205381\n401,1,5.0,977459322\n401,260,5.0,977457965\n401,329,5.0,977459200\n401,356,5.0,977458147\n401,382,4.0,977458579\n401,466,4.0,977457791\n401,541,5.0,977458791\n401,594,5.0,977459322\n401,610,5.0,977459078\n401,611,5.0,977458740\n401,671,5.0,977459005\n401,674,5.0,977459200\n401,742,3.0,977458632\n401,879,3.0,977458608\n401,924,5.0,977458816\n401,1077,5.0,977459005\n401,1091,2.0,977457791\n401,1097,4.0,977458892\n401,1127,3.0,977457864\n401,1196,5.0,977458791\n401,1198,5.0,977457764\n401,1210,5.0,977458912\n401,1214,5.0,977458791\n401,1215,5.0,977458248\n401,1221,5.0,977457895\n401,1253,5.0,977458848\n401,1265,5.0,977458075\n401,1270,4.0,977458848\n401,1301,5.0,977458892\n401,1320,5.0,977458551\n401,1356,5.0,977459049\n401,1372,4.0,977459200\n401,1374,5.0,977458934\n401,1375,5.0,977459103\n401,1376,5.0,977458980\n401,1580,5.0,977458980\n401,1584,5.0,977459049\n401,1676,4.0,977459163\n401,2004,2.0,977458551\n401,2005,1.0,977457895\n401,2105,4.0,977459163\n401,2111,4.0,977457895\n401,2327,4.0,977458579\n401,2346,4.0,977459049\n401,2355,4.0,977458126\n401,2363,5.0,977458980\n401,2365,5.0,977459049\n401,2455,5.0,977458980\n401,2527,3.0,977459049\n401,2528,4.0,977459200\n401,2529,5.0,977458892\n401,2571,5.0,977458816\n401,2628,3.0,977457965\n401,2640,3.0,977459103\n401,2657,5.0,977458740\n401,2719,4.0,977458632\n401,2901,5.0,977459078\n401,2916,4.0,977458892\n401,2985,4.0,977458934\n401,3033,5.0,977459163\n401,3175,5.0,977458934\n401,3253,5.0,977458171\n401,3471,5.0,977458791\n401,3499,5.0,977458248\n401,3527,4.0,977458912\n401,3699,4.0,977459005\n401,3702,5.0,977458848\n401,3703,5.0,977458791\n401,3704,5.0,977459103\n401,3751,4.0,977459322\n401,3919,4.0,977458608\n401,3934,4.0,977459200\n402,1,2.0,1443393600\n402,11,4.5,1462947988\n402,13,4.5,1462948266\n402,150,4.5,1443394942\n402,216,4.0,1462953653\n402,239,4.5,1462947510\n402,258,3.5,1462948536\n402,260,4.0,1443395107\n402,356,5.0,1462946740\n402,364,4.0,1462948530\n402,539,4.5,1462948006\n402,587,4.0,1462946890\n402,588,4.0,1462947059\n402,595,4.0,1462948572\n402,596,3.0,1462948585\n402,750,3.0,1443393981\n402,780,4.0,1443394940\n402,858,2.5,1443395222\n402,908,3.5,1443393990\n402,1028,4.5,1468919522\n402,1035,4.0,1462947339\n402,1196,4.5,1443393714\n402,1198,4.0,1443393720\n402,1210,4.5,1443394156\n402,1225,4.5,1443394124\n402,1240,2.5,1462948056\n402,1246,3.5,1443406737\n402,1265,4.5,1443395130\n402,1270,5.0,1443393596\n402,1288,3.5,1443394150\n402,1302,3.5,1443406742\n402,1356,4.0,1462948490\n402,1376,3.0,1462945810\n402,1377,3.5,1462947708\n402,1393,3.0,1443406758\n402,1527,3.5,1469261724\n402,1566,3.0,1462947356\n402,1580,3.5,1469261722\n402,1584,4.5,1462947954\n402,1608,3.5,1462947597\n402,1682,4.0,1443395139\n402,1721,3.0,1462947256\n402,1777,3.0,1462946586\n402,1835,4.0,1462946838\n402,1876,4.0,1462947231\n402,1918,3.0,1462948509\n402,1968,4.0,1462946461\n402,2011,5.0,1443395099\n402,2012,4.0,1443395100\n402,2123,3.0,1462948541\n402,2335,4.5,1462953671\n402,2420,3.5,1462948473\n402,2421,3.0,1462946904\n402,2424,4.0,1462946573\n402,2447,4.0,1462946530\n402,2496,4.5,1462947516\n402,2571,4.5,1443393603\n402,2706,3.0,1462946468\n402,2716,3.5,1443395102\n402,2762,3.0,1443424299\n402,2791,3.5,1462946881\n402,2861,4.5,1466152851\n402,2916,3.0,1462947931\n402,2918,3.5,1443424373\n402,3000,4.5,1443424293\n402,3617,3.0,1443394535\n402,3624,3.5,1462948570\n402,3793,3.0,1443394377\n402,3825,3.5,1443394714\n402,3916,4.0,1443394534\n402,3948,3.0,1443394417\n402,4018,4.5,1443394507\n402,4023,4.5,1443394662\n402,4299,3.5,1443394599\n402,4306,2.5,1443394373\n402,4343,3.0,1443394673\n402,4369,3.0,1443394554\n402,4446,3.0,1443394573\n402,4447,3.5,1443394504\n402,4571,3.5,1443395111\n402,4700,3.0,1462946770\n402,4701,3.5,1443394624\n402,4718,3.0,1443394526\n402,4823,3.5,1443394796\n402,4963,4.0,1443394383\n402,4974,2.5,1462953628\n402,4992,4.0,1443394841\n402,4993,4.0,1443393993\n402,4995,3.0,1443406751\n402,5066,4.0,1462946513\n402,5151,3.0,1462947289\n402,5218,1.5,1462946428\n402,5283,4.0,1462946479\n402,5349,3.0,1443394381\n402,5378,2.0,1443394407\n402,5449,3.5,1443394818\n402,5459,3.5,1443394488\n402,5481,3.5,1443394520\n402,5618,3.0,1443393972\n402,5816,4.0,1443394426\n402,5872,3.5,1443394628\n402,5944,3.0,1443394808\n402,5952,4.0,1443394001\n402,5971,4.0,1443424289\n402,6155,3.5,1443393842\n402,6156,4.0,1443393881\n402,6157,4.5,1443393799\n402,6188,2.0,1462953631\n402,6283,4.0,1443394890\n402,6350,3.5,1443424317\n402,6365,2.5,1462945086\n402,6377,3.5,1443394386\n402,6537,3.0,1443394517\n402,6539,3.0,1462945079\n402,6565,3.5,1443393800\n402,6934,2.5,1443394446\n402,7099,3.0,1443424312\n402,7143,3.0,1443394476\n402,7153,4.0,1443394372\n402,7263,4.0,1443393921\n402,7317,3.0,1462953624\n402,7318,3.5,1443394813\n402,7346,3.5,1443393908\n402,7451,3.0,1443394667\n402,8361,3.5,1443393771\n402,8368,4.0,1443394430\n402,8376,3.0,1443393763\n402,8529,3.5,1443393791\n402,8533,5.0,1443393820\n402,8636,3.5,1443394412\n402,8641,3.0,1443393789\n402,8644,3.0,1443394485\n402,8807,3.5,1462953661\n402,8808,3.5,1462947259\n402,8866,3.5,1462947446\n402,8961,3.5,1443394396\n402,8972,4.0,1443393795\n402,8984,3.5,1443393775\n402,26662,3.5,1443424365\n402,27266,3.0,1462947537\n402,27611,4.5,1462947691\n402,27660,3.5,1443393866\n402,27808,3.5,1443393910\n402,27821,3.5,1443393933\n402,30793,3.0,1443393737\n402,30825,3.0,1443394697\n402,31658,4.0,1443393777\n402,31696,3.5,1443394691\n402,32587,3.5,1443394409\n402,32598,3.0,1462947560\n402,33794,3.5,1443394393\n402,33830,3.0,1462947312\n402,33836,3.0,1462947294\n402,34048,3.0,1443393761\n402,34162,4.5,1443393741\n402,34405,4.5,1443394159\n402,35836,3.0,1443394490\n402,36525,4.5,1462946729\n402,39292,4.5,1443393839\n402,39435,3.0,1462948236\n402,40581,4.0,1462946898\n402,40815,4.0,1443394479\n402,44004,4.0,1462946712\n402,45447,3.0,1443394614\n402,45672,4.0,1443393901\n402,45722,3.5,1443394492\n402,45728,3.0,1443393876\n402,45950,4.0,1443393878\n402,46578,4.0,1443394449\n402,46970,3.0,1443393899\n402,46972,3.5,1443393863\n402,46976,4.0,1443393767\n402,47099,4.5,1443393832\n402,47518,4.0,1462953178\n402,48520,4.0,1462946929\n402,49526,3.5,1462946544\n402,50872,4.0,1443394481\n402,51084,4.0,1462946753\n402,51662,3.5,1443394465\n402,52287,4.0,1462948051\n402,52973,3.5,1443394632\n402,53322,3.0,1462948512\n402,53996,3.5,1443394585\n402,54001,4.0,1443394565\n402,54276,4.0,1466250173\n402,55245,3.5,1462946897\n402,56152,4.0,1462948014\n402,57640,3.5,1462946113\n402,58047,5.0,1462946227\n402,58315,3.5,1462947314\n402,58347,4.0,1462947452\n402,58559,3.5,1443393723\n402,58998,3.0,1443394202\n402,59022,3.0,1462946255\n402,59126,3.0,1462946291\n402,59315,4.5,1443394438\n402,59333,4.0,1462948220\n402,59501,3.5,1462946165\n402,59615,3.0,1443394683\n402,59900,3.5,1462946215\n402,60069,4.5,1443394120\n402,60074,3.5,1443394783\n402,60126,3.5,1462946152\n402,63859,3.5,1462946142\n402,64614,4.0,1443424342\n402,64969,4.0,1462948032\n402,65261,3.0,1462946156\n402,67197,2.0,1462946224\n402,67923,4.5,1462946266\n402,68135,4.5,1462946174\n402,68358,4.0,1443394511\n402,68554,3.0,1462946125\n402,68793,4.0,1462946270\n402,68954,3.0,1443424308\n402,69069,4.0,1462948514\n402,69122,3.0,1443394522\n402,69406,4.0,1462946148\n402,69526,3.0,1462946120\n402,69606,4.0,1462946918\n402,69757,4.5,1443394558\n402,69844,4.0,1443394635\n402,70663,3.5,1462947227\n402,71535,3.5,1443394582\n402,72011,4.0,1443394750\n402,72209,3.5,1462948496\n402,72378,3.0,1443394856\n402,72641,3.5,1443394887\n402,72998,3.0,1443394468\n402,73017,4.0,1443394560\n402,74946,4.5,1462947912\n402,76077,3.5,1462946193\n402,76093,4.5,1443394164\n402,77561,3.5,1443394658\n402,77658,5.0,1462945966\n402,78105,4.0,1462947240\n402,78499,2.5,1443424333\n402,79132,4.0,1443393986\n402,79139,4.0,1462946305\n402,79185,3.0,1462948251\n402,79224,2.5,1467617551\n402,79695,3.5,1462946145\n402,79702,4.0,1443394197\n402,80549,3.5,1462945806\n402,80586,4.0,1462945799\n402,81591,2.0,1462947698\n402,81784,4.0,1467617507\n402,81834,4.5,1443394654\n402,81847,4.5,1443394829\n402,82461,3.0,1462946116\n402,85131,2.5,1462946311\n402,86332,3.5,1462946784\n402,87232,4.0,1443394688\n402,87430,3.5,1462946239\n402,87520,3.0,1462946218\n402,88125,4.5,1443394645\n402,88140,4.0,1443394836\n402,89745,4.5,1443394568\n402,90746,4.0,1462946211\n402,91529,4.0,1443394571\n402,91542,4.0,1443394825\n402,92509,4.0,1462947418\n402,94325,4.0,1462948002\n402,96079,1.0,1462947992\n402,96588,5.0,1462946842\n402,97913,4.0,1467617607\n402,98243,4.0,1462947916\n402,98491,5.0,1462947937\n402,99007,4.5,1462946747\n402,99813,3.5,1462948062\n402,100527,4.0,1467617541\n402,102125,3.0,1443394900\n402,102445,4.0,1443394884\n402,102720,3.5,1462948036\n402,103042,3.0,1462946331\n402,103249,2.0,1462946329\n402,104374,5.0,1443395151\n402,104863,4.5,1462947946\n402,104913,4.0,1462948481\n402,106487,3.0,1443394875\n402,106918,4.0,1443395154\n402,106920,4.5,1462947321\n402,108979,4.5,1443394118\n402,110102,4.0,1467617656\n402,111362,3.5,1443394894\n402,111759,4.0,1443394809\n402,111921,4.0,1462946592\n402,112006,2.0,1462947884\n402,112175,4.5,1462947981\n402,112767,4.0,1462945108\n402,112852,4.0,1443394743\n402,112897,3.5,1462948546\n402,115147,4.0,1462948242\n402,115617,4.0,1443394224\n402,115664,4.5,1443394238\n402,116797,4.0,1443394208\n402,117192,4.5,1462945915\n402,119155,4.0,1443394270\n402,122882,3.0,1443394223\n402,122886,4.0,1462946343\n402,122892,4.5,1443394229\n402,122900,4.0,1443394232\n402,122902,4.5,1462946407\n402,122904,4.5,1462946100\n402,122920,4.0,1467617533\n402,128512,4.0,1462946380\n402,130087,3.5,1462948605\n402,132046,4.5,1443394250\n402,132796,4.0,1443394279\n402,133419,4.5,1443394246\n402,134130,5.0,1462945064\n402,134853,3.5,1462946341\n402,135137,2.5,1462948011\n402,135567,4.5,1469261732\n402,136562,3.5,1462946375\n402,136864,2.5,1462946395\n402,140110,5.0,1462945804\n402,144620,4.0,1462946388\n402,148652,2.5,1462946405\n402,152081,4.5,1462946339\n403,1,4.0,850779492\n403,25,3.0,850779492\n403,32,3.0,850779492\n403,141,3.0,850779492\n403,188,4.0,850779543\n403,247,5.0,850779543\n403,253,3.0,850779519\n403,296,3.0,850779518\n403,593,3.0,850779519\n403,1215,4.0,850779566\n403,1219,4.0,850779543\n403,1255,5.0,850779609\n403,1258,5.0,850779566\n403,1261,4.0,850779588\n403,1321,4.0,850779588\n403,1333,4.0,850779566\n403,1339,5.0,850779566\n403,1340,4.0,850779609\n403,1341,3.0,850779624\n403,1343,4.0,850779566\n403,1348,5.0,850779608\n403,1349,5.0,850779636\n403,1350,3.0,850779589\n403,1387,5.0,850779589\n404,6,4.0,1026927798\n404,216,4.0,1026927917\n404,593,5.0,1026927875\n404,780,3.0,1026928965\n404,858,5.0,1026927820\n404,1081,5.0,1026928208\n404,1287,5.0,1026928965\n404,1393,3.0,1026928189\n404,1446,4.0,1026928189\n404,1457,3.0,1026927875\n404,1580,4.0,1026928245\n404,2023,4.0,1026927893\n404,2137,5.0,1026929016\n404,2269,3.0,1026928411\n404,2403,2.0,1026928965\n404,2628,4.0,1026927849\n404,2976,3.0,1026927798\n404,3208,1.0,1026927820\n404,3527,5.0,1026928258\n404,4010,5.0,1026928393\n404,4130,3.0,1026928522\n404,4226,4.0,1026928131\n404,4681,3.0,1026927849\n404,4865,2.0,1026928223\n404,4881,4.0,1026928189\n404,4885,2.0,1026928411\n404,4896,4.0,1026928208\n404,4963,3.0,1026928190\n404,4968,4.0,1026928270\n404,5015,4.0,1026928131\n404,5337,5.0,1026928466\n404,5349,3.0,1026928044\n404,5372,3.0,1026928349\n404,5382,4.0,1026928483\n404,5401,4.0,1026929296\n404,5452,1.0,1026928619\n404,5464,5.0,1026928044\n404,5470,4.0,1026929076\n405,10,3.5,1097769358\n405,85,4.0,1097698847\n405,105,3.5,1061357222\n405,110,2.0,1097696563\n405,168,2.5,1097769660\n405,257,1.5,1097696965\n405,260,5.0,1097697526\n405,277,4.0,1061357291\n405,315,3.5,1097769940\n405,339,4.0,1097696700\n405,349,4.0,1097769146\n405,350,4.0,1097696689\n405,356,5.0,1097770325\n405,357,4.0,1097696662\n405,377,2.0,1097769345\n405,380,2.5,1097769216\n405,423,5.0,1097696943\n405,434,1.0,1097696670\n405,457,5.0,1097769055\n405,468,3.0,1061357309\n405,474,4.0,1097769091\n405,509,5.0,1097696643\n405,515,1.0,1097696666\n405,531,4.0,1097698433\n405,586,4.0,1097696655\n405,590,4.5,1097698110\n405,648,2.0,1097769495\n405,653,1.5,1097696648\n405,674,3.0,1097696925\n405,780,4.0,1097769445\n405,858,5.0,1097769125\n405,897,4.5,1097697224\n405,904,5.0,1097696659\n405,908,4.5,1097698395\n405,910,3.0,1061357298\n405,912,5.0,1097696680\n405,915,4.5,1097770155\n405,916,4.5,1097770169\n405,920,5.0,1097698410\n405,931,4.5,1097697200\n405,947,4.0,1097770419\n405,951,4.5,1097698779\n405,952,5.0,1097696892\n405,955,4.0,1097698767\n405,969,4.0,1061357219\n405,1008,3.5,1097698787\n405,1019,4.5,1097770503\n405,1036,4.0,1097696651\n405,1079,4.0,1097770377\n405,1087,3.5,1097699157\n405,1097,4.5,1097770478\n405,1099,4.5,1097698773\n405,1100,3.5,1097698403\n405,1101,4.5,1097769326\n405,1196,4.0,1097769097\n405,1197,4.0,1097769107\n405,1198,4.5,1097696605\n405,1201,3.5,1061357282\n405,1204,4.0,1061357250\n405,1207,5.0,1061357210\n405,1210,4.5,1097769114\n405,1214,3.5,1097769166\n405,1221,5.0,1097696624\n405,1226,4.0,1097770291\n405,1231,4.0,1061357344\n405,1234,5.0,1097696628\n405,1238,4.5,1097696867\n405,1240,4.0,1097698367\n405,1246,4.5,1097698361\n405,1250,2.0,1061357245\n405,1265,5.0,1097770339\n405,1266,4.5,1097696633\n405,1270,5.0,1097698098\n405,1282,5.0,1097696636\n405,1287,4.5,1097769040\n405,1291,4.5,1061363634\n405,1292,5.0,1097696859\n405,1295,3.5,1097697727\n405,1302,2.5,1097698373\n405,1304,5.0,1097697714\n405,1370,3.5,1097696620\n405,1374,4.0,1097769171\n405,1375,3.0,1097769471\n405,1385,2.5,1097696839\n405,1552,3.0,1097769543\n405,1556,1.0,1097696849\n405,1580,4.5,1097769183\n405,1608,2.5,1097769709\n405,1610,4.0,1097769074\n405,1639,2.0,1097696585\n405,1674,4.5,1061357255\n405,1722,3.5,1061357319\n405,1784,5.0,1097698333\n405,1792,3.5,1097769656\n405,1876,2.5,1097696596\n405,1917,1.0,1097696567\n405,1918,2.5,1097698324\n405,1927,4.0,1097697929\n405,1929,1.5,1097697446\n405,1935,4.5,1097697137\n405,1953,4.5,1097768993\n405,1956,3.5,1097698344\n405,1957,3.5,1097698338\n405,1958,4.0,1097770438\n405,1960,4.5,1061363625\n405,1961,4.0,1097696580\n405,2000,4.5,1097769310\n405,2001,3.5,1061357287\n405,2002,3.5,1097698349\n405,2011,2.5,1097698327\n405,2012,4.0,1097696571\n405,2023,5.0,1097769415\n405,2080,3.5,1097698309\n405,2096,3.5,1097698311\n405,2108,3.5,1097696813\n405,2115,4.0,1097769338\n405,2150,5.0,1097696799\n405,2151,4.0,1097698707\n405,2174,3.5,1061363589\n405,2184,4.0,1061363584\n405,2193,4.0,1061363565\n405,2202,3.0,1097697145\n405,2207,4.0,1061363552\n405,2208,2.5,1097698698\n405,2245,2.0,1061363519\n405,2249,3.0,1061363495\n405,2259,4.0,1061363499\n405,2269,3.0,1061363474\n405,2302,4.0,1097698290\n405,2312,4.5,1061363418\n405,2340,0.5,1061363376\n405,2353,4.0,1061363363\n405,2355,4.0,1061363355\n405,2366,3.0,1061363332\n405,2376,3.0,1061363327\n405,2396,3.5,1061363277\n405,2398,3.5,1061363274\n405,2401,3.5,1061363283\n405,2405,3.0,1061363297\n405,2406,4.0,1061363291\n405,2424,3.5,1061363255\n405,2469,3.0,1061363215\n405,2470,5.0,1097696306\n405,2471,3.5,1061363200\n405,2501,5.0,1097696312\n405,2520,3.5,1061363141\n405,2529,3.5,1061363132\n405,2535,2.0,1097697126\n405,2570,4.0,1061363094\n405,2617,1.5,1061357228\n405,2621,4.0,1097698076\n405,2628,2.5,1061363007\n405,2657,3.5,1061362975\n405,2670,3.5,1061362955\n405,2712,1.0,1061362910\n405,2716,3.5,1061362892\n405,2724,2.5,1061362900\n405,2728,4.0,1061362869\n405,2734,1.5,1061362873\n405,2745,2.0,1061362838\n405,2747,3.5,1061362843\n405,2763,4.5,1061362825\n405,2764,5.0,1097696329\n405,2779,4.0,1061362796\n405,2791,2.5,1061362769\n405,2795,2.5,1061362766\n405,2797,4.5,1061362755\n405,2803,4.0,1061362737\n405,2819,3.0,1061362719\n405,2857,2.0,1061362683\n405,2858,0.5,1061362675\n405,2875,4.0,1061362659\n405,2916,3.0,1061362605\n405,2918,1.5,1061362600\n405,2919,3.0,1061362585\n405,2921,3.0,1061362597\n405,2922,3.5,1061362569\n405,2929,0.5,1061362565\n405,2942,4.0,1061362548\n405,2944,3.5,1061362527\n405,2947,4.0,1061362530\n405,2948,4.0,1061362535\n405,2949,3.5,1061362541\n405,2950,3.0,1061362552\n405,2951,4.0,1061362538\n405,2987,4.0,1061362472\n405,2989,3.5,1061362479\n405,2990,4.0,1061362463\n405,2991,3.0,1061362466\n405,2993,3.5,1061362456\n405,3006,4.0,1061362435\n405,3020,3.5,1061362421\n405,3028,3.0,1061362402\n405,3082,3.5,1097769410\n405,3088,4.5,1061362320\n405,3096,4.5,1097770373\n405,3098,3.5,1061362329\n405,3125,1.0,1061362292\n405,3147,2.0,1061362247\n405,3171,4.5,1061362223\n405,3176,0.5,1061362237\n405,3185,4.5,1061362207\n405,3224,4.0,1061362157\n405,3247,4.0,1061362141\n405,3248,2.0,1061362145\n405,3256,3.5,1061362115\n405,3257,3.5,1061362124\n405,3260,1.0,1061362111\n405,3334,4.0,1061362036\n405,3347,5.0,1097696297\n405,3363,5.0,1097696304\n405,3364,3.5,1061361992\n405,3368,4.5,1061362003\n405,3379,4.5,1061361969\n405,3404,4.0,1097769453\n405,3405,4.5,1061361939\n405,3408,4.0,1061361934\n405,3436,4.0,1061361904\n405,3451,4.0,1097770254\n405,3467,3.5,1097697074\n405,3478,4.0,1061361853\n405,3510,3.5,1061361810\n405,3524,3.5,1061361794\n405,3577,4.5,1097699060\n405,3578,4.5,1061361747\n405,3623,2.0,1061361709\n405,3633,4.5,1061361684\n405,3635,4.0,1061361676\n405,3638,3.5,1061361689\n405,3639,4.0,1061361679\n405,3653,5.0,1097696309\n405,3671,4.0,1097698251\n405,3681,3.5,1061361625\n405,3682,3.0,1061361629\n405,3699,4.0,1097770517\n405,3705,2.0,1061361580\n405,3755,3.5,1061361521\n405,3763,5.0,1061361494\n405,3764,1.5,1061361500\n405,3769,3.0,1097769438\n405,3788,3.0,1061361465\n405,3789,5.0,1097696299\n405,3792,4.0,1061361447\n405,3822,2.5,1061361429\n405,3841,2.5,1097697063\n405,3873,3.5,1061361364\n405,3897,4.5,1061361344\n405,3929,4.0,1061361290\n405,3967,3.5,1061361255\n405,3969,3.5,1061361261\n405,3984,3.5,1061361237\n405,3999,1.5,1061361224\n405,4002,1.5,1061361214\n405,4018,1.5,1061361183\n405,4019,3.5,1061361172\n405,4022,4.5,1061357271\n405,4025,3.5,1061361179\n405,4041,4.0,1061361150\n405,4084,3.0,1061361106\n405,4085,4.0,1061361093\n405,4103,4.5,1061361075\n405,4223,4.5,1061360944\n405,4254,1.0,1061360915\n405,4296,3.5,1061360861\n405,4310,3.5,1097769740\n405,4321,4.0,1061360818\n405,4327,3.5,1061360810\n405,4338,4.5,1061360787\n405,4339,3.0,1061360795\n405,4356,4.0,1061360757\n405,4357,4.0,1061360768\n405,4359,3.5,1061360754\n405,4361,4.5,1061360747\n405,4420,3.5,1061360689\n405,4448,5.0,1097696740\n405,4478,3.5,1061360622\n405,4534,4.5,1061360566\n405,4535,4.5,1061360558\n405,4571,3.5,1061360529\n405,4587,3.5,1061360517\n405,4643,3.5,1097698235\n405,4664,4.5,1061360422\n405,4705,4.0,1061360374\n405,4709,3.5,1061360358\n405,4714,3.0,1061360365\n405,4727,4.5,1061360341\n405,4776,0.5,1061360289\n405,4783,5.0,1097696294\n405,4784,3.5,1061360259\n405,4799,3.0,1061360245\n405,4803,3.5,1061360234\n405,4806,4.0,1061360229\n405,4855,4.0,1061360178\n405,4857,4.5,1061360173\n405,4861,4.5,1061360164\n405,4866,4.0,1097769482\n405,4874,2.5,1061360141\n405,4889,5.0,1061360119\n405,4896,4.5,1061360102\n405,4901,3.5,1061360115\n405,4933,3.0,1061360060\n405,4947,3.5,1061360037\n405,4957,4.0,1061360019\n405,4958,3.5,1061360005\n405,4963,4.0,1061360001\n405,4979,1.5,1061359960\n405,4993,4.5,1061359966\n405,4994,3.5,1061359947\n405,4995,4.5,1061359935\n405,5010,4.0,1061359902\n405,5013,1.0,1061359908\n405,5014,3.5,1061359917\n405,5015,4.0,1061359898\n405,5016,3.0,1061359920\n405,5027,3.5,1097769978\n405,5049,4.0,1061359855\n405,5061,0.5,1061359841\n405,5085,3.5,1061359798\n405,5097,4.5,1061359795\n405,5193,5.0,1097696326\n405,5214,4.5,1061359657\n405,5299,5.0,1097696314\n405,5344,4.0,1061359443\n405,5346,4.0,1061359449\n405,5364,4.0,1061359420\n405,5373,3.5,1061359382\n405,5378,5.0,1097696318\n405,5382,4.0,1061359405\n405,5383,4.0,1061359391\n405,5400,3.5,1061359331\n405,5418,4.0,1061359307\n405,5420,4.0,1061359316\n405,5446,5.0,1097696302\n405,5470,4.0,1061359254\n405,5479,4.0,1061359235\n405,5506,3.5,1061359205\n405,5602,4.5,1061359110\n405,5603,4.5,1061359113\n405,5620,3.5,1061359090\n405,5622,4.5,1061359098\n405,5651,2.5,1097698966\n405,5732,5.0,1061358908\n405,5782,3.0,1061358849\n405,5796,2.5,1061358830\n405,5799,4.5,1061358818\n405,5801,4.0,1061358822\n405,5816,4.5,1061358797\n405,5872,4.0,1061358735\n405,5873,3.5,1061358726\n405,5943,4.5,1061358648\n405,5945,0.5,1061358637\n405,5947,4.0,1061358644\n405,5952,4.5,1061358632\n405,5955,4.0,1061358614\n405,5989,4.5,1061358579\n405,5995,5.0,1061358575\n405,6032,4.5,1061358525\n405,6078,3.5,1061358475\n405,6166,4.0,1061358373\n405,6178,3.5,1061358362\n405,6211,4.0,1061358311\n405,6213,4.0,1061358320\n405,6216,4.5,1097698926\n405,6219,5.0,1097769791\n405,6232,4.5,1061358286\n405,6261,4.0,1061358246\n405,6378,5.0,1061358109\n405,6385,4.5,1097697003\n405,6405,4.0,1061358075\n405,6426,4.0,1061358060\n405,6447,4.5,1097696262\n405,6448,3.5,1061358012\n405,6461,4.5,1061357994\n405,6516,4.5,1061357923\n405,6518,3.0,1061357930\n405,6565,5.0,1097696981\n405,6613,2.0,1061357796\n405,6617,4.0,1097769066\n405,6645,2.5,1097697296\n405,6658,2.0,1061357744\n405,6662,2.5,1061357729\n405,6785,3.0,1097770441\n405,6832,2.5,1097698917\n405,6947,4.0,1097769079\n405,6993,1.5,1097770201\n405,7056,3.5,1097769189\n405,7121,4.0,1097697562\n405,7143,3.5,1097769110\n405,7153,5.0,1097769043\n405,7569,4.0,1097769008\n405,7570,3.5,1097769525\n405,7573,4.0,1097769372\n405,7774,3.5,1097698491\n405,7791,4.0,1097699245\n405,7831,4.0,1097770265\n405,7832,4.0,1097697979\n405,7833,4.0,1097770226\n405,7834,4.0,1097699255\n405,7835,4.0,1097770346\n405,8183,5.0,1097770237\n405,8190,2.0,1097770144\n405,8228,2.5,1097769023\n405,8360,5.0,1097770242\n405,8368,4.5,1097698483\n405,8493,4.5,1097769017\n405,8542,3.5,1097770166\n405,8610,4.0,1097770262\n405,8623,4.0,1097770245\n405,8633,3.5,1097769154\n405,8665,3.5,1097769070\n405,8675,5.0,1097769120\n405,8796,3.0,1097770258\n406,1,3.5,1447951646\n406,52,4.5,1447952142\n406,111,5.0,1447952609\n406,364,3.5,1447951703\n406,541,4.0,1447951528\n406,750,5.0,1448509307\n406,858,4.0,1447951451\n406,902,4.5,1447951679\n406,908,3.5,1447952399\n406,912,3.5,1447951491\n406,923,3.5,1447952471\n406,924,5.0,1447959487\n406,1077,4.0,1447951668\n406,1196,3.5,1447951460\n406,1200,1.0,1447951538\n406,1203,5.0,1447951484\n406,1206,3.0,1447951621\n406,1207,4.0,1447951521\n406,1212,5.0,1447952510\n406,1214,1.0,1447951537\n406,1221,3.0,1447951463\n406,1228,4.5,1447952623\n406,1230,4.5,1447952110\n406,1237,4.0,1447952202\n406,1244,4.5,1447951595\n406,1258,3.5,1447951610\n406,1784,4.0,1447951706\n406,1873,3.5,1447951733\n406,2010,3.5,1447951627\n406,2268,3.5,1447951699\n406,3000,5.0,1447971224\n406,3114,3.5,1447951674\n406,3462,5.0,1447951551\n406,3742,5.0,1447951653\n406,4329,4.5,1447952575\n406,4928,4.0,1447959366\n406,4993,5.0,1447951509\n406,5291,4.5,1447952693\n406,5475,5.0,1447951893\n406,5618,5.0,1447971221\n406,5971,4.5,1447971222\n406,6101,5.0,1447951938\n406,6350,3.5,1447971226\n406,6666,4.5,1447959371\n406,6954,5.0,1447952016\n406,7099,4.5,1447951571\n406,7153,4.5,1447951493\n406,7925,4.5,1447952674\n406,8154,5.0,1447952075\n406,8253,2.0,1447971231\n406,8933,5.0,1447952021\n406,25771,4.5,1447951691\n406,26318,4.5,1447959375\n406,26662,4.5,1447971202\n406,26776,5.0,1447971230\n406,31658,5.0,1447959670\n406,33493,4.0,1447951805\n406,41336,4.0,1447959383\n406,44191,5.0,1447971196\n406,49394,3.5,1447959386\n406,56367,3.0,1447951695\n406,65261,5.0,1447971234\n406,66371,4.0,1448509808\n406,68073,4.5,1448509815\n406,68954,3.5,1447951557\n406,78903,5.0,1447951952\n406,81845,3.5,1447959682\n406,86882,5.0,1447952124\n406,92259,4.0,1447951544\n406,98126,5.0,1447951971\n406,103444,5.0,1447952147\n406,104283,5.0,1447971232\n406,112552,3.5,1447951853\n407,1,4.0,962646314\n407,14,4.0,962648347\n407,25,4.0,1085507289\n407,32,4.0,962647111\n407,36,4.0,962646804\n407,41,5.0,962675654\n407,50,4.0,962646253\n407,52,5.0,962647368\n407,58,5.0,962646871\n407,73,5.0,962646804\n407,144,4.0,962647874\n407,150,5.0,962646954\n407,151,3.0,962648320\n407,162,4.0,962646090\n407,171,5.0,962647453\n407,178,5.0,962647841\n407,223,4.0,962646754\n407,246,5.0,962646090\n407,253,3.0,962647553\n407,265,4.0,962646714\n407,290,4.0,962646041\n407,296,5.0,962646090\n407,300,5.0,962647247\n407,318,4.0,962646429\n407,319,4.0,962675697\n407,324,4.0,962648282\n407,334,5.0,962647453\n407,337,4.0,962646896\n407,342,4.0,962648188\n407,345,5.0,962675853\n407,348,5.0,962647221\n407,377,4.0,962647040\n407,388,4.0,962646216\n407,454,3.0,962675902\n407,457,4.0,962646804\n407,501,3.0,962646653\n407,506,5.0,962648188\n407,509,4.0,962647742\n407,527,4.0,962645604\n407,529,5.0,962646681\n407,534,5.0,962647175\n407,538,4.0,962647646\n407,549,5.0,962646429\n407,551,5.0,962646653\n407,562,3.0,962647646\n407,581,5.0,962647742\n407,593,4.0,962646348\n407,608,5.0,962646120\n407,628,3.0,962647553\n407,745,5.0,962646090\n407,778,5.0,962646804\n407,806,2.0,962648467\n407,838,4.0,962648320\n407,1063,5.0,962647646\n407,1094,5.0,962646429\n407,1095,5.0,962647076\n407,1097,4.0,962645690\n407,1177,4.0,962647925\n407,1183,4.0,1095353349\n407,1184,4.0,962648320\n407,1206,5.0,962645690\n407,1211,4.5,1057181653\n407,1217,5.0,962645645\n407,1249,4.0,962646348\n407,1279,3.0,962647646\n407,1304,5.0,962675620\n407,1333,4.0,962675697\n407,1343,3.0,962647874\n407,1354,4.0,962646187\n407,1357,4.0,962648005\n407,1358,4.0,962647403\n407,1375,3.0,962675942\n407,1393,3.0,962647577\n407,1407,3.0,962648071\n407,1411,4.0,962646617\n407,1441,4.0,962647646\n407,1449,5.0,962647202\n407,1498,3.0,962646714\n407,1500,4.0,962647646\n407,1504,5.0,962646714\n407,1573,3.0,962647151\n407,1610,3.0,962646994\n407,1614,4.0,962647925\n407,1617,5.0,962645645\n407,1619,4.0,962648123\n407,1639,4.0,962675853\n407,1641,4.0,962646843\n407,1643,4.0,962648071\n407,1673,5.0,962646503\n407,1678,4.0,962647742\n407,1683,5.0,962648153\n407,1684,4.0,962647955\n407,1693,4.0,962648153\n407,1699,4.0,962647343\n407,1701,4.0,962648282\n407,1704,5.0,962646563\n407,1719,5.0,962646348\n407,1730,5.0,962646925\n407,1732,2.0,962675802\n407,1734,5.0,962646090\n407,1735,4.0,962648404\n407,1797,5.0,962648039\n407,1860,5.0,962646994\n407,1870,4.0,962646563\n407,1873,5.0,962646954\n407,1880,4.0,962647016\n407,1897,4.0,962648467\n407,1909,4.0,962647796\n407,1916,2.0,962647841\n407,1923,3.0,962647955\n407,1966,5.0,962647453\n407,2028,4.0,962646314\n407,2029,5.0,962647796\n407,2071,5.0,962647523\n407,2076,5.0,962675757\n407,2108,4.0,962647483\n407,2112,4.0,962647247\n407,2171,4.0,962647874\n407,2268,3.0,962648404\n407,2282,4.0,962648347\n407,2291,5.0,962647054\n407,2297,3.0,962646871\n407,2304,4.0,962646681\n407,2329,4.0,962646386\n407,2333,5.0,962647202\n407,2336,5.0,962646429\n407,2340,3.0,962675853\n407,2369,3.0,962675853\n407,2388,4.0,966182270\n407,2395,5.0,962647523\n407,2396,5.0,962646563\n407,2431,2.0,962676059\n407,2435,4.0,962648221\n407,2439,4.0,962646280\n407,2442,4.0,962647319\n407,2447,3.0,962648123\n407,2467,4.0,1095353364\n407,2501,5.0,962646216\n407,2571,5.0,962646503\n407,2575,4.0,962646503\n407,2599,3.0,962646253\n407,2626,4.0,962776393\n407,2628,4.0,962648991\n407,2721,5.0,962646994\n407,2732,5.0,1119639368\n407,2762,5.0,962646594\n407,2801,4.0,962647523\n407,2837,5.0,975740667\n407,2858,5.0,962646253\n407,2883,4.0,962648123\n407,2908,5.0,962647111\n407,2916,3.0,962647742\n407,2949,5.0,962675697\n407,2959,5.0,962648886\n407,2997,5.0,962646563\n407,3006,5.0,962646804\n407,3007,4.0,962648886\n407,3044,5.0,962675757\n407,3052,3.0,962648376\n407,3060,4.0,962646804\n407,3079,5.0,962647403\n407,3081,4.0,962648153\n407,3082,3.0,962648965\n407,3083,4.0,967307166\n407,3145,3.0,962648942\n407,3147,4.0,962648886\n407,3148,4.0,962647874\n407,3155,4.0,966182298\n407,3158,3.0,962648428\n407,3160,4.0,962646843\n407,3161,3.0,967307196\n407,3163,5.0,962646594\n407,3174,4.0,962647267\n407,3175,5.0,962648886\n407,3176,5.0,962646563\n407,3179,4.0,966182298\n407,3181,5.0,966182239\n407,3225,3.0,966182239\n407,3241,4.0,977098692\n407,3246,4.0,962647343\n407,3256,3.0,962647453\n407,3259,3.0,962648005\n407,3260,5.0,962646314\n407,3285,3.0,966182321\n407,3298,4.0,967307166\n407,3317,5.0,987445622\n407,3328,4.0,968253369\n407,3357,5.0,976994276\n407,3386,4.0,962646896\n407,3408,4.0,972162244\n407,3481,4.0,972789374\n407,3499,4.0,962646563\n407,3521,4.0,962675654\n407,3535,3.0,962645890\n407,3538,4.0,972162244\n407,3552,2.0,962675902\n407,3566,4.0,972162244\n407,3578,3.0,962645789\n407,3594,4.0,974012349\n407,3598,5.0,962645825\n407,3606,4.0,962675620\n407,3608,5.0,962675729\n407,3620,4.0,962675942\n407,3635,3.0,962675802\n407,3649,3.0,962675802\n407,3723,4.0,962648039\n407,3747,3.0,974012282\n407,3751,5.0,962645789\n407,3755,3.0,962645926\n407,3783,5.0,962648667\n407,3790,4.0,984246350\n407,3793,3.0,975740667\n407,3794,4.0,966027860\n407,3795,5.0,987445622\n407,3823,4.0,987445622\n407,3897,4.0,972162407\n407,3903,4.0,972162407\n407,3911,4.0,972789280\n407,3914,4.0,976464659\n407,3949,4.5,1079737198\n407,3950,4.5,1079737271\n407,3967,4.5,1079737260\n407,3972,3.0,987445638\n407,3996,5.0,977098643\n407,4017,5.0,983810938\n407,4021,5.0,978801610\n407,4024,4.0,983810938\n407,4027,4.5,1079737283\n407,4034,5.0,984246220\n407,4036,4.0,979491861\n407,4226,5.0,985451994\n407,4235,5.0,1079737176\n407,4304,5.0,1079737349\n407,4306,4.0,1079737278\n407,4642,4.5,1079737179\n407,4720,2.0,1029185563\n407,4765,4.0,1029185563\n407,4873,5.0,1029185563\n407,4878,5.0,1079737184\n407,4896,3.0,1029185563\n407,4903,4.0,1032541242\n407,4963,4.0,1029185563\n407,4973,5.0,1029185528\n407,4975,3.0,1029185638\n407,4979,5.0,1029185563\n407,4993,5.0,1029185528\n407,4994,4.0,1029185621\n407,4995,4.0,1029185528\n407,5010,4.0,1029185528\n407,5013,5.0,1029185563\n407,5135,2.0,1041285381\n407,5225,5.0,1029185785\n407,5315,4.0,1032541261\n407,5316,3.0,1041285403\n407,5325,5.0,1032541261\n407,5349,3.0,1029185785\n407,5378,3.0,1029185414\n407,5379,4.5,1053715237\n407,5391,5.0,1041285381\n407,5417,3.0,1029185387\n407,5418,4.0,1029185363\n407,5445,4.0,1029185363\n407,5446,4.0,1053715255\n407,5464,4.5,1053715229\n407,5483,4.0,1079737354\n407,5502,3.0,1029185437\n407,5632,4.0,1057181627\n407,5669,4.5,1079737195\n407,5791,4.5,1057181623\n407,5812,5.0,1041362340\n407,5816,4.0,1053715222\n407,5878,4.5,1057181571\n407,5902,4.5,1057181563\n407,5945,4.5,1079737344\n407,5952,4.0,1047672835\n407,5954,4.5,1057181558\n407,5956,1.0,1047672948\n407,5991,5.0,1047672835\n407,5992,5.0,1047672835\n407,5995,4.5,1057181553\n407,6062,3.5,1057181709\n407,6218,4.5,1079737264\n407,6268,3.5,1079737241\n407,6296,5.0,1079737338\n407,6331,4.5,1079737204\n407,6365,3.5,1057181349\n407,6380,4.5,1079737207\n407,6440,4.5,1057181578\n407,6502,4.5,1079737286\n407,6539,4.5,1079737267\n407,6565,4.5,1079737328\n407,6620,5.0,1079737188\n407,6711,5.0,1079737172\n407,6773,5.0,1085507146\n407,6932,3.5,1085506836\n407,7153,4.5,1108662582\n407,7158,3.0,1085506831\n407,7162,4.0,1095353328\n407,7361,3.5,1097862959\n407,8368,4.0,1108662591\n407,8622,4.5,1093640803\n407,8636,4.0,1095352957\n407,8665,4.0,1095352961\n407,8784,4.0,1108662579\n407,8879,4.5,1095353381\n407,8949,4.5,1119639356\n407,8966,4.0,1123191731\n407,32587,3.0,1125091301\n407,33794,4.0,1122406345\n407,36517,4.5,1143832495\n407,36527,4.5,1145389998\n407,36529,4.5,1142017904\n407,37729,4.5,1145390005\n407,37741,5.0,1145389981\n407,38038,5.0,1145389985\n407,39183,5.0,1142017820\n407,39292,5.0,1143832433\n407,40278,4.0,1143832473\n407,40815,4.0,1143832516\n407,40819,4.0,1143832454\n407,41285,4.5,1142017737\n407,41566,4.0,1145390021\n407,48516,4.5,1167342284\n408,1,2.0,933035002\n408,16,2.0,933037621\n408,17,4.0,933035241\n408,18,5.0,933116210\n408,21,5.0,933114620\n408,32,4.0,933036132\n408,39,4.0,933119358\n408,45,4.0,933119441\n408,47,5.0,933033418\n408,50,5.0,933032097\n408,55,1.0,933112848\n408,73,5.0,933033497\n408,101,3.0,933116428\n408,104,3.0,933115239\n408,123,5.0,933034637\n408,150,3.0,933036283\n408,175,5.0,933036371\n408,180,5.0,933037117\n408,222,5.0,933113348\n408,223,4.0,933032411\n408,260,5.0,933031702\n408,265,4.0,933035394\n408,291,2.0,933118888\n408,296,4.0,933034219\n408,309,5.0,933032259\n408,314,5.0,933037791\n408,319,5.0,933033987\n408,327,5.0,933115430\n408,333,2.0,933118344\n408,342,3.0,933037621\n408,345,4.0,933115960\n408,356,3.0,933033418\n408,367,2.0,933119248\n408,410,2.0,933118435\n408,440,3.0,933116428\n408,454,2.0,933116529\n408,457,3.0,933031911\n408,474,5.0,933114620\n408,514,5.0,933118121\n408,522,3.0,933116046\n408,539,3.0,933119441\n408,541,5.0,933032411\n408,555,4.0,933034827\n408,588,3.0,933111453\n408,590,2.0,933113494\n408,593,3.0,933108976\n408,595,3.0,933114944\n408,608,4.0,933033987\n408,671,5.0,933119248\n408,680,5.0,933116905\n408,733,4.0,933118888\n408,741,4.0,933113348\n408,778,5.0,933035323\n408,780,4.0,933119248\n408,785,1.0,933111453\n408,866,5.0,933033314\n408,903,4.0,933034637\n408,904,4.0,933032097\n408,910,3.0,933032959\n408,914,2.0,933036956\n408,919,3.0,933035002\n408,1015,2.0,933118344\n408,1034,4.0,933031620\n408,1036,1.0,933033653\n408,1051,3.0,933036371\n408,1059,5.0,933036132\n408,1060,4.0,933036032\n408,1066,5.0,933037945\n408,1080,4.0,933035559\n408,1089,5.0,933033497\n408,1097,5.0,933116428\n408,1112,5.0,933108064\n408,1136,4.0,933033653\n408,1179,3.0,933038101\n408,1196,5.0,933032321\n408,1197,5.0,933033653\n408,1198,2.0,933107201\n408,1200,3.0,933034133\n408,1203,3.0,933108644\n408,1206,5.0,933033497\n408,1208,5.0,933034133\n408,1210,5.0,933032164\n408,1214,3.0,933032411\n408,1215,3.0,933113494\n408,1218,5.0,933031923\n408,1235,5.0,933109646\n408,1242,3.0,933033045\n408,1246,4.0,933108498\n408,1252,4.0,933034219\n408,1257,5.0,933108722\n408,1258,3.0,933037791\n408,1259,4.0,933038101\n408,1261,1.0,933035479\n408,1265,2.0,933112775\n408,1268,4.0,933108794\n408,1270,3.0,933110178\n408,1273,5.0,933033045\n408,1279,4.0,933110043\n408,1280,5.0,933034219\n408,1285,4.0,933035688\n408,1288,5.0,933033987\n408,1291,2.0,933033239\n408,1296,4.0,933035163\n408,1300,4.0,933035002\n408,1302,2.0,933108794\n408,1345,3.0,933118344\n408,1361,3.0,933033497\n408,1394,5.0,933033913\n408,1407,4.0,933037039\n408,1408,4.0,933115845\n408,1411,2.0,933034919\n408,1429,5.0,933037039\n408,1441,3.0,933036723\n408,1464,4.0,933037039\n408,1500,5.0,933109890\n408,1517,1.0,933116046\n408,1527,5.0,933036723\n408,1537,5.0,933033987\n408,1552,5.0,933111570\n408,1569,4.0,933038226\n408,1573,4.0,933111200\n408,1584,4.0,933035559\n408,1620,5.0,933112947\n408,1639,5.0,933033987\n408,1641,5.0,933037039\n408,1644,4.0,933116428\n408,1648,1.0,933034637\n408,1658,5.0,933035867\n408,1673,2.0,933037117\n408,1682,5.0,933038303\n408,1701,1.0,933036723\n408,1704,5.0,933032959\n408,1717,4.0,933118888\n408,1721,4.0,933033153\n408,1732,4.0,933114322\n408,1748,5.0,933035950\n408,1777,5.0,933116529\n408,1827,5.0,933113254\n408,1836,1.0,933033653\n408,1873,5.0,933033418\n408,1876,4.0,933037117\n408,1885,5.0,933112848\n408,1907,3.0,933033418\n408,1909,5.0,933114243\n408,1914,4.0,933032097\n408,1916,5.0,933035241\n408,1917,4.0,933111843\n408,1919,4.0,933032411\n408,1920,3.0,933112674\n408,1923,4.0,933033045\n408,1954,1.0,933118020\n408,1956,3.0,933031620\n408,1961,3.0,933032411\n408,1967,4.0,933033497\n408,1968,4.0,933115430\n408,2006,4.0,933035749\n408,2014,2.0,933118020\n408,2018,4.0,933118121\n408,2019,5.0,933031820\n408,2046,4.0,933034133\n408,2058,4.0,933037712\n408,2059,2.0,933032016\n408,2064,4.0,933033045\n408,2071,4.0,933113695\n408,2076,4.0,933110043\n408,2081,3.0,933111672\n408,2094,3.0,933115845\n408,2109,5.0,933032411\n408,2114,4.0,933032959\n408,2115,2.0,933108498\n408,2125,5.0,933037875\n408,2133,3.0,933037117\n408,2136,2.0,933033418\n408,2142,3.0,933037039\n408,2144,4.0,933034637\n408,2150,2.0,933106752\n408,2161,4.0,933035241\n408,2167,5.0,933036283\n408,2174,2.0,933035559\n408,2195,5.0,933033913\n408,2232,5.0,933034054\n408,2248,5.0,933033653\n408,2268,3.0,933032959\n408,2273,4.0,933033730\n408,2282,5.0,933033807\n408,2291,2.0,933033653\n408,2302,2.0,933035950\n408,2348,5.0,933033987\n408,2363,5.0,933107313\n408,2371,1.0,933109733\n408,2372,1.0,933036445\n408,2427,4.0,933036956\n408,2433,2.0,933031911\n408,2447,1.0,933035950\n408,2470,2.0,933036445\n408,2478,2.0,933116046\n408,2485,5.0,933115960\n408,2496,3.0,933032411\n408,2561,4.0,933110370\n408,2568,4.0,933037712\n408,2571,5.0,933036032\n408,2580,4.0,933036206\n408,2606,1.0,933031112\n408,2620,5.0,933030875\n408,2624,5.0,933031051\n408,2628,5.0,933030708\n408,2640,3.0,933116121\n408,2657,4.0,933032016\n408,2671,1.0,933031051\n408,2683,1.0,933030812\n408,2692,5.0,933030708\n408,2694,1.0,933031112\n408,2699,1.0,933036132\n408,2700,2.0,933031112\n408,2701,2.0,933031261\n408,2702,5.0,933030972\n408,2710,5.0,933030972\n408,2714,2.0,933030972\n408,2716,3.0,933033730\n408,2718,3.0,933030972\n408,2723,4.0,933031261\n408,2724,1.0,933031051\n409,1,5.0,828212413\n409,15,1.0,831090605\n409,16,4.0,828212412\n409,21,5.0,828212412\n409,22,1.0,831090605\n409,25,4.0,828212412\n409,30,5.0,828212412\n409,32,3.0,828212412\n409,34,5.0,831090605\n409,35,4.0,828212412\n409,46,4.0,831090605\n409,47,5.0,828213115\n409,50,4.0,828213115\n409,85,5.0,828212412\n409,110,4.0,828213115\n409,150,4.0,828213114\n409,153,3.0,828213115\n409,154,4.0,828213115\n409,165,2.0,828213115\n409,194,5.0,831090605\n409,204,4.0,828213115\n409,213,5.0,831090605\n409,223,4.0,828213115\n409,231,4.0,828213115\n409,232,5.0,828213511\n409,235,4.0,828213115\n409,264,5.0,828213115\n409,265,5.0,828213115\n409,268,4.0,828213115\n409,272,5.0,828213115\n409,280,5.0,828213115\n409,290,5.0,828213115\n409,292,2.0,828213115\n409,296,5.0,828213115\n409,306,5.0,828213115\n409,307,5.0,828213115\n409,308,5.0,828213115\n409,309,5.0,828213115\n409,318,5.0,828213115\n409,319,5.0,828213115\n409,331,4.0,828213115\n409,348,5.0,828213115\n409,349,3.0,831090605\n409,380,3.0,828213115\n409,417,4.0,828213114\n409,431,4.0,828213115\n409,434,4.0,831090605\n409,477,4.0,831090605\n409,590,4.0,828213115\n409,592,3.0,828213114\n409,673,5.0,828213115\n410,1,5.0,1434057935\n410,32,4.5,1434057966\n410,34,1.5,1434057979\n410,110,5.0,1434057934\n410,165,3.0,1434057961\n410,231,3.0,1434057974\n410,260,4.5,1434057911\n410,296,1.0,1434057926\n410,316,4.5,1434057977\n410,318,5.0,1434057915\n410,344,3.0,1434057958\n410,356,5.0,1434057929\n410,377,4.5,1434057956\n410,380,4.0,1434057963\n410,480,5.0,1434057932\n410,500,4.0,1434057982\n410,527,0.5,1434057938\n410,608,1.0,1434057969\n410,648,5.0,1434057959\n410,1198,5.0,1434057912\n410,1265,5.0,1434057973\n410,1270,5.0,1434058028\n410,2571,5.0,1434057917\n410,4993,5.0,1434058003\n410,5418,5.0,1434058024\n410,5952,5.0,1434058005\n410,8665,4.5,1434058026\n410,8961,4.5,1434058027\n411,24,5.0,944931682\n411,105,4.0,944930722\n411,318,5.0,944931267\n411,527,5.0,944931010\n411,608,4.0,944931267\n411,858,4.0,944930798\n411,912,3.0,944930867\n411,1193,5.0,944930931\n411,1196,3.0,944929012\n411,1219,5.0,944931010\n411,1221,4.0,944929202\n411,1500,3.0,944929202\n411,1584,4.0,944930722\n411,1754,4.0,944929202\n411,1956,2.0,944931267\n411,1997,5.0,944930722\n411,2324,1.0,944933658\n411,2439,3.0,944933263\n411,2501,4.0,944933658\n411,2541,1.0,944933914\n411,2570,5.0,944933658\n411,2707,4.0,944931606\n411,2710,1.0,944931770\n411,2762,4.0,944931405\n411,2858,4.0,944931405\n411,3006,5.0,944931515\n411,3076,3.0,944929012\n412,1,4.0,993088074\n412,19,3.0,993091327\n412,27,3.0,993089400\n412,39,3.0,993088307\n412,50,4.0,993087974\n412,110,3.0,993088283\n412,140,4.0,993088995\n412,185,3.0,993090479\n412,193,2.0,993092131\n412,231,3.0,993090296\n412,260,3.0,993086295\n412,296,3.0,993088001\n412,318,2.0,993087893\n412,337,2.0,993088545\n412,339,4.0,993089721\n412,342,3.0,993090153\n412,344,3.0,993089460\n412,360,3.0,993091678\n412,361,3.0,993088385\n412,364,4.0,993088420\n412,367,4.0,993089642\n412,370,3.0,993091164\n412,377,3.0,993088492\n412,420,3.0,993091692\n412,500,3.0,993088722\n412,550,2.0,993086487\n412,588,4.0,993088492\n412,619,3.0,993091065\n412,662,1.0,993090278\n412,708,3.0,993086584\n412,736,4.0,993089149\n412,754,4.0,993091533\n412,784,1.0,993090715\n412,804,3.0,993090278\n412,805,3.0,993088349\n412,832,3.0,993089134\n412,833,1.0,993091607\n412,837,3.0,993089965\n412,912,2.0,993086331\n412,1027,3.0,993089134\n412,1043,3.0,993086357\n412,1060,3.0,993088618\n412,1210,3.0,993086382\n412,1265,2.0,993088088\n412,1377,4.0,993090003\n412,1393,5.0,993088243\n412,1407,5.0,993088739\n412,1409,1.0,993090362\n412,1485,3.0,993088722\n412,1513,4.0,993089935\n412,1527,2.0,993088739\n412,1544,2.0,993090729\n412,1562,1.0,993092269\n412,1569,4.0,993086407\n412,1580,3.0,993088739\n412,1608,2.0,993089435\n412,1612,1.0,993090704\n412,1644,4.0,993090951\n412,1676,3.0,993090117\n412,1682,4.0,993088397\n412,1704,3.0,993088047\n412,1721,4.0,993088141\n412,1722,4.0,993088673\n412,1760,2.0,993092421\n412,1769,1.0,993089991\n412,1777,3.0,993088492\n412,1784,3.0,993088442\n412,1805,1.0,993089419\n412,1821,3.0,993090153\n412,1833,1.0,993090876\n412,1835,5.0,993088602\n412,1876,5.0,993089072\n412,1895,2.0,993088602\n412,1909,4.0,993088452\n412,1917,4.0,993089783\n412,2026,2.0,993091327\n412,2028,4.0,993087974\n412,2029,3.0,993089814\n412,2107,3.0,993091327\n412,2126,2.0,993090863\n412,2188,1.0,993090278\n412,2231,1.0,993089400\n412,2279,3.0,993091557\n412,2294,3.0,993088673\n412,2316,1.0,993090362\n412,2338,3.0,993091666\n412,2355,3.0,993088141\n412,2387,1.0,993090704\n412,2396,3.0,993088141\n412,2428,1.0,993090466\n412,2433,2.0,993090208\n412,2443,5.0,993088246\n412,2447,4.0,993089167\n412,2485,4.0,993089616\n412,2490,3.0,993089616\n412,2505,2.0,993090448\n412,2539,1.0,993089351\n412,2541,5.0,993089178\n412,2546,3.0,993090235\n412,2567,3.0,993088995\n412,2568,1.0,993092210\n412,2571,4.0,993088013\n412,2572,2.0,993088442\n412,2580,4.0,993086258\n412,2581,3.0,993089178\n412,2598,1.0,993091164\n412,2605,4.0,993090208\n412,2617,2.0,993086609\n412,2622,3.0,993089513\n412,2683,5.0,993089120\n412,2687,3.0,993088514\n412,2700,5.0,993088243\n412,2702,2.0,993090224\n412,2706,3.0,993088442\n412,2719,2.0,993091135\n412,2722,3.0,993090937\n412,2724,3.0,993090603\n412,2762,5.0,993088013\n412,2763,4.0,993089339\n412,2770,1.0,993090466\n412,2805,3.0,993090614\n412,2827,2.0,993091330\n412,2840,3.0,993089826\n412,2858,3.0,993088047\n412,2861,3.0,993089586\n412,2881,3.0,993089642\n412,2888,1.0,993091054\n412,2959,4.0,993088060\n412,2961,4.0,993089377\n412,3006,1.0,993088332\n412,3052,4.0,993088648\n412,3053,1.0,993090662\n412,3081,3.0,993088514\n412,3082,4.0,993089513\n412,3114,4.0,993088001\n412,3146,3.0,993090224\n412,3148,3.0,993088283\n412,3173,2.0,993090755\n412,3174,1.0,993088602\n412,3186,5.0,993088492\n412,3225,1.0,993092830\n412,3253,1.0,993089010\n412,3255,5.0,993088309\n412,3257,5.0,993091088\n412,3273,4.0,993087483\n412,3300,2.0,993087604\n412,3316,1.0,993087748\n412,3354,1.0,993087731\n412,3408,5.0,993087309\n412,3409,3.0,993087559\n412,3452,3.0,993087693\n412,3484,3.0,993087483\n412,3511,1.0,993087814\n412,3512,2.0,993087322\n412,3534,2.0,993087498\n412,3535,1.0,993087367\n412,3536,3.0,993087218\n412,3578,5.0,993087185\n412,3598,2.0,993086955\n412,3616,1.0,993087731\n412,3617,3.0,993087266\n412,3623,3.0,993087367\n412,3646,1.0,993087604\n412,3717,3.0,993087483\n412,3743,2.0,993087791\n412,3744,3.0,993087693\n412,3751,3.0,993087309\n412,3752,2.0,993087587\n412,3753,4.0,993087218\n412,3755,5.0,993087383\n412,3785,2.0,993087604\n412,3793,4.0,993087309\n412,3798,4.0,993087604\n412,3825,5.0,993087407\n412,3826,1.0,993087802\n412,3861,2.0,993087483\n412,3893,1.0,993087337\n412,3896,4.0,993087322\n412,3897,3.0,993087185\n412,3916,4.0,993086504\n412,3948,3.0,993087337\n412,3968,2.0,993087587\n412,3969,5.0,993086515\n412,3977,4.0,993086621\n412,3981,1.0,993087703\n412,3986,3.0,993086487\n412,3994,1.0,993087266\n412,3996,4.0,993087149\n412,3998,2.0,993087550\n412,3999,2.0,993086976\n412,4011,4.0,993087185\n412,4015,3.0,993087748\n412,4016,5.0,993086504\n412,4018,3.0,993086597\n412,4019,3.0,993086526\n412,4022,3.0,993087218\n412,4023,4.0,993092799\n412,4025,2.0,993086634\n412,4034,3.0,993086916\n412,4054,5.0,993092808\n412,4069,3.0,993087383\n412,4143,3.0,993087841\n412,4148,2.0,993087309\n412,4149,2.0,993087827\n412,4161,3.0,993087383\n412,4223,2.0,993086785\n412,4228,3.0,993086769\n412,4238,4.0,993086450\n412,4239,3.0,993086341\n412,4246,4.0,993086818\n412,4255,2.0,993086882\n412,4270,4.0,993086818\n412,4299,2.0,993086769\n412,4305,2.0,993086769\n412,4306,4.0,993086769\n412,4308,5.0,993086769\n412,4310,5.0,993086785\n412,4344,3.0,993086450\n412,4367,3.0,993086818\n413,6,5.0,850890598\n413,7,5.0,850890598\n413,17,3.0,850890557\n413,25,4.0,850890557\n413,52,3.0,850890657\n413,62,4.0,850890557\n413,95,4.0,850890557\n413,112,3.0,850890598\n413,141,3.0,850890557\n413,494,3.0,850890598\n413,648,4.0,850890557\n413,694,3.0,850890772\n413,708,4.0,850890657\n413,733,5.0,850890598\n413,736,3.0,850890557\n413,780,4.0,850890557\n413,786,4.0,850890657\n413,800,4.0,850890737\n413,832,4.0,850890737\n413,852,4.0,850890772\n413,1073,4.0,850890657\n413,1356,5.0,850890708\n414,21,4.0,1039390453\n414,24,2.0,1039390286\n414,28,4.0,1039390382\n414,46,2.0,1039390453\n414,288,2.0,1039390286\n414,346,3.0,1039388921\n414,380,2.0,1039390571\n414,439,1.0,1039390474\n414,518,2.0,1039388961\n414,524,3.0,1039390072\n414,589,4.0,1039390645\n414,612,3.0,1039390716\n414,619,1.0,1039390171\n414,700,2.0,1039390261\n414,835,2.0,1039390382\n414,907,4.0,1039388961\n414,953,3.0,1039390537\n414,969,5.0,1039390218\n414,1056,3.0,1039390696\n414,1113,2.0,1039390537\n414,1221,5.0,1039388961\n414,1244,4.0,1039390696\n414,1321,4.0,1039390645\n414,1466,3.0,1039390218\n414,1507,3.0,1039390760\n414,1552,1.0,1039390171\n414,1636,1.0,1039390106\n414,1668,2.0,1039390106\n414,1684,4.0,1039390147\n414,1876,1.0,1039390171\n414,1912,4.0,1039390286\n414,1952,4.0,1039390738\n414,2028,2.0,1039390423\n414,2134,3.0,1039388961\n414,2141,3.0,1039388921\n414,2250,3.0,1039388961\n414,2337,2.0,1039390303\n414,2359,3.0,1039390537\n414,2369,4.0,1039390738\n414,2427,3.0,1039390303\n414,2793,1.0,1039390286\n414,2942,3.0,1039390645\n414,2962,3.0,1039390474\n414,2983,4.0,1039390596\n414,3097,3.0,1039390335\n414,3099,3.0,1039388921\n414,3101,3.0,1039388921\n414,3102,3.0,1039390261\n414,3113,1.0,1039390196\n414,3240,2.0,1039390072\n414,3268,1.0,1039390261\n414,3395,3.0,1039390453\n414,3481,3.0,1039388921\n414,3534,2.0,1039390571\n414,4021,4.0,1039390696\n414,4025,2.0,1039390401\n414,4081,1.0,1039390196\n414,4130,1.0,1039390571\n414,4148,1.0,1039390261\n414,4161,1.0,1039390666\n414,4177,2.0,1039390571\n414,4181,4.0,1039390596\n414,4203,1.0,1039390286\n414,4316,1.0,1039390382\n414,4333,3.0,1039390716\n414,4345,2.0,1039390240\n414,4367,3.0,1039390738\n414,4420,2.0,1039390335\n414,4527,3.0,1039390196\n414,4550,2.0,1039390072\n414,4559,1.0,1039390738\n414,4578,2.0,1039390501\n414,4623,2.0,1039390240\n414,4881,4.0,1039390453\n414,4932,3.0,1039390760\n414,4973,5.0,1039390596\n414,5646,4.0,1039390382\n414,5651,3.0,1039390218\n414,5816,4.0,1039390760\n414,5834,3.0,1039390453\n414,5969,2.0,1039390501\n415,10,4.0,848984824\n415,34,4.0,848984886\n415,50,5.0,848984934\n415,110,5.0,848984824\n415,150,3.0,848984676\n415,161,4.0,848984824\n415,165,3.0,848984732\n415,185,4.0,848984824\n415,208,3.0,848984824\n415,292,5.0,848984796\n415,296,3.0,848984676\n415,316,5.0,848984762\n415,329,4.0,848984796\n415,349,5.0,848984762\n415,356,3.0,848984762\n415,380,5.0,848984676\n415,434,3.0,848984796\n415,454,5.0,848984934\n415,457,5.0,848984732\n415,480,5.0,848984796\n415,588,3.0,848984732\n415,590,3.0,848984676\n415,592,3.0,848984675\n415,595,3.0,848984762\n415,736,5.0,848984886\n415,780,4.0,848984886\n416,3,4.0,841447146\n416,7,4.0,841447107\n416,10,4.0,841446669\n416,11,4.0,841446809\n416,19,3.0,841446722\n416,20,3.0,841447146\n416,22,4.0,841446959\n416,32,3.0,841446767\n416,39,3.0,841446748\n416,62,5.0,841446890\n416,74,3.0,841447506\n416,86,3.0,841447389\n416,88,3.0,841447506\n416,104,3.0,841447169\n416,122,3.0,841447089\n416,140,3.0,841447673\n416,150,3.0,841446597\n416,153,3.0,841446622\n416,158,2.0,841447812\n416,161,4.0,841446655\n416,165,4.0,841446621\n416,168,4.0,841446877\n416,186,3.0,841446839\n416,193,1.0,841446909\n416,195,4.0,841447132\n416,208,2.0,841446669\n416,215,3.0,841447436\n416,216,4.0,841447036\n416,217,2.0,841447489\n416,225,4.0,841446722\n416,231,3.0,841446638\n416,235,4.0,841446852\n416,236,3.0,841447796\n416,237,4.0,841446940\n416,246,5.0,841447474\n416,248,3.0,841447075\n416,253,3.0,841446669\n416,273,3.0,841446940\n416,282,3.0,841446809\n416,288,3.0,841446684\n416,296,3.0,841446598\n416,300,3.0,841446703\n416,315,2.0,841446809\n416,329,3.0,841446655\n416,333,4.0,841446890\n416,344,4.0,841446622\n416,349,4.0,841446621\n416,353,3.0,841446877\n416,355,2.0,841446928\n416,356,4.0,841446669\n416,358,2.0,841447315\n416,364,3.0,841446703\n416,367,3.0,841446722\n416,368,3.0,841446909\n416,370,3.0,841446940\n416,376,3.0,841447006\n416,377,3.0,841446722\n416,380,3.0,841446598\n416,381,4.0,841447018\n416,382,3.0,841447124\n416,419,3.0,841447075\n416,420,3.0,841446733\n416,432,3.0,841446794\n416,433,3.0,841447466\n416,434,3.0,841446655\n416,435,3.0,841446767\n416,437,3.0,841447169\n416,440,3.0,841446795\n416,442,3.0,841446821\n416,445,1.0,841447518\n416,450,4.0,841447307\n416,454,3.0,841446684\n416,457,4.0,841446638\n416,466,3.0,841446959\n416,474,5.0,841446839\n416,480,3.0,841446684\n416,481,3.0,841447200\n416,489,1.0,841447183\n416,500,3.0,841446733\n416,508,4.0,841446862\n416,511,3.0,841447307\n416,520,2.0,841446970\n416,524,4.0,841447183\n416,539,4.0,841446767\n416,540,2.0,841447064\n416,543,4.0,841447054\n416,550,3.0,841447192\n416,585,3.0,841446890\n416,586,3.0,841446748\n416,587,3.0,841446748\n416,589,3.0,841446703\n416,592,3.0,841446597\n416,593,4.0,841446638\n416,594,3.0,841446959\n416,597,4.0,841446748\n416,648,3.0,841446919\n416,733,4.0,841447006\n416,736,3.0,841446909\n416,765,3.0,841447458\n416,780,3.0,841446992\n416,784,2.0,841447211\n416,786,4.0,841447169\n416,788,3.0,841447659\n416,802,3.0,841447544\n416,805,4.0,841447352\n416,1012,5.0,841447686\n416,1020,3.0,841447518\n417,1,3.5,1112585993\n417,104,2.5,1112466691\n417,110,5.0,1112585177\n417,158,0.5,1112466844\n417,161,3.5,1112672392\n417,165,3.0,1112747157\n417,260,4.0,1112672233\n417,261,3.5,1112672396\n417,349,4.0,1112747042\n417,356,4.0,1112585205\n417,457,4.0,1112586264\n417,529,4.5,1112672352\n417,588,0.5,1112587463\n417,608,4.0,1112586065\n417,780,4.0,1112672278\n417,832,5.0,1112466760\n417,903,4.0,1112466859\n417,920,3.0,1112585245\n417,923,3.5,1112466737\n417,1035,3.5,1112466812\n417,1036,3.5,1112747159\n417,1090,4.5,1112585040\n417,1125,4.0,1112587585\n417,1136,4.0,1112587228\n417,1148,4.0,1112466897\n417,1196,4.0,1112585174\n417,1197,4.5,1112587073\n417,1198,3.5,1112747069\n417,1210,4.0,1112585202\n417,1222,3.5,1112585196\n417,1224,4.5,1112585225\n417,1250,4.0,1112466870\n417,1265,4.5,1112586232\n417,1272,4.0,1112585180\n417,1278,4.5,1112587249\n417,1288,4.5,1112466774\n417,1304,4.0,1112466724\n417,1370,3.5,1112747161\n417,1393,4.0,1112670612\n417,1449,4.0,1112585880\n417,1527,2.0,1112466546\n417,1580,4.0,1112672321\n417,1608,4.0,1112747039\n417,1610,4.0,1112466642\n417,1687,4.0,1112747169\n417,1693,4.0,1112793266\n417,1792,3.5,1112586281\n417,1923,0.5,1112466554\n417,1950,4.0,1112670630\n417,1961,5.0,1112466551\n417,2028,5.0,1112585168\n417,2054,0.5,1112466783\n417,2081,0.5,1112466863\n417,2109,4.0,1112587403\n417,2324,5.0,1112586305\n417,2359,4.0,1112587140\n417,2403,4.0,1112585629\n417,2427,2.0,1112585356\n417,2502,3.5,1112587086\n417,2571,4.5,1112586925\n417,2628,2.5,1112672236\n417,2671,4.0,1112672330\n417,2683,0.5,1112466563\n417,2797,3.5,1112587412\n417,3006,4.0,1112585096\n417,3066,3.0,1112585254\n417,3100,3.5,1112586323\n417,3114,3.5,1112585996\n417,3360,4.0,1112670596\n417,3362,4.0,1112587294\n417,3507,4.5,1112587246\n417,3551,4.5,1112672411\n417,3578,4.0,1112585082\n417,3751,3.5,1112587449\n417,3753,3.5,1112672313\n417,3911,4.5,1112585867\n417,3988,3.5,1112672408\n417,3994,4.5,1112746861\n417,3996,4.5,1112585931\n417,4016,3.5,1112587600\n417,4027,4.0,1112586094\n417,4103,5.0,1112585232\n417,4225,4.0,1112587324\n417,4306,4.5,1112466695\n417,4361,5.0,1112587425\n417,4499,4.5,1112587149\n417,4506,4.0,1112747273\n417,4585,3.5,1113102216\n417,4857,4.0,1112585745\n417,4886,4.0,1112587211\n417,4901,4.5,1112746965\n417,4958,1.5,1112585379\n417,4963,4.5,1112587090\n417,4993,4.5,1112586031\n417,5010,4.5,1112585229\n417,5014,4.5,1112586396\n417,5107,3.0,1112585446\n417,5110,3.5,1112586121\n417,5152,3.5,1112585256\n417,5349,4.5,1112672480\n417,5377,5.0,1112585891\n417,5378,2.5,1112672234\n417,5428,3.0,1112585799\n417,5502,4.0,1112746876\n417,5602,4.0,1112587495\n417,5611,4.5,1112585110\n417,5945,4.5,1112587196\n417,5952,4.5,1112586035\n417,5991,0.5,1112587468\n417,5995,5.0,1112585139\n417,6213,4.0,1112747192\n417,6365,3.5,1112587034\n417,6377,4.0,1112587070\n417,6539,4.0,1112587077\n417,6598,5.0,1112585690\n417,6662,4.5,1112587362\n417,6663,4.0,1112587384\n417,6863,4.0,1112587164\n417,6934,3.0,1112587042\n417,6947,4.0,1112585216\n417,7090,4.0,1112585949\n417,7132,4.0,1112587275\n417,7143,3.0,1112585220\n417,7152,4.0,1112585712\n417,7153,4.5,1112586033\n417,7348,4.0,1112586252\n417,7980,3.5,1112585207\n417,8360,4.0,1112587083\n417,8376,4.5,1112836778\n417,8596,4.0,1112587420\n417,8636,4.5,1112672482\n417,8730,4.5,1112585284\n417,8783,4.5,1112746891\n417,8798,4.5,1112586338\n417,8827,4.5,1112587215\n417,8961,4.5,1112585653\n417,8984,4.5,1112587107\n417,30883,2.0,1112586139\n417,32587,3.5,1113187399\n418,1,3.5,1132180691\n418,2,2.0,1132178551\n418,10,2.5,1132178305\n418,47,3.5,1132178233\n418,48,3.0,1132180974\n418,95,3.5,1132178363\n418,150,4.0,1132178166\n418,153,2.0,1132178218\n418,158,4.0,1132176938\n418,339,4.5,1132178340\n418,344,2.5,1132698132\n418,350,3.5,1132178607\n418,356,4.5,1132178150\n418,357,3.5,1132178296\n418,364,4.5,1135358410\n418,367,3.0,1132178265\n418,377,3.0,1132178203\n418,380,4.0,1132178172\n418,434,3.5,1132178314\n418,442,3.0,1132178601\n418,480,5.0,1132178153\n418,500,3.0,1132178260\n418,586,4.0,1132178448\n418,589,3.5,1132178177\n418,590,3.5,1132698071\n418,592,3.0,1132698067\n418,597,5.0,1132178252\n418,648,3.5,1132178198\n418,673,1.5,1132177287\n418,733,4.0,1132178246\n418,736,4.0,1132178226\n418,778,0.5,1132178665\n418,780,4.5,1132178180\n418,783,3.5,1132180927\n418,805,4.0,1132176971\n418,1032,2.0,1132180821\n418,1088,5.0,1132177250\n418,1092,3.0,1132177216\n418,1240,2.5,1132178369\n418,1380,3.5,1135031757\n418,1407,3.5,1135031771\n418,1416,2.5,1132180298\n418,1446,3.5,1132179507\n418,1527,3.5,1132178522\n418,1562,1.5,1135029619\n418,1566,3.0,1132180897\n418,1580,4.0,1132178344\n418,1645,3.5,1132180274\n418,1688,4.0,1132180783\n418,1704,3.5,1132178537\n418,1721,4.5,1132178349\n418,1722,3.0,1132177114\n418,1835,4.0,1132180632\n418,1882,3.5,1132180397\n418,1923,2.5,1132178542\n418,1961,3.5,1132178483\n418,2080,3.5,1132180739\n418,2167,3.5,1132180257\n418,2324,4.5,1132179425\n418,2470,3.0,1142087569\n418,2471,3.5,1142087572\n418,2571,4.0,1132178269\n418,2572,5.0,1132177302\n418,2617,4.0,1132180586\n418,2687,5.0,1132180707\n418,2701,1.0,1132177294\n418,2706,4.0,1132178674\n418,2762,3.5,1132178322\n418,3155,3.5,1132178687\n418,3408,4.0,1132178769\n418,3452,4.5,1132696245\n418,3512,3.0,1132696659\n418,3578,4.5,1132178477\n418,3717,5.0,1132179839\n418,3744,3.0,1132696257\n418,3825,5.0,1132179861\n418,3999,3.5,1132696472\n418,4018,3.5,1132696889\n418,4034,1.5,1132176929\n418,4054,3.5,1132697000\n418,4069,3.5,1132696986\n418,4085,3.5,1132177360\n418,4090,2.5,1132180919\n418,4155,3.0,1132697467\n418,4161,2.5,1132696267\n418,4232,2.0,1132696413\n418,4246,2.5,1132177315\n418,4254,3.5,1142087561\n418,4270,3.5,1132180575\n418,4306,3.5,1132178049\n418,4308,0.5,1132177349\n418,4310,4.0,1132696149\n418,4344,2.0,1132696167\n418,4347,3.5,1132179511\n418,4367,3.5,1132179791\n418,4369,5.0,1132179825\n418,4638,4.0,1132696405\n418,4639,4.0,1132696969\n418,4887,4.0,1132696426\n418,4896,5.0,1132177706\n418,4901,3.5,1132697579\n418,4963,4.5,1132178766\n418,4975,1.5,1132697198\n418,4993,5.0,1132179265\n418,4995,4.5,1132178868\n418,5151,3.0,1132697192\n418,5218,5.0,1145867932\n418,5313,1.5,1132180555\n418,5349,2.5,1132695990\n418,5387,4.5,1132179760\n418,5414,5.0,1132180211\n418,5444,5.0,1132179738\n418,5445,3.5,1145914524\n418,5459,3.5,1132696190\n418,5507,3.5,1132696203\n418,5628,4.0,1132179413\n418,5816,4.5,1132177702\n418,5872,3.5,1132696145\n418,5952,4.5,1132179269\n418,6218,4.0,1132179420\n418,6365,3.5,1132178843\n418,6377,5.0,1132177253\n418,6537,3.0,1132696183\n418,6539,3.5,1132177148\n418,6595,4.0,1132696174\n418,6874,1.5,1132696099\n418,6934,3.5,1132696138\n418,6942,5.0,1132178790\n418,6952,3.5,1136824773\n418,7005,2.0,1132180429\n418,7149,4.5,1132178833\n418,7153,5.0,1132177102\n418,7154,4.0,1132696875\n418,7265,3.0,1132697329\n418,7293,4.0,1132178852\n418,7325,3.5,1132696211\n418,7381,3.5,1132696551\n418,8360,3.0,1132178749\n418,8361,4.5,1132696160\n418,8368,4.5,1132177704\n418,8371,3.0,1132696230\n418,8529,5.0,1132178794\n418,8622,3.5,1132178019\n418,8907,4.5,1132177974\n418,8916,4.0,1132177897\n418,8961,4.0,1134475732\n418,8972,4.5,1132695969\n418,8984,4.0,1132696195\n418,30822,4.0,1132177859\n418,31427,4.5,1142087655\n418,31903,5.0,1132179365\n418,32587,3.5,1132696089\n418,33085,1.0,1138211258\n418,33145,4.0,1133507957\n418,33615,3.5,1132868408\n418,33679,4.0,1132178882\n418,33794,4.0,1135029471\n418,34162,4.0,1132177761\n418,34532,3.5,1132177824\n418,35957,4.0,1132177615\n418,37727,4.0,1133507895\n418,40339,3.5,1135358277\n418,40614,4.0,1142087523\n418,40815,4.5,1134475774\n418,42007,3.5,1142087510\n418,43836,1.5,1145048460\n418,44022,4.5,1145048288\n418,45447,4.5,1148507443\n419,1,4.5,1110049948\n419,21,3.5,1110050033\n419,34,4.0,1110049997\n419,50,4.0,1110050211\n419,105,3.5,1110049610\n419,342,4.5,1110049577\n419,508,4.5,1110050281\n419,527,4.5,1110050485\n419,590,3.5,1110050258\n419,647,3.5,1110049682\n419,783,4.0,1110049648\n419,858,3.5,1110050220\n419,1293,4.5,1110049704\n419,1304,4.5,1110050163\n419,1641,4.5,1110050097\n419,1682,3.0,1110050494\n419,1722,2.5,1110049673\n419,1784,3.0,1110049993\n419,2001,2.5,1110049620\n419,2054,3.0,1110049594\n419,2167,3.5,1110049694\n419,2302,4.5,1110049581\n419,2321,3.0,1110049974\n419,2539,4.0,1110049732\n419,2762,4.5,1110050489\n419,2959,2.0,1110050471\n419,3039,3.5,1110049746\n419,3114,3.5,1110049966\n419,3408,3.5,1110050655\n419,3481,3.5,1110050145\n419,3623,2.5,1110049655\n419,3751,3.0,1110050640\n419,3911,3.0,1110049737\n419,3948,4.0,1110050477\n419,3977,3.5,1110049667\n419,4886,3.5,1110049687\n419,5299,3.5,1110050673\n419,5377,3.0,1110050378\n419,5572,3.5,1110050009\n419,5876,4.5,1110050633\n419,5991,3.0,1110050002\n419,5992,4.0,1110050697\n419,6218,4.0,1110050060\n419,6331,4.5,1110050577\n419,6539,2.5,1110050369\n419,6870,4.5,1110050595\n419,6942,3.5,1110049983\n419,7153,3.5,1110050202\n419,8360,3.5,1110050382\n419,8961,4.5,1110050125\n420,32,4.0,892821557\n420,107,4.0,892822150\n420,126,3.0,892823079\n420,144,4.0,892822057\n420,181,1.0,892823124\n420,249,2.0,892824744\n420,342,5.0,892821852\n420,355,3.0,892823100\n420,362,5.0,892822813\n420,480,2.0,892822895\n420,497,4.0,892821791\n420,529,5.0,892821062\n420,531,3.0,892823039\n420,541,4.0,892820411\n420,552,5.0,892822126\n420,562,4.0,892821791\n420,593,2.0,892821021\n420,594,3.0,892822895\n420,595,4.0,892822843\n420,596,3.0,892822956\n420,616,3.0,892822895\n420,661,3.0,892823002\n420,750,5.0,892820643\n420,828,4.0,892823039\n420,898,5.0,892820829\n420,903,5.0,892820793\n420,904,5.0,892820870\n420,907,3.0,892820411\n420,908,4.0,892820829\n420,910,4.0,892820870\n420,912,3.0,892820643\n420,913,3.0,892821369\n420,914,3.0,892821460\n420,923,4.0,892820829\n420,945,4.0,892820363\n420,953,3.0,892820960\n420,1017,3.0,892823002\n420,1023,5.0,892822813\n420,1025,5.0,892822813\n420,1027,3.0,892822895\n420,1028,5.0,892822922\n420,1029,3.0,892822922\n420,1031,4.0,892822956\n420,1032,4.0,892822956\n420,1035,5.0,892822895\n420,1073,5.0,892822922\n420,1079,5.0,892821791\n420,1080,4.0,892821498\n420,1097,4.0,892822843\n420,1103,3.0,892821524\n420,1104,4.0,892821295\n420,1125,4.0,892821852\n420,1136,4.0,892820683\n420,1150,4.0,892821398\n420,1188,5.0,892821852\n420,1193,4.0,892820960\n420,1196,4.0,892820643\n420,1197,5.0,892820683\n420,1198,4.0,892820583\n420,1200,4.0,892823261\n420,1207,3.0,892820545\n420,1214,4.0,892821498\n420,1217,4.0,892821146\n420,1219,5.0,892823261\n420,1220,5.0,892821936\n420,1224,5.0,892820870\n420,1225,5.0,892820683\n420,1230,3.0,892821460\n420,1231,4.0,892821062\n420,1234,4.0,892821936\n420,1235,4.0,892821936\n420,1247,4.0,892824777\n420,1250,3.0,892821339\n420,1259,5.0,892821725\n420,1264,5.0,892821090\n420,1266,4.0,892823202\n420,1269,3.0,892820683\n420,1270,4.0,892821936\n420,1272,3.0,892821460\n420,1275,4.0,892824374\n420,1278,4.0,892821976\n420,1280,4.0,892824515\n420,1282,3.0,892821557\n420,1288,5.0,892821791\n420,1291,3.0,892821751\n420,1302,3.0,892821146\n420,1303,4.0,892820683\n420,1304,5.0,892821999\n420,1307,4.0,892821936\n420,1333,4.0,892823226\n420,1374,4.0,892823226\n420,1380,2.0,892822259\n420,1394,2.0,892821976\n420,1405,1.0,892822303\n420,1411,4.0,892820363\n420,1704,4.0,892820141\n420,1721,2.0,892820141\n420,5060,3.0,892821424\n421,1,2.0,835170129\n421,11,5.0,835170327\n421,34,3.0,835170160\n421,39,3.0,835170225\n421,110,5.0,835170129\n421,150,4.0,835169969\n421,151,4.0,835170327\n421,158,3.0,835170469\n421,160,1.0,835170225\n421,165,2.0,835170005\n421,168,3.0,835170548\n421,173,1.0,835170259\n421,186,3.0,835170356\n421,236,3.0,835170289\n421,252,2.0,835170328\n421,253,2.0,835170100\n421,261,3.0,835170381\n421,265,2.0,835170469\n421,266,3.0,835170191\n421,292,3.0,835170070\n421,293,1.0,835170356\n421,300,3.0,835170129\n421,315,1.0,835170259\n421,316,5.0,835170037\n421,317,2.0,835170160\n421,318,5.0,835170037\n421,337,4.0,835170289\n421,339,3.0,835170070\n421,344,1.0,835170005\n421,349,5.0,835170004\n421,350,4.0,835170469\n421,356,4.0,835170289\n421,364,3.0,835170225\n421,377,4.0,835170548\n421,380,3.0,835169969\n421,410,2.0,835170129\n421,432,2.0,835170259\n421,434,2.0,835170070\n421,440,3.0,835170356\n421,454,4.0,835170225\n421,457,4.0,835170100\n421,480,1.0,835170327\n421,588,3.0,835170004\n421,589,2.0,835170469\n421,590,5.0,835169969\n421,593,3.0,835170100\n421,595,3.0,835170037\n422,1,5.0,980859727\n422,25,5.0,980859792\n422,34,4.0,980859748\n422,36,5.0,980859727\n422,39,4.0,980860120\n422,62,3.0,980860203\n422,70,3.0,980860306\n422,163,4.0,980860614\n422,296,5.0,980859486\n422,300,4.0,980860098\n422,314,5.0,980860034\n422,318,5.0,980859511\n422,356,4.0,980859825\n422,377,4.0,980860586\n422,480,3.0,980859968\n422,509,5.0,980860316\n422,539,3.0,980860336\n422,589,3.0,980859748\n422,593,5.0,980859598\n422,597,4.0,980860598\n422,608,5.0,980859486\n422,671,4.0,980859486\n422,745,5.0,980859598\n422,848,3.0,980860368\n422,858,4.0,980859294\n422,902,5.0,980859307\n422,999,5.0,980860034\n422,1060,4.0,980859698\n422,1089,5.0,980859525\n422,1092,4.0,980860353\n422,1094,4.0,980860072\n422,1148,5.0,980859539\n422,1183,5.0,980860560\n422,1187,4.0,980860072\n422,1196,3.0,980859275\n422,1213,4.0,980859650\n422,1223,5.0,980859727\n422,1265,3.0,980859890\n422,1266,4.0,980859839\n422,1268,4.0,980860306\n422,1271,4.0,980859780\n422,1356,2.0,980860353\n422,1393,3.0,980860542\n422,1441,3.0,980860425\n422,1517,4.0,980860003\n422,1610,4.0,980860144\n422,1619,5.0,980860290\n422,1639,5.0,980860560\n422,1704,4.0,980859727\n422,1721,3.0,980860144\n422,1777,3.0,980860110\n422,1805,4.0,980859968\n422,1909,2.0,980860326\n422,1977,2.0,980859275\n422,2028,4.0,980859539\n422,2231,4.0,980860274\n422,2268,4.0,980859937\n422,2291,4.0,980859953\n422,2324,5.0,980859698\n422,2359,5.0,980859761\n422,2571,3.0,980859698\n422,2677,5.0,980859598\n422,2706,4.0,980860444\n422,2712,5.0,980860465\n422,2791,4.0,980859307\n422,2841,3.0,980860353\n422,2908,4.0,980859761\n422,2916,2.0,980860166\n422,3007,4.0,980859698\n422,3044,3.0,980860560\n422,3052,5.0,980860166\n422,3100,5.0,980859978\n422,3107,4.0,980860478\n422,3114,4.0,980859650\n422,3129,5.0,980860368\n422,3148,4.0,980859848\n422,3155,4.0,980860274\n422,3174,4.0,980859862\n422,3253,4.0,980859862\n422,3418,5.0,980859898\n422,3499,4.0,980859912\n422,3614,4.0,980860425\n422,3990,2.0,980859425\n422,3999,2.0,980859396\n422,4025,3.0,980859425\n423,16,3.5,1353700733\n423,32,4.5,1353702469\n423,52,3.5,1353700719\n423,88,3.0,1354045120\n423,110,3.5,1353690717\n423,111,5.0,1353690587\n423,112,4.0,1354044911\n423,153,2.0,1354570794\n423,165,2.5,1353700439\n423,180,3.5,1353700713\n423,208,1.5,1356120878\n423,216,1.0,1353690007\n423,223,4.0,1354044791\n423,247,5.0,1366745345\n423,293,3.0,1353690982\n423,296,4.5,1353690522\n423,318,4.0,1353690380\n423,344,1.5,1353700421\n423,356,2.5,1353690977\n423,380,2.5,1354570781\n423,431,4.0,1353689965\n423,441,4.0,1356120997\n423,501,5.0,1355155724\n423,520,3.5,1354044892\n423,541,4.5,1353690537\n423,551,3.0,1353702981\n423,588,1.5,1353700416\n423,592,2.5,1354570771\n423,608,4.0,1353690579\n423,678,4.0,1353690603\n423,743,3.5,1356120984\n423,745,4.5,1353690436\n423,750,4.5,1353692208\n423,778,3.5,1353691124\n423,849,3.0,1353689992\n423,858,4.5,1353690685\n423,903,4.5,1353690529\n423,904,4.0,1353690384\n423,908,4.0,1353690400\n423,913,4.5,1355513806\n423,953,4.0,1353690728\n423,968,4.0,1353691701\n423,1073,4.5,1354033800\n423,1079,4.5,1353703162\n423,1080,5.0,1353691316\n423,1089,5.0,1353690653\n423,1090,3.5,1353690658\n423,1097,3.5,1354033802\n423,1103,3.5,1353692291\n423,1129,4.0,1353689957\n423,1136,4.5,1353691314\n423,1148,4.0,1353690430\n423,1193,5.0,1353690387\n423,1194,3.5,1353701208\n423,1196,4.0,1354570765\n423,1197,4.0,1353690481\n423,1198,4.0,1354033796\n423,1199,4.5,1353691009\n423,1201,5.0,1354570465\n423,1206,5.0,1353691236\n423,1209,4.0,1353690545\n423,1213,3.5,1353690609\n423,1215,4.0,1355514381\n423,1219,5.0,1353690677\n423,1220,4.0,1354044787\n423,1221,3.5,1353690749\n423,1222,4.5,1355514019\n423,1226,3.5,1353703105\n423,1240,4.0,1354570761\n423,1247,3.5,1353690632\n423,1252,5.0,1353690445\n423,1253,3.5,1353702847\n423,1255,4.0,1356029365\n423,1256,5.0,1353690551\n423,1258,5.0,1353691217\n423,1261,4.5,1353691738\n423,1263,3.5,1353691303\n423,1266,4.5,1353691003\n423,1270,3.0,1353700413\n423,1272,4.5,1353690031\n423,1276,4.0,1353690971\n423,1278,4.0,1353691348\n423,1281,3.5,1353690690\n423,1285,4.5,1354045487\n423,1288,4.5,1353690999\n423,1298,3.5,1356120971\n423,1304,4.5,1353691012\n423,1321,4.5,1354045273\n423,1333,4.0,1353692203\n423,1344,4.5,1353702867\n423,1345,3.5,1353701881\n423,1374,4.0,1353700592\n423,1391,4.0,1356120958\n423,1405,3.5,1353689980\n423,1573,3.5,1353700586\n423,1584,4.0,1354033786\n423,1587,3.5,1354044863\n423,1588,1.0,1353701200\n423,1590,1.0,1353690073\n423,1594,3.5,1354570050\n423,1663,4.0,1353703355\n423,1673,5.0,1354570176\n423,1682,3.0,1354570754\n423,1729,5.0,1353692080\n423,1732,5.0,1353703115\n423,1884,4.5,1354044852\n423,1907,1.5,1353700551\n423,1921,3.5,1353691976\n423,1953,3.5,1353691135\n423,1954,3.0,1354570862\n423,1982,2.5,1354570469\n423,2000,3.0,1353700544\n423,2002,3.0,1353700546\n423,2003,4.0,1354044843\n423,2012,3.0,1354033779\n423,2019,3.5,1353691335\n423,2023,4.0,1353700541\n423,2076,3.5,1353692228\n423,2078,2.5,1353689996\n423,2109,4.0,1353700528\n423,2134,3.0,1353700975\n423,2144,3.5,1353690001\n423,2148,4.5,1355155603\n423,2167,2.5,1353700523\n423,2174,2.0,1353700409\n423,2186,4.0,1353690495\n423,2288,5.0,1353703107\n423,2324,3.5,1353690463\n423,2329,3.5,1353690508\n423,2371,3.5,1353690067\n423,2401,4.0,1354045042\n423,2406,4.0,1354570843\n423,2407,3.0,1354044836\n423,2450,3.0,1354045036\n423,2502,4.5,1353691321\n423,2529,5.0,1353700515\n423,2539,2.0,1353700512\n423,2542,3.0,1353691250\n423,2557,4.0,1354570080\n423,2571,2.0,1353690450\n423,2648,4.0,1354570649\n423,2664,4.5,1353692283\n423,2700,3.5,1353691875\n423,2706,3.0,1354044782\n423,2716,3.5,1354033776\n423,2723,3.5,1353690018\n423,2788,3.0,1353691204\n423,2810,4.0,1353701693\n423,2826,2.0,1353690049\n423,2857,3.0,1354045026\n423,2916,3.5,1354033772\n423,2921,4.5,1355514335\n423,2944,3.0,1353690058\n423,2951,4.5,1354044826\n423,2959,4.5,1353690423\n423,2968,4.0,1353700507\n423,2987,3.5,1354044779\n423,2991,1.5,1353700889\n423,3000,5.0,1353690649\n423,3030,5.0,1353690425\n423,3033,3.5,1356120932\n423,3037,4.0,1353691308\n423,3039,2.5,1353689973\n423,3066,3.0,1353691420\n423,3095,4.0,1353691169\n423,3101,1.5,1353700493\n423,3147,4.0,1354570745\n423,3168,4.5,1353692273\n423,3175,2.5,1353700489\n423,3198,3.5,1353691405\n423,3200,4.5,1355514088\n423,3210,2.5,1356120926\n423,3254,2.5,1354045022\n423,3275,1.5,1353691363\n423,3360,3.0,1354045012\n423,3365,4.5,1353691152\n423,3386,4.0,1353690039\n423,3396,3.5,1353700486\n423,3424,2.5,1353703084\n423,3435,4.0,1353690397\n423,3441,2.0,1353700882\n423,3462,3.5,1353690490\n423,3467,4.0,1355514278\n423,3499,3.5,1353702968\n423,3546,4.5,1353702151\n423,3552,4.0,1354044819\n423,3624,3.0,1353690042\n423,3635,3.5,1353700866\n423,3671,3.5,1355514296\n423,3681,3.5,1353691376\n423,3703,3.5,1355513592\n423,3735,4.0,1354044993\n423,3809,3.5,1353700852\n423,3897,4.0,1354570741\n423,3911,3.5,1353692224\n423,3929,3.5,1355155885\n423,3996,3.5,1354570738\n423,4011,3.0,1353690997\n423,4027,4.0,1355514375\n423,4085,2.0,1353700481\n423,4105,3.5,1353691696\n423,4226,4.5,1353690453\n423,4406,4.0,1353691311\n423,4499,4.0,1353703317\n423,4545,1.0,1354044978\n423,4552,3.5,1355155703\n423,4558,2.5,1353700838\n423,4643,0.5,1353700476\n423,4734,1.5,1353700803\n423,4776,3.5,1354570825\n423,4855,4.0,1355514394\n423,4886,1.5,1353700402\n423,4963,2.5,1353700399\n423,4979,3.0,1353691972\n423,4993,3.0,1356120865\n423,5060,4.0,1353691031\n423,5218,2.5,1354044811\n423,5291,4.5,1353690457\n423,5349,3.0,1356120860\n423,5481,1.5,1354044807\n423,5618,5.0,1353690435\n423,5662,4.5,1354033555\n423,5669,3.0,1353692022\n423,5690,3.5,1353690616\n423,5826,4.0,1354570522\n423,5952,3.0,1354033768\n423,6001,5.0,1356029422\n423,6287,2.0,1354044962\n423,6373,2.0,1354570812\n423,6395,2.5,1366745069\n423,6502,3.0,1353692269\n423,6711,3.5,1353692248\n423,6713,5.0,1353701742\n423,6773,5.0,1355155764\n423,6774,4.0,1354570201\n423,6936,3.5,1353700780\n423,6957,4.0,1354044950\n423,6975,4.0,1353702254\n423,7013,4.5,1353690676\n423,7022,4.0,1353691747\n423,7147,3.0,1353702047\n423,7153,3.5,1353690515\n423,7235,5.0,1353701558\n423,7293,1.5,1353700773\n423,7325,2.5,1353700765\n423,7360,4.0,1354044945\n423,7482,4.0,1356121341\n423,7924,4.5,1355155786\n423,8142,4.0,1356029404\n423,8154,4.0,1353703053\n423,8157,4.5,1354045427\n423,8228,4.5,1353690673\n423,8360,1.5,1353700456\n423,8370,5.0,1356121385\n423,8376,2.0,1354044796\n423,8464,4.0,1354570808\n423,8607,4.5,1353701750\n423,8622,4.0,1356120900\n423,8874,4.5,1353703365\n423,8914,3.5,1356029443\n423,8917,4.0,1354044939\n423,8984,2.0,1353700759\n423,25777,3.5,1353691809\n423,26776,4.5,1353691925\n423,26840,4.0,1354570103\n423,27397,4.0,1355514085\n423,27592,5.0,1353701570\n423,27773,5.0,1353690651\n423,30745,5.0,1353701537\n423,30810,4.0,1353700757\n423,31658,5.0,1353690724\n423,31878,4.5,1354045280\n423,33794,4.0,1353691354\n423,34542,4.0,1353692075\n423,35836,3.5,1356120891\n423,37727,1.0,1353701479\n423,37729,4.0,1353700751\n423,38038,3.5,1353692264\n423,38061,3.5,1353703019\n423,39292,3.5,1353691948\n423,40732,3.5,1353701470\n423,42632,2.5,1353701577\n423,44191,3.0,1353700450\n423,44195,3.5,1354044794\n423,44665,3.5,1356121024\n423,47997,3.5,1353701446\n423,48322,2.5,1353701441\n423,48385,4.5,1354570798\n423,48516,5.0,1353690593\n423,48817,3.5,1366745303\n423,50641,4.5,1355155630\n423,51077,1.5,1353701435\n423,51086,1.0,1353701417\n423,51255,4.5,1353692280\n423,51540,4.5,1366745284\n423,52281,3.0,1353692135\n423,52666,4.0,1355155660\n423,52885,5.0,1353691801\n423,54503,3.5,1353691707\n423,54881,4.0,1355155972\n423,54997,4.0,1353692108\n423,55820,5.0,1353691214\n423,55830,3.5,1353701404\n423,56367,2.5,1353691795\n423,57669,5.0,1353691968\n423,58559,5.0,1353690391\n423,59615,0.5,1353700740\n423,60684,3.5,1353692035\n423,62155,2.5,1353701360\n423,62336,4.0,1353690745\n423,62378,3.0,1366744972\n423,63992,0.5,1353701364\n423,64614,3.0,1353691104\n423,64620,3.0,1353692046\n423,65261,4.0,1353691999\n423,67997,5.0,1353701611\n423,68157,4.0,1353691029\n423,68237,4.5,1353691173\n423,69122,2.5,1353691813\n423,70286,4.5,1353692029\n423,71464,4.0,1353701313\n423,71535,3.0,1353692016\n423,72378,0.5,1353701305\n423,72781,4.5,1353701647\n423,74152,4.0,1353703328\n423,74458,4.0,1353692048\n423,76251,2.5,1353692235\n423,77455,4.0,1353691101\n423,77907,4.5,1353701649\n423,79132,5.0,1353690447\n423,79136,4.5,1366745158\n423,79702,3.5,1353691806\n423,81591,4.0,1353691879\n423,82459,3.5,1353692140\n423,86345,4.0,1353690622\n423,86347,4.0,1353691114\n423,86377,4.0,1353690558\n423,91529,4.5,1355514013\n423,91947,3.5,1366745125\n423,92535,4.5,1353690517\n423,94024,4.5,1353701675\n423,94939,4.5,1353701629\n423,97744,4.5,1353701660\n423,97866,4.5,1356029375\n423,99114,4.5,1366745141\n423,99437,2.5,1366745227\n423,99795,4.5,1366745000\n424,39,3.5,1088826826\n424,348,3.0,1088826578\n424,475,4.5,1088826626\n424,745,4.5,1088826612\n424,910,3.5,1088826602\n424,1148,4.5,1088826569\n424,1179,3.5,1088826655\n424,1250,3.0,1088826555\n424,1466,3.5,1088826652\n424,1573,3.5,1088826807\n424,1641,4.0,1088826791\n424,1747,3.5,1088826633\n424,1777,1.0,1088826606\n424,1912,3.5,1088826659\n424,1952,4.0,1088826932\n424,1965,3.5,1088826923\n424,2160,4.5,1088826914\n424,2302,2.0,1088826778\n424,2395,3.5,1088826788\n424,2424,0.5,1088826664\n424,2599,4.5,1088826798\n424,2770,4.0,1088826594\n424,2858,3.0,1088826794\n424,3000,3.5,1088826881\n424,3671,3.5,1088826857\n424,3809,1.0,1088826863\n424,4027,1.0,1088826583\n424,4226,4.0,1088826564\n424,5388,4.0,1088826838\n424,5952,2.0,1088826870\n425,1,4.5,1112383737\n425,3,0.5,1112383600\n425,50,4.0,1112383800\n425,104,3.0,1112383604\n425,260,3.5,1112383838\n425,266,4.0,1112383542\n425,293,3.5,1112537739\n425,318,3.0,1112383732\n425,368,4.0,1112383561\n425,442,1.5,1112383529\n425,527,5.0,1112537663\n425,553,2.5,1112383621\n425,593,4.5,1112537716\n425,708,1.0,1112383574\n425,858,4.0,1112537707\n425,1193,5.0,1112537799\n425,1196,4.0,1112383753\n425,1198,2.0,1112383762\n425,1200,3.5,1112537786\n425,1208,4.0,1112383587\n425,1210,3.5,1112383774\n425,1220,4.0,1112383595\n425,1270,1.0,1112383851\n425,1517,4.5,1112383591\n425,1584,3.0,1112383523\n425,1610,3.5,1112383538\n425,1617,3.5,1112537806\n425,2028,4.5,1112383767\n425,2194,3.5,1112383783\n425,2329,5.0,1112383742\n425,2762,5.0,1112383804\n425,2959,3.0,1112383533\n425,2987,3.5,1112383580\n425,3114,4.5,1112383625\n425,3421,3.0,1112383892\n425,3552,2.5,1112383856\n425,3578,4.0,1112537782\n425,4011,3.5,1112383822\n425,4226,2.0,1112537653\n425,4306,3.0,1112383616\n425,4327,4.0,1112537769\n425,4886,3.0,1112383721\n425,4973,0.5,1112537791\n425,4993,4.0,1112383847\n425,5464,3.0,1112383908\n425,5782,3.5,1112537731\n425,5952,4.0,1112383869\n425,5989,2.5,1112383905\n425,6377,5.0,1112383828\n425,6539,4.0,1112383873\n425,6990,4.0,1112383747\n425,7153,4.0,1112383861\n425,7263,4.5,1112383811\n425,8784,0.5,1112537722\n425,8961,3.0,1112383888\n426,1,3.0,1312723226\n426,2,3.0,1310374386\n426,32,2.0,1310376031\n426,47,4.0,1313019611\n426,150,4.5,1310374587\n426,173,2.0,1310374525\n426,293,4.5,1215237478\n426,318,3.0,1310375718\n426,356,4.5,1310374614\n426,364,2.0,1214634821\n426,367,2.5,1214634250\n426,377,3.0,1310374227\n426,527,4.5,1310375774\n426,586,3.5,1215235439\n426,587,2.5,1214634345\n426,589,3.5,1310374483\n426,593,3.5,1310375903\n426,733,3.5,1310374501\n426,780,4.0,1310374391\n426,858,4.5,1310375743\n426,1090,2.5,1310375989\n426,1097,3.5,1214634258\n426,1213,4.0,1310375786\n426,1220,1.5,1215235642\n426,1221,4.5,1310374708\n426,1240,3.0,1310374704\n426,1246,3.0,1310374314\n426,1262,1.5,1310375819\n426,1266,2.5,1316424838\n426,1466,4.0,1310376117\n426,1573,4.5,1310374306\n426,1580,3.0,1214633651\n426,1645,4.5,1216014351\n426,1704,3.5,1310375872\n426,1721,4.0,1310374199\n426,1876,4.0,1310374309\n426,1917,3.5,1310388056\n426,1961,4.0,1310376168\n426,1997,3.0,1313019635\n426,2012,2.5,1310374655\n426,2028,4.5,1310374233\n426,2054,3.5,1215235446\n426,2273,3.5,1236265879\n426,2324,4.0,1311681703\n426,2329,4.0,1310375741\n426,2355,3.5,1214634964\n426,2459,2.0,1323087463\n426,2529,2.5,1216013578\n426,2571,4.5,1310374252\n426,2706,1.0,1310374591\n426,2762,4.5,1310374674\n426,2959,4.0,1310375783\n426,3114,3.0,1312723229\n426,3147,4.5,1214634860\n426,3157,3.5,1310374490\n426,3198,2.0,1310375932\n426,3751,2.5,1310374319\n426,3793,3.5,1214633662\n426,3897,2.5,1214634127\n426,3946,2.0,1213376027\n426,3948,3.0,1310374514\n426,3977,3.5,1214634738\n426,4011,2.5,1310375943\n426,4022,4.0,1310374323\n426,4306,3.0,1310374346\n426,4370,4.0,1215236236\n426,4447,1.0,1216014348\n426,4718,0.5,1216014109\n426,4720,4.5,1266835528\n426,4886,4.0,1214634083\n426,4896,4.0,1310374287\n426,4993,5.0,1214633546\n426,4995,4.5,1310374325\n426,5010,4.0,1310374426\n426,5218,3.5,1310374542\n426,5266,3.0,1310374245\n426,5349,4.0,1214633579\n426,5418,4.0,1310387832\n426,5459,3.0,1310374509\n426,5480,3.0,1213376185\n426,5502,3.0,1236265810\n426,5679,4.5,1310374236\n426,5816,4.0,1310374393\n426,5952,5.0,1214633808\n426,5956,4.5,1310374304\n426,5989,4.5,1214634080\n426,5995,4.5,1310375881\n426,6333,4.0,1214634095\n426,6365,4.5,1310374255\n426,6377,3.5,1214633646\n426,6503,0.5,1236266043\n426,6537,3.0,1310374340\n426,6539,4.5,1310387883\n426,6874,4.0,1214633654\n426,6880,3.5,1323087450\n426,6934,4.5,1310374254\n426,7143,4.5,1310375702\n426,7153,5.0,1214633640\n426,7318,4.0,1313019654\n426,7366,1.0,1213376078\n426,7373,3.0,1310374545\n426,7438,4.5,1216013447\n426,8132,4.0,1310375708\n426,8360,2.5,1310374497\n426,8361,4.5,1216014468\n426,8368,4.0,1310374299\n426,8528,3.0,1216014856\n426,8636,2.5,1310374343\n426,8644,4.0,1310374280\n426,8645,1.0,1213375877\n426,8961,4.0,1214633721\n426,8972,4.0,1310374378\n426,30707,4.5,1310387916\n426,30793,4.0,1215235498\n426,30894,2.0,1310374328\n426,31696,4.5,1313019387\n426,32587,4.0,1310374230\n426,33587,2.0,1315407189\n426,33679,3.5,1215237463\n426,33794,4.0,1214633593\n426,34048,4.5,1310374168\n426,35836,4.0,1216012624\n426,38038,3.5,1310388229\n426,39446,4.5,1213375973\n426,40815,4.0,1310374302\n426,41566,3.0,1310374408\n426,41569,4.0,1310374605\n426,44191,4.0,1310387855\n426,44665,4.5,1266835505\n426,45447,4.5,1310374316\n426,45722,4.5,1310387884\n426,46335,2.5,1310374400\n426,46530,2.0,1310374487\n426,46578,3.5,1310374520\n426,47610,4.0,1310374260\n426,48159,3.0,1310374558\n426,48385,3.0,1310374581\n426,48394,4.5,1310374248\n426,48516,3.5,1321896493\n426,48518,2.5,1323087437\n426,48696,2.5,1323171391\n426,48774,1.5,1310374412\n426,49272,4.0,1310374419\n426,49649,3.5,1310374563\n426,49822,3.5,1322736099\n426,50872,3.0,1310374365\n426,51255,3.5,1310374542\n426,51662,4.0,1214633813\n426,52281,4.5,1310387926\n426,52722,4.0,1213375902\n426,52973,2.0,1215236241\n426,53125,4.5,1310374239\n426,53956,2.0,1320778912\n426,53972,3.0,1310374516\n426,53996,3.5,1310374333\n426,54001,4.0,1310374298\n426,54259,2.5,1310374205\n426,54270,1.5,1310388116\n426,54286,4.0,1310387837\n426,54503,3.0,1310387935\n426,55052,4.0,1216014601\n426,55110,4.0,1310388062\n426,55118,4.5,1310376125\n426,55272,4.5,1323890835\n426,55290,3.0,1310376141\n426,55820,3.0,1266835529\n426,55872,3.5,1324839261\n426,55995,3.5,1310374582\n426,56174,4.0,1310374284\n426,56367,3.5,1214633770\n426,56757,4.5,1310374202\n426,56788,3.5,1213376235\n426,57223,0.5,1310388123\n426,57368,4.5,1310388033\n426,57640,4.0,1310387995\n426,58306,3.5,1310387961\n426,58559,4.5,1310387905\n426,58627,4.0,1310388048\n426,59306,4.0,1310388132\n426,59315,4.5,1310376071\n426,59594,3.5,1310388107\n426,59615,3.5,1310388076\n426,59727,4.0,1310388096\n426,60040,3.5,1310387983\n426,60069,4.0,1310387772\n426,60072,3.0,1310387972\n426,60074,4.5,1310388070\n426,60126,4.0,1310388041\n426,60514,3.0,1310388086\n426,61167,4.5,1313019514\n426,63082,4.0,1310376021\n426,64032,1.5,1311409769\n426,64614,4.5,1310375971\n426,65261,3.0,1312242949\n426,65514,3.5,1310376061\n426,65601,2.5,1311252288\n426,66335,1.0,1313361477\n426,67197,2.5,1311409753\n426,67255,2.0,1322067294\n426,68157,3.5,1310375581\n426,68269,3.5,1314655612\n426,68358,2.5,1312375505\n426,68791,3.0,1313019381\n426,68848,3.5,1312923744\n426,69644,3.0,1311941355\n426,69951,3.0,1313162389\n426,70286,4.0,1310509278\n426,70293,2.5,1316189837\n426,71135,2.0,1311681564\n426,71205,3.5,1311801411\n426,71211,1.5,1323423057\n426,71248,1.5,1310637692\n426,71252,2.0,1311705609\n426,71254,3.0,1311606101\n426,71490,2.5,1315091282\n426,71573,1.5,1312242966\n426,72011,3.0,1312900885\n426,72043,2.5,1312315781\n426,72395,2.5,1314747954\n426,72405,1.0,1311252323\n426,72479,3.5,1314570712\n426,72489,2.5,1314460884\n426,72641,4.0,1310376100\n426,72762,2.5,1311919068\n426,73015,3.0,1315476400\n426,73017,3.5,1312066410\n426,73106,2.0,1311759587\n426,73168,2.5,1311505072\n426,73321,3.0,1315488854\n426,73929,4.0,1313019088\n426,74115,2.0,1314270039\n426,74156,2.0,1315407212\n426,74228,3.5,1314916910\n426,74452,2.5,1315921256\n426,74530,3.5,1315161580\n426,74532,2.5,1320663157\n426,74545,1.5,1323204271\n426,74580,3.5,1314015415\n426,74868,3.0,1311769935\n426,74944,2.5,1320525077\n426,75341,4.0,1310821392\n426,76111,4.0,1313361502\n426,76293,2.5,1320778852\n426,78499,4.5,1312723214\n426,79132,3.0,1310375731\n426,79134,3.5,1312406213\n426,79293,2.0,1311257816\n426,79553,3.5,1316267502\n426,81834,3.5,1310376154\n426,81845,4.0,1310375737\n426,81932,4.0,1310375918\n426,82167,3.0,1322931116\n426,85572,2.5,1323890879\n426,86880,4.0,1316189764\n427,246,5.0,1250895460\n427,910,5.0,948657494\n427,919,5.0,1133042737\n427,927,5.0,948657464\n427,1189,4.5,1250894394\n427,1192,5.0,1250895524\n427,1203,5.0,1128457191\n427,1207,5.0,1128457173\n427,1267,5.0,977929549\n427,1610,4.0,943193215\n427,1794,5.0,949892229\n427,1834,5.0,950656096\n427,1947,5.0,954646432\n427,2165,4.0,941370404\n427,2202,5.0,1133042768\n427,2324,2.0,943193068\n427,2330,4.0,948657202\n427,2331,5.0,943193150\n427,2357,5.0,939334343\n427,2396,5.0,939334407\n427,2436,2.0,948657936\n427,2494,4.0,950656136\n427,2501,5.0,939334407\n427,2505,4.0,939334662\n427,2541,4.0,939334474\n427,2572,3.0,948658156\n427,2575,3.0,939334343\n427,2580,5.0,939334343\n427,2583,2.0,939334407\n427,2599,5.0,939471337\n427,2607,4.0,939471337\n427,2611,4.0,950656065\n427,2612,5.0,1133042932\n427,2629,4.0,948657936\n427,2677,4.0,939471258\n427,2690,4.0,954858294\n427,2692,4.0,939471258\n427,2721,4.0,939332587\n427,2725,2.0,939333701\n427,2759,2.0,949892370\n427,2762,3.0,939332587\n427,2829,4.0,939333936\n427,2839,4.0,954646432\n427,2858,5.0,939332587\n427,2890,5.0,957753781\n427,2891,4.0,940772684\n427,2908,5.0,957753723\n427,2959,4.0,958331913\n427,2966,3.0,959536644\n427,2997,4.0,941370234\n427,3006,4.0,943810098\n427,3007,4.0,948657229\n427,3079,3.0,968563714\n427,3083,5.0,968563574\n427,3114,4.0,948657147\n427,3129,3.0,969816668\n427,3163,3.0,951098843\n427,3175,3.0,953504181\n427,3176,4.0,947369314\n427,3181,3.0,968563534\n427,3182,4.0,949892202\n427,3186,2.0,968563714\n427,3188,4.0,977929769\n427,3289,4.0,953504066\n427,3317,5.0,952358232\n427,3408,4.0,955643035\n427,3409,3.0,971028409\n427,3535,4.0,957753838\n427,3538,3.0,959536380\n427,3556,3.0,968563653\n427,3594,3.0,983550877\n427,3624,4.0,971631229\n427,3893,4.0,969216317\n427,3903,3.0,971028428\n427,3911,3.0,978709981\n427,3949,5.0,975781813\n427,3967,4.0,975781760\n427,3983,4.0,978710004\n427,3989,4.0,994366614\n427,3993,4.0,994366630\n427,3996,5.0,981069166\n427,4014,3.0,981069181\n427,4016,3.0,983550997\n427,4021,3.0,983550975\n427,4022,3.0,979574534\n427,4027,3.0,983550944\n427,4029,2.0,979574560\n427,4034,4.0,983550819\n427,4056,4.0,983550847\n427,4226,5.0,988493239\n427,4235,4.0,988493239\n427,4236,4.0,994366511\n427,4237,4.0,1110945225\n427,4252,5.0,994366535\n427,4304,5.0,994366511\n427,4306,4.0,1009911179\n427,4375,4.0,1005543899\n427,4384,3.0,997048492\n427,4427,5.0,1133042901\n427,4450,4.0,1001173786\n427,4641,4.0,1000678535\n427,4642,5.0,998607282\n427,4649,3.0,1003024600\n427,4722,4.0,1000678496\n427,4723,4.0,998967925\n427,4765,5.0,1005543981\n427,4766,4.0,1005543960\n427,4772,4.0,1011672972\n427,4878,4.0,1004906303\n427,4897,3.0,1008650249\n427,4903,4.0,1005543960\n427,4965,2.0,1009911218\n427,4973,5.0,1116354559\n427,5010,5.0,1011672915\n427,5013,3.0,1010345180\n427,5015,4.0,1014007804\n427,5074,4.0,1014305906\n427,5135,3.0,1116354513\n427,5222,4.0,1021345835\n427,5225,4.0,1116354581\n427,5375,4.5,1133042951\n427,5377,3.0,1049083446\n427,5445,2.0,1025186493\n427,5446,5.0,1042555931\n427,5502,4.0,1044750719\n427,5505,4.0,1044750697\n427,5525,4.0,1060280381\n427,5577,3.0,1065393088\n427,5669,5.0,1041725800\n427,5685,3.5,1060280351\n427,5792,4.5,1116354538\n427,5812,4.5,1116354484\n427,5875,1.0,1051537004\n427,5878,5.0,1046647854\n427,5902,3.0,1041725737\n427,5945,3.0,1042996257\n427,5955,4.0,1042555897\n427,5991,5.0,1041725759\n427,6016,5.0,1156716167\n427,6062,4.0,1047651383\n427,6215,4.0,1051536964\n427,6218,5.0,1052664860\n427,6235,5.0,1046648012\n427,6244,5.0,1046647917\n427,6269,5.0,1049083482\n427,6296,3.0,1051799150\n427,6297,3.0,1053008615\n427,6299,3.5,1054595166\n427,6329,2.0,1116354871\n427,6331,5.0,1053309962\n427,6377,4.0,1054753022\n427,6378,4.0,1056383778\n427,6380,5.0,1057761595\n427,6385,3.5,1056484880\n427,6502,4.5,1057761622\n427,6552,4.5,1065393046\n427,6568,2.0,1065392996\n427,6592,3.5,1088952308\n427,6612,4.5,1250894339\n427,6620,5.0,1088952325\n427,6711,3.5,1068506016\n427,6772,4.0,1110945182\n427,6867,4.5,1116354563\n427,6869,4.5,1068506104\n427,6935,4.0,1068506242\n427,6945,4.0,1110945213\n427,7137,5.0,1088952249\n427,7139,4.0,1116354459\n427,7156,4.5,1110945168\n427,7256,4.0,1081899058\n427,7323,3.0,1081899052\n427,7382,3.5,1088952195\n427,7451,4.0,1088952403\n427,7932,5.0,1110945208\n427,8011,4.0,1110945174\n427,8129,1.5,1110945325\n427,8360,3.0,1099360992\n427,8366,3.5,1088952208\n427,8376,4.0,1099361016\n427,8464,5.0,1088952199\n427,8530,3.5,1112919628\n427,8622,5.0,1088952190\n427,8645,4.5,1095625235\n427,8784,4.0,1095625232\n427,8813,3.5,1095645165\n427,8860,0.5,1111026293\n427,8873,2.5,1099361090\n427,8874,4.0,1097018897\n427,8910,3.5,1116354633\n427,8938,5.0,1104630933\n427,8949,4.0,1104630917\n427,8951,4.0,1104630922\n427,8961,3.5,1115178370\n427,8966,3.5,1104630957\n427,8970,4.0,1116354613\n427,8973,4.0,1104630927\n427,8979,4.0,1131832183\n427,9018,5.0,1106498092\n427,26524,5.0,1250894277\n427,26599,5.0,1131832222\n427,27790,3.5,1114792332\n427,27822,4.0,1111026450\n427,27838,4.0,1111026402\n427,27846,4.5,1110945245\n427,27850,3.5,1115178387\n427,27878,4.0,1128457245\n427,30707,3.0,1118709999\n427,30820,4.0,1110945124\n427,30822,4.5,1110945131\n427,30898,4.0,1114792318\n427,31437,4.0,1112919612\n427,31689,4.5,1110945368\n427,31878,4.5,1115828580\n427,32025,4.0,1116130631\n427,33138,4.0,1115178337\n427,33154,4.0,1115828627\n427,33166,5.0,1115828585\n427,33171,2.5,1133042763\n427,33639,4.5,1130600531\n427,33838,3.5,1133042812\n427,33880,2.5,1133042784\n427,34153,4.5,1123776115\n427,34162,2.0,1123776185\n427,34164,4.5,1133042802\n427,37741,4.5,1133042634\n427,39183,4.5,1135123313\n427,39292,4.0,1130600490\n427,44555,4.0,1177171058\n427,44694,3.5,1167240430\n427,45028,2.5,1156716144\n427,45720,3.0,1159045087\n427,45950,5.0,1156716264\n427,46578,3.5,1157246253\n427,47950,2.0,1159045041\n427,48394,4.5,1170692369\n427,48696,3.5,1163959008\n427,48698,4.0,1250894319\n427,49132,4.0,1250895374\n427,49824,4.0,1170609840\n427,51255,4.0,1179589802\n427,51418,1.0,1177170996\n427,51662,1.0,1177171099\n427,51884,3.5,1177171121\n427,55069,5.0,1206586611\n427,55094,4.0,1206586675\n427,55276,4.5,1206586652\n427,55290,4.0,1206586666\n427,55820,4.0,1206586640\n427,56152,4.5,1206586687\n427,58191,4.5,1250894329\n427,59731,4.0,1250894403\n427,60943,4.5,1250895660\n427,61236,4.0,1250894514\n427,61357,4.0,1256226805\n427,64614,1.5,1250894570\n427,66509,0.5,1250895805\n427,67997,4.5,1250894343\n427,68157,4.0,1262228528\n427,68347,4.5,1256226826\n427,68838,4.0,1262228546\n427,68954,3.5,1250894386\n427,69122,5.0,1250895760\n427,69458,4.5,1263310958\n427,69481,4.0,1250894296\n427,69757,4.0,1250895730\n427,70286,4.0,1262977565\n427,71379,3.0,1263310993\n427,71462,4.5,1263310917\n427,71579,4.5,1263310897\n427,72011,5.0,1265906220\n427,72386,3.5,1272752346\n427,72395,3.0,1262228475\n427,72720,4.0,1262228620\n427,72998,2.5,1262977526\n427,90428,5.0,1346207554\n427,91673,5.0,1346207499\n427,103137,4.5,1382283005\n427,103624,4.5,1381617789\n427,103980,3.5,1381617664\n427,104879,2.0,1381617702\n427,106100,4.0,1386874965\n427,106438,4.5,1387728917\n427,106696,4.0,1389310515\n427,106916,4.0,1388964642\n427,107141,3.5,1388964557\n427,109374,4.0,1409437972\n427,111622,4.0,1409437538\n427,111921,3.0,1409437552\n427,112852,2.5,1413040016\n427,113064,3.5,1413040057\n427,113275,3.5,1413040042\n427,114028,4.0,1415901733\n427,114074,3.5,1413040135\n427,115174,3.5,1415901843\n428,1,5.0,1304131910\n428,2,3.0,1304136764\n428,10,2.5,1304136575\n428,16,5.0,1304142362\n428,34,3.0,1304132685\n428,50,4.5,1304131941\n428,60,2.0,1304131480\n428,111,5.0,1304136728\n428,153,1.5,1304133635\n428,223,4.5,1304136337\n428,231,4.0,1304136299\n428,256,2.0,1304130936\n428,260,5.0,1304131901\n428,296,5.0,1304131855\n428,329,2.5,1304136644\n428,344,3.5,1304136498\n428,356,3.5,1304133595\n428,357,2.0,1304136654\n428,364,5.0,1304133938\n428,413,0.5,1304131497\n428,480,3.0,1304136474\n428,500,1.0,1304132696\n428,508,3.0,1304141271\n428,586,3.5,1304136687\n428,588,4.0,1304136386\n428,589,4.0,1304131915\n428,592,4.0,1304136485\n428,593,4.5,1304136471\n428,595,3.5,1304133667\n428,608,4.5,1304132319\n428,616,2.5,1304131112\n428,743,2.0,1304131465\n428,858,5.0,1304131897\n428,912,3.0,1304136749\n428,919,3.0,1304136755\n428,924,5.0,1304134854\n428,1036,4.0,1304134845\n428,1073,5.0,1304132663\n428,1080,5.0,1304142495\n428,1089,5.0,1304136732\n428,1097,3.0,1304132219\n428,1136,5.0,1304136569\n428,1193,5.0,1304136641\n428,1196,5.0,1304131854\n428,1197,3.0,1304136572\n428,1198,4.0,1304132105\n428,1201,4.5,1304136888\n428,1206,5.0,1304136384\n428,1208,5.0,1304134913\n428,1210,5.0,1304133955\n428,1213,5.0,1304136721\n428,1221,5.0,1304136301\n428,1222,5.0,1304141286\n428,1228,4.0,1304136886\n428,1237,4.5,1304175433\n428,1240,4.0,1304132398\n428,1244,5.0,1304131118\n428,1256,4.5,1304131708\n428,1258,5.0,1304134964\n428,1259,4.5,1304141199\n428,1265,4.0,1304134860\n428,1270,5.0,1304133535\n428,1291,4.0,1304136645\n428,1387,4.0,1304136297\n428,1405,3.0,1304131051\n428,1580,4.0,1304132213\n428,1721,1.0,1304132657\n428,1732,5.0,1304142504\n428,1826,0.5,1304136788\n428,1917,0.5,1304133571\n428,1968,5.0,1304134842\n428,2011,5.0,1304134907\n428,2054,2.5,1304136388\n428,2115,4.0,1304134905\n428,2324,2.5,1304141246\n428,2396,1.5,1304132676\n428,2502,5.0,1304136309\n428,2628,1.5,1304131881\n428,2700,4.5,1304141079\n428,2707,4.0,1304131460\n428,2716,5.0,1304132102\n428,2746,1.0,1304131105\n428,2762,3.0,1304131916\n428,2918,5.0,1304134856\n428,2959,5.0,1304136560\n428,2968,3.0,1304131049\n428,2997,4.5,1304136710\n428,3114,5.0,1304132698\n428,3175,3.5,1304141086\n428,3421,4.0,1304130910\n428,3424,5.0,1304131496\n428,3471,3.5,1304141000\n428,3481,5.0,1304136307\n428,3623,1.0,1304133953\n428,3671,4.5,1304130933\n428,3751,3.0,1304135055\n428,3969,0.5,1304131719\n428,4022,3.0,1304133574\n428,4226,4.0,1304132657\n428,4306,2.5,1304131858\n428,4822,5.0,1304175134\n428,4878,5.0,1304133585\n428,4886,4.0,1304131892\n428,4896,3.5,1304133562\n428,4979,5.0,1304136392\n428,4993,4.0,1304134850\n428,4995,4.0,1304132699\n428,5349,3.5,1304133533\n428,5378,1.5,1304132675\n428,5502,1.5,1304141098\n428,5618,5.0,1304141257\n428,5816,3.5,1304133645\n428,5952,4.0,1304132087\n428,6333,3.0,1304133967\n428,6377,4.0,1304133632\n428,6440,4.5,1304142199\n428,6539,4.0,1304131860\n428,6711,4.5,1304133651\n428,6807,4.5,1304175669\n428,7153,4.0,1304136354\n428,7361,4.5,1304132089\n428,8360,2.0,1304133630\n428,8368,3.0,1304133948\n428,8636,3.5,1304132076\n428,8859,0.5,1304136791\n428,8961,4.0,1304132679\n428,25771,2.5,1304141523\n428,26729,4.0,1304175163\n428,27879,3.0,1304141525\n428,33794,4.0,1304131913\n428,34338,5.0,1304225383\n428,35836,4.0,1304141202\n428,40815,3.5,1304140997\n428,44633,5.0,1304141893\n428,45722,2.0,1304133943\n428,46578,4.0,1304133965\n428,48385,5.0,1304141255\n428,48516,4.5,1304133568\n428,48774,3.5,1304141034\n428,48780,4.5,1304136397\n428,49272,3.0,1304132107\n428,51127,4.5,1304141351\n428,51662,3.0,1304133664\n428,54290,0.5,1304136792\n428,56174,3.0,1304141083\n428,56367,4.5,1304133927\n428,58559,5.0,1304132112\n428,59315,3.5,1304132214\n428,60069,4.5,1304132672\n428,61348,0.5,1304136794\n428,63082,3.0,1304133948\n428,64839,3.5,1304141889\n428,68157,5.0,1304133647\n428,68954,4.5,1304133577\n428,69122,4.5,1304133941\n428,69757,4.0,1304136382\n428,70286,4.0,1304141260\n428,72998,2.5,1304132659\n428,76251,5.0,1304141094\n428,77455,4.5,1304136806\n428,77561,3.5,1304141210\n428,79132,4.5,1304132079\n428,80463,5.0,1304133955\n428,81591,5.0,1304141039\n428,84944,3.0,1304175077\n428,85414,5.0,1304141215\n429,123,4.0,1238950945\n429,593,4.0,1238952027\n429,724,2.5,1238950799\n429,1350,2.0,1238951690\n429,1644,0.5,1238951659\n429,2316,3.0,1238950920\n429,2329,0.5,1238951937\n429,2337,2.5,1238951032\n429,2571,2.5,1238951996\n429,2858,2.0,1238951926\n429,2959,3.0,1238951957\n429,4128,2.0,1238951686\n429,4226,1.5,1238952002\n429,4973,3.0,1238951910\n429,4993,2.0,1238951982\n429,5618,2.5,1238951921\n429,5952,2.0,1238951986\n429,5971,2.5,1238951907\n429,7153,2.0,1238951983\n429,7371,3.0,1238950966\n429,7460,2.0,1238951083\n429,8915,2.0,1238951356\n429,45062,1.0,1238951200\n429,50804,3.0,1238951256\n429,55444,1.5,1238951212\n429,62344,2.5,1238951407\n429,64575,1.5,1238951331\n430,1,4.0,1172908978\n430,3,1.5,1111488810\n430,6,4.0,1111489263\n430,10,3.5,1172908696\n430,19,2.0,1111488716\n430,21,5.0,1172909126\n430,25,4.5,1111579872\n430,29,5.0,1111579350\n430,32,5.0,1111489823\n430,34,3.5,1172909176\n430,47,5.0,1111489134\n430,50,5.0,1111489279\n430,69,4.0,1111489768\n430,104,2.0,1111488812\n430,110,4.0,1172908379\n430,141,4.0,1172909136\n430,147,4.5,1111579932\n430,150,4.0,1172908407\n430,153,1.0,1172908800\n430,185,3.5,1172909057\n430,223,2.5,1111489336\n430,231,5.0,1172908653\n430,235,5.0,1111488794\n430,253,5.0,1172908857\n430,260,3.5,1111489126\n430,292,5.0,1172908834\n430,293,5.0,1111489235\n430,296,4.5,1170411259\n430,316,4.0,1172908366\n430,318,5.0,1111489121\n430,337,4.5,1111579448\n430,344,4.0,1172908141\n430,349,4.5,1172908489\n430,356,4.5,1172908444\n430,357,4.0,1172909132\n430,364,5.0,1172908572\n430,367,4.0,1172908988\n430,368,2.5,1111488758\n430,380,5.0,1172908481\n430,442,0.5,1111488735\n430,454,3.0,1172909002\n430,457,5.0,1172908134\n430,480,4.0,1172908639\n430,494,1.0,1111488801\n430,497,1.5,1111488818\n430,500,4.0,1172908623\n430,539,2.0,1172909125\n430,553,4.0,1111488822\n430,555,4.5,1170411342\n430,587,4.0,1172908831\n430,588,4.5,1172908207\n430,589,4.5,1172908230\n430,590,4.0,1172908236\n430,592,3.5,1172908660\n430,593,4.0,1111489761\n430,594,2.5,1111488764\n430,595,3.5,1172908778\n430,597,4.0,1172908574\n430,608,4.0,1172908124\n430,648,4.5,1172909071\n430,653,0.5,1111488791\n430,665,3.0,1172909323\n430,714,4.5,1111579833\n430,733,4.0,1172908861\n430,736,2.0,1172908580\n430,741,5.0,1111579229\n430,745,5.0,1170411578\n430,778,5.0,1111579243\n430,780,2.5,1172908200\n430,858,4.5,1172908454\n430,968,3.5,1170411359\n430,1036,4.0,1111488980\n430,1073,4.0,1172908513\n430,1079,4.0,1111579182\n430,1080,5.0,1111579223\n430,1089,4.5,1170411271\n430,1090,2.5,1111489294\n430,1097,4.0,1172908345\n430,1101,3.0,1111488828\n430,1136,5.0,1111578980\n430,1148,4.5,1170411615\n430,1172,4.5,1111579376\n430,1175,4.0,1111579434\n430,1193,4.5,1172908562\n430,1196,4.5,1111489117\n430,1197,4.5,1111489266\n430,1198,4.0,1111489087\n430,1199,3.5,1111579432\n430,1208,4.5,1111488785\n430,1210,5.0,1172908475\n430,1214,4.0,1172908713\n430,1220,4.0,1111488789\n430,1222,3.5,1111489795\n430,1240,2.0,1111489287\n430,1258,5.0,1111579153\n430,1259,4.0,1111489285\n430,1265,5.0,1172908516\n430,1270,4.5,1172908600\n430,1285,4.0,1111579390\n430,1291,4.0,1172908809\n430,1298,5.0,1170411372\n430,1393,4.5,1172909031\n430,1394,4.0,1111579354\n430,1464,4.0,1170411349\n430,1517,3.5,1172908850\n430,1527,5.0,1111579839\n430,1580,5.0,1172908672\n430,1584,1.0,1111488730\n430,1610,3.5,1111488750\n430,1617,3.5,1111579007\n430,1625,4.0,1111489196\n430,1704,4.5,1172909209\n430,1721,2.5,1172908150\n430,1732,4.5,1111579415\n430,1757,3.0,1170411539\n430,1784,3.5,1111488723\n430,1917,3.0,1172908967\n430,1921,5.0,1111579815\n430,1923,4.5,1111488767\n430,1961,4.0,1111489333\n430,1968,4.5,1111579220\n430,2010,4.5,1111579472\n430,2012,3.5,1172909027\n430,2028,4.0,1111489001\n430,2064,4.0,1111579487\n430,2138,5.0,1111579516\n430,2140,4.0,1111579829\n430,2174,4.0,1172908972\n430,2194,5.0,1111489006\n430,2291,5.0,1172909202\n430,2318,4.5,1111579865\n430,2324,4.0,1111579118\n430,2329,5.0,1111489077\n430,2396,4.5,1172908429\n430,2467,5.0,1111579348\n430,2542,5.0,1111579093\n430,2571,4.0,1111488994\n430,2599,4.0,1111579524\n430,2628,3.0,1172908131\n430,2640,2.0,1172909184\n430,2683,4.5,1172908720\n430,2692,4.5,1111579086\n430,2700,3.5,1111579545\n430,2706,4.0,1172908728\n430,2710,2.0,1172908992\n430,2716,4.0,1111489023\n430,2762,4.0,1111489092\n430,2788,4.5,1111578999\n430,2797,4.5,1172908701\n430,2810,5.0,1111579329\n430,2858,5.0,1111579059\n430,2916,5.0,1172908724\n430,2918,5.0,1111489008\n430,2924,5.0,1111579442\n430,2944,3.5,1111489211\n430,2947,2.5,1111489205\n430,2959,5.0,1111488748\n430,2987,3.5,1111488777\n430,2997,5.0,1111579314\n430,3000,4.5,1111579139\n430,3019,5.0,1111579518\n430,3020,4.5,1111579868\n430,3039,4.0,1111489050\n430,3114,4.5,1111489143\n430,3129,4.5,1111579822\n430,3160,4.5,1111579468\n430,3275,5.0,1111489165\n430,3328,1.5,1111579881\n430,3342,5.0,1111579535\n430,3421,2.5,1111489059\n430,3481,5.0,1111579289\n430,3499,4.5,1111489321\n430,3552,2.5,1111488991\n430,3578,4.0,1172908348\n430,3581,3.5,1172909333\n430,3623,2.5,1172908868\n430,3671,4.5,1111489222\n430,3677,5.0,1111579537\n430,3751,3.5,1172909197\n430,3793,3.5,1172908160\n430,3868,4.0,1111489269\n430,3897,4.0,1111489789\n430,3910,5.0,1111579859\n430,3911,4.5,1111579318\n430,3948,4.5,1172909189\n430,3949,4.0,1111579150\n430,3977,3.5,1172908784\n430,3996,5.0,1111579142\n430,4002,1.5,1111489214\n430,4011,4.5,1111489188\n430,4022,3.5,1172908708\n430,4027,5.0,1111579232\n430,4034,4.0,1172908224\n430,4226,5.0,1111578970\n430,4235,5.0,1111579309\n430,4306,4.0,1111579064\n430,4349,5.0,1111579787\n430,4499,4.5,1111489272\n430,4616,5.0,1111579241\n430,4641,4.0,1111579521\n430,4720,5.0,1111579299\n430,4833,4.5,1111489146\n430,4848,5.0,1111579907\n430,4855,3.0,1111489063\n430,4873,4.5,1170411362\n430,4878,5.0,1111579089\n430,4886,5.0,1172908353\n430,4896,3.5,1172908433\n430,4963,4.0,1172908359\n430,4973,5.0,1111579003\n430,4979,4.0,1111579480\n430,4993,3.5,1111489157\n430,4995,3.5,1172909076\n430,5010,2.5,1111489299\n430,5225,4.5,1111579424\n430,5349,4.0,1172908764\n430,5378,3.5,1172908217\n430,5418,4.0,1172908339\n430,5445,4.5,1172908117\n430,5464,2.0,1111489185\n430,5500,4.5,1111489193\n430,5617,5.0,1111579379\n430,5618,5.0,1111579074\n430,5669,4.5,1111579167\n430,5679,5.0,1170411385\n430,5791,5.0,1111579819\n430,5816,3.5,1172909057\n430,5828,5.0,1170411378\n430,5952,4.0,1111489208\n430,5954,3.5,1111579236\n430,5989,4.0,1111489153\n430,6016,5.0,1111579068\n430,6093,4.5,1111579888\n430,6104,2.5,1111579011\n430,6242,5.0,1111579259\n430,6303,3.5,1111579368\n430,6333,4.0,1111489020\n430,6365,4.0,1172908244\n430,6377,4.0,1111489296\n430,6440,5.0,1111579483\n430,6461,5.0,1111579160\n430,6502,4.5,1111579419\n430,6530,3.5,1170411291\n430,6539,4.0,1111489053\n430,6711,5.0,1111579383\n430,6796,4.5,1111489792\n430,6807,5.0,1111579106\n430,6864,4.5,1111489138\n430,6874,5.0,1111579099\n430,6987,4.5,1111579179\n430,6990,4.0,1111489027\n430,7090,4.5,1111579109\n430,7147,5.0,1111579081\n430,7153,3.5,1111489230\n430,7158,2.0,1111579362\n430,7361,5.0,1111578973\n430,7438,5.0,1111578995\n430,7579,2.0,1161344510\n430,7818,2.5,1172909057\n430,8158,4.5,1111489276\n430,8360,4.5,1111489301\n430,8368,3.5,1172908648\n430,8622,4.0,1172908757\n430,8636,0.5,1111489217\n430,8665,0.5,1111489325\n430,8917,3.5,1111579553\n430,8961,5.0,1172908771\n430,26509,4.5,1172908172\n430,26915,4.5,1172908485\n430,30793,4.5,1172909114\n430,32587,5.0,1170411313\n430,33493,3.5,1172908630\n430,33794,5.0,1172908493\n430,37386,4.5,1148091236\n430,37731,3.5,1151754940\n430,37830,4.0,1148090344\n430,38061,5.0,1170411311\n430,39183,1.5,1148091178\n430,40815,3.5,1172908450\n430,40819,1.5,1172909150\n430,41566,2.0,1148091184\n430,41569,2.5,1148091172\n430,41571,4.0,1148091164\n430,42004,4.0,1151754906\n430,42011,2.0,1148091114\n430,42013,2.0,1148091106\n430,42734,4.5,1148090954\n430,42738,4.5,1148090947\n430,43679,3.5,1148090914\n430,43836,2.5,1148090882\n430,43871,3.5,1148090865\n430,43928,4.0,1151753766\n430,44191,3.5,1148090668\n430,44397,0.5,1151753780\n430,44665,5.0,1161344490\n430,44840,3.5,1161344795\n430,44972,4.0,1161344853\n430,45442,3.5,1161344810\n430,45499,4.0,1161344646\n430,45722,4.0,1172908591\n430,46335,1.0,1161344840\n430,46965,3.5,1161345196\n430,47254,5.0,1172908412\n430,48522,0.5,1172908962\n430,49272,5.0,1172909059\n431,1,4.5,1165547529\n431,5,4.5,1140455425\n431,17,5.0,1165548246\n431,41,5.0,1165548141\n431,47,5.0,1165547618\n431,50,5.0,1165546804\n431,110,5.0,1165547659\n431,150,4.0,1165548458\n431,186,2.5,1140455413\n431,215,5.0,1165548709\n431,223,5.0,1165548086\n431,236,3.0,1140455391\n431,246,4.0,1140455356\n431,247,4.0,1165548015\n431,260,5.0,1140454401\n431,318,5.0,1140454304\n431,337,5.0,1140455213\n431,350,3.0,1140455297\n431,356,4.5,1165548284\n431,357,2.0,1140455245\n431,377,2.0,1140454871\n431,420,3.0,1136308742\n431,432,3.0,1136308770\n431,457,4.5,1165546446\n431,497,5.0,1165548800\n431,520,3.0,1140454291\n431,527,4.5,1165546932\n431,529,4.0,1140455233\n431,587,4.0,1140455281\n431,628,5.0,1140455188\n431,661,3.0,1140454429\n431,832,3.0,1136308727\n431,898,4.5,1165547342\n431,899,4.5,1165547632\n431,902,3.0,1165548721\n431,904,4.0,1140455202\n431,908,5.0,1165546900\n431,910,5.0,1165547354\n431,911,4.0,1165547451\n431,912,4.0,1165546952\n431,914,3.0,1165548366\n431,919,4.0,1165547737\n431,920,1.0,1136308713\n431,923,4.0,1136308702\n431,928,4.5,1165547283\n431,953,5.0,1165547593\n431,955,4.0,1165547762\n431,1036,4.0,1165547564\n431,1050,4.5,1165546697\n431,1059,5.0,1140455259\n431,1060,4.0,1165547956\n431,1084,4.0,1165547756\n431,1090,5.0,1136308809\n431,1097,5.0,1165548753\n431,1103,5.0,1165548069\n431,1104,5.0,1165547422\n431,1188,4.5,1165548882\n431,1193,5.0,1165546856\n431,1196,5.0,1165546316\n431,1197,5.0,1165547041\n431,1198,4.5,1165546302\n431,1204,4.5,1165547107\n431,1206,4.0,1165547779\n431,1207,4.5,1165546937\n431,1208,2.5,1165547158\n431,1210,4.5,1165546493\n431,1217,4.5,1165547049\n431,1219,5.0,1165547126\n431,1221,5.0,1165546882\n431,1224,5.0,1165547256\n431,1225,4.5,1165547220\n431,1228,4.5,1165547205\n431,1235,0.5,1165548008\n431,1240,4.5,1165546482\n431,1242,5.0,1140455171\n431,1246,5.0,1165546535\n431,1247,4.0,1165547316\n431,1250,3.0,1140455060\n431,1252,5.0,1165546955\n431,1258,5.0,1165547627\n431,1259,5.0,1140455002\n431,1265,5.0,1165546558\n431,1270,4.5,1165547749\n431,1278,5.0,1136308820\n431,1288,4.0,1136308794\n431,1291,4.0,1140454975\n431,1299,5.0,1165547268\n431,1302,4.0,1165548856\n431,1307,3.0,1165548695\n431,1357,4.0,1165548562\n431,1358,3.0,1140455024\n431,1376,1.0,1140455113\n431,1387,4.0,1165547832\n431,1394,3.0,1136308749\n431,1407,4.0,1136308721\n431,1411,5.0,1165548507\n431,1466,5.0,1165548191\n431,1485,3.0,1136308781\n431,1517,2.0,1140454234\n431,1635,5.0,1165548208\n431,1639,5.0,1140455096\n431,1653,5.0,1136308762\n431,1682,4.0,1165546613\n431,1704,4.5,1165546406\n431,1719,4.0,1165547635\n431,1784,4.0,1165546629\n431,1801,3.0,1140454565\n431,1873,3.0,1165546702\n431,1912,4.0,1165548134\n431,1945,5.0,1165546975\n431,1953,3.0,1165547470\n431,1954,4.0,1140455038\n431,1955,4.0,1165548787\n431,1956,4.5,1165548378\n431,1961,4.5,1165546475\n431,1968,5.0,1165546586\n431,2000,4.0,1136308735\n431,2004,0.5,1140454602\n431,2010,4.5,1165547495\n431,2011,4.0,1136308690\n431,2012,3.0,1140455141\n431,2019,4.0,1140455076\n431,2020,4.0,1165548187\n431,2028,4.5,1165547419\n431,2085,3.0,1140454543\n431,2114,4.5,1165546682\n431,2174,3.0,1140454814\n431,2231,4.5,1165546667\n431,2248,5.0,1165547711\n431,2268,4.5,1165546555\n431,2291,5.0,1165548755\n431,2324,4.5,1165546428\n431,2329,5.0,1165546947\n431,2336,4.0,1165547907\n431,2369,3.0,1140454580\n431,2395,3.0,1165547947\n431,2396,5.0,1165548643\n431,2406,3.0,1136308826\n431,2502,2.0,1136308831\n431,2571,4.5,1140454924\n431,2599,4.0,1136308801\n431,2617,3.0,1136308806\n431,2640,3.0,1136308791\n431,2692,5.0,1140454376\n431,2700,0.5,1140454844\n431,2728,4.5,1165546395\n431,2762,5.0,1165546361\n431,2797,4.5,1165548899\n431,2858,4.5,1165547074\n431,2863,4.0,1165548515\n431,2908,5.0,1165547981\n431,2918,5.0,1165547568\n431,2959,4.5,1165547245\n431,3044,4.5,1165546669\n431,3052,4.0,1140454784\n431,3071,4.5,1165546582\n431,3095,4.5,1165547580\n431,3113,0.5,1140455724\n431,3114,4.0,1140454828\n431,3246,5.0,1165547923\n431,3252,4.0,1165546689\n431,3260,3.0,1140455699\n431,3359,4.5,1165547308\n431,3361,4.0,1140455679\n431,3469,4.0,1165547019\n431,3481,5.0,1165547673\n431,3545,3.0,1165548724\n431,3578,4.5,1165546539\n431,3751,3.0,1140454886\n431,3785,2.0,1140455737\n431,3793,3.5,1140454743\n431,3893,4.0,1140455486\n431,3897,2.0,1136308773\n431,3916,4.0,1165548638\n431,3949,4.5,1165547506\n431,3967,5.0,1165548172\n431,3978,2.0,1140455546\n431,3994,3.0,1140454946\n431,3996,4.5,1165547456\n431,4011,5.0,1165546431\n431,4014,4.5,1165546657\n431,4016,2.0,1140454470\n431,4041,3.5,1140455472\n431,4054,3.5,1165546283\n431,4223,4.5,1165546678\n431,4226,5.0,1165546824\n431,4239,4.5,1165546727\n431,4262,4.0,1165547951\n431,4306,4.0,1140454774\n431,4326,5.0,1165546460\n431,4351,2.5,1140455503\n431,4641,4.0,1140455457\n431,4701,3.5,1140455515\n431,4823,3.5,1140455534\n431,4846,4.0,1165548779\n431,4880,5.0,1165546660\n431,4886,4.5,1165547400\n431,4890,2.5,1140455554\n431,4963,4.0,1165546596\n431,4973,5.0,1165546944\n431,4993,4.5,1165546337\n431,4995,4.0,1165548170\n431,5064,3.5,1165548739\n431,5103,4.5,1165546653\n431,5135,4.5,1165548315\n431,5349,4.0,1140454902\n431,5377,5.0,1140455324\n431,5418,5.0,1165546549\n431,5445,5.0,1165546664\n431,5481,2.5,1140455402\n431,5812,4.5,1165548480\n431,5952,5.0,1165546340\n431,5989,4.5,1165546525\n431,5995,4.5,1165547115\n431,6218,5.0,1165548843\n431,6281,4.0,1140455377\n431,6333,5.0,1165546470\n431,6377,4.0,1165546381\n431,6539,5.0,1140454322\n431,6708,3.5,1165546622\n431,6711,4.5,1165547823\n431,6776,5.0,1165548051\n431,6787,4.0,1165546811\n431,6796,4.5,1165547306\n431,6852,5.0,1165546969\n431,6870,3.0,1165547686\n431,6874,4.0,1165548044\n431,6932,5.0,1165546418\n431,6942,3.0,1165546647\n431,6953,4.0,1165548425\n431,6986,4.0,1165547552\n431,7079,4.0,1165547587\n431,7139,5.0,1165547188\n431,7153,4.5,1165546323\n431,7361,4.0,1165546922\n431,7386,4.5,1165548823\n431,7438,4.5,1165547828\n431,7572,3.0,1165547729\n431,8360,4.5,1165546610\n431,8464,5.0,1165546478\n431,8530,5.0,1165546319\n431,8636,5.0,1140454343\n431,8645,5.0,1165547022\n431,8665,5.0,1165546641\n431,8784,4.5,1165546448\n431,8873,5.0,1165547603\n431,8958,4.0,1165548143\n431,8961,5.0,1165546888\n431,8970,5.0,1165546403\n431,8981,4.0,1165546732\n431,27721,5.0,1165547426\n431,30707,5.0,1165546386\n431,30749,5.0,1165546306\n431,30812,5.0,1165548464\n431,30850,5.0,1165547848\n431,32587,4.5,1165546520\n431,33794,3.5,1165546330\n431,34072,5.0,1165546516\n431,36517,5.0,1165548095\n431,37733,4.5,1165548611\n431,37741,5.0,1165546916\n431,39183,4.5,1165547445\n431,39292,4.0,1165547006\n431,40583,5.0,1165548259\n431,40819,4.0,1165547362\n431,42004,5.0,1165548828\n431,44191,5.0,1165546466\n431,45722,5.0,1165546735\n432,1,5.0,1271227588\n432,32,5.0,1138382928\n432,47,5.0,1138382869\n432,50,5.0,1138382864\n432,145,4.0,1138381599\n432,150,4.5,1271227581\n432,293,5.0,1138382256\n432,296,5.0,1138382014\n432,318,5.0,1271227572\n432,356,4.0,1271227565\n432,593,5.0,1138382913\n432,780,5.0,1271227591\n432,858,5.0,1138382878\n432,924,3.0,1271227469\n432,1089,5.0,1138382170\n432,1136,4.5,1138382960\n432,1200,4.0,1138382126\n432,1206,1.0,1271227513\n432,1213,3.5,1138382874\n432,1214,5.0,1138382120\n432,1222,4.0,1138382855\n432,1258,4.0,1138382900\n432,1320,3.0,1138381429\n432,1485,3.5,1138381507\n432,1517,4.5,1138385042\n432,1729,5.0,1138382608\n432,1997,4.0,1138381586\n432,2028,5.0,1138382392\n432,2054,4.0,1138381335\n432,2273,4.5,1138382206\n432,2329,5.0,1138381578\n432,2502,4.0,1138381323\n432,2571,5.0,1138382903\n432,2683,4.5,1138385049\n432,2700,4.0,1138381512\n432,2959,5.0,1138382850\n432,3948,4.5,1138382735\n432,3949,5.0,1138382507\n432,4011,5.0,1138382056\n432,4034,4.0,1138381365\n432,4226,5.0,1138382858\n432,4235,5.0,1138382289\n432,4262,5.0,1138382228\n432,4701,4.5,1138382210\n432,5170,4.0,1138382765\n432,5225,4.0,1138382637\n432,5418,4.5,1138381659\n432,5445,5.0,1138381357\n432,5481,5.0,1138382781\n432,5995,5.0,1138382600\n432,6016,3.0,1138382525\n432,6040,0.5,1138382350\n432,6188,3.5,1138382326\n432,6708,5.0,1138382077\n432,6796,4.5,1138382917\n432,6874,5.0,1138382151\n432,7153,5.0,1138382935\n432,7438,5.0,1138382153\n432,32587,5.0,1138382492\n432,33166,4.0,1138382581\n432,48780,5.0,1271227689\n432,68157,5.0,1271227668\n433,1,4.5,1417930541\n433,6,5.0,1417930660\n433,11,1.5,1417930769\n433,16,4.5,1417930766\n433,19,2.5,1417930709\n433,32,4.0,1417930548\n433,36,3.0,1417930691\n433,47,5.0,1417930576\n433,50,3.5,1417930567\n433,104,3.0,1417930773\n433,111,5.0,1417930670\n433,173,1.0,1417930885\n433,231,4.5,1417930586\n433,235,4.5,1417930826\n433,260,4.0,1417929790\n433,293,3.5,1417930666\n433,296,5.0,1417930528\n433,300,4.0,1417930730\n433,318,4.0,1417929784\n433,337,3.0,1417930808\n433,356,4.0,1417930530\n433,380,3.5,1417930564\n433,442,1.5,1417930771\n433,527,5.0,1417930561\n433,555,4.5,1417930860\n433,589,4.5,1417930543\n433,592,4.0,1417930553\n433,593,4.5,1417930533\n433,608,5.0,1417930573\n433,784,2.0,1417930870\n433,858,5.0,1417930577\n433,924,5.0,1417930662\n433,1036,4.5,1417930619\n433,1073,4.0,1417930609\n433,1079,4.0,1417930757\n433,1090,3.0,1417930847\n433,1147,4.0,1417929794\n433,1193,5.0,1417930614\n433,1196,5.0,1417929792\n433,1198,4.5,1417929796\n433,1199,3.5,1417931186\n433,1200,4.5,1417930634\n433,1201,5.0,1417930916\n433,1203,5.0,1417931280\n433,1206,4.5,1417930674\n433,1213,5.0,1417930638\n433,1214,4.5,1417930607\n433,1222,5.0,1417930702\n433,1225,4.0,1417930734\n433,1240,5.0,1417930596\n433,1242,2.0,1417931207\n433,1265,5.0,1417930602\n433,1266,4.0,1417930921\n433,1270,5.0,1417930574\n433,1358,4.5,1417930940\n433,1387,4.0,1417930719\n433,1393,3.5,1417930697\n433,1485,3.0,1417930800\n433,1573,3.5,1417930765\n433,1617,4.0,1417930625\n433,1673,5.0,1417930938\n433,1682,4.5,1417930679\n433,1777,3.5,1417930948\n433,1784,3.0,1417930700\n433,1923,3.0,1417930668\n433,1961,4.0,1417930636\n433,1968,4.0,1417930694\n433,2011,4.0,1417930754\n433,2194,2.5,1417930849\n433,2291,3.5,1417930704\n433,2329,3.0,1417931291\n433,2395,4.5,1417930933\n433,2571,4.0,1417930552\n433,2640,3.0,1417930844\n433,2657,4.0,1417930925\n433,2683,3.5,1417930654\n433,2700,4.0,1417930810\n433,2706,3.5,1417930682\n433,2712,5.0,1417930862\n433,2716,4.0,1417930622\n433,2791,3.5,1417930762\n433,2797,3.5,1417930751\n433,2804,4.0,1417931200\n433,2858,4.0,1417930568\n433,2985,3.5,1417930928\n433,2987,5.0,1417930717\n433,3052,4.5,1417930838\n433,3175,3.0,1417930931\n433,3452,3.0,1417930392\n433,3535,4.0,1417930042\n433,3578,3.0,1417929821\n433,3793,3.0,1417929826\n433,3897,5.0,1417929842\n433,3949,4.0,1417929939\n433,3994,3.5,1417929943\n433,4015,3.0,1417930346\n433,4027,4.5,1417929847\n433,4226,2.5,1417929825\n433,4235,4.0,1417930301\n433,4306,4.0,1417929818\n433,4388,2.0,1417930472\n433,4641,5.0,1417930245\n433,4718,3.0,1417930046\n433,4734,4.0,1417930224\n433,4776,3.0,1417930069\n433,4848,4.0,1417930018\n433,4878,4.0,1417930782\n433,4886,4.0,1417929834\n433,4979,5.0,1417929965\n433,4993,5.0,1417929815\n433,5010,2.5,1417929993\n433,5060,3.5,1417931199\n433,5349,3.5,1417929840\n433,5418,3.5,1417929857\n433,5445,3.5,1417929832\n433,5481,2.5,1417930054\n433,5618,4.5,1417929958\n433,5810,3.0,1417930349\n433,5902,5.0,1417930015\n433,5952,4.5,1417929816\n433,5954,4.5,1417930371\n433,5995,4.0,1417929990\n433,6016,5.0,1417929962\n433,6287,2.5,1417930427\n433,6377,4.0,1417929836\n433,6708,4.5,1417930362\n433,6711,4.0,1417930877\n433,6870,3.5,1417930064\n433,6874,4.0,1417929858\n433,6936,3.5,1417930401\n433,6953,2.0,1417930250\n433,6957,3.0,1417930467\n433,7022,4.5,1417930375\n433,7153,5.0,1417929823\n433,7361,4.5,1417929863\n433,7438,3.0,1417930785\n433,7451,4.0,1417930402\n433,8376,3.5,1417930219\n433,8528,3.5,1417930329\n433,8636,4.0,1417930892\n433,8641,4.5,1417930336\n433,8665,3.0,1417929947\n433,8961,4.5,1417929846\n433,27773,5.0,1417930244\n433,30707,2.5,1417930031\n433,30810,4.5,1417930314\n433,31410,3.5,1417930455\n433,32587,4.0,1417929934\n433,33166,2.0,1417930033\n433,33794,3.5,1417930804\n433,34150,1.5,1417930477\n433,34162,3.0,1417930191\n433,35836,4.5,1417930000\n433,38061,4.5,1417930357\n433,39183,4.5,1417930299\n433,45499,2.5,1417930241\n433,46578,3.5,1417929979\n433,48516,4.5,1417929941\n433,48774,4.5,1417930038\n433,50872,4.0,1417930056\n433,51540,4.5,1417930460\n433,52722,3.5,1417930413\n433,52973,3.5,1417930355\n433,53996,3.0,1417930281\n433,54272,3.5,1417930317\n433,54503,5.0,1417930206\n433,54997,3.5,1417930369\n433,55820,5.0,1417929994\n433,56782,5.0,1417930338\n433,58559,4.5,1417929850\n433,58998,4.5,1417930481\n433,59369,3.5,1417930374\n433,59784,3.0,1417930398\n433,60069,3.5,1417929975\n433,61323,4.5,1417930431\n433,63082,1.0,1417930035\n433,64614,2.5,1417930237\n433,65188,4.5,1417929781\n433,68157,4.5,1417930021\n433,68358,3.5,1417930177\n433,68954,3.0,1417930039\n433,69122,3.5,1417930174\n433,69481,4.0,1417930456\n433,69757,4.0,1417930248\n433,71535,3.0,1417930332\n433,76251,3.5,1417930384\n433,77561,3.0,1417930436\n433,78499,4.5,1417930311\n433,79132,2.5,1417929960\n433,79702,4.5,1417930484\n433,80463,5.0,1417930350\n433,81591,5.0,1417930341\n433,81845,3.5,1417930334\n433,89745,4.0,1417930405\n433,91529,0.5,1417930418\n433,96829,4.0,1417931275\n433,104069,3.5,1417931277\n433,109487,4.5,1417931287\n434,1,4.0,886372746\n434,6,4.0,886373053\n434,17,5.0,886372794\n434,25,5.0,886372794\n434,28,4.0,886374463\n434,32,4.0,886372696\n434,34,4.0,886374222\n434,36,5.0,886372696\n434,50,5.0,886374081\n434,52,4.0,886373239\n434,58,5.0,886372899\n434,74,2.0,886373792\n434,78,4.0,886373239\n434,79,1.0,886373553\n434,85,4.0,886373101\n434,94,3.0,886373388\n434,95,3.0,886373186\n434,100,3.0,886373835\n434,101,5.0,886373634\n434,103,3.0,886373489\n434,107,2.0,886373716\n434,111,4.0,886376254\n434,141,1.0,886372899\n434,150,3.0,886374328\n434,156,2.0,886373442\n434,162,4.0,886374286\n434,176,4.0,886374286\n434,194,4.0,886375700\n434,213,4.0,886375433\n434,229,4.0,886375642\n434,246,4.0,886374516\n434,260,2.0,886374845\n434,272,4.0,886376510\n434,280,4.0,886376510\n434,281,5.0,886375700\n434,296,5.0,886376002\n434,299,1.0,886374081\n434,300,5.0,886374463\n434,318,4.0,886374328\n434,348,4.0,886376348\n434,356,2.0,886376312\n434,412,4.0,886376570\n434,428,4.0,886374564\n434,431,4.0,886376444\n434,457,5.0,886374515\n434,469,2.0,886376180\n434,475,5.0,886375478\n434,494,3.0,886372696\n434,497,4.0,886376394\n434,501,1.0,886376050\n434,508,2.0,886376002\n434,509,1.0,886376812\n434,515,5.0,886376002\n434,527,4.0,886376095\n434,534,4.0,886376866\n434,535,4.0,886375700\n434,538,4.0,886376254\n434,589,4.0,886376866\n434,590,1.0,886376254\n434,593,3.0,886374564\n434,594,4.0,886375433\n434,595,5.0,886374784\n434,599,4.0,886374463\n434,608,4.0,886372696\n434,628,3.0,886373053\n434,648,4.0,886373345\n434,661,4.0,886373345\n434,679,4.0,886375736\n434,707,3.0,886373442\n434,728,4.0,886372946\n434,733,4.0,886372946\n434,745,5.0,886374960\n434,750,4.0,886375433\n434,778,4.0,886373053\n434,780,1.0,886373345\n434,783,4.0,886373673\n434,785,1.0,886373101\n434,786,3.0,886373345\n434,800,4.0,886373145\n434,804,4.0,886373442\n434,805,2.0,886375281\n434,806,1.0,886373888\n434,816,3.0,886373716\n434,832,4.0,886373053\n434,838,5.0,886373053\n434,848,4.0,886373053\n434,852,4.0,886372850\n434,858,5.0,886374713\n434,866,4.0,886372990\n434,893,5.0,886372990\n434,904,4.0,886375478\n434,912,5.0,886374784\n434,913,5.0,886375433\n434,923,5.0,886374286\n434,953,3.0,886376613\n434,971,4.0,886375774\n434,986,4.0,895845222\n434,991,4.0,886372946\n434,994,5.0,886373053\n434,999,3.0,886372794\n434,1003,2.0,886373101\n434,1023,4.0,886374222\n434,1034,4.0,886372899\n434,1035,4.0,886374328\n434,1036,4.0,886374713\n434,1041,4.0,886372746\n434,1042,3.0,886372850\n434,1047,2.0,886373388\n434,1050,5.0,889302802\n434,1057,4.0,889302146\n434,1077,5.0,886375598\n434,1094,4.0,886375864\n434,1096,4.0,886376613\n434,1097,2.0,886374637\n434,1148,5.0,886374713\n434,1171,3.0,886376570\n434,1183,4.0,886374960\n434,1185,4.0,886376180\n434,1188,4.0,886374516\n434,1189,4.0,886375598\n434,1193,3.0,886375598\n434,1198,3.0,886375433\n434,1203,4.0,886376510\n434,1206,4.0,886376131\n434,1207,4.0,886374784\n434,1208,4.0,886376002\n434,1210,2.0,886375147\n434,1212,4.0,886374637\n434,1213,4.0,886376095\n434,1214,4.0,886374784\n434,1221,5.0,886376866\n434,1223,4.0,886374784\n434,1224,4.0,886376095\n434,1225,5.0,886374515\n434,1226,4.0,886374222\n434,1228,4.0,886374564\n434,1230,5.0,886375828\n434,1231,4.0,886374784\n434,1233,4.0,886375053\n434,1234,2.0,886375828\n434,1240,4.0,886375642\n434,1242,3.0,886376312\n434,1244,4.0,886376613\n434,1250,4.0,886374463\n434,1252,5.0,886376095\n434,1254,4.0,886374222\n434,1256,5.0,886376866\n434,1263,4.0,886375700\n434,1266,5.0,886374784\n434,1270,4.0,886374713\n434,1278,4.0,886374286\n434,1285,4.0,886376613\n434,1287,5.0,886374564\n434,1288,4.0,886375478\n434,1292,4.0,886376613\n434,1293,2.0,886376180\n434,1300,3.0,886376444\n434,1303,4.0,886374329\n434,1304,4.0,886375828\n434,1357,5.0,886374081\n434,1387,4.0,886376131\n434,1393,4.0,886372946\n434,1394,4.0,886376002\n434,1399,4.0,886373145\n434,1404,2.0,886375233\n434,1407,3.0,886372990\n434,1411,5.0,886375598\n434,1414,3.0,889302287\n434,1416,2.0,889302014\n434,1466,5.0,886375090\n434,1488,2.0,889302498\n434,1527,1.0,886374960\n434,1569,2.0,886374845\n434,1573,5.0,886375000\n434,1609,3.0,889302892\n434,1614,1.0,889301971\n434,1617,5.0,886372637\n434,1625,1.0,889302014\n434,1641,4.0,910599899\n434,1645,4.0,889301913\n434,1665,3.0,889302091\n434,1670,4.0,910599803\n434,1693,5.0,889302203\n434,1719,5.0,889301913\n434,1721,2.0,910599899\n434,1729,4.0,889301971\n434,1732,4.0,910599611\n434,1748,3.0,910599804\n434,1834,4.0,910599803\n434,1875,4.0,910599108\n434,2108,4.0,910599899\n434,2952,4.0,910599852\n435,32,5.0,891508567\n435,260,5.0,891508282\n435,527,4.0,891508246\n435,589,5.0,891508440\n435,593,4.0,891508567\n435,720,5.0,891508321\n435,750,5.0,891508160\n435,778,3.0,891508001\n435,924,4.0,891508361\n435,1080,4.0,891508440\n435,1127,4.0,891508084\n435,1175,4.0,891508487\n435,1196,5.0,891508399\n435,1210,5.0,891508361\n435,1223,5.0,891508246\n435,1230,3.0,891508440\n435,1246,4.0,891508084\n435,1348,4.0,891508321\n435,1425,4.0,891508001\n435,1566,3.0,891508001\n435,1580,5.0,891508001\n435,1721,4.0,891508001\n435,1722,3.0,891508001\n436,58,4.0,941458109\n436,111,4.0,941457768\n436,334,4.0,941458348\n436,593,2.0,941458253\n436,608,5.0,941457831\n436,750,5.0,941456330\n436,755,2.0,941458348\n436,898,4.0,941455779\n436,904,5.0,941457262\n436,909,5.0,941457713\n436,910,5.0,941457351\n436,912,4.0,941456162\n436,916,3.0,941455855\n436,919,3.0,941457995\n436,923,5.0,941456205\n436,1084,4.0,941456082\n436,1104,5.0,941457006\n436,1132,3.0,941457885\n436,1183,4.0,941458179\n436,1203,5.0,941458109\n436,1206,4.0,941456243\n436,1208,4.0,941457885\n436,1219,5.0,941455408\n436,1224,5.0,941456732\n436,1225,5.0,941457713\n436,1230,5.0,941456423\n436,1233,4.0,941457768\n436,1244,4.0,941456464\n436,1247,5.0,941456599\n436,1250,5.0,941457885\n436,1251,5.0,941457995\n436,1283,5.0,941456802\n436,1411,3.0,941456657\n436,1669,4.0,941457092\n436,1834,3.0,941458253\n436,1939,5.0,941458109\n436,1940,4.0,941458052\n436,1941,5.0,941456657\n436,1944,5.0,941457713\n436,1945,5.0,941456961\n436,1953,4.0,941456541\n436,1955,4.0,941458348\n436,1964,4.0,941457831\n436,2019,5.0,941457713\n436,2067,4.0,941458052\n436,2068,3.0,941458348\n436,2131,5.0,941457417\n436,2132,5.0,941455478\n436,2208,4.0,941455626\n436,2313,4.0,941457831\n436,2351,5.0,941455530\n436,2573,5.0,941457092\n436,2776,3.0,941454850\n436,2820,5.0,941456657\n436,2829,1.0,941455110\n436,2858,3.0,941454850\n436,2871,4.0,941456292\n436,2886,1.0,941455182\n436,2894,1.0,941455855\n436,4424,5.0,941458179\n436,4970,3.0,941455993\n436,6918,5.0,941457831\n437,1,4.0,831693610\n437,48,3.0,831691596\n437,150,5.0,831691372\n437,163,3.0,831691989\n437,208,1.0,831691477\n437,232,5.0,831692018\n437,239,2.0,831693584\n437,246,4.0,831691596\n437,296,5.0,831691373\n437,329,3.0,831691462\n437,362,3.0,831692363\n437,364,5.0,831692485\n437,380,4.0,831691373\n437,440,3.0,831692227\n437,457,4.0,831692127\n437,551,4.0,831692252\n437,588,4.0,831691414\n437,590,4.0,831691372\n437,592,3.0,831691372\n437,595,5.0,831691445\n437,610,3.0,831693571\n437,616,3.0,831693610\n437,661,3.0,831693571\n437,709,3.0,831693571\n438,50,5.0,1472550855\n438,296,5.0,1472550892\n438,318,5.0,1472550853\n438,527,4.5,1472550861\n438,923,4.0,1472551016\n438,1089,4.5,1472550997\n438,1193,4.0,1472550988\n438,1682,4.5,1472551045\n438,4993,4.0,1472550922\n438,27773,4.5,1472550927\n438,48516,4.0,1472550918\n438,51662,4.0,1472551032\n438,79132,5.0,1472550905\n438,92259,4.0,1472550899\n438,99114,4.5,1472550939\n438,106766,4.0,1472551097\n438,109487,5.0,1472551008\n438,112552,4.5,1472551083\n438,122904,3.5,1472551042\n438,152081,4.0,1472550878\n439,34,1.0,1041114896\n439,39,4.0,1041114896\n439,45,4.0,1041114934\n439,125,3.0,1041114960\n439,185,3.0,1041114690\n439,187,2.0,1041115023\n439,196,3.0,1041114546\n439,198,4.0,1041114491\n439,223,4.0,1041114960\n439,235,4.0,1041114934\n439,260,2.0,1041114200\n439,316,4.0,1041114590\n439,318,3.0,1041113319\n439,327,3.0,1041114645\n439,435,1.0,1041114690\n439,440,2.0,1041115036\n439,442,3.0,1041114526\n439,465,3.0,1041113409\n439,480,3.0,1041114242\n439,527,3.0,1041113283\n439,541,3.0,1041114267\n439,588,3.0,1041115006\n439,589,4.0,1041114223\n439,593,5.0,1041113266\n439,608,4.0,1041113283\n439,671,3.0,1041114876\n439,674,2.0,1041114505\n439,748,3.0,1041114613\n439,780,3.0,1041114526\n439,788,3.0,1041114645\n439,830,3.0,1041021138\n439,858,5.0,1041113147\n439,917,3.0,1041113108\n439,919,3.0,1041113044\n439,920,5.0,1041114075\n439,924,2.0,1041114200\n439,926,5.0,1041113496\n439,955,4.0,1041113063\n439,968,4.0,1041114393\n439,971,3.0,1041113240\n439,1019,2.0,1041114267\n439,1079,3.0,1041115125\n439,1081,4.0,1041115325\n439,1096,5.0,1041021138\n439,1127,4.0,1041114393\n439,1135,3.0,1041115416\n439,1196,5.0,1041113283\n439,1200,4.0,1041114267\n439,1206,2.0,1041114242\n439,1207,4.0,1041113496\n439,1210,4.0,1041021138\n439,1214,4.0,1041114242\n439,1215,2.0,1041114223\n439,1221,5.0,1041113190\n439,1257,3.0,1041115211\n439,1259,3.0,1041114121\n439,1265,4.0,1041114852\n439,1270,4.0,1041021089\n439,1307,4.0,1041115080\n439,1320,3.0,1041114664\n439,1356,3.0,1041114433\n439,1371,1.0,1041114491\n439,1372,4.0,1041114433\n439,1374,4.0,1041114409\n439,1375,2.0,1041114590\n439,1376,4.0,1041114448\n439,1391,4.0,1041114613\n439,1394,2.0,1041115103\n439,1396,3.0,1041114301\n439,1449,3.0,1041114984\n439,1527,3.0,1041114334\n439,1544,2.0,1041114613\n439,1580,2.0,1041114301\n439,1584,4.0,1041114316\n439,1590,2.0,1041114715\n439,1653,3.0,1041114301\n439,1674,4.0,1041114141\n439,1676,1.0,1041114526\n439,1734,5.0,1041113147\n439,1748,3.0,1041114223\n439,1784,2.0,1041114896\n439,1909,4.0,1041114334\n439,1914,3.0,1041115023\n439,1923,4.0,1041115006\n439,1962,3.0,1041114121\n439,1968,4.0,1041115125\n439,2000,4.0,1041115139\n439,2003,3.0,1041115375\n439,2010,4.0,1041114223\n439,2011,2.0,1041114393\n439,2012,1.0,1041114433\n439,2028,2.0,1041113391\n439,2034,3.0,1041114546\n439,2054,3.0,1041114645\n439,2081,3.0,1041115258\n439,2094,3.0,1041114465\n439,2100,3.0,1041115346\n439,2133,4.0,1041115346\n439,2134,3.0,1041115305\n439,2141,4.0,1041115283\n439,2144,4.0,1041115244\n439,2150,3.0,1041115305\n439,2174,3.0,1041115163\n439,2245,3.0,1041115305\n439,2301,3.0,1041115397\n439,2318,4.0,1041114876\n439,2321,2.0,1041114914\n439,2324,4.0,1041113319\n439,2329,4.0,1041113409\n439,2366,2.0,1041113063\n439,2369,4.0,1041115375\n439,2406,3.0,1041115346\n439,2407,3.0,1041115346\n439,2423,3.0,1041115188\n439,2463,3.0,1041115305\n439,2469,4.0,1041115397\n439,2470,3.0,1041115375\n439,2502,4.0,1041114852\n439,2599,3.0,1041114876\n439,2628,4.0,1041021114\n439,2640,3.0,1041114349\n439,2642,1.0,1041114715\n439,2648,3.0,1041113077\n439,2660,4.0,1041114200\n439,2668,3.0,1041114546\n439,2699,3.0,1041114491\n439,2700,4.0,1041114876\n439,2716,3.0,1041115211\n439,2746,3.0,1041115346\n439,2759,3.0,1041115006\n439,2791,3.0,1041115103\n439,2797,3.0,1041115230\n439,2804,4.0,1041115062\n439,2858,3.0,1041113227\n439,2916,3.0,1041114267\n439,2918,4.0,1041115103\n439,2926,2.0,1041115283\n439,2968,1.0,1041114393\n439,2997,4.0,1041114838\n439,3033,4.0,1041114546\n439,3060,3.0,1041114960\n439,3067,4.0,1041115062\n439,3072,4.0,1041115188\n439,3095,2.0,1041114121\n439,3160,2.0,1041114095\n439,3253,3.0,1041114934\n439,3269,2.0,1041114433\n439,3300,3.0,1041114465\n439,3317,4.0,1041115499\n439,3354,1.0,1041114733\n439,3448,3.0,1041115283\n439,3481,3.0,1041115479\n439,3515,2.0,1041115586\n439,3526,3.0,1041115125\n439,3527,3.0,1041114393\n439,3535,2.0,1041115516\n439,3548,4.0,1041113161\n439,3556,4.0,1041115541\n439,3591,3.0,1041115375\n439,3608,4.0,1041115080\n439,3617,2.0,1041115643\n439,3697,1.0,1041114564\n439,3704,3.0,1041114526\n439,3785,3.0,1041115615\n439,3793,1.0,1041114301\n439,3821,2.0,1041115710\n439,3827,2.0,1041114590\n439,3848,4.0,1041021089\n439,3858,2.0,1041115726\n439,3863,1.0,1041114409\n439,3868,4.0,1041115163\n439,3882,3.0,1041115615\n439,3893,2.0,1041115572\n439,3897,3.0,1041113351\n439,3900,3.0,1041021089\n439,3911,4.0,1041115479\n439,3948,3.0,1041115643\n439,3959,1.0,1041114393\n439,3981,1.0,1041114564\n439,3988,1.0,1041115615\n439,3994,4.0,1041114393\n439,4002,3.0,1041115211\n439,4015,4.0,1041115744\n439,4025,2.0,1041115726\n439,4027,4.0,1041115479\n439,4034,3.0,1041114141\n439,4043,3.0,1041113509\n439,4046,3.0,1041114075\n439,4048,3.0,1041114095\n439,4117,3.0,1041114767\n439,4121,3.0,1041115416\n439,4161,4.0,1041021138\n439,4291,2.0,1041115416\n439,4308,4.0,1041113471\n439,4333,2.0,1041115416\n439,4343,3.0,1041114564\n439,4370,3.0,1041114349\n439,4478,3.0,1041115230\n439,4489,4.0,1041115325\n439,4501,3.0,1041115397\n439,4529,2.0,1041115397\n439,4544,1.0,1041114590\n439,4545,3.0,1041114590\n439,4571,4.0,1041115163\n439,4618,3.0,1041114733\n439,4623,3.0,1041115305\n439,4641,2.0,1041115461\n439,4643,4.0,1041114491\n439,4649,1.0,1041115695\n439,4652,1.0,1041114664\n439,4662,3.0,1041115211\n439,4678,3.0,1041115325\n439,4679,3.0,1041115283\n439,4718,1.0,1041115541\n439,4722,4.0,1041115660\n439,4849,3.0,1041115744\n439,4867,3.0,1041115695\n439,4874,2.0,1041114491\n439,4890,3.0,1041115643\n439,4956,3.0,1041114767\n439,4963,4.0,1041115499\n439,4979,4.0,1041115516\n439,5013,2.0,1041115499\n439,5015,5.0,1041113375\n439,5026,4.0,1041112767\n439,5074,3.0,1041115572\n439,5095,4.0,1041112781\n439,5171,1.0,1041114626\n439,5225,5.0,1041112729\n439,5255,4.0,1041112842\n439,5279,2.0,1041114934\n439,5299,1.0,1041115499\n439,5312,4.0,1041112797\n439,5349,3.0,1041112749\n439,5377,4.0,1041113471\n439,5378,4.0,1041112767\n439,5387,2.0,1041112842\n439,5419,2.0,1041112811\n439,5445,4.0,1041112729\n439,5449,1.0,1041112842\n439,5481,3.0,1041112797\n439,5500,3.0,1041115325\n439,5506,3.0,1041021089\n439,5577,3.0,1041115586\n439,5620,2.0,1041112970\n439,5625,3.0,1041112924\n439,5630,4.0,1041112905\n439,5666,1.0,1041112970\n439,5668,5.0,1041112970\n439,5675,3.0,1041113002\n439,5679,5.0,1041112949\n439,5780,3.0,1041115283\n439,5791,5.0,1041112924\n439,5810,4.0,1041112924\n439,5816,3.0,1041112877\n439,5872,3.0,1041112936\n439,5876,4.0,1041112905\n439,5902,4.0,1041112877\n439,5943,1.0,1041115676\n439,5956,5.0,1041021089\n440,1,4.0,835337057\n440,2,4.0,835337237\n440,32,3.0,835337099\n440,47,4.0,835337079\n440,50,4.0,835337099\n440,110,5.0,835337057\n440,150,5.0,835336935\n440,165,4.0,835336972\n440,225,1.0,835337079\n440,273,3.0,835337370\n440,288,3.0,835337057\n440,293,5.0,835337237\n440,296,3.0,835336936\n440,316,4.0,835336996\n440,318,5.0,835336996\n440,344,1.0,835336972\n440,353,3.0,835337417\n440,356,4.0,835337200\n440,364,5.0,835337121\n440,367,3.0,835337181\n440,370,4.0,835337586\n440,374,3.0,835337795\n440,377,4.0,835337294\n440,380,4.0,835336937\n440,442,2.0,835337309\n440,466,4.0,835337608\n440,471,3.0,835337519\n440,474,4.0,835337447\n440,480,5.0,835337216\n440,485,4.0,835337573\n440,491,5.0,835337598\n440,553,3.0,835337200\n440,586,3.0,835337391\n440,587,3.0,835337370\n440,588,3.0,835336972\n440,589,5.0,835337275\n440,590,5.0,835336934\n440,592,3.0,835336934\n440,593,4.0,835337038\n440,595,3.0,835336997\n441,58,5.0,1079561308\n441,59,5.0,1048091888\n441,80,4.5,1055274300\n441,94,4.5,1078145577\n441,110,3.0,1078145992\n441,150,3.5,1078145987\n441,156,4.0,1048092031\n441,164,4.5,1079562066\n441,194,4.5,1053624079\n441,213,5.0,1048091840\n441,223,4.5,1079561932\n441,260,5.0,1078145785\n441,296,4.5,1078145955\n441,318,3.5,1078146006\n441,345,4.5,1079561964\n441,356,3.5,1078145967\n441,457,3.5,1078145974\n441,475,4.5,1055273872\n441,541,4.0,1079562098\n441,581,5.0,1055273727\n441,587,1.0,1055274068\n441,590,3.5,1078145979\n441,592,2.5,1078145983\n441,593,4.0,1078145960\n441,858,4.5,1055273880\n441,913,3.5,1079561110\n441,1049,2.5,1078145899\n441,1094,4.0,1084313016\n441,1101,3.0,1055172641\n441,1147,3.0,1055273558\n441,1172,5.0,1048091084\n441,1183,3.5,1084312997\n441,1193,4.5,1053623849\n441,1196,4.5,1078145804\n441,1197,3.5,1078145792\n441,1198,5.0,1048092142\n441,1203,3.5,1055274130\n441,1204,4.5,1078145809\n441,1208,4.0,1084313048\n441,1210,4.0,1078146014\n441,1220,3.5,1084312933\n441,1235,4.5,1053623871\n441,1242,4.0,1084313046\n441,1259,2.5,1078145798\n441,1262,4.0,1084313034\n441,1270,3.0,1048090962\n441,1396,3.5,1055274102\n441,1446,5.0,1048091927\n441,1552,2.5,1055173947\n441,1635,3.5,1055274107\n441,1641,4.5,1079561951\n441,1721,0.5,1055274051\n441,1732,4.5,1079561130\n441,1759,4.5,1055273793\n441,1827,5.0,1048092172\n441,1968,4.0,1048091140\n441,2028,2.0,1048090990\n441,2064,5.0,1048092243\n441,2067,4.0,1084313007\n441,2324,4.5,1079561829\n441,2395,4.0,1079561942\n441,2542,4.5,1079561923\n441,2571,4.0,1055274566\n441,2618,4.5,1079561707\n441,2700,1.0,1079562012\n441,2858,4.0,1078145551\n441,2987,3.5,1079562108\n441,3060,4.5,1079561948\n441,3178,4.5,1078156315\n441,3246,4.0,1079561288\n441,3408,3.5,1079562575\n441,3476,3.0,1079561149\n441,3578,3.0,1079562523\n441,3677,4.5,1053624117\n441,3751,4.5,1056029634\n441,3897,4.0,1079562397\n441,3910,3.5,1079561510\n441,3911,4.5,1053623839\n441,3967,4.0,1048091800\n441,3992,4.0,1079561611\n441,4008,4.0,1084313000\n441,4021,4.5,1053623753\n441,4027,4.0,1048091192\n441,4034,3.5,1079562389\n441,4226,5.0,1048091589\n441,4235,4.0,1055273702\n441,4326,4.5,1055172791\n441,4384,5.0,1079561618\n441,4701,2.5,1055172672\n441,4903,3.0,1048091819\n441,4967,3.0,1048091627\n441,4969,3.5,1079561105\n441,4973,4.0,1048091577\n441,4979,4.0,1048091819\n441,4993,5.0,1048091608\n441,4995,4.5,1079562473\n441,5015,4.0,1079561524\n441,5083,4.0,1048091122\n441,5135,2.0,1048091800\n441,5225,4.0,1048091577\n441,5365,4.0,1055274124\n441,5377,2.5,1079562485\n441,5391,4.5,1079561593\n441,5446,4.0,1079562412\n441,5621,1.0,1055274056\n441,5669,4.0,1048092203\n441,5673,4.0,1079561527\n441,5876,4.5,1079562430\n441,5952,4.0,1048091577\n441,5989,4.0,1079562416\n441,6003,5.0,1078145859\n441,6016,5.0,1055273605\n441,6059,3.0,1053623908\n441,6219,0.5,1055274221\n441,6373,3.0,1055274249\n441,6552,4.0,1079561654\n441,6565,3.5,1079562498\n441,6787,4.5,1079561241\n441,6874,4.0,1084312918\n441,7303,4.0,1084313053\n442,1,4.0,1227920032\n442,2,4.0,1227969149\n442,3,4.5,1227969381\n442,16,4.5,1227969295\n442,25,1.0,1227921695\n442,34,3.5,1227920128\n442,36,4.5,1227969086\n442,47,4.5,1227920086\n442,65,1.0,1227917301\n442,95,1.0,1227969045\n442,104,4.5,1227969247\n442,110,4.5,1227918685\n442,141,4.5,1227969028\n442,150,4.0,1227918270\n442,153,4.0,1227968858\n442,161,4.5,1227969017\n442,208,2.5,1227968959\n442,231,4.5,1227921550\n442,260,5.0,1227919947\n442,266,4.5,1227969287\n442,288,4.5,1227969060\n442,296,4.5,1227919572\n442,318,4.5,1227917878\n442,344,4.0,1227968833\n442,349,4.5,1227968875\n442,356,5.0,1227918415\n442,364,4.5,1227967474\n442,367,4.5,1227968910\n442,377,4.0,1227920068\n442,380,4.0,1227921487\n442,381,4.0,1227917252\n442,454,4.5,1227968982\n442,457,4.5,1227920023\n442,474,4.0,1227969200\n442,480,4.5,1227919841\n442,481,4.0,1227917247\n442,491,3.5,1227917217\n442,500,4.5,1227920121\n442,527,4.5,1227918447\n442,539,4.5,1227920248\n442,553,5.0,1227969354\n442,586,4.0,1227969014\n442,587,4.0,1227968922\n442,588,4.5,1227967485\n442,589,4.0,1227919809\n442,590,4.0,1227919889\n442,592,4.5,1227920028\n442,593,5.0,1227918784\n442,595,4.0,1227920095\n442,597,4.5,1227920112\n442,608,4.0,1227920058\n442,733,4.0,1227920117\n442,736,3.5,1227968867\n442,743,3.0,1227917157\n442,765,3.0,1227917320\n442,780,3.5,1227920036\n442,858,4.5,1227918338\n442,919,5.0,1227921050\n442,1022,4.0,1227967466\n442,1029,4.0,1227967555\n442,1035,4.5,1227969471\n442,1036,4.5,1227968990\n442,1049,4.5,1227917256\n442,1073,4.5,1227968926\n442,1080,5.0,1227969230\n442,1089,4.5,1227920812\n442,1090,4.5,1227919379\n442,1097,4.5,1227968903\n442,1136,4.5,1227968969\n442,1196,4.5,1227920064\n442,1197,4.5,1227968919\n442,1198,4.5,1227918592\n442,1200,4.5,1227920919\n442,1208,4.5,1227917678\n442,1210,4.5,1227920041\n442,1213,5.0,1227919679\n442,1214,5.0,1227920242\n442,1219,4.5,1227920866\n442,1220,4.5,1227969212\n442,1221,4.5,1227919674\n442,1222,4.5,1227919369\n442,1231,4.0,1227918712\n442,1233,4.0,1227919643\n442,1240,4.5,1227919806\n442,1250,4.5,1227918582\n442,1258,4.5,1227918181\n442,1265,4.5,1227968943\n442,1270,4.0,1227920083\n442,1282,3.5,1227967469\n442,1288,5.0,1227921029\n442,1291,4.5,1227968974\n442,1307,5.0,1227969136\n442,1378,4.5,1227917977\n442,1380,4.5,1227969374\n442,1387,4.0,1227969164\n442,1393,4.5,1227969119\n442,1394,5.0,1227969403\n442,1409,3.5,1227917209\n442,1485,4.5,1227969307\n442,1500,5.0,1227917839\n442,1517,4.5,1227969131\n442,1552,4.5,1227969465\n442,1573,0.5,1227969273\n442,1580,4.5,1227968895\n442,1587,1.0,1227917194\n442,1610,4.5,1227918261\n442,1663,4.5,1227919440\n442,1704,4.5,1227920212\n442,1721,4.0,1227968898\n442,1784,4.5,1227918165\n442,1805,4.0,1227918762\n442,1917,3.5,1227920222\n442,1923,5.0,1227920217\n442,1957,4.5,1227917162\n442,1959,4.5,1227917274\n442,1961,5.0,1227969070\n442,1968,5.0,1227969171\n442,1997,5.0,1227920937\n442,2000,4.5,1227969327\n442,2028,5.0,1227968295\n442,2078,4.5,1227967451\n442,2081,4.5,1227967576\n442,2115,5.0,1227969240\n442,2126,0.5,1227917311\n442,2144,4.0,1227918008\n442,2174,4.5,1227969220\n442,2194,4.5,1227918682\n442,2268,4.5,1227918093\n442,2313,4.0,1227917203\n442,2355,4.5,1227967550\n442,2398,4.5,1230227401\n442,2571,4.5,1227920879\n442,2628,4.0,1227968938\n442,2683,4.5,1227969078\n442,2700,4.5,1227967506\n442,2706,4.5,1227969139\n442,2716,4.5,1227968998\n442,2762,4.5,1227968879\n442,2791,4.5,1227969281\n442,2795,4.5,1227917234\n442,2797,4.5,1227969235\n442,2858,4.0,1227920078\n442,2918,5.0,1227969176\n442,2959,4.5,1230177781\n442,2987,4.0,1227967518\n442,3087,4.0,1227917270\n442,3114,4.0,1227967406\n442,3396,4.0,1227917144\n442,3421,4.5,1234061412\n442,3448,4.5,1227919456\n442,3450,4.5,1227919316\n442,3526,4.5,1227917267\n442,3552,5.0,1227968527\n442,3578,5.0,1227968987\n442,3671,5.0,1227968502\n442,3680,4.5,1227967960\n442,3751,4.5,1227967572\n442,3916,4.0,1227918104\n442,3948,4.5,1227969452\n442,3977,4.0,1227969391\n442,3988,4.5,1227918853\n442,4022,4.5,1227969346\n442,4027,4.5,1227969336\n442,4126,2.5,1227917444\n442,4306,4.5,1227967432\n442,4483,2.5,1227968531\n442,4516,4.0,1227917576\n442,4638,3.5,1227919845\n442,4816,3.5,1227969664\n442,4857,4.5,1227921058\n442,4886,4.5,1227967415\n442,4963,4.5,1227969278\n442,4993,4.5,1227920234\n442,4995,4.5,1227969319\n442,5010,4.5,1227919428\n442,5152,5.0,1227919445\n442,5218,4.5,1227967522\n442,5669,4.0,1227967980\n442,6005,4.5,1227968094\n442,6122,4.5,1227967865\n442,6188,4.5,1227919168\n442,6377,4.5,1227967410\n442,6874,4.5,1227969409\n442,6936,4.5,1227969637\n442,7132,4.0,1227921024\n442,7153,4.5,1227920236\n442,7263,4.5,1227918676\n442,7318,4.5,1227917705\n442,7386,4.5,1227919595\n442,7979,4.0,1227967887\n442,8207,4.5,1227920871\n442,8360,4.5,1227967499\n442,8493,4.0,1227918109\n442,8641,4.5,1227918468\n442,8827,4.5,1227918258\n442,8961,4.0,1227967387\n442,8965,4.0,1227967341\n442,27873,4.5,1227968089\n442,32587,4.0,1230175903\n442,33615,4.5,1227967630\n442,34072,4.0,1227967973\n442,39183,2.5,1227918050\n442,40819,5.0,1227921037\n442,43869,4.0,1227969651\n442,44022,4.5,1227967622\n442,45517,4.0,1227967491\n442,46347,4.5,1227967875\n442,46970,4.0,1227969657\n442,48304,3.5,1227917673\n442,48738,4.0,1227920861\n442,48741,4.0,1227967931\n442,49274,4.0,1227967611\n442,49530,4.0,1227918690\n442,50872,4.0,1227967398\n442,51662,4.0,1227919460\n442,52245,4.0,1227969644\n442,52435,4.0,1227919007\n442,53121,4.5,1227967650\n442,54272,4.0,1227967504\n442,58156,2.0,1227918928\n442,58559,5.0,1227918834\n442,59315,5.0,1230175688\n442,60069,3.5,1230175532\n442,60487,4.0,1227921097\n442,64114,4.5,1234059992\n443,260,4.5,1427775169\n443,293,5.0,1427775376\n443,318,5.0,1427775162\n443,356,4.5,1427775397\n443,541,5.0,1427775555\n443,589,5.0,1427775382\n443,593,4.5,1427775392\n443,741,5.0,1427775447\n443,1036,5.0,1427775368\n443,1136,5.0,1427775558\n443,1196,5.0,1427775173\n443,1198,5.0,1427775164\n443,1200,5.0,1427775388\n443,1210,5.0,1427775372\n443,1274,5.0,1427775448\n443,1291,5.0,1427775187\n443,2571,4.5,1427775185\n443,2810,5.0,1427775459\n443,3000,5.0,1427775402\n443,5618,5.0,1427775430\n443,5690,5.0,1427775449\n443,5971,5.0,1427775427\n443,6350,5.0,1427775421\n443,6857,4.5,1427775513\n443,7099,5.0,1427775423\n443,26662,5.0,1427775432\n443,27660,4.0,1427775501\n443,31658,5.0,1427775425\n443,48394,5.0,1427775557\n443,57504,5.0,1427775519\n443,62336,5.0,1427775457\n443,65261,5.0,1427775486\n443,85179,5.0,1427775515\n443,89864,5.0,1427775215\n443,94864,4.5,1427775211\n443,104841,4.5,1427775561\n443,106782,5.0,1427775207\n443,112556,5.0,1427775229\n443,112852,5.0,1427775204\n443,131013,3.5,1427775200\n444,902,4.0,975088273\n444,1193,5.0,975088310\n444,1617,4.0,975088236\n444,2133,1.0,975088310\n444,2622,3.0,975088273\n444,3176,3.0,975088310\n444,3897,3.0,975088816\n444,3936,3.0,975088236\n444,3963,4.0,975088533\n444,3967,4.0,975088533\n444,3969,4.0,975088533\n444,3977,1.0,975088500\n444,3984,4.0,975088474\n444,3987,4.0,975088474\n444,3990,1.0,975088474\n444,3991,1.0,975088431\n444,4000,3.0,975088431\n444,4002,5.0,975088391\n444,4007,5.0,975088392\n444,4008,4.0,975088392\n445,296,4.5,1360005902\n445,318,5.0,1360005921\n445,356,5.0,1360005908\n445,480,3.5,1360005917\n445,502,4.5,1360005560\n445,593,3.5,1360005912\n445,1591,3.0,1360004940\n445,2004,3.5,1360004979\n445,2380,3.5,1360005633\n445,2384,1.5,1360004930\n445,2409,4.0,1360004934\n445,2410,3.5,1360004951\n445,3999,2.5,1360005590\n445,4161,4.0,1360004991\n445,4270,2.0,1360004883\n445,4874,4.0,1360004915\n445,5291,3.5,1360005603\n445,37741,2.0,1360005615\n445,53000,2.5,1360005595\n445,80463,3.5,1360005570\n446,318,5.0,1436621001\n446,4896,5.0,1436621120\n446,4993,5.0,1436621011\n446,5445,4.0,1436621134\n446,5952,4.5,1436621014\n446,6333,4.5,1436621075\n446,7153,5.0,1436621009\n446,8368,5.0,1436621055\n446,8644,4.5,1436621492\n446,8665,5.0,1436621053\n446,40815,4.5,1436621066\n446,54286,5.0,1436621016\n446,63082,5.0,1436621141\n446,63992,4.5,1436621553\n446,65514,4.5,1436621096\n446,68954,4.0,1436621300\n446,70286,4.0,1436621199\n446,72998,4.5,1436621073\n446,87232,5.0,1436621036\n446,88125,5.0,1436621220\n446,98809,4.0,1436621117\n446,111362,4.5,1436621050\n446,111759,4.0,1436621042\n446,115713,5.0,1436621602\n446,120466,4.5,1436621570\n447,1,3.0,832492847\n447,2,3.0,832493108\n447,6,3.0,832493230\n447,10,3.0,832492847\n447,11,3.0,832493040\n447,17,3.0,832493040\n447,19,3.0,832492963\n447,21,3.0,832492911\n447,25,4.0,832493175\n447,34,3.0,832492936\n447,36,4.0,832493175\n447,39,3.0,832492963\n447,48,3.0,832493175\n447,60,3.0,832493413\n447,62,5.0,832493132\n447,105,4.0,832493108\n447,110,5.0,832492911\n447,111,3.0,832492988\n447,141,4.0,832493063\n447,150,4.0,832492563\n447,151,3.0,832493012\n447,153,3.0,832492610\n447,158,3.0,832493085\n447,160,3.0,832492963\n447,161,4.0,832492847\n447,165,3.0,832492610\n447,168,3.0,832493085\n447,172,2.0,832493085\n447,173,2.0,832493012\n447,185,3.0,832492879\n447,186,3.0,832493063\n447,208,4.0,832492879\n447,216,1.0,832493335\n447,218,3.0,832493257\n447,222,3.0,832493280\n447,224,3.0,832493108\n447,225,3.0,832492911\n447,231,3.0,832492644\n447,234,1.0,832493335\n447,235,2.0,832493063\n447,236,3.0,832493012\n447,237,3.0,832493206\n447,246,2.0,832493207\n447,253,2.0,832492879\n447,256,3.0,832493108\n447,261,3.0,832493063\n447,265,3.0,832493063\n447,266,3.0,832492936\n447,272,3.0,832493206\n447,276,2.0,832493207\n447,277,3.0,832493230\n447,282,4.0,832492988\n447,288,2.0,832492911\n447,293,3.0,832493085\n447,296,3.0,832492563\n447,300,3.0,832492879\n447,315,3.0,832492988\n447,317,3.0,832492936\n447,318,4.0,832492644\n447,329,3.0,832492644\n447,333,3.0,832493108\n447,337,3.0,832493012\n447,339,3.0,832492847\n447,342,3.0,832493335\n447,344,3.0,832492610\n447,348,3.0,832493230\n447,349,3.0,832492610\n447,364,3.0,832493335\n447,380,4.0,832492563\n447,381,3.0,832493280\n447,410,3.0,832492911\n447,413,1.0,832493411\n447,420,2.0,832492963\n447,432,2.0,832492988\n447,434,3.0,832492847\n447,435,3.0,832492988\n447,454,4.0,832493411\n447,457,3.0,832493132\n447,477,2.0,832493451\n447,553,3.0,832493040\n447,555,3.0,832493132\n447,588,3.0,832492610\n447,590,4.0,832492563\n447,592,3.0,832492563\n447,593,4.0,832493132\n447,595,3.0,832492644\n447,608,4.0,832493280\n448,1,3.0,1444761397\n448,260,5.0,1444761426\n448,356,3.0,1444761400\n448,480,5.0,1444761389\n448,589,5.0,1444761778\n448,593,5.0,1444761386\n448,1196,5.0,1444761808\n448,1198,5.0,1444761821\n448,1210,5.0,1444761802\n448,1270,5.0,1444761391\n448,1291,5.0,1444761792\n448,2571,5.0,1444761393\n448,4993,5.0,1444761817\n448,5952,4.0,1444761818\n448,7153,5.0,1444761813\n448,54286,5.0,1444761789\n448,59315,5.0,1444761779\n448,68358,5.0,1444761790\n448,79132,5.0,1444761797\n448,89745,5.0,1444761795\n449,32,4.0,836927059\n449,47,4.0,836907547\n449,62,4.0,836927059\n449,150,4.0,836908387\n449,185,4.0,836907480\n449,225,4.0,836907601\n449,296,5.0,836908387\n449,300,5.0,836907544\n449,317,3.0,836907776\n449,318,5.0,836907434\n449,344,3.0,836907384\n449,349,4.0,836907384\n449,356,5.0,836907604\n449,364,4.0,836907783\n449,380,4.0,836908387\n449,434,3.0,836907459\n449,454,5.0,836907600\n449,457,5.0,836907459\n449,480,4.0,836907787\n449,588,5.0,836907384\n449,590,5.0,836908387\n449,592,5.0,836908387\n449,593,5.0,836907459\n449,595,4.0,836907435\n450,29,4.5,1449354100\n450,47,5.0,1449349727\n450,50,5.0,1449349256\n450,111,5.0,1449354173\n450,296,5.0,1449349600\n450,318,4.0,1449349252\n450,527,4.5,1449349254\n450,541,4.5,1449349648\n450,593,5.0,1449349656\n450,608,5.0,1449349641\n450,750,4.5,1449349370\n450,778,4.5,1449354169\n450,858,5.0,1449349272\n450,908,4.0,1449349652\n450,912,4.0,1449349429\n450,1089,5.0,1475737107\n450,1136,4.5,1449349658\n450,1193,5.0,1449349568\n450,1198,4.0,1449349427\n450,1199,5.0,1449354075\n450,1201,5.0,1449349636\n450,1204,2.5,1449349692\n450,1206,5.0,1449354022\n450,1208,5.0,1449354094\n450,1213,4.5,1449349572\n450,1221,4.0,1449349777\n450,1222,5.0,1449349554\n450,1258,4.5,1449349557\n450,1260,4.5,1449349750\n450,1298,5.0,1475737120\n450,1527,3.0,1449354033\n450,1617,4.5,1449349724\n450,1653,3.5,1449354113\n450,1682,5.0,1449354039\n450,1704,5.0,1449349736\n450,1732,4.5,1475737106\n450,2019,4.5,1449349591\n450,2076,5.0,1475737127\n450,2318,5.0,1475737121\n450,2324,5.0,1449349790\n450,2329,4.0,1449349594\n450,2542,4.5,1475737111\n450,2571,5.0,1449349431\n450,2692,5.0,1449354097\n450,2858,5.0,1449349598\n450,2959,5.0,1449349260\n450,2970,5.0,1449349303\n450,3089,4.5,1449349725\n450,3202,5.0,1449349335\n450,3578,1.0,1475737172\n450,3793,0.5,1475737181\n450,3910,5.0,1475737250\n450,3949,3.5,1449354163\n450,4011,5.0,1475737199\n450,4027,5.0,1475737199\n450,4226,5.0,1475737165\n450,4235,3.5,1475737258\n450,4306,4.0,1475737174\n450,4308,3.0,1449354030\n450,4848,5.0,1449354273\n450,4873,5.0,1449354102\n450,4878,5.0,1449354041\n450,4886,4.0,1475737183\n450,4963,5.0,1475737189\n450,4973,5.0,1449349263\n450,4993,1.0,1475737169\n450,4995,4.5,1475737195\n450,5056,5.0,1449349308\n450,5121,5.0,1449349304\n450,5291,5.0,1449349694\n450,5445,4.0,1475737187\n450,5618,4.5,1449349367\n450,5952,1.0,1475737170\n450,5989,4.5,1475737197\n450,5995,5.0,1449349733\n450,6016,5.0,1449349261\n450,6377,3.0,1475737185\n450,6874,4.5,1449354023\n450,7063,5.0,1449349301\n450,7153,1.0,1475737171\n450,7361,5.0,1449349376\n450,7438,3.5,1449349403\n450,8636,2.0,1449349393\n450,8961,3.0,1449349401\n450,27773,4.5,1449349704\n450,32587,4.5,1449354037\n450,33794,3.0,1449349406\n450,44191,4.0,1449349384\n450,48394,3.0,1449354073\n450,48516,5.0,1449349388\n450,48780,3.5,1449349730\n450,53550,5.0,1449349333\n450,57669,5.0,1449354006\n450,58559,4.5,1475737176\n450,60069,4.5,1449354165\n450,60333,5.0,1449349309\n450,60684,4.5,1449354026\n450,61323,5.0,1449350052\n450,63082,4.5,1449354170\n450,64660,5.0,1475737055\n450,70286,4.5,1449354161\n450,79132,4.0,1449354069\n450,79469,5.0,1475736993\n450,80717,5.0,1475737052\n450,86504,4.5,1449349690\n450,92259,4.5,1449349258\n450,94466,5.0,1449349275\n450,99030,5.0,1475736957\n450,106920,2.0,1449354145\n450,107447,5.0,1475736957\n450,107649,5.0,1475736994\n450,109374,5.0,1449354021\n450,112552,4.0,1449349696\n450,115122,4.0,1475737068\n450,122882,1.0,1449349412\n450,129313,5.0,1475736979\n450,134130,2.0,1449349398\n450,141886,5.0,1475737051\n450,148372,5.0,1475737053\n450,153584,5.0,1475736995\n451,52,4.0,979330046\n451,206,4.0,980447536\n451,223,1.0,979516730\n451,246,5.0,980447386\n451,260,4.0,979330104\n451,541,4.0,979516433\n451,556,3.0,980447432\n451,581,5.0,980447432\n451,908,5.0,979330081\n451,994,5.0,979330579\n451,1171,4.0,979330384\n451,1189,4.0,980447432\n451,1192,5.0,980447386\n451,1197,4.0,979516452\n451,1225,4.0,979516371\n451,1288,5.0,979516387\n451,1296,5.0,979516433\n451,1299,4.0,979516410\n451,1361,5.0,980447368\n451,1441,3.0,979330463\n451,1484,5.0,979330564\n451,1639,1.0,979516748\n451,1797,3.0,980447432\n451,1865,4.0,980447472\n451,2064,5.0,979516433\n451,2124,3.0,979330046\n451,2541,4.0,979516496\n451,2598,1.0,980447330\n451,2693,3.0,980447489\n451,2706,4.0,979330104\n451,2804,4.0,979516410\n451,2858,4.0,979330343\n451,2915,4.0,979516452\n451,2959,5.0,979330540\n451,3007,5.0,980447432\n451,3052,2.0,979516763\n451,3067,1.0,979516371\n451,3361,3.0,979516387\n451,3418,5.0,979330081\n451,3521,5.0,979516452\n451,3556,3.0,979330384\n451,3594,2.0,979330674\n451,3683,4.0,979516433\n451,3814,4.0,979330104\n451,3969,1.0,979330296\n451,3977,5.0,979330296\n451,3996,5.0,979330263\n451,4009,3.0,979330384\n451,4022,2.0,979330296\n451,4054,3.0,979516309\n451,4061,3.0,979330451\n451,4067,1.0,979330384\n452,1,3.5,1133735252\n452,3,1.0,976423199\n452,5,3.0,976422557\n452,6,4.0,976423753\n452,7,3.0,976422719\n452,11,4.0,976419907\n452,14,5.0,976420715\n452,16,4.0,976420133\n452,17,4.0,976419438\n452,18,3.0,976423954\n452,19,1.0,976427428\n452,22,3.0,976424048\n452,24,2.0,976420743\n452,27,3.0,976421239\n452,29,4.0,976424683\n452,31,2.5,1077114665\n452,34,4.0,1067732233\n452,36,5.0,976419552\n452,39,3.0,976421630\n452,43,4.0,976425795\n452,45,3.0,976419946\n452,47,2.5,1151810489\n452,52,3.0,976421944\n452,57,3.0,976421122\n452,62,3.0,976420061\n452,74,2.0,1016590266\n452,79,1.0,976421101\n452,86,3.0,976420610\n452,89,3.0,976424143\n452,94,4.0,976420414\n452,100,3.0,976420764\n452,104,1.0,976421834\n452,105,1.0,976420744\n452,110,4.0,976425416\n452,111,4.0,1002941559\n452,113,3.0,976421014\n452,119,3.0,976423036\n452,144,3.0,976422042\n452,150,4.0,976419605\n452,161,3.0,976423807\n452,164,3.0,976423582\n452,165,4.0,976424188\n452,168,3.0,976420942\n452,175,4.0,1015029817\n452,186,1.0,976422783\n452,193,1.0,976427569\n452,195,4.0,976420942\n452,203,3.0,976423060\n452,207,3.0,976426587\n452,208,3.0,976424965\n452,222,4.0,976420150\n452,223,2.0,1133735707\n452,225,2.0,976420569\n452,229,4.0,1077114985\n452,230,4.0,976420586\n452,235,3.0,1133735422\n452,236,4.0,976427254\n452,237,3.0,976422997\n452,247,3.0,976419499\n452,249,3.0,976419799\n452,252,3.0,976422801\n452,260,4.0,976424659\n452,261,3.0,976420291\n452,265,3.5,1067731704\n452,266,3.0,976426708\n452,271,2.0,976420886\n452,272,3.5,1067732235\n452,278,2.0,976422760\n452,279,4.0,976419777\n452,280,3.0,976420133\n452,281,3.0,976419754\n452,288,4.0,976424209\n452,292,2.0,976420837\n452,293,3.0,976423807\n452,296,5.0,976425081\n452,300,4.0,976419622\n452,305,3.0,976423176\n452,306,5.0,976425154\n452,307,5.0,976419689\n452,308,5.0,976419715\n452,312,3.0,976423060\n452,318,5.0,976419528\n452,331,2.0,976421239\n452,337,4.0,976419824\n452,339,4.0,976422363\n452,342,3.0,976422279\n452,344,1.0,976422605\n452,348,3.5,1133735631\n452,349,4.0,976423954\n452,350,2.0,976420328\n452,351,2.0,976422186\n452,356,4.0,976421889\n452,357,4.0,976421969\n452,360,1.0,976423319\n452,361,4.0,976426210\n452,371,4.0,976420677\n452,375,3.0,976427445\n452,376,3.0,976424301\n452,377,4.0,976423883\n452,380,3.0,976422186\n452,381,3.0,976420474\n452,388,4.0,976420166\n452,412,2.0,976419866\n452,413,1.0,1016590228\n452,427,1.0,976424583\n452,429,1.0,976422697\n452,440,4.0,976421741\n452,454,2.0,976420414\n452,455,3.0,976421139\n452,457,4.0,976423694\n452,460,2.0,989111285\n452,463,2.0,976424451\n452,468,3.0,976422605\n452,471,3.0,976422396\n452,474,4.0,976423780\n452,475,5.0,976419844\n452,477,2.0,976419659\n452,480,5.0,976424739\n452,486,2.0,976427011\n452,490,3.0,976424071\n452,491,3.0,976420715\n452,492,2.0,976422231\n452,493,3.0,976425924\n452,494,3.0,976424164\n452,498,3.0,976421216\n452,500,4.0,976422542\n452,507,3.0,976420203\n452,508,5.0,976420037\n452,515,5.0,976419552\n452,516,2.0,976421014\n452,518,2.0,1077114334\n452,524,2.0,976420267\n452,527,4.0,1048089895\n452,529,5.0,976419887\n452,531,4.0,976420610\n452,534,4.0,976420061\n452,535,3.0,976420061\n452,536,3.0,976420837\n452,538,3.0,976426512\n452,539,4.0,976422297\n452,540,1.0,976424511\n452,556,4.0,976425596\n452,562,4.0,976425388\n452,581,4.0,976425238\n452,586,3.0,976422942\n452,587,4.0,976422347\n452,589,4.0,976423675\n452,590,4.0,976424722\n452,593,5.0,976419528\n452,597,3.0,976422186\n452,605,2.0,976420498\n452,608,5.0,976423675\n452,628,4.0,976419589\n452,635,3.0,976422582\n452,647,4.0,976420311\n452,648,3.0,976426235\n452,691,3.0,976422504\n452,707,3.0,976423582\n452,708,3.0,976426069\n452,719,2.0,976423300\n452,726,3.0,976419589\n452,728,4.0,976421758\n452,733,3.0,976423954\n452,736,3.0,976424318\n452,750,5.0,976428397\n452,762,1.0,976423357\n452,778,4.0,1133735586\n452,780,4.0,976426314\n452,781,3.0,976426494\n452,784,2.0,976422873\n452,786,3.0,976426913\n452,800,4.0,1133735839\n452,802,4.0,976420764\n452,805,4.0,976420242\n452,818,1.0,976423128\n452,829,1.0,976423319\n452,830,3.0,976423075\n452,832,3.0,976420414\n452,848,3.0,976420639\n452,852,3.0,976422231\n452,858,5.0,1002939818\n452,891,1.0,978405647\n452,898,4.0,976421541\n452,899,3.0,1040499503\n452,902,3.5,1077114204\n452,903,4.0,989110975\n452,904,4.0,1067732357\n452,906,3.0,1133735856\n452,908,4.0,1002940225\n452,910,4.0,976421323\n452,911,3.0,976421541\n452,912,5.0,1002939847\n452,913,5.0,989111896\n452,915,4.0,989112236\n452,919,3.0,1002940135\n452,920,4.0,1002940311\n452,921,3.0,976421580\n452,923,4.0,1002938163\n452,932,4.5,1077114316\n452,933,3.5,1077114659\n452,934,3.0,976422677\n452,943,3.5,1077114950\n452,946,3.0,976421911\n452,949,4.5,1133735550\n452,950,2.5,1133736000\n452,953,4.0,1002940311\n452,969,5.0,976424683\n452,986,3.0,1002938285\n452,994,3.0,1133735811\n452,1012,4.0,1002941030\n452,1027,3.0,976420639\n452,1029,4.0,1133735349\n452,1036,4.0,976423641\n452,1041,4.0,976425190\n452,1042,3.0,976426141\n452,1054,2.0,976425218\n452,1061,3.0,976420414\n452,1077,4.0,976421741\n452,1078,4.0,976421630\n452,1079,3.0,976421580\n452,1081,3.0,976421969\n452,1082,4.0,1002941030\n452,1084,4.0,1002940431\n452,1086,3.0,1133735326\n452,1089,2.0,976423641\n452,1090,4.0,1002940671\n452,1092,3.0,976424188\n452,1094,5.0,976419659\n452,1095,5.0,976418958\n452,1096,4.0,1002940709\n452,1097,5.0,1002940618\n452,1100,1.5,1077114631\n452,1101,2.5,1077115687\n452,1103,4.0,1002940767\n452,1104,4.0,1002939995\n452,1111,5.0,1077114933\n452,1120,3.0,976420267\n452,1124,4.0,1077115697\n452,1127,3.0,976424722\n452,1135,3.0,976422279\n452,1136,4.0,976421377\n452,1162,5.0,976421377\n452,1169,4.0,989111755\n452,1171,5.0,976426047\n452,1172,4.0,976421430\n452,1179,4.0,976423582\n452,1183,3.0,976419929\n452,1186,4.0,1077114624\n452,1187,4.0,976419528\n452,1189,4.0,989111734\n452,1193,5.0,976418958\n452,1196,4.0,976424659\n452,1197,3.0,1002941820\n452,1198,4.0,976424659\n452,1200,3.5,1133735526\n452,1201,1.5,1133735530\n452,1203,4.0,989110944\n452,1204,4.0,989110944\n452,1206,3.0,996875507\n452,1207,5.0,1002939847\n452,1208,4.0,1002940431\n452,1213,4.0,976425133\n452,1214,3.0,978405185\n452,1219,4.5,1077115642\n452,1221,5.0,1002939818\n452,1222,3.0,1002938212\n452,1225,4.0,1002939847\n452,1228,4.0,1002940157\n452,1230,4.0,1048089885\n452,1231,4.0,1002940157\n452,1233,5.0,976425036\n452,1234,5.0,1002941300\n452,1235,2.0,976421430\n452,1240,4.0,976423675\n452,1242,4.0,1067731812\n452,1244,3.0,1002940311\n452,1245,4.0,1133735730\n452,1246,3.5,1133735275\n452,1247,4.0,1002939995\n452,1250,4.0,1002939995\n452,1252,4.0,989111896\n452,1256,4.0,1133736014\n452,1258,4.0,996875481\n452,1259,5.0,976421517\n452,1260,4.0,989111896\n452,1262,3.0,1133734641\n452,1263,5.0,1002940480\n452,1265,4.0,976421472\n452,1266,3.0,976425169\n452,1267,3.0,1133735821\n452,1268,3.0,976419844\n452,1269,4.0,989112182\n452,1270,4.0,989112202\n452,1271,3.0,976419972\n452,1272,4.0,1002940618\n452,1276,4.0,976421377\n452,1278,4.0,976421630\n452,1283,4.0,1067731957\n452,1284,3.5,1133736011\n452,1285,3.0,976421678\n452,1287,3.0,1133735397\n452,1288,4.0,989112131\n452,1291,4.0,976424683\n452,1292,3.0,976421541\n452,1293,4.0,1002938163\n452,1299,4.0,989110975\n452,1302,4.0,1002940927\n452,1303,3.5,1112044845\n452,1304,5.0,976421377\n452,1307,4.0,989112182\n452,1321,3.0,1133735542\n452,1327,1.5,1077114253\n452,1333,4.0,1067732167\n452,1343,4.0,976423835\n452,1344,4.0,976423901\n452,1345,3.0,1077115647\n452,1353,1.0,976423207\n452,1357,3.0,976419887\n452,1358,5.0,976419605\n452,1361,4.0,976425100\n452,1370,4.0,976423928\n452,1385,3.0,976426257\n452,1387,4.0,1002941559\n452,1392,3.0,1133735646\n452,1393,5.0,976419528\n452,1394,5.0,976421494\n452,1395,3.0,976422542\n452,1396,4.0,976420077\n452,1397,4.0,976425488\n452,1399,4.0,976420810\n452,1401,3.0,976426457\n452,1407,3.0,976424026\n452,1409,3.0,976423060\n452,1410,2.0,976421076\n452,1414,3.0,976426295\n452,1423,4.5,1077115657\n452,1441,3.0,976422142\n452,1442,3.0,976420037\n452,1449,3.0,976421678\n452,1459,1.0,976424071\n452,1466,3.0,976419946\n452,1476,2.0,976422279\n452,1480,3.0,1077114310\n452,1483,2.0,976421101\n452,1488,3.0,976420639\n452,1499,1.0,976427552\n452,1500,5.0,976421778\n452,1507,3.0,976420474\n452,1517,3.0,976421911\n452,1526,1.0,976423036\n452,1535,3.0,976425576\n452,1541,2.0,976422962\n452,1545,4.0,976419417\n452,1552,4.0,976424301\n452,1556,1.0,976424599\n452,1569,2.0,976426378\n452,1573,3.0,976424099\n452,1580,4.0,976422186\n452,1584,3.0,976419659\n452,1594,3.0,976419528\n452,1597,2.0,976424099\n452,1605,2.0,976424921\n452,1608,4.0,976423977\n452,1610,3.0,976423807\n452,1611,4.0,976420133\n452,1614,4.0,976422719\n452,1617,5.0,976423582\n452,1620,3.0,976420677\n452,1625,2.0,976423807\n452,1629,3.0,976422740\n452,1633,4.0,976419907\n452,1635,5.0,976419528\n452,1639,1.5,1133735553\n452,1641,4.0,976421778\n452,1642,3.0,976421798\n452,1643,4.0,976420328\n452,1644,2.0,976427154\n452,1645,2.0,976424026\n452,1646,2.0,976422326\n452,1647,3.0,976424301\n452,1653,2.0,976423835\n452,1663,3.0,989112409\n452,1667,3.0,976420744\n452,1673,3.0,976425539\n452,1674,4.0,976423780\n452,1678,4.0,976420133\n452,1680,3.0,976419866\n452,1682,4.0,976419777\n452,1686,3.0,976424143\n452,1693,3.0,976426192\n452,1694,4.0,976425267\n452,1701,3.0,1077114627\n452,1703,1.0,976422623\n452,1704,5.0,976425267\n452,1711,3.0,976420692\n452,1713,2.0,976422605\n452,1719,4.0,976419887\n452,1721,1.0,976419972\n452,1727,4.0,976420744\n452,1747,5.0,976419824\n452,1752,2.0,976424493\n452,1754,2.0,976424301\n452,1767,2.0,1077115633\n452,1777,2.0,976422122\n452,1784,1.0,976421630\n452,1785,3.5,1077114911\n452,1801,2.0,976420639\n452,1804,3.0,976420942\n452,1810,4.0,1133735337\n452,1821,2.0,976426442\n452,1834,3.0,976419659\n452,1835,3.0,976426607\n452,1876,3.0,976420291\n452,1883,1.0,976421927\n452,1885,3.0,976419844\n452,1888,4.0,976426948\n452,1889,4.0,1067732172\n452,1892,2.0,976424048\n452,1894,1.0,976422942\n452,1896,3.0,989112264\n452,1909,3.0,976426047\n452,1911,3.0,976426930\n452,1914,3.0,1048089883\n452,1917,3.0,976424468\n452,1921,3.0,976423928\n452,1923,3.0,976421718\n452,1944,3.0,1008974914\n452,1945,4.0,1067732375\n452,1946,3.5,1133735658\n452,1947,5.0,1067732311\n452,1948,4.0,989112161\n452,1949,4.0,1002940225\n452,1950,3.0,1002940287\n452,1952,5.0,1002940431\n452,1953,4.0,976423780\n452,1954,3.0,1002940532\n452,1955,4.0,1002938212\n452,1956,4.0,1002938179\n452,1957,4.0,1002940574\n452,1958,4.0,976421758\n452,1960,3.0,1151810441\n452,1961,4.0,1002940409\n452,1962,2.0,1133735039\n452,1963,3.0,989112218\n452,1964,4.0,1002941091\n452,1968,4.0,976421741\n452,1975,0.5,1077114303\n452,1977,1.0,978405647\n452,1985,0.5,1077114276\n452,1994,4.0,976423835\n452,1997,4.0,1002941559\n452,2000,3.0,976421986\n452,2001,2.5,1077114590\n452,2003,3.0,976422347\n452,2007,2.0,976423243\n452,2011,3.0,976422326\n452,2012,3.0,976426378\n452,2013,3.5,1077114599\n452,2020,4.0,1002940671\n452,2022,3.0,1067732238\n452,2023,4.0,976418975\n452,2025,3.0,976420498\n452,2028,4.0,976418939\n452,2045,3.0,976420715\n452,2054,3.0,1015029818\n452,2058,3.0,976424048\n452,2059,2.0,976420715\n452,2064,4.0,989111783\n452,2065,3.0,976421601\n452,2067,3.0,1133735670\n452,2070,4.0,1002940686\n452,2071,5.0,976419929\n452,2080,4.0,976421889\n452,2094,2.5,1077115620\n452,2100,3.0,976422122\n452,2106,3.0,976426161\n452,2108,4.0,976421798\n452,2110,3.0,976421580\n452,2112,3.0,976420133\n452,2115,3.0,976424798\n452,2118,3.0,976423954\n452,2120,1.0,976420886\n452,2121,3.0,976424511\n452,2125,3.0,976419733\n452,2126,3.0,976424493\n452,2130,3.5,1133735978\n452,2132,5.0,1002940655\n452,2144,4.0,1077114605\n452,2145,3.0,976422396\n452,2155,2.0,976427064\n452,2160,3.0,976423863\n452,2166,3.0,976426047\n452,2176,3.0,989111029\n452,2180,3.0,976424272\n452,2194,4.0,1002940655\n452,2231,3.0,976420234\n452,2237,3.0,976419866\n452,2243,4.0,976421815\n452,2245,4.0,1048089901\n452,2248,3.0,976421517\n452,2249,3.0,976422582\n452,2250,3.0,976420610\n452,2259,1.0,976423300\n452,2268,5.0,976419689\n452,2269,2.0,976421101\n452,2272,3.0,1133735115\n452,2276,3.0,976419754\n452,2289,5.0,976419552\n452,2290,3.0,976422209\n452,2291,3.0,976419777\n452,2294,3.0,976426015\n452,2297,3.0,976420837\n452,2300,4.0,976421377\n452,2302,4.0,976425924\n452,2303,3.0,1002941030\n452,2306,2.0,976423300\n452,2312,4.0,1067731855\n452,2313,4.0,1002940480\n452,2314,4.0,976420977\n452,2316,2.0,976427093\n452,2318,5.0,976421652\n452,2320,2.0,976420474\n452,2321,5.0,976425488\n452,2324,5.0,976419689\n452,2329,4.0,976419552\n452,2331,3.0,976422542\n452,2333,3.0,1002940532\n452,2334,3.0,976424048\n452,2336,4.0,976419689\n452,2338,1.5,1077114883\n452,2346,3.0,1048089893\n452,2352,4.0,976421652\n452,2353,3.0,976423954\n452,2355,4.0,976421678\n452,2357,4.0,976419417\n452,2359,4.0,976421517\n452,2369,1.0,976422396\n452,2375,1.0,976423017\n452,2379,0.5,1077114268\n452,2384,3.0,1077115617\n452,2385,2.0,976422942\n452,2386,1.0,976421274\n452,2391,4.0,976423694\n452,2395,3.0,989112297\n452,2396,5.0,976421494\n452,2398,3.5,1077114238\n452,2416,1.0,976422483\n452,2417,3.0,976422522\n452,2419,3.0,976424272\n452,2424,3.0,976421889\n452,2432,3.0,976420431\n452,2433,3.0,976420474\n452,2434,4.0,976420764\n452,2439,4.0,1002940891\n452,2442,4.0,976419799\n452,2446,2.0,976424424\n452,2453,3.5,1077114283\n452,2463,3.5,1077114595\n452,2469,4.0,976422209\n452,2470,2.0,1002938285\n452,2478,2.0,1048089899\n452,2490,2.0,976424354\n452,2496,2.0,976422326\n452,2497,2.0,976426572\n452,2502,3.0,1067732063\n452,2504,3.0,976421076\n452,2505,1.5,1077114242\n452,2521,2.0,1016590228\n452,2527,3.0,976424003\n452,2539,3.0,976422473\n452,2541,3.0,976420942\n452,2542,3.0,1133735827\n452,2546,3.0,976420414\n452,2558,2.0,976422962\n452,2561,3.0,976426512\n452,2565,3.0,1077114837\n452,2567,3.0,976422582\n452,2571,2.0,976423675\n452,2572,2.0,978405160\n452,2580,4.0,976425349\n452,2583,3.0,976425998\n452,2594,4.0,976425154\n452,2598,3.0,976422890\n452,2599,4.0,976421392\n452,2600,2.0,976425806\n452,2605,2.0,976424301\n452,2611,3.0,976419992\n452,2612,3.0,1002940225\n452,2621,3.5,1077115292\n452,2639,2.0,996875902\n452,2640,3.0,1077115585\n452,2664,4.0,1133735545\n452,2670,3.5,1067732267\n452,2671,4.0,976422042\n452,2682,4.0,976425446\n452,2683,3.0,976422783\n452,2688,3.0,976421014\n452,2692,5.0,976425100\n452,2693,3.0,989111783\n452,2699,3.0,976422623\n452,2700,3.0,976421693\n452,2706,2.0,989112609\n452,2707,3.0,976424071\n452,2710,1.0,976426210\n452,2712,3.0,1077115594\n452,2713,1.0,976424583\n452,2716,4.0,976421580\n452,2717,2.0,1077114588\n452,2718,4.0,976420184\n452,2722,2.0,976424339\n452,2724,3.0,976422783\n452,2725,4.0,976419622\n452,2729,1.5,1133735950\n452,2736,2.0,1077114262\n452,2739,4.0,1002940906\n452,2750,3.0,976421911\n452,2752,3.0,976423017\n452,2757,4.0,1067732247\n452,2759,3.0,976422042\n452,2762,5.0,976423656\n452,2770,3.0,976422186\n452,2779,4.0,976422019\n452,2788,4.0,989112202\n452,2791,4.0,1067732230\n452,2797,4.0,976421911\n452,2803,3.0,976424143\n452,2804,5.0,976421332\n452,2805,2.0,976423128\n452,2806,1.0,976423277\n452,2812,3.0,976423977\n452,2827,3.0,1006656786\n452,2829,3.0,976420993\n452,2852,3.5,1067731810\n452,2856,3.0,976423835\n452,2858,5.0,976419417\n452,2861,3.0,976422740\n452,2863,3.5,1133735851\n452,2866,4.0,1002940767\n452,2870,3.0,1077114830\n452,2871,4.0,976423753\n452,2875,4.0,976420715\n452,2881,2.0,976424339\n452,2906,2.0,1048089897\n452,2908,4.0,976419689\n452,2915,4.0,976421741\n452,2916,3.0,976423863\n452,2917,3.5,1133735438\n452,2918,5.0,976421494\n452,2926,3.0,1040499592\n452,2929,3.0,1133735617\n452,2930,3.5,1151810316\n452,2944,3.0,1133735221\n452,2947,3.5,1067732220\n452,2948,2.5,1133735524\n452,2950,0.5,1077114841\n452,2951,1.0,1067732260\n452,2956,3.0,976424099\n452,2959,2.0,976425267\n452,2961,3.0,1077114819\n452,2966,4.0,1067732304\n452,2973,5.0,976421350\n452,2987,3.0,976424702\n452,2997,3.0,989112131\n452,3006,4.0,1002940311\n452,3011,4.0,1002941091\n452,3015,2.0,976423977\n452,3019,3.0,1002940548\n452,3034,4.0,976418939\n452,3037,4.0,976421718\n452,3039,3.0,1077115598\n452,3044,3.0,976425666\n452,3052,3.0,989112719\n452,3062,4.0,1002940480\n452,3066,3.0,1016590417\n452,3068,4.0,1002940225\n452,3069,4.0,1002940655\n452,3072,3.0,976421678\n452,3077,4.0,976425238\n452,3088,4.0,976421472\n452,3097,3.0,1040499503\n452,3098,3.0,989111029\n452,3099,3.0,976422396\n452,3100,3.0,976425267\n452,3101,4.0,976424003\n452,3103,2.0,976421122\n452,3104,4.0,976421678\n452,3105,4.0,976419824\n452,3106,3.0,976420217\n452,3108,4.0,976419972\n452,3111,4.0,1005425664\n452,3114,3.0,1133735286\n452,3130,2.0,976423199\n452,3135,4.0,1002940709\n452,3146,1.0,976423128\n452,3147,4.0,1002940532\n452,3152,4.0,1002940512\n452,3167,4.5,1077114810\n452,3168,3.0,976424722\n452,3169,3.5,1067732252\n452,3173,2.0,1002938319\n452,3174,4.5,1077114561\n452,3175,3.0,978405357\n452,3176,4.0,976419929\n452,3182,4.0,989111367\n452,3186,4.0,976426410\n452,3189,3.0,983405457\n452,3194,3.5,1077114788\n452,3198,4.0,1016590228\n452,3200,4.0,989112264\n452,3201,4.0,1002940618\n452,3203,2.0,976423928\n452,3204,3.0,976423863\n452,3210,3.0,989112409\n452,3219,3.0,976424026\n452,3244,3.0,976422231\n452,3246,5.0,976420037\n452,3247,2.0,976422801\n452,3249,3.0,976426494\n452,3250,3.0,976425666\n452,3253,3.0,976421601\n452,3255,5.0,976419824\n452,3256,3.0,976423977\n452,3257,2.0,976421076\n452,3258,2.0,976423128\n452,3260,4.0,976425416\n452,3263,3.0,976422347\n452,3269,2.0,976424846\n452,3272,4.0,1008975127\n452,3274,2.0,976426314\n452,3289,4.0,1008976167\n452,3296,3.5,1067731835\n452,3298,3.0,1008975723\n452,3299,0.5,1151812365\n452,3301,4.0,1048089891\n452,3307,2.5,1133734748\n452,3310,3.5,1067732106\n452,3316,0.5,1151812196\n452,3317,5.0,976419241\n452,3326,2.0,1048089889\n452,3334,4.0,989111914\n452,3347,4.0,1002940494\n452,3350,4.0,1067731807\n452,3358,3.0,976421815\n452,3359,4.0,1002940287\n452,3360,4.0,1002940409\n452,3361,4.0,976421450\n452,3362,5.0,976421377\n452,3363,5.0,976421778\n452,3365,2.0,1002938163\n452,3371,3.5,1077115578\n452,3379,4.0,1002940363\n452,3386,3.0,976425703\n452,3392,1.0,976423176\n452,3405,2.5,1133735096\n452,3408,3.0,983405332\n452,3409,2.5,1151811867\n452,3412,4.0,976424812\n452,3420,4.0,976424143\n452,3421,4.0,978405215\n452,3424,3.5,1133735589\n452,3435,4.0,989111896\n452,3436,2.0,976421196\n452,3445,2.0,976423863\n452,3448,3.0,976421944\n452,3449,3.0,1077115573\n452,3450,2.0,976422371\n452,3451,4.0,976421430\n452,3457,3.0,1077115255\n452,3461,2.5,1133735268\n452,3467,4.0,1077114298\n452,3468,4.0,1067731698\n452,3469,4.5,1077114780\n452,3471,5.0,1002940709\n452,3476,3.0,976423928\n452,3481,5.0,978404762\n452,3498,4.0,1002940574\n452,3499,4.0,976425539\n452,3501,3.0,976421969\n452,3502,4.0,976420886\n452,3504,5.0,976421408\n452,3505,3.0,976423883\n452,3507,3.5,1133734987\n452,3510,3.5,1067732136\n452,3512,3.0,983405457\n452,3513,3.0,994377925\n452,3515,3.0,989111473\n452,3516,4.0,976421741\n452,3526,5.0,976421601\n452,3528,1.0,976420905\n452,3534,3.0,983405551\n452,3535,2.0,989111491\n452,3543,5.0,976421494\n452,3545,3.0,1002941597\n452,3546,3.0,976424026\n452,3548,3.0,976421430\n452,3551,4.0,976423780\n452,3552,2.0,976421969\n452,3555,4.0,978404826\n452,3556,2.0,1133735578\n452,3565,2.0,1151811848\n452,3578,4.0,978404762\n452,3579,3.0,989110733\n452,3581,3.5,1151811331\n452,3591,3.0,976422019\n452,3609,4.5,1133734867\n452,3614,3.0,976422326\n452,3623,3.0,1008976192\n452,3634,4.0,976423641\n452,3635,2.0,1040499703\n452,3646,1.0,1002938966\n452,3653,3.0,1067732124\n452,3655,4.0,1002939818\n452,3668,4.5,1077114783\n452,3671,4.0,976421517\n452,3683,4.0,1002938163\n452,3684,3.0,1077114796\n452,3685,3.0,989112279\n452,3686,3.0,976424209\n452,3699,3.5,1133735680\n452,3706,2.0,976424003\n452,3712,3.0,976422279\n452,3713,4.0,976419799\n452,3717,1.0,983405576\n452,3724,5.0,1067732179\n452,3726,3.5,1077114366\n452,3728,3.0,976423753\n452,3730,4.0,1002940409\n452,3733,4.0,1002940655\n452,3734,3.5,1133735413\n452,3735,4.0,1002940225\n452,3738,4.0,1077114356\n452,3741,4.0,1002940655\n452,3747,3.0,1008975059\n452,3751,3.0,994285588\n452,3753,3.0,983405457\n452,3755,4.0,978404826\n452,3763,2.0,1077114245\n452,3783,4.0,1011922168\n452,3784,3.0,983405596\n452,3788,4.0,1016590228\n452,3789,4.0,1002940363\n452,3793,1.0,978405473\n452,3798,2.0,983405457\n452,3799,1.0,978405647\n452,3801,3.0,1133735382\n452,3809,3.0,1048089887\n452,3810,2.0,976424405\n452,3812,3.0,976422697\n452,3813,3.0,1002940959\n452,3814,3.5,1133735539\n452,3824,1.0,976419314\n452,3826,2.0,1151812218\n452,3831,3.0,983405375\n452,3844,4.0,1077114768\n452,3859,3.5,1133735777\n452,3861,2.0,994377925\n452,3864,1.0,978405647\n452,3868,3.0,976421630\n452,3871,4.0,1067732316\n452,3893,3.0,976419094\n452,3897,5.0,989110975\n452,3910,2.0,1133735946\n452,3911,5.0,976419064\n452,3915,3.0,1002938477\n452,3916,3.5,1067732120\n452,3948,3.0,1008975059\n452,3949,4.0,1002939121\n452,3950,3.0,1002940927\n452,3951,3.5,1077115537\n452,3952,3.0,989110784\n452,3953,2.0,1044681111\n452,3957,1.0,978405621\n452,3967,5.0,976419064\n452,3969,2.0,1151811667\n452,3973,1.0,983405551\n452,3977,1.0,989111182\n452,3978,4.0,976419260\n452,3979,1.0,989111219\n452,3980,4.0,976419133\n452,3983,4.0,1002939098\n452,3987,4.0,976419133\n452,3988,1.0,978404955\n452,3989,5.0,976427884\n452,3990,1.0,983405576\n452,3993,3.0,1002939142\n452,3994,5.0,976419064\n452,3996,5.0,989111340\n452,3998,3.0,976428220\n452,3999,1.5,1151812159\n452,4007,3.5,1067731816\n452,4008,4.5,1067732199\n452,4014,3.0,1002941369\n452,4017,4.0,1008975059\n452,4018,3.0,1077114571\n452,4019,3.0,1151811068\n452,4020,3.0,1002938251\n452,4022,4.0,978404740\n452,4023,3.0,1077114556\n452,4025,1.5,1151811810\n452,4027,4.0,1002939075\n452,4029,4.0,983405375\n452,4031,2.5,1151812061\n452,4033,4.0,996875693\n452,4034,4.0,996875507\n452,4037,3.0,978405416\n452,4056,3.0,983405491\n452,4061,4.0,1002940874\n452,4062,4.0,989112544\n452,4069,1.0,1151812174\n452,4077,4.0,1016590660\n452,4080,3.0,989111163\n452,4086,4.0,1002941007\n452,4103,3.0,1133735000\n452,4109,1.0,989111285\n452,4116,1.5,1133735621\n452,4117,3.5,1133735470\n452,4136,2.0,1133734764\n452,4148,2.0,985305568\n452,4149,2.0,1002938399\n452,4155,1.0,1151812137\n452,4161,2.0,1002938335\n452,4162,1.0,989111656\n452,4167,2.5,1151811936\n452,4171,4.0,1133734654\n452,4174,4.0,989110944\n452,4186,3.0,989111029\n452,4187,4.0,1067731996\n452,4191,4.0,989110944\n452,4205,2.0,989111123\n452,4210,3.0,1133735467\n452,4211,4.0,989110975\n452,4214,1.0,989111139\n452,4215,1.0,989111285\n452,4216,4.0,1002940225\n452,4217,4.5,1067731988\n452,4218,4.0,1133735752\n452,4223,4.0,985305352\n452,4225,2.0,1133734926\n452,4226,5.0,1005425532\n452,4235,3.0,1011922097\n452,4237,3.0,1077115545\n452,4239,3.0,1008975762\n452,4246,3.0,1005425532\n452,4255,1.0,989111639\n452,4262,3.0,1133735378\n452,4263,4.0,1002940455\n452,4265,1.0,989111422\n452,4273,4.0,1011921989\n452,4274,3.0,989111163\n452,4276,3.0,989111123\n452,4277,3.5,1077115169\n452,4279,4.0,989111059\n452,4280,4.0,989112440\n452,4290,2.0,989111219\n452,4292,4.0,989110975\n452,4300,3.0,1133735266\n452,4304,3.0,1044681166\n452,4306,4.0,994285437\n452,4308,3.0,1151811257\n452,4310,1.5,1151812104\n452,4318,3.5,1077115143\n452,4322,4.0,1002940976\n452,4326,4.0,1002940480\n452,4334,4.0,1002939191\n452,4343,1.5,1151812168\n452,4344,3.0,1008976271\n452,4345,3.0,1044681084\n452,4359,4.0,1077114760\n452,4361,4.0,996875507\n452,4370,4.0,994285511\n452,4371,3.0,1008976132\n452,4372,3.0,1077114720\n452,4378,4.0,1067732338\n452,4427,4.0,1002939253\n452,4447,3.0,1008976192\n452,4450,4.0,1019314991\n452,4464,4.0,1077114739\n452,4465,4.0,1067731731\n452,4482,2.0,1077115176\n452,4486,2.5,1077115149\n452,4488,3.0,1002938285\n452,4499,2.5,1077114736\n452,4503,3.0,1077115514\n452,4508,3.5,1077115178\n452,4520,0.5,1077115158\n452,4537,4.5,1077115145\n452,4557,3.0,1133734919\n452,4571,3.0,1008974990\n452,4577,4.0,1008974990\n452,4638,1.0,1151812116\n452,4639,3.0,1002938659\n452,4641,4.0,1067732115\n452,4644,3.5,1151810913\n452,4670,2.5,1077115095\n452,4675,2.0,1077115138\n452,4686,0.5,1077114328\n452,4690,3.5,1077115128\n452,4703,3.0,1002938231\n452,4723,4.0,1044681084\n452,4727,0.5,1151812120\n452,4737,3.5,1151811186\n452,4769,4.0,1067731980\n452,4776,3.0,1151811136\n452,4787,3.0,1002938090\n452,4799,3.0,1002938072\n452,4803,3.0,1002938072\n452,4809,4.0,1002938052\n452,4810,4.0,1005425727\n452,4814,2.0,1151811963\n452,4815,3.0,1002938030\n452,4816,3.0,1151811768\n452,4835,2.5,1067732077\n452,4836,3.0,1002937999\n452,4851,4.0,1002937980\n452,4855,3.0,1002938231\n452,4862,2.0,1002937954\n452,4866,2.0,1044681131\n452,4867,3.5,1077114749\n452,4874,3.0,1044681111\n452,4880,4.0,1008975880\n452,4881,5.0,1044681131\n452,4885,2.5,1077115090\n452,4890,2.0,1151811859\n452,4903,5.0,1044681111\n452,4912,2.5,1133735678\n452,4921,2.5,1133734887\n452,4925,3.0,1008974990\n452,4932,3.5,1077115122\n452,4947,3.0,1008974990\n452,4963,3.0,1044681166\n452,4965,4.0,1044681084\n452,4967,5.0,1019314518\n452,4971,3.5,1077115125\n452,4973,5.0,1044681084\n452,4975,2.0,1151811548\n452,4979,3.0,1067732160\n452,4995,4.0,1044681084\n452,5008,4.0,1112044801\n452,5009,3.0,1077114287\n452,5010,3.0,1044681084\n452,5013,4.0,1067732187\n452,5014,2.5,1151811347\n452,5015,4.0,1019314518\n452,5016,3.0,1151811485\n452,5021,4.0,1077115132\n452,5023,4.0,1008974914\n452,5051,2.5,1151811271\n452,5060,5.0,1011922024\n452,5065,2.5,1077114746\n452,5073,4.0,1077115119\n452,5108,2.0,1151811743\n452,5120,4.0,1067732004\n452,5127,2.0,1151812014\n452,5135,3.0,1040499565\n452,5152,4.0,1077114724\n452,5186,2.0,1016590142\n452,5225,4.0,1067732284\n452,5237,2.0,1016590052\n452,5238,4.5,1077115487\n452,5241,2.0,1016590052\n452,5246,1.0,1016590031\n452,5247,1.0,1016590031\n452,5248,1.0,1016590031\n452,5266,4.0,1044681166\n452,5292,4.0,1019314780\n452,5293,3.0,1044681084\n452,5294,3.0,1040499592\n452,5299,4.5,1067732217\n452,5308,3.0,1019314713\n452,5309,3.0,1019314713\n452,5312,2.5,1151811875\n452,5341,4.0,1019314658\n452,5353,2.0,1019314625\n452,5354,3.0,1019314625\n452,5360,2.0,1019314625\n452,5364,2.5,1151811461\n452,5377,3.5,1067731794\n452,5379,4.5,1067731824\n452,5385,3.0,1067732088\n452,5388,3.0,1040499524\n452,5398,4.0,1067731708\n452,5415,1.5,1151812099\n452,5418,3.5,1077114405\n452,5445,4.0,1067732067\n452,5446,4.0,1133735217\n452,5447,3.0,1151811227\n452,5452,1.5,1077114294\n452,5459,2.5,1077114410\n452,5462,1.0,1040499760\n452,5464,4.0,1067731792\n452,5479,3.5,1077114731\n452,5481,3.0,1151811883\n452,5483,2.5,1133735449\n452,5502,4.0,1151811524\n452,5505,3.5,1133735304\n452,5528,3.0,1151811192\n452,5544,4.5,1077115081\n452,5581,2.0,1077115438\n452,5617,2.5,1133735277\n452,5619,3.5,1133735291\n452,5620,2.5,1151811952\n452,5625,3.0,1151811096\n452,5642,4.0,1040499703\n452,5666,0.5,1151811660\n452,5667,2.5,1077115029\n452,5668,3.0,1151811152\n452,5669,5.0,1067731943\n452,5673,2.5,1151811103\n452,5680,3.0,1151811430\n452,5693,3.0,1077114668\n452,5707,3.5,1133736073\n452,5747,4.5,1133735090\n452,5782,4.0,1133735161\n452,5787,2.0,1151812145\n452,5799,4.0,1040499703\n452,5801,4.5,1067732152\n452,5812,4.0,1067732205\n452,5815,1.0,1044681375\n452,5816,1.0,1044681319\n452,5832,1.0,1044681375\n452,5867,3.0,1133735107\n452,5874,1.0,1044681351\n452,5876,4.5,1067731838\n452,5878,4.0,1067732279\n452,5879,1.0,1044681375\n452,5881,2.0,1151811616\n452,5900,1.0,1044681351\n452,5902,3.0,1133735227\n452,5923,2.5,1077115399\n452,5942,1.0,1044681375\n452,5943,1.0,1044681335\n452,5945,4.0,1151811014\n452,5952,1.0,1044681274\n452,5954,4.0,1133735062\n452,5955,3.5,1151810970\n452,5956,3.0,1151811178\n452,5957,2.0,1077114708\n452,5963,3.5,1067731725\n452,5989,4.0,1133735049\n452,5991,3.5,1133735607\n452,5992,2.0,1133735355\n452,5995,4.0,1151810825\n452,6001,3.0,1040499503\n452,6003,3.0,1151811075\n452,6013,1.0,1044681375\n452,6016,4.0,1133734637\n452,6058,2.0,1151812020\n452,6101,4.0,1133735113\n452,6170,4.0,1133734978\n452,6178,3.0,1067731715\n452,6187,3.0,1151811371\n452,6188,3.0,1151811359\n452,6218,4.0,1133735295\n452,6269,3.5,1112044714\n452,6281,3.0,1151811532\n452,6287,1.5,1151811983\n452,6296,3.0,1133735495\n452,6299,5.0,1077115021\n452,6305,3.5,1133735651\n452,6323,3.0,1151811297\n452,6335,1.5,1133735804\n452,6337,4.0,1151811100\n452,6377,4.0,1133734908\n452,6378,3.5,1077114703\n452,6380,3.5,1133735533\n452,6385,3.5,1133735157\n452,6413,4.0,1077114389\n452,6428,1.0,1133735391\n452,6436,3.5,1067731787\n452,6440,4.0,1067732300\n452,6448,3.5,1133735118\n452,6449,4.0,1067731802\n452,6450,0.5,1067731764\n452,6452,3.5,1067731772\n452,6454,3.5,1133734881\n452,6461,4.0,1067731777\n452,6466,3.5,1133735558\n452,6502,3.5,1133735599\n452,6533,3.5,1077115017\n452,6535,0.5,1151812359\n452,6539,4.0,1151811049\n452,6552,3.5,1133735182\n452,6561,4.0,1077114324\n452,6565,3.5,1133735104\n452,6591,3.5,1151810937\n452,6592,2.0,1151811477\n452,6639,4.0,1067731756\n452,6678,2.0,1077115366\n452,6708,3.5,1151810482\n452,6711,3.5,1133735307\n452,6724,4.0,1067731721\n452,6751,0.5,1151812316\n452,6765,2.5,1151811593\n452,6770,3.5,1133735405\n452,6777,4.0,1133734828\n452,6779,3.5,1077115370\n452,6786,3.5,1133735204\n452,6787,5.0,1077115004\n452,6790,4.0,1151811205\n452,6794,2.5,1077115373\n452,6796,3.5,1067731984\n452,6810,3.0,1077114962\n452,6832,4.0,1077114974\n452,6840,3.5,1133735556\n452,6852,4.0,1067731712\n452,6870,4.0,1112044787\n452,6873,3.5,1151811495\n452,6879,2.5,1151811417\n452,6881,3.5,1133735025\n452,6885,1.0,1151812189\n452,6887,3.0,1151811385\n452,6890,4.0,1151811081\n452,6892,2.5,1151812069\n452,6896,3.5,1133736008\n452,6927,3.5,1151811719\n452,6932,2.0,1133734890\n452,6942,3.0,1133735683\n452,6945,3.0,1151810871\n452,6947,3.5,1133735462\n452,6950,2.5,1151811708\n452,6957,3.0,1151811264\n452,6963,4.0,1112045101\n452,6970,3.0,1133734790\n452,6979,3.5,1133735017\n452,6993,4.0,1077114379\n452,7001,3.0,1133735408\n452,7004,3.0,1077114989\n452,7008,2.0,1077115342\n452,7025,3.5,1112045086\n452,7060,3.0,1077114533\n452,7076,1.5,1133735384\n452,7084,3.5,1133735416\n452,7089,3.5,1133735793\n452,7091,3.5,1112044805\n452,7095,2.5,1077115348\n452,7096,5.0,1133735892\n452,7137,4.5,1133735429\n452,7139,4.0,1133734874\n452,7149,2.5,1151811410\n452,7151,3.0,1151811027\n452,7154,3.0,1151811779\n452,7156,3.5,1133735360\n452,7160,4.0,1133734939\n452,7162,2.5,1151811170\n452,7173,2.0,1151811969\n452,7215,4.5,1133735192\n452,7217,3.5,1133735032\n452,7223,2.5,1133735510\n452,7255,1.5,1151811947\n452,7256,3.5,1151810416\n452,7285,4.0,1133735134\n452,7294,1.5,1151812252\n452,7303,3.0,1112045092\n452,7334,3.5,1133735213\n452,7366,1.0,1151811824\n452,7381,1.5,1151812306\n452,7445,3.0,1151811285\n452,7449,1.5,1151812301\n452,7450,2.0,1151811981\n452,7478,3.5,1112044833\n452,7493,4.0,1133734796\n452,7560,3.5,1133734626\n452,7572,4.0,1112045084\n452,7584,3.0,1133734847\n452,7614,3.0,1133735704\n452,7619,3.5,1133734823\n452,7698,4.5,1133734835\n452,7705,3.5,1133734899\n452,7728,2.5,1133735237\n452,7836,3.5,1133735386\n452,7980,2.5,1133734937\n452,8011,3.5,1133734912\n452,8039,3.5,1133735224\n452,8128,4.5,1133735176\n452,8147,4.0,1112045081\n452,8191,4.5,1133734813\n452,8228,5.0,1133734650\n452,8332,3.5,1133735660\n452,8337,3.5,1133734998\n452,8361,3.5,1151811918\n452,8362,2.5,1151811990\n452,8373,1.0,1151812177\n452,8464,3.5,1133734981\n452,8529,2.0,1151811328\n452,8582,3.5,1151810600\n452,8610,3.0,1133735084\n452,8622,4.0,1133735196\n452,8641,3.0,1151811724\n452,8645,3.5,1151810353\n452,8665,3.5,1151811127\n452,8753,4.0,1112045210\n452,8781,2.5,1151811453\n452,8783,2.0,1151811732\n452,8784,4.5,1151810512\n452,8827,3.0,1133736063\n452,8838,3.0,1133735004\n452,8860,2.0,1151811681\n452,8870,2.5,1151811932\n452,8880,3.5,1133734995\n452,8916,3.0,1151811648\n452,8949,2.0,1133735128\n452,8958,4.0,1133735037\n452,8966,3.5,1151810963\n452,8969,2.0,1151812113\n452,8981,4.0,1133735371\n452,8984,2.0,1151811796\n452,8987,4.0,1151811322\n452,9018,3.5,1133735592\n452,25891,2.5,1133734820\n452,26084,4.0,1133735737\n452,26085,3.0,1133734760\n452,26178,3.5,1151810563\n452,26242,3.5,1151810367\n452,27808,3.0,1151811281\n452,27821,3.0,1151811440\n452,27822,3.0,1151811568\n452,27878,3.5,1151810928\n452,30707,3.5,1151810933\n452,30749,4.0,1133734809\n452,30810,1.5,1151811236\n452,30812,3.0,1151810959\n452,30816,3.0,1151811376\n452,30825,3.0,1151811880\n452,30894,2.0,1151812280\n452,30898,2.5,1151811397\n452,31035,4.5,1112044704\n452,31700,2.5,1151811898\n452,32029,2.0,1151811380\n452,32296,0.5,1151812222\n452,32369,3.0,1133734933\n452,33499,2.0,1151812243\n452,33669,3.0,1151811753\n452,34153,3.5,1151810949\n452,34542,3.5,1151811000\n452,36527,3.0,1133735170\n452,37741,4.5,1151810920\n452,39183,4.5,1151810945\n452,39292,5.0,1151810345\n452,40819,4.0,1151810329\n452,41569,4.0,1151811163\n453,44,4.0,994622468\n453,153,5.0,994622468\n453,173,3.0,994621919\n453,181,2.0,994622648\n453,185,5.0,994621902\n453,256,3.0,994621948\n453,258,4.0,994622032\n453,303,4.0,994622486\n453,317,3.0,994621552\n453,349,5.0,994622258\n453,368,5.0,994622258\n453,393,3.0,994622561\n453,435,3.0,994621902\n453,457,5.0,994622160\n453,480,3.0,994622184\n453,502,3.0,994622692\n453,552,3.0,994622360\n453,558,2.0,994622582\n453,589,4.0,994622141\n453,688,3.0,994622627\n453,694,2.0,994622627\n453,736,4.0,994622424\n453,737,3.0,994622032\n453,780,4.0,994621794\n453,1097,3.0,994621552\n453,1100,3.0,994622282\n453,1356,5.0,994621794\n453,1377,3.0,994622282\n453,1391,3.0,994622529\n453,1396,4.0,994621822\n453,1431,3.0,994622599\n453,1527,5.0,994621794\n453,1562,4.0,994622627\n453,1566,4.0,994621552\n453,1573,3.0,994621769\n453,1580,5.0,994622203\n453,1610,2.0,994622160\n453,1681,4.0,994622648\n453,1687,3.0,994622424\n453,1792,4.0,994622424\n453,1801,5.0,994622529\n453,1833,4.0,994622399\n453,1882,2.0,994622002\n453,1917,3.0,994621879\n453,1918,5.0,994622399\n453,2002,4.0,994622360\n453,2006,3.0,994622258\n453,2012,5.0,994621861\n453,2028,3.0,994622141\n453,2053,2.0,994622002\n453,2153,2.0,994622692\n453,2273,4.0,994622332\n453,2321,4.0,994621575\n453,2353,5.0,994622203\n453,2393,4.0,994622379\n453,2398,3.0,994621575\n453,2498,3.0,994622002\n453,2571,5.0,994621769\n453,2617,4.0,994622235\n453,2628,3.0,994621842\n453,2701,5.0,994622002\n453,2720,3.0,994622664\n453,2916,4.0,994621794\n453,3000,4.0,994622141\n453,3175,4.0,994621810\n453,3256,5.0,994622184\n453,3268,3.0,994622627\n453,3354,3.0,994622099\n453,3438,3.0,994622446\n453,3578,3.0,994622751\n453,3623,2.0,994622751\n453,3624,3.0,994622751\n453,3717,3.0,994622783\n453,3745,4.0,994622079\n453,3753,4.0,994622751\n453,3755,2.0,994622783\n453,3793,5.0,994622079\n453,3827,3.0,994622079\n453,3864,2.0,994622850\n453,3977,3.0,994622783\n453,3994,5.0,994622079\n453,3996,5.0,994622751\n453,3999,2.0,994622783\n453,4025,4.0,994622783\n453,4270,3.0,994621685\n453,4310,4.0,994621685\n454,50,5.0,1463382448\n454,260,5.0,1463382580\n454,293,5.0,1463382581\n454,296,5.0,1463382559\n454,318,4.0,1463382447\n454,593,4.0,1463382464\n454,608,5.0,1463382596\n454,750,3.0,1463382587\n454,858,5.0,1463382450\n454,1089,5.0,1463382590\n454,1193,5.0,1463382557\n454,1196,5.0,1463382573\n454,1201,5.0,1463382594\n454,1213,3.5,1463382468\n454,1221,5.0,1463382462\n454,2028,3.0,1463382596\n454,2329,3.5,1463382569\n454,2542,5.0,1463382521\n454,2571,4.0,1463382562\n454,2858,5.0,1463382576\n454,2959,5.0,1463382489\n454,3994,3.0,1463382532\n454,5995,5.0,1463382592\n454,6016,5.0,1463382563\n454,58559,5.0,1463382574\n454,79132,5.0,1463382582\n454,92259,3.5,1463382567\n455,1,3.5,1110395566\n455,47,4.5,1110395657\n455,145,3.0,1110395177\n455,165,3.5,1110395626\n455,296,4.0,1110395545\n455,344,4.5,1110395610\n455,356,3.5,1110395574\n455,364,3.5,1110395661\n455,377,3.5,1110395618\n455,457,4.0,1110395550\n455,480,5.0,1110395546\n455,520,3.5,1110395122\n455,589,4.5,1110395562\n455,592,4.0,1110395552\n455,648,4.0,1110395604\n455,673,2.5,1110395285\n455,736,4.0,1110395653\n455,780,4.5,1110395565\n455,1060,2.5,1110395232\n455,1092,4.0,1110395218\n455,1909,3.5,1110395203\n455,2167,3.5,1110395274\n455,2194,3.5,1110395129\n455,2329,4.5,1110395258\n455,2470,3.5,1110395248\n455,2502,4.0,1110395125\n455,3147,3.0,1110395141\n455,3160,0.5,1110395263\n455,3623,3.5,1110395168\n455,5445,4.0,1110395191\n455,5952,4.5,1110395149\n456,1,3.5,1432307903\n456,260,5.0,1432307935\n456,356,4.0,1432307893\n456,480,4.5,1432307901\n456,593,3.5,1432307916\n456,1196,4.0,1432308080\n456,1198,4.5,1432308011\n456,1210,4.5,1432308054\n456,1270,4.5,1432307891\n456,1291,4.5,1432308076\n456,2571,5.0,1432307886\n456,2692,4.0,1432309001\n456,3578,4.0,1432308166\n456,3702,4.0,1432308459\n456,3703,5.0,1432308480\n456,3704,2.5,1432308468\n456,3717,3.5,1432308374\n456,3793,4.0,1432308173\n456,3977,3.0,1432308273\n456,3996,4.5,1432308178\n456,4306,3.5,1432308168\n456,4886,3.5,1432308193\n456,4896,3.0,1432308260\n456,4963,4.5,1432308231\n456,4973,5.0,1432308190\n456,4993,4.0,1432308064\n456,4995,3.5,1432308239\n456,5349,3.5,1432308227\n456,5378,3.0,1432308277\n456,5418,3.0,1432308218\n456,5445,4.0,1432308197\n456,5459,3.5,1432308376\n456,5618,4.0,1432308293\n456,5903,5.0,1432308581\n456,5952,4.0,1432308073\n456,6350,4.0,1432332110\n456,6365,4.5,1432308271\n456,6377,3.5,1432308215\n456,6537,3.0,1432308420\n456,6539,4.0,1432308181\n456,6874,3.5,1432308219\n456,6934,4.0,1432308313\n456,7099,3.5,1432308955\n456,7143,4.0,1432308343\n456,7153,4.0,1432308061\n456,7438,3.5,1432308251\n456,8368,3.0,1432308300\n456,8644,4.0,1432308396\n456,8665,3.5,1432308295\n456,31658,4.0,1432332023\n456,33493,3.5,1432308317\n456,33794,3.5,1432308256\n456,44191,5.0,1432308597\n456,45722,4.0,1432308389\n456,58559,4.0,1432308059\n456,59315,4.0,1432308304\n456,70286,1.5,1432308441\n456,72998,4.0,1432308351\n456,73017,4.0,1432331631\n456,79132,3.0,1432308520\n456,91529,4.0,1432331743\n456,106471,5.0,1432332106\n456,106473,3.5,1432309050\n456,106762,4.0,1432308943\n456,107081,4.5,1432308937\n456,122882,4.0,1432308476\n456,130448,0.5,1432331602\n457,1,1.5,1471386200\n457,3,1.5,1471385241\n457,5,1.0,1471385747\n457,6,3.0,1471386884\n457,10,2.0,1471385100\n457,16,3.5,1471386880\n457,18,2.5,1471388600\n457,19,1.5,1471387811\n457,20,2.5,1471578972\n457,31,1.5,1471385561\n457,32,3.0,1471384581\n457,34,1.0,1471386491\n457,39,2.0,1471386519\n457,45,3.0,1471383926\n457,47,4.5,1471384576\n457,50,3.0,1471383313\n457,70,3.0,1471383662\n457,88,2.5,1471385106\n457,97,3.5,1471383765\n457,104,3.5,1471384806\n457,110,3.0,1471383479\n457,111,5.0,1471384449\n457,145,2.0,1471385443\n457,147,4.0,1471383839\n457,153,2.0,1471385581\n457,163,3.0,1471386088\n457,165,2.5,1471384873\n457,175,4.5,1471386974\n457,180,3.0,1471387310\n457,185,1.5,1471385505\n457,204,1.0,1471385757\n457,216,4.0,1471386037\n457,223,3.5,1471385880\n457,231,3.0,1471385154\n457,253,3.0,1471384714\n457,260,0.5,1471383563\n457,288,3.0,1471383679\n457,292,2.0,1471387885\n457,293,5.0,1471383382\n457,296,5.0,1471383370\n457,317,1.0,1471386810\n457,318,5.0,1471383282\n457,319,3.5,1471383906\n457,329,0.5,1471386581\n457,330,2.0,1471386819\n457,332,2.0,1471386607\n457,333,2.5,1471383804\n457,344,2.5,1471386254\n457,356,3.5,1471384637\n457,364,2.0,1471386114\n457,367,2.5,1471385069\n457,368,1.0,1471385350\n457,370,2.5,1471385199\n457,374,1.0,1471385650\n457,377,1.5,1471387536\n457,380,2.5,1471387442\n457,390,3.0,1471384063\n457,410,1.5,1471386650\n457,413,2.5,1471387428\n457,431,4.0,1471386891\n457,442,1.5,1471385499\n457,454,2.5,1471385082\n457,457,3.0,1471384712\n457,466,2.0,1471386435\n457,480,2.5,1471385095\n457,485,1.5,1471385317\n457,492,3.5,1471384852\n457,500,2.0,1471386330\n457,520,2.0,1471386387\n457,542,2.0,1471387575\n457,543,3.0,1471385053\n457,555,4.5,1471384565\n457,586,2.5,1471385180\n457,589,3.5,1471383535\n457,592,2.5,1471383567\n457,593,3.0,1471383289\n457,606,1.5,1471386806\n457,608,5.0,1471383410\n457,648,1.5,1471385244\n457,736,2.0,1471385547\n457,743,1.5,1471385648\n457,778,4.0,1471384462\n457,780,1.5,1471385127\n457,784,2.5,1471385159\n457,785,3.0,1471386102\n457,786,1.5,1471385526\n457,788,1.5,1471386602\n457,832,1.5,1471385448\n457,842,2.0,1471386386\n457,858,4.0,1471383286\n457,886,1.5,1471386439\n457,903,4.0,1471383421\n457,904,4.0,1471383406\n457,908,4.0,1471383427\n457,912,4.0,1471383402\n457,920,2.0,1471385324\n457,924,5.0,1471383448\n457,1020,2.0,1471386285\n457,1036,4.0,1471383526\n457,1060,4.0,1471388838\n457,1073,3.0,1471383670\n457,1089,4.0,1471383412\n457,1091,2.0,1471386494\n457,1092,2.5,1471386305\n457,1095,4.0,1471388375\n457,1101,2.5,1471385001\n457,1120,4.0,1471383826\n457,1193,3.5,1471383304\n457,1196,0.5,1471383398\n457,1198,2.0,1471386273\n457,1201,2.0,1471385845\n457,1203,3.0,1471384552\n457,1206,5.0,1471384416\n457,1210,0.5,1471383568\n457,1213,5.0,1471383372\n457,1222,4.5,1471384476\n457,1240,3.0,1471383549\n457,1244,4.0,1471384849\n457,1252,4.0,1471385869\n457,1258,5.0,1471383420\n457,1259,3.5,1471385882\n457,1263,4.0,1471384507\n457,1265,3.5,1471385918\n457,1270,4.0,1471383543\n457,1273,3.0,1471578840\n457,1285,3.0,1471383771\n457,1291,2.0,1471385123\n457,1304,0.5,1471384660\n457,1305,4.0,1471386545\n457,1330,2.0,1471386367\n457,1342,2.5,1471387458\n457,1343,4.0,1471383799\n457,1345,3.0,1471383751\n457,1347,3.0,1471385029\n457,1350,3.0,1471384630\n457,1370,2.5,1471385173\n457,1376,1.0,1471385454\n457,1377,2.5,1471387758\n457,1378,1.5,1471385606\n457,1388,1.5,1471386444\n457,1391,2.5,1471386091\n457,1393,3.0,1471383501\n457,1405,2.5,1471386213\n457,1407,2.0,1471384967\n457,1431,1.5,1471385392\n457,1461,2.0,1471385485\n457,1464,4.0,1471384541\n457,1466,4.0,1471385841\n457,1483,3.0,1471386788\n457,1485,2.0,1471386297\n457,1517,3.0,1471384645\n457,1552,0.5,1471385515\n457,1573,0.5,1471385188\n457,1594,3.5,1471409469\n457,1608,1.5,1471385539\n457,1617,3.5,1471384562\n457,1620,2.5,1471386801\n457,1625,3.0,1471384664\n457,1644,1.5,1471385381\n457,1645,2.5,1471386375\n457,1673,4.5,1471384496\n457,1676,1.0,1471386418\n457,1682,3.0,1471383442\n457,1704,4.0,1471383423\n457,1717,1.5,1471386635\n457,1729,3.5,1471385855\n457,1732,3.0,1471384509\n457,1777,3.5,1471384772\n457,1805,2.5,1471386381\n457,1836,3.0,1471384112\n457,1884,4.0,1471383643\n457,1911,1.5,1471386464\n457,1912,3.0,1471578984\n457,1921,3.5,1471578878\n457,1923,3.0,1471384774\n457,1952,3.5,1471579886\n457,1953,3.5,1471384672\n457,1964,3.0,1471384042\n457,1968,3.5,1471384579\n457,1969,2.0,1471386584\n457,1971,2.0,1471386659\n457,1972,1.5,1471385669\n457,1973,2.0,1471385546\n457,1974,3.0,1471383860\n457,1975,2.5,1471385314\n457,1976,2.0,1471385657\n457,1977,2.0,1471385524\n457,1979,2.0,1471385700\n457,1982,3.0,1471384742\n457,1985,1.5,1471385501\n457,1991,2.5,1471385171\n457,1992,2.0,1471385706\n457,1995,2.0,1471385570\n457,1997,3.5,1471386933\n457,2000,2.0,1471386206\n457,2001,1.5,1471385306\n457,2002,1.0,1471385007\n457,2004,1.5,1471385520\n457,2005,3.5,1471384649\n457,2011,2.0,1471386193\n457,2012,2.0,1471385010\n457,2042,2.0,1471385602\n457,2054,1.5,1471385472\n457,2059,1.5,1471386612\n457,2064,3.0,1471387235\n457,2072,2.5,1471386409\n457,2076,5.0,1471384425\n457,2080,1.5,1471386823\n457,2081,1.0,1471386351\n457,2082,2.0,1471385235\n457,2115,2.0,1471385117\n457,2120,2.5,1471386344\n457,2122,2.5,1471385255\n457,2124,2.0,1471386307\n457,2133,3.0,1471385152\n457,2134,2.5,1471387354\n457,2144,3.5,1471384679\n457,2145,3.0,1471384876\n457,2160,4.5,1471384570\n457,2174,3.5,1471384725\n457,2231,4.0,1471386554\n457,2273,1.5,1471386836\n457,2280,3.5,1471388894\n457,2291,3.0,1471387169\n457,2301,2.5,1471387326\n457,2302,3.0,1471385059\n457,2315,1.5,1471385428\n457,2318,4.0,1471383847\n457,2329,4.0,1471383394\n457,2335,2.5,1471385067\n457,2353,2.0,1471385133\n457,2355,1.5,1471386374\n457,2372,1.5,1471386637\n457,2375,2.0,1471385487\n457,2378,2.5,1471386505\n457,2387,3.0,1471383969\n457,2391,3.5,1471383898\n457,2395,3.0,1471384669\n457,2405,2.0,1471385503\n457,2407,2.5,1471384989\n457,2408,1.5,1471385750\n457,2409,2.0,1471386447\n457,2410,2.0,1471385549\n457,2411,2.0,1471385709\n457,2416,2.0,1471386427\n457,2420,3.0,1471384734\n457,2447,1.5,1471387450\n457,2459,3.5,1471386054\n457,2463,3.0,1471386076\n457,2468,2.5,1471385463\n457,2470,2.0,1471384982\n457,2478,1.5,1471385422\n457,2495,3.0,1471383945\n457,2502,4.0,1471384615\n457,2513,2.5,1471386222\n457,2517,2.5,1471386234\n457,2541,2.0,1471386276\n457,2542,3.5,1471384619\n457,2571,3.0,1471383481\n457,2599,3.5,1471383792\n457,2616,2.0,1471386476\n457,2640,1.5,1471385284\n457,2641,1.5,1471385727\n457,2694,2.5,1471384959\n457,2699,1.5,1471386706\n457,2700,3.0,1471385937\n457,2706,2.5,1471386219\n457,2710,2.0,1471386300\n457,2712,5.0,1471384395\n457,2716,3.0,1471386089\n457,2717,1.5,1471385294\n457,2726,3.0,1471389061\n457,2735,3.0,1471385739\n457,2746,2.5,1471386141\n457,2762,3.0,1471384759\n457,2790,1.5,1471385634\n457,2792,2.0,1471386349\n457,2794,2.0,1471385528\n457,2795,3.0,1471384732\n457,2796,2.0,1471385673\n457,2797,3.0,1471384758\n457,2803,2.0,1471386486\n457,2804,3.5,1471383743\n457,2858,3.5,1471383391\n457,2867,2.0,1471387411\n457,2871,4.0,1471384593\n457,2902,0.5,1471385361\n457,2915,2.5,1471387286\n457,2916,3.5,1471384939\n457,2918,4.0,1471383524\n457,2947,1.5,1471386403\n457,2948,1.0,1471385722\n457,2952,3.0,1471388626\n457,2959,4.0,1471383293\n457,2985,2.5,1471386268\n457,2987,2.5,1471386110\n457,2989,1.5,1471385114\n457,2997,4.0,1471383437\n457,3006,3.0,1471383769\n457,3017,2.0,1471386449\n457,3033,2.5,1471386161\n457,3039,4.0,1471385948\n457,3040,2.5,1471387515\n457,3052,2.5,1471386176\n457,3087,2.5,1471386296\n457,3114,1.5,1471386310\n457,3146,2.5,1471386506\n457,3160,3.5,1471384556\n457,3168,4.0,1471383820\n457,3173,2.5,1471388396\n457,3208,1.5,1471386620\n457,3210,3.5,1471384782\n457,3243,2.0,1471385497\n457,3247,2.0,1471385331\n457,3248,1.5,1471385716\n457,3249,2.0,1471386604\n457,3253,3.5,1471384750\n457,3254,2.5,1471385051\n457,3255,2.5,1471387511\n457,3256,2.0,1471386484\n457,3257,2.0,1471385493\n457,3262,4.0,1471384431\n457,3272,4.0,1471384924\n457,3275,2.5,1471385986\n457,3285,2.5,1471387085\n457,3362,3.5,1471385852\n457,3388,1.5,1471386698\n457,3421,3.0,1471383796\n457,3424,4.5,1471383853\n457,3438,2.5,1471385376\n457,3439,1.5,1471385680\n457,3444,2.5,1471386371\n457,3450,1.5,1471385469\n457,3452,1.5,1471385760\n457,3468,3.5,1471383841\n457,3476,3.0,1471578889\n457,3481,4.0,1471384680\n457,3499,4.0,1471384558\n457,3527,2.0,1471387425\n457,3552,3.5,1471385954\n457,3556,4.0,1471386029\n457,3578,2.5,1471383476\n457,3608,3.5,1471384811\n457,3617,2.0,1471387613\n457,3624,1.5,1471385412\n457,3676,3.5,1471384547\n457,3683,3.0,1471579053\n457,3688,2.0,1471386413\n457,3697,1.5,1471385627\n457,3708,2.5,1471387593\n457,3717,1.0,1471385742\n457,3725,3.5,1471409602\n457,3752,2.0,1471385163\n457,3753,1.0,1471385355\n457,3785,2.0,1471386682\n457,3788,5.0,1471383894\n457,3825,1.5,1471385763\n457,3863,2.0,1471388887\n457,3868,3.0,1471385983\n457,3869,2.5,1471386170\n457,3897,3.5,1471384626\n457,3918,2.0,1471386248\n457,3948,1.5,1471387409\n457,3949,3.5,1471384470\n457,3955,2.0,1471386488\n457,3968,1.5,1471385457\n457,3979,2.5,1471385598\n457,3984,1.0,1471385432\n457,3994,1.5,1471387672\n457,3996,3.0,1471386117\n457,4002,3.0,1471385988\n457,4007,3.5,1471383787\n457,4010,2.5,1471386405\n457,4011,3.0,1471384611\n457,4018,0.5,1471386711\n457,4022,2.5,1471386225\n457,4027,3.0,1471384736\n457,4034,3.0,1471384675\n457,4040,2.0,1471386590\n457,4069,1.5,1471385416\n457,4084,2.5,1471384985\n457,4085,3.5,1471384737\n457,4132,2.0,1471385513\n457,4149,2.0,1471386253\n457,4214,3.0,1471385088\n457,4226,3.0,1471384608\n457,4235,3.5,1471384544\n457,4239,3.5,1471384639\n457,4247,2.5,1471385121\n457,4262,4.5,1471384577\n457,4293,2.0,1471385552\n457,4321,2.5,1471387506\n457,4333,3.0,1471386433\n457,4340,1.5,1471385696\n457,4351,2.5,1471387558\n457,4450,4.0,1471384035\n457,4452,2.0,1471388861\n457,4480,2.0,1471386631\n457,4487,2.0,1471385465\n457,4489,3.0,1471387202\n457,4499,2.5,1471387229\n457,4509,2.5,1471387553\n457,4520,2.5,1471385737\n457,4531,2.0,1471386700\n457,4545,2.5,1471385264\n457,4558,2.0,1471385396\n457,4571,3.0,1471384740\n457,4614,2.0,1471386647\n457,4621,1.5,1471385409\n457,4623,3.0,1471387342\n457,4641,3.0,1471384770\n457,4677,1.5,1471386466\n457,4679,2.5,1471387441\n457,4701,1.0,1471386588\n457,4718,1.5,1471386510\n457,4734,2.0,1471386123\n457,4776,3.0,1471385993\n457,4816,2.5,1471384880\n457,4848,4.0,1471384459\n457,4878,4.0,1471383435\n457,4886,1.0,1471386653\n457,4888,3.0,1471384100\n457,4890,2.0,1471385268\n457,4896,1.5,1471385441\n457,4929,1.5,1471385717\n457,4963,3.0,1471385008\n457,4975,2.0,1471385451\n457,4979,2.5,1471383628\n457,4980,1.5,1471385125\n457,4995,3.0,1471386063\n457,5002,3.5,1471409592\n457,5027,1.5,1471385559\n457,5060,2.0,1471385645\n457,5074,3.5,1471384105\n457,5151,1.5,1471385597\n457,5219,1.5,1471385508\n457,5225,3.5,1471385952\n457,5266,2.5,1471385260\n457,5283,1.5,1471386341\n457,5308,2.0,1471385327\n457,5323,1.0,1471385756\n457,5337,2.0,1471388005\n457,5349,1.5,1471385506\n457,5418,2.0,1471386362\n457,5445,1.5,1471385146\n457,5449,2.0,1471387973\n457,5481,2.0,1471385109\n457,5541,2.0,1471387459\n457,5620,1.5,1471386594\n457,5669,3.0,1471383649\n457,5673,3.0,1471385055\n457,5679,3.5,1471385251\n457,5810,3.0,1471386359\n457,5879,2.0,1471386525\n457,5900,1.5,1471385379\n457,5952,0.5,1471383517\n457,5956,2.5,1471384999\n457,5970,2.5,1471386327\n457,5989,3.5,1471384775\n457,6016,5.0,1471383375\n457,6155,1.5,1471386616\n457,6188,4.0,1471384767\n457,6281,2.0,1471387633\n457,6287,2.0,1471385201\n457,6333,1.0,1471385629\n457,6338,1.5,1471385573\n457,6373,2.0,1471385086\n457,6440,3.5,1471384635\n457,6548,2.0,1471385384\n457,6586,2.0,1471385075\n457,6593,1.0,1471386685\n457,6595,1.5,1471385684\n457,6615,1.5,1471386705\n457,6620,4.0,1471385900\n457,6711,4.0,1471385911\n457,6774,3.0,1471386779\n457,6796,4.0,1471383837\n457,6811,1.5,1471387772\n457,6863,3.0,1471384768\n457,6870,3.5,1471383333\n457,6874,3.0,1471383443\n457,6936,2.5,1471387498\n457,6944,2.0,1471386339\n457,6975,3.0,1471383836\n457,7004,2.5,1471385374\n457,7007,2.0,1471386396\n457,7012,2.0,1471387749\n457,7026,2.0,1471386469\n457,7036,2.5,1471387813\n457,7044,3.0,1471384614\n457,7102,2.5,1471387666\n457,7123,3.0,1471384897\n457,7143,1.5,1471385193\n457,7153,0.5,1471383508\n457,7317,2.0,1471386217\n457,7318,0.5,1471383728\n457,7325,1.5,1471386408\n457,7360,1.5,1471386313\n457,7361,3.5,1471384605\n457,7367,2.5,1471579108\n457,7376,1.0,1471385735\n457,7419,3.0,1471383868\n457,7438,3.0,1471383473\n457,7445,2.5,1471386278\n457,7616,3.0,1471579461\n457,7802,4.0,1471388989\n457,8268,2.5,1471387949\n457,8368,1.5,1471385481\n457,8371,1.5,1471385613\n457,8464,2.5,1471387211\n457,8528,2.0,1471386185\n457,8614,2.5,1471387559\n457,8622,3.0,1471383677\n457,8623,2.0,1471387424\n457,8636,0.5,1471387030\n457,8641,2.5,1471386039\n457,8644,1.5,1471385290\n457,8665,2.0,1471386460\n457,8783,2.0,1471385149\n457,8807,2.5,1471386023\n457,8808,1.0,1471385616\n457,8873,3.5,1471383738\n457,8910,2.5,1471387488\n457,8917,2.5,1471386160\n457,8949,4.5,1471385219\n457,8950,3.5,1471384686\n457,8957,2.5,1471386167\n457,8958,3.0,1471384745\n457,8961,2.0,1471385320\n457,8972,0.5,1471386709\n457,8984,3.0,1471384973\n457,26614,2.0,1471386430\n457,26726,2.5,1471386565\n457,27611,0.5,1471383660\n457,27773,4.0,1471384502\n457,27831,3.0,1471385128\n457,27839,1.5,1471386567\n457,30825,2.5,1471384816\n457,31685,2.0,1471386452\n457,31696,2.0,1471385111\n457,32587,3.0,1471383447\n457,32598,2.0,1471579934\n457,32914,3.0,1471384033\n457,33004,2.0,1471386818\n457,33162,1.5,1471385593\n457,33166,3.0,1471383451\n457,33679,1.0,1471385371\n457,34162,3.0,1471384809\n457,34534,2.0,1471386713\n457,35836,3.5,1471384861\n457,37384,2.5,1471387549\n457,37727,2.0,1471385590\n457,37733,3.5,1471386782\n457,38061,2.5,1471384797\n457,39446,1.5,1471386365\n457,40815,1.0,1471385594\n457,41285,3.0,1471578622\n457,42011,1.0,1471385354\n457,42013,1.5,1471386665\n457,42725,3.0,1471386069\n457,44022,1.5,1471385467\n457,44191,3.0,1471383494\n457,45186,1.0,1471385724\n457,45431,1.0,1471385618\n457,45517,2.0,1471385421\n457,45722,0.5,1471385754\n457,45728,2.0,1471386094\n457,45950,2.5,1471387401\n457,46578,3.0,1471384780\n457,46970,2.5,1471385017\n457,46972,1.5,1471385567\n457,46976,2.5,1471384891\n457,47640,1.5,1471385286\n457,48043,3.0,1471578899\n457,48385,3.0,1471383617\n457,48394,3.5,1471385872\n457,48516,3.0,1471383464\n457,48780,3.5,1471385026\n457,49272,1.5,1471385239\n457,50851,3.5,1471388652\n457,51662,2.5,1471383583\n457,52245,2.0,1471385104\n457,52287,1.0,1471385666\n457,52722,0.5,1471387035\n457,52973,3.0,1471384825\n457,53322,2.0,1471386521\n457,53519,2.5,1471386074\n457,53894,2.0,1471387293\n457,54004,2.0,1471386688\n457,54272,2.0,1471386499\n457,54286,2.0,1471385258\n457,54503,3.0,1471384749\n457,54732,1.5,1471385461\n457,55118,3.5,1471385858\n457,55247,1.5,1471384510\n457,55269,2.5,1471386105\n457,55290,3.0,1471384869\n457,55820,5.0,1471384523\n457,56174,1.5,1471385347\n457,56367,3.0,1471384716\n457,56782,5.0,1471383610\n457,56805,3.0,1471386336\n457,57669,3.5,1471383616\n457,58156,1.5,1471385302\n457,58299,1.5,1471385555\n457,58559,0.5,1471383397\n457,58803,2.5,1471386528\n457,58998,3.0,1471385996\n457,59022,3.0,1471385131\n457,59315,1.0,1471385628\n457,59369,1.5,1471385414\n457,59421,1.0,1471385661\n457,59900,1.5,1471385425\n457,60756,3.0,1471383671\n457,61024,3.0,1471383641\n457,61132,1.5,1471386203\n457,61240,3.5,1471385831\n457,61323,3.0,1471384598\n457,62434,2.5,1471384993\n457,63082,3.5,1471383429\n457,63131,1.5,1471387303\n457,64614,2.5,1471385042\n457,64839,4.5,1471384474\n457,67734,2.5,1471386067\n457,68157,3.0,1471386073\n457,69122,3.5,1471386235\n457,69134,3.5,1471386752\n457,69306,1.5,1471387481\n457,69757,3.5,1471384527\n457,69784,2.5,1471383716\n457,70728,3.0,1471386911\n457,71464,2.5,1471383776\n457,72737,1.0,1471385663\n457,72998,0.5,1471383578\n457,73017,1.5,1471385388\n457,74458,2.5,1471383512\n457,76077,2.5,1471385141\n457,76251,1.5,1471385474\n457,77455,3.0,1471383692\n457,78039,3.0,1471386942\n457,78209,2.5,1471385077\n457,79132,3.0,1471383386\n457,80489,3.0,1471385014\n457,81591,4.5,1471383528\n457,82035,2.5,1471388660\n457,82852,1.5,1471385537\n457,86320,3.5,1471386754\n457,86882,3.0,1471578485\n457,86911,1.5,1471386517\n457,88129,4.0,1471384702\n457,88954,1.5,1471386834\n457,89492,2.0,1471386656\n457,91529,0.5,1471383574\n457,93831,1.0,1471388129\n457,95441,2.5,1471385277\n457,95740,0.5,1471386815\n457,96110,2.0,1471387997\n457,96488,3.0,1471384950\n457,96728,4.0,1471384722\n457,96829,3.0,1471383665\n457,97913,1.0,1471385651\n457,97923,3.0,1471386120\n457,98961,0.5,1471386623\n457,100581,2.5,1471387658\n457,101112,0.5,1471387038\n457,101285,3.0,1471387002\n457,101525,3.5,1471385944\n457,102123,2.5,1471387499\n457,102194,2.5,1471383710\n457,102407,2.0,1471387284\n457,102684,4.0,1471387313\n457,102686,1.5,1471385518\n457,102905,3.0,1471387023\n457,103801,2.5,1471387186\n457,103813,2.5,1471388008\n457,106072,0.5,1471383601\n457,106100,3.0,1471386060\n457,106236,3.0,1471389097\n457,106330,1.5,1471385632\n457,106487,0.5,1471383597\n457,106766,3.5,1471385924\n457,106782,4.0,1471383503\n457,106916,3.0,1471385981\n457,106920,3.5,1471384504\n457,107348,1.5,1471385300\n457,108727,4.0,1471386738\n457,108981,4.0,1471386746\n457,109374,2.5,1471387192\n457,110110,3.0,1471383939\n457,112183,3.5,1471387165\n457,112290,3.0,1471386950\n457,112552,3.5,1471383604\n457,112556,3.0,1471384971\n457,114060,3.5,1471386043\n457,114662,0.5,1471386135\n457,115569,3.0,1471385977\n457,119141,2.0,1471385167\n457,120392,2.5,1471578540\n457,122882,0.5,1471383595\n457,122886,0.5,1471383344\n457,122904,0.5,1471383348\n457,126106,3.5,1471409573\n457,127198,2.5,1471388562\n457,128520,1.0,1471385702\n457,131013,1.5,1471385543\n457,133295,2.5,1471388667\n457,139385,3.5,1471385246\n457,140174,3.5,1471383351\n457,142488,2.0,1471386260\n457,145307,2.5,1471388180\n457,145775,3.0,1471388580\n457,152025,2.5,1471389099\n457,152081,1.5,1471385509\n458,1,3.5,1365115663\n458,10,4.0,1365115941\n458,34,3.0,1365115878\n458,47,4.0,1365115711\n458,105,3.5,1337555657\n458,110,4.0,1365115659\n458,165,3.5,1365115767\n458,208,3.0,1365116004\n458,231,2.5,1365115836\n458,288,2.5,1365116149\n458,296,4.0,1365115682\n458,318,5.0,1365115653\n458,356,5.0,1365115640\n458,364,4.0,1365115753\n458,377,4.0,1365115715\n458,431,3.0,1337555697\n458,454,4.0,1365116028\n458,480,2.5,1365115649\n458,527,4.0,1365115671\n458,539,4.0,1365115983\n458,541,3.5,1365115978\n458,587,3.0,1365115966\n458,590,4.0,1365115697\n458,593,4.5,1365115645\n458,597,4.0,1365115843\n458,648,4.5,1365115749\n458,733,3.5,1365115847\n458,736,3.0,1365115778\n458,783,2.5,1337555639\n458,858,4.0,1365115738\n458,1036,3.5,1365115971\n458,1089,2.5,1365116036\n458,1097,4.0,1365115840\n458,1197,4.0,1337555830\n458,1198,3.5,1365115728\n458,1200,3.5,1365116040\n458,1206,4.0,1365116162\n458,1214,4.0,1365115961\n458,1221,4.0,1365116078\n458,1240,3.5,1365115862\n458,1265,4.0,1365115909\n458,1270,3.0,1365115723\n458,1275,3.5,1337555610\n458,1291,4.0,1365115953\n458,1371,3.5,1337555674\n458,1375,3.5,1337555615\n458,1377,3.0,1337555590\n458,1527,3.5,1365116083\n458,1721,4.5,1365115781\n458,1923,3.5,1365116114\n458,1961,5.0,1365116047\n458,2028,3.0,1365115758\n458,2273,3.0,1337555689\n458,2294,2.0,1337555661\n458,2539,3.0,1337555704\n458,2571,4.5,1337555823\n458,2628,4.0,1365115936\n458,2683,2.5,1365116106\n458,2701,3.0,1337555626\n458,2706,4.0,1365116157\n458,2716,4.0,1365115990\n458,2959,2.5,1365115771\n458,3033,2.5,1337555619\n458,3101,3.0,1337555583\n458,3147,4.0,1354978930\n458,3578,4.5,1365115892\n458,3717,4.0,1337555692\n458,3793,4.0,1365116068\n458,3996,3.0,1365116120\n458,4306,4.0,1365115886\n458,4993,5.0,1365115791\n458,5952,5.0,1365115868\n458,6539,4.0,1365116169\n458,7153,5.0,1337555836\n458,7438,4.0,1354978918\n458,49272,3.5,1337555666\n459,1,5.0,859210690\n459,3,4.0,859210733\n459,6,4.0,859210733\n459,7,3.0,859210733\n459,14,4.0,859210803\n459,25,5.0,859210691\n459,32,4.0,859210690\n459,36,4.0,859210733\n459,79,2.0,859210803\n459,95,4.0,859210691\n459,104,4.0,859210761\n459,135,2.0,859210803\n459,260,5.0,859210761\n459,628,4.0,859210803\n459,648,4.0,859210690\n459,653,4.0,859210761\n459,733,4.0,859210733\n459,736,3.0,859210690\n459,780,4.0,859210690\n459,788,5.0,859210761\n459,1073,5.0,859210733\n459,1356,4.0,859210803\n460,1,4.5,1072836909\n460,4,3.5,1072837815\n460,29,4.0,1072836608\n460,32,4.0,1072836688\n460,45,4.0,1072836078\n460,47,2.5,1072836886\n460,48,2.5,1072836067\n460,50,4.5,1072836483\n460,94,2.5,1072836469\n460,95,3.5,1072838019\n460,162,3.5,1072837377\n460,176,1.5,1072837086\n460,203,3.0,1072837875\n460,223,4.0,1072836864\n460,236,1.5,1072835963\n460,260,4.5,1072836994\n460,281,4.5,1072836501\n460,293,4.0,1072836805\n460,296,4.0,1072836897\n460,300,1.5,1072836838\n460,318,5.0,1072836586\n460,327,3.0,1072837585\n460,337,4.5,1072836719\n460,342,4.5,1072836034\n460,348,2.0,1072837293\n460,356,1.5,1072839132\n460,357,5.0,1072839259\n460,410,2.5,1072838351\n460,434,1.5,1072838174\n460,441,4.0,1072837232\n460,442,3.5,1072838136\n460,457,3.5,1072837123\n460,471,5.0,1072836030\n460,497,5.0,1072838843\n460,517,2.0,1072837821\n460,520,2.0,1072838505\n460,529,3.0,1072836010\n460,543,3.0,1072836074\n460,551,3.5,1072836757\n460,562,4.0,1072836717\n460,585,4.0,1072838640\n460,592,3.5,1072837098\n460,593,4.0,1072836971\n460,595,4.0,1072839194\n460,608,4.0,1072836705\n460,637,3.0,1072837714\n460,671,4.5,1072836530\n460,719,2.0,1072837859\n460,745,5.0,1072836583\n460,778,4.0,1072836900\n460,784,4.0,1072835996\n460,852,1.5,1072836013\n460,866,3.5,1072837222\n460,898,5.0,1072838911\n460,899,5.0,1072838860\n460,904,4.5,1072837140\n460,908,4.0,1072839318\n460,911,4.0,1072838953\n460,912,5.0,1072839331\n460,913,4.0,1072836061\n460,916,4.0,1072837436\n460,919,4.0,1072839367\n460,950,5.0,1072837419\n460,954,4.0,1072839340\n460,994,3.5,1072837195\n460,1010,4.0,1072838001\n460,1030,4.5,1072838037\n460,1036,4.5,1072836921\n460,1050,4.0,1072837466\n460,1060,4.5,1072836820\n460,1073,5.0,1072836977\n460,1079,4.5,1072836802\n460,1080,5.0,1072835970\n460,1081,4.0,1072838757\n460,1089,4.0,1072836637\n460,1090,3.5,1072837060\n460,1091,3.5,1072838148\n460,1095,4.0,1072837491\n460,1136,5.0,1072836764\n460,1148,4.5,1072836538\n460,1171,4.0,1072837289\n460,1172,3.5,1072839378\n460,1177,4.0,1072839118\n460,1196,5.0,1072836946\n460,1197,5.0,1072836690\n460,1198,5.0,1072836595\n460,1200,3.5,1072836778\n460,1213,4.0,1072836664\n460,1219,4.0,1072837023\n460,1220,3.5,1072837508\n460,1223,3.5,1072836736\n460,1225,3.0,1072837133\n460,1231,3.5,1072837202\n460,1235,4.0,1072837018\n460,1242,2.0,1072836775\n460,1245,4.5,1072836486\n460,1247,5.0,1072839347\n460,1249,4.5,1072837386\n460,1257,5.0,1072836588\n460,1259,4.0,1072836726\n460,1265,4.0,1072836794\n460,1266,4.0,1072836950\n460,1270,4.0,1072836861\n460,1284,4.5,1072837479\n460,1285,5.0,1072836496\n460,1288,5.0,1072836808\n460,1291,4.0,1072836966\n460,1302,2.5,1072838976\n460,1304,4.0,1072839440\n460,1320,3.5,1072838404\n460,1358,4.0,1072837269\n460,1380,4.5,1072838778\n460,1394,4.5,1072837025\n460,1411,3.5,1072837514\n460,1449,4.0,1072836388\n460,1500,5.0,1072835999\n460,1517,3.0,1072835945\n460,1588,4.0,1072838121\n460,1617,3.5,1072836561\n460,1635,4.0,1072837524\n460,1645,1.0,1072838873\n460,1673,4.0,1072836998\n460,1682,3.5,1072837015\n460,1704,4.0,1072837079\n460,1801,1.0,1072838238\n460,1816,0.5,1072837967\n460,1834,4.0,1072837260\n460,1912,3.5,1072836913\n460,1917,1.5,1072835988\n460,1924,2.0,1072838158\n460,1959,4.0,1072838753\n460,1961,3.0,1072837336\n460,1966,4.0,1072837256\n460,1968,4.5,1072837329\n460,2014,3.5,1072838192\n460,2020,5.0,1072837101\n460,2064,4.5,1072837306\n460,2109,4.5,1072837198\n460,2174,4.0,1072835949\n460,2248,4.0,1072836410\n460,2252,3.5,1072837671\n460,2269,1.5,1072837578\n460,2289,4.5,1072837117\n460,2291,4.0,1072835954\n460,2318,4.0,1072839020\n460,2321,4.0,1072837430\n460,2324,3.5,1072837108\n460,2333,3.5,1072837504\n460,2335,3.0,1072838429\n460,2336,4.0,1072836679\n460,2372,4.0,1072837869\n460,2387,2.5,1072837896\n460,2391,3.0,1072837277\n460,2395,3.0,1072836041\n460,2405,4.0,1072838390\n460,2431,0.5,1072837799\n460,2490,3.5,1072838804\n460,2502,4.0,1072836617\n460,2542,4.0,1072837350\n460,2571,4.0,1072836875\n460,2580,4.0,1072836667\n460,2599,4.5,1072836541\n460,2640,3.5,1072836049\n460,2692,3.5,1072836492\n460,2693,4.0,1072836761\n460,2707,4.0,1072838996\n460,2716,5.0,1072836924\n460,2717,3.5,1072837806\n460,2735,2.0,1072837846\n460,2750,3.5,1072837454\n460,2761,4.0,1072836318\n460,2762,4.0,1072836640\n460,2791,3.5,1072836814\n460,2794,0.5,1072837842\n460,2795,4.0,1072837319\n460,2797,4.5,1072837253\n460,2804,3.5,1072836057\n460,2829,4.0,1072838048\n460,2858,4.5,1072836700\n460,2890,4.0,1072836578\n460,2912,3.5,1072837012\n460,2918,4.5,1072836415\n460,2942,4.0,1072837675\n460,2947,4.0,1072837413\n460,2959,3.5,1072836548\n460,2997,5.0,1072836744\n460,3007,3.5,1072836459\n460,3039,4.0,1072837394\n460,3060,3.0,1072837246\n460,3067,4.0,1072837341\n460,3114,4.0,1072836601\n460,3210,4.0,1072837068\n460,3253,3.5,1072836787\n460,3258,1.0,1072838248\n460,3265,2.5,1072836343\n460,3267,3.5,1072836622\n460,3317,4.0,1072836551\n460,3359,4.0,1072839361\n460,3361,4.0,1072837344\n460,3396,4.0,1072836422\n460,3421,5.0,1072836984\n460,3424,2.0,1072837458\n460,3429,5.0,1072836439\n460,3435,4.0,1072836629\n460,3444,3.5,1072838302\n460,3481,4.5,1072836669\n460,3489,3.5,1072838359\n460,3499,3.0,1072836693\n460,3505,4.5,1072838964\n460,3526,4.0,1072837463\n460,3624,4.0,1072839072\n460,3638,3.5,1072838603\n460,3671,4.0,1072837173\n460,3683,4.0,1072837032\n460,3707,4.0,1072838310\n460,3751,4.5,1072837373\n460,3791,4.0,1072838446\n460,3882,4.0,1072839097\n460,3897,4.0,1072836615\n460,3911,4.5,1072836512\n460,3949,1.5,1072837142\n460,3983,4.0,1072836750\n460,3987,3.0,1072838689\n460,3988,2.5,1072837948\n460,3996,4.0,1072836473\n460,4002,3.5,1072836685\n460,4011,4.0,1072837272\n460,4027,4.5,1072836571\n460,4029,4.5,1072839031\n460,4039,2.0,1072838708\n460,4116,3.5,1072836464\n460,4226,5.0,1072836360\n460,4232,4.0,1072839207\n460,4235,3.5,1072837301\n460,4396,4.0,1072837863\n460,4447,4.0,1072839086\n460,4467,2.5,1072836847\n460,4474,2.5,1072837961\n460,4621,1.5,1072837684\n460,4641,4.0,1072836790\n460,4660,4.5,1072838486\n460,4700,3.5,1072837622\n460,4816,4.0,1072839060\n460,4855,4.0,1072836960\n460,4886,3.5,1072836858\n460,4973,5.0,1072836566\n460,4979,4.0,1072836604\n460,4993,3.5,1072836526\n460,5012,2.0,1072837919\n460,5013,4.5,1072839146\n460,5034,4.0,1072836851\n460,5303,3.5,1072838551\n460,5308,1.5,1072837748\n460,5377,4.0,1072836413\n460,5444,4.5,1072837150\n460,5460,4.0,1072838395\n460,5500,4.0,1072837313\n460,5504,2.5,1072839210\n460,5505,4.0,1072839225\n460,5507,4.5,1072837933\n460,5574,2.5,1072838510\n460,5650,4.0,1072836517\n460,5902,4.0,1072836645\n460,5952,4.5,1072836378\n460,5991,4.5,1072837473\n460,6104,4.5,1072836350\n460,6238,2.0,1072837810\n460,6296,4.0,1072839374\n460,6299,2.5,1072837443\n460,6525,3.0,1072838057\n460,6539,5.0,1072836403\n460,6591,3.5,1072837217\n460,6618,4.0,1072836325\n460,6711,4.5,1072836398\n460,6796,3.0,1072836435\n460,6807,4.0,1072836321\n460,6850,3.5,1072838294\n460,6863,3.0,1072836145\n460,6870,3.5,1072836153\n460,6936,4.5,1072836132\n460,6942,4.0,1072836166\n460,6957,3.5,1072836173\n460,6979,5.0,1072836768\n460,7153,4.5,1072836125\n461,1,3.5,1090907386\n461,4,1.5,1090908852\n461,6,4.0,1091067217\n461,7,0.5,1091049760\n461,10,2.0,1090907439\n461,11,1.5,1090907986\n461,16,3.0,1090908858\n461,17,4.5,1091049784\n461,18,1.5,1091959887\n461,21,3.0,1091958515\n461,22,2.0,1091958962\n461,25,2.5,1090908000\n461,29,3.5,1091959504\n461,31,2.0,1091959143\n461,34,3.5,1091958458\n461,36,3.0,1091958547\n461,39,4.5,1090908007\n461,44,0.5,1090908838\n461,47,5.0,1090907975\n461,48,2.0,1091958954\n461,50,4.0,1090908012\n461,60,2.0,1091959553\n461,62,2.5,1091958551\n461,70,2.0,1090908842\n461,71,0.5,1090907750\n461,101,3.5,1090908846\n461,104,3.5,1091958722\n461,105,2.5,1091959001\n461,110,4.0,1091958415\n461,111,3.5,1091958595\n461,122,1.5,1090907623\n461,141,2.0,1090907982\n461,144,1.5,1091959648\n461,150,3.0,1090907363\n461,153,0.5,1091049746\n461,158,1.0,1090908806\n461,160,1.5,1090908017\n461,161,2.5,1091958488\n461,163,3.0,1090907465\n461,165,2.5,1091958446\n461,168,2.0,1091958914\n461,173,1.5,1091958758\n461,176,2.5,1093224586\n461,180,4.0,1090908822\n461,185,2.0,1090908002\n461,193,1.5,1090907641\n461,196,2.0,1091958809\n461,203,2.0,1091959587\n461,204,1.5,1091959070\n461,207,2.5,1091959533\n461,208,2.0,1091958543\n461,222,2.5,1090908810\n461,223,3.5,1090907978\n461,225,1.0,1091958687\n461,230,3.0,1090908819\n461,231,3.0,1090908009\n461,235,4.5,1091049742\n461,236,4.0,1091958815\n461,237,0.5,1091959192\n461,246,4.0,1090907261\n461,249,3.5,1091959597\n461,253,2.5,1091958519\n461,257,2.0,1091959859\n461,260,4.5,1091958419\n461,266,1.5,1090907996\n461,282,1.0,1093225236\n461,288,2.5,1090907961\n461,289,2.0,1090908798\n461,293,4.0,1091049771\n461,296,4.5,1091958401\n461,300,3.0,1090907432\n461,303,4.0,1090908773\n461,315,1.5,1091958838\n461,317,2.0,1090907934\n461,318,5.0,1091067335\n461,322,3.5,1090908794\n461,329,1.5,1091958464\n461,333,4.0,1090907428\n461,338,1.0,1091959697\n461,339,2.5,1090907955\n461,349,2.0,1091958440\n461,353,3.0,1090907472\n461,355,1.0,1093225282\n461,356,4.0,1091958405\n461,357,2.0,1091958511\n461,364,1.5,1091049697\n461,367,3.0,1090907400\n461,368,2.0,1090907965\n461,370,2.0,1090907293\n461,372,3.0,1090908790\n461,377,4.0,1090907939\n461,380,2.5,1090907342\n461,381,1.0,1091959652\n461,413,1.5,1090908783\n461,416,1.5,1090907763\n461,420,0.5,1091049709\n461,429,3.0,1090907731\n461,432,1.5,1091049729\n461,434,1.5,1091958494\n461,440,2.5,1091958585\n461,442,1.5,1091958649\n461,454,2.5,1090907357\n461,457,2.5,1090907943\n461,466,0.5,1090907264\n461,474,2.5,1090907949\n461,477,3.0,1091959668\n461,480,5.0,1090907970\n461,485,2.0,1091958903\n461,493,2.0,1090908747\n461,494,2.0,1093224374\n461,497,3.0,1091958698\n461,500,1.5,1091049718\n461,508,2.5,1091958635\n461,515,3.5,1090908762\n461,520,2.0,1091958977\n461,527,4.0,1091958434\n461,529,3.5,1090907302\n461,539,3.5,1090907888\n461,540,0.5,1090908750\n461,543,3.5,1091049684\n461,551,4.5,1091067353\n461,553,4.0,1090907347\n461,555,3.5,1091067229\n461,562,2.5,1091959523\n461,585,2.5,1091959085\n461,586,2.5,1091958582\n461,587,3.0,1090907892\n461,588,4.0,1091048437\n461,589,5.0,1091054289\n461,590,4.0,1091958412\n461,592,3.0,1090907922\n461,593,5.0,1091958398\n461,594,3.0,1091958666\n461,595,4.5,1090907912\n461,596,3.0,1090907374\n461,597,4.5,1091958472\n461,608,4.0,1090907926\n461,613,2.5,1090907594\n461,628,3.0,1090907272\n461,647,1.5,1091959097\n461,648,2.0,1090907899\n461,653,2.0,1091958716\n461,708,1.5,1091049723\n461,720,4.0,1091959466\n461,724,2.0,1091959271\n461,733,2.0,1091958470\n461,736,1.0,1091049731\n461,745,4.0,1091959126\n461,778,4.0,1090907894\n461,780,1.5,1091958424\n461,783,1.5,1091049691\n461,784,3.0,1091049734\n461,785,4.0,1091049726\n461,786,1.5,1090907919\n461,802,1.5,1091958788\n461,805,1.5,1091958853\n461,818,2.0,1090908766\n461,832,1.5,1090908734\n461,852,3.5,1090907306\n461,858,5.0,1091049702\n461,866,3.0,1090908728\n461,899,3.5,1090908723\n461,910,1.5,1093225270\n461,912,4.5,1091958616\n461,916,4.0,1090908719\n461,919,3.5,1090907904\n461,920,4.0,1091958704\n461,923,4.0,1090907220\n461,926,3.5,1090908706\n461,934,2.5,1090908713\n461,953,4.5,1091049645\n461,994,3.0,1090907601\n461,999,1.5,1090908710\n461,1027,1.5,1091959657\n461,1035,5.0,1090908676\n461,1036,4.5,1090907884\n461,1037,1.5,1091959449\n461,1042,4.0,1091959251\n461,1047,3.0,1091959182\n461,1051,2.0,1093224789\n461,1059,2.5,1091959206\n461,1060,4.0,1090908693\n461,1061,4.0,1090908690\n461,1073,4.0,1091067366\n461,1088,3.0,1090908700\n461,1089,4.5,1091049663\n461,1090,3.0,1091049668\n461,1092,2.5,1091959130\n461,1094,3.0,1091958878\n461,1097,3.5,1091958497\n461,1101,3.5,1091048590\n461,1103,2.5,1091959792\n461,1104,2.5,1091959684\n461,1120,3.5,1091959260\n461,1127,2.5,1091958692\n461,1129,3.5,1090908681\n461,1148,4.5,1090908671\n461,1175,4.0,1091959780\n461,1179,3.5,1090908678\n461,1183,2.5,1090907879\n461,1186,2.5,1091959548\n461,1188,4.0,1090908695\n461,1193,3.5,1091958579\n461,1196,5.0,1091048596\n461,1197,5.0,1090907881\n461,1198,5.0,1090907839\n461,1200,5.0,1090907871\n461,1203,3.0,1091959413\n461,1206,4.0,1090907852\n461,1207,4.5,1091049660\n461,1208,3.5,1091049656\n461,1210,4.5,1091048443\n461,1213,4.0,1091958641\n461,1214,5.0,1090907842\n461,1215,4.5,1091067274\n461,1219,4.0,1090908660\n461,1220,3.5,1090908657\n461,1221,5.0,1090907858\n461,1222,3.5,1090908652\n461,1223,4.0,1091959821\n461,1225,4.0,1091049649\n461,1230,3.0,1091958748\n461,1240,4.0,1091958562\n461,1242,3.0,1090908648\n461,1247,3.0,1090908643\n461,1249,4.0,1091959257\n461,1252,4.0,1090907377\n461,1257,4.0,1091959921\n461,1258,3.5,1091958792\n461,1259,3.5,1091067185\n461,1261,4.5,1091067356\n461,1263,3.0,1091959188\n461,1265,3.5,1090907864\n461,1266,3.5,1091958937\n461,1270,5.0,1091052198\n461,1282,2.5,1091959080\n461,1284,3.0,1091959826\n461,1285,3.5,1090908618\n461,1287,4.0,1091959281\n461,1288,4.5,1091958859\n461,1291,3.5,1091958612\n461,1304,3.0,1091958768\n461,1307,5.0,1090907845\n461,1320,2.0,1090908615\n461,1321,4.0,1091067271\n461,1345,3.5,1090908635\n461,1347,4.0,1091959693\n461,1350,3.5,1090907560\n461,1356,2.5,1091958599\n461,1357,3.0,1090908607\n461,1370,1.5,1090907237\n461,1377,2.0,1091049675\n461,1378,2.0,1091959622\n461,1380,4.5,1090908624\n461,1381,3.5,1090908626\n461,1385,1.5,1091959705\n461,1387,4.0,1091067342\n461,1388,1.0,1090908610\n461,1393,3.0,1090907866\n461,1394,3.0,1091958736\n461,1405,2.0,1093224473\n461,1407,3.0,1090908603\n461,1411,2.5,1090908593\n461,1416,2.0,1090908564\n461,1438,1.5,1091959717\n461,1476,3.0,1090908573\n461,1479,1.0,1091959329\n461,1485,3.0,1090907338\n461,1500,5.0,1090907258\n461,1517,3.0,1091067176\n461,1527,2.0,1091067290\n461,1537,3.5,1090908587\n461,1544,1.0,1090907287\n461,1552,2.5,1091048486\n461,1556,0.5,1090908576\n461,1562,0.5,1091959495\n461,1569,1.5,1091959147\n461,1573,3.0,1090908570\n461,1580,2.0,1091958557\n461,1584,2.0,1091048488\n461,1586,2.0,1090907573\n461,1587,2.5,1090908584\n461,1590,2.0,1090908567\n461,1597,1.5,1090908521\n461,1603,0.5,1090908548\n461,1608,1.5,1090908539\n461,1610,4.5,1091054287\n461,1614,2.5,1090908517\n461,1617,5.0,1090907868\n461,1621,3.0,1090907709\n461,1625,3.5,1090907350\n461,1639,3.5,1091067268\n461,1641,2.5,1091958772\n461,1644,1.0,1091959789\n461,1645,2.0,1091959106\n461,1673,4.0,1090908534\n461,1678,2.5,1093224465\n461,1682,2.5,1091067209\n461,1688,2.5,1090907556\n461,1690,2.0,1090908529\n461,1704,4.5,1090907848\n461,1711,0.5,1091959840\n461,1717,1.5,1090908550\n461,1721,4.0,1091048448\n461,1722,1.5,1090908483\n461,1729,3.5,1091959230\n461,1732,3.5,1090908497\n461,1735,1.5,1093224483\n461,1748,3.5,1090907567\n461,1777,3.0,1090908504\n461,1779,1.5,1090908501\n461,1784,3.5,1091958672\n461,1792,1.0,1090908508\n461,1805,2.0,1091959601\n461,1831,1.0,1090908492\n461,1882,0.5,1090908488\n461,1895,3.5,1090909367\n461,1907,2.0,1090908452\n461,1909,2.0,1091959066\n461,1912,4.5,1091959238\n461,1918,2.0,1091959374\n461,1921,3.0,1091959627\n461,1923,3.0,1091048472\n461,1954,3.5,1090908464\n461,1958,2.0,1093224457\n461,1960,3.0,1090908444\n461,1961,3.0,1090907822\n461,1968,4.5,1090907833\n461,1970,1.0,1096527528\n461,1972,1.0,1090909354\n461,1982,3.5,1090907548\n461,1983,1.5,1093224760\n461,1994,3.5,1091959382\n461,1995,1.0,1096527511\n461,1997,4.5,1090908436\n461,2000,4.0,1090908468\n461,2001,3.0,1091959030\n461,2002,2.0,1091959339\n461,2003,3.5,1090908460\n461,2005,4.0,1091959402\n461,2011,2.5,1090907233\n461,2012,2.5,1091958843\n461,2028,3.5,1090907814\n461,2067,2.5,1091959759\n461,2076,3.5,1091959508\n461,2081,5.0,1090908429\n461,2088,0.5,1090908416\n461,2092,0.5,1090909324\n461,2094,2.5,1091959581\n461,2100,2.5,1090908427\n461,2105,2.5,1091959217\n461,2108,2.0,1091959304\n461,2115,4.0,1091958871\n461,2118,3.5,1091067256\n461,2122,2.0,1090909331\n461,2124,2.0,1091959607\n461,2125,2.0,1096527452\n461,2134,3.5,1090908422\n461,2139,2.0,1090908408\n461,2144,4.5,1091052194\n461,2145,3.5,1091959632\n461,2167,3.0,1090908419\n461,2174,3.0,1091958797\n461,2193,3.0,1090908396\n461,2194,3.5,1090908390\n461,2231,3.0,1090908383\n461,2240,2.5,1093224750\n461,2245,3.0,1091959894\n461,2248,3.5,1091067318\n461,2262,1.0,1090909315\n461,2268,2.5,1090907255\n461,2269,2.0,1090909305\n461,2273,3.0,1090907575\n461,2278,3.0,1090908387\n461,2288,2.5,1091067293\n461,2291,4.0,1090907240\n461,2294,1.5,1091959379\n461,2302,2.5,1091958960\n461,2320,2.0,1090907722\n461,2329,3.0,1091959285\n461,2333,3.5,1090908358\n461,2335,3.0,1090908354\n461,2336,2.0,1090907580\n461,2346,2.0,1090909274\n461,2355,3.5,1090907827\n461,2369,3.5,1091959645\n461,2373,1.5,1090907715\n461,2376,1.5,1090909285\n461,2389,0.5,1090909295\n461,2394,2.0,1090908362\n461,2395,4.0,1090907297\n461,2396,3.0,1090907818\n461,2409,3.0,1090908324\n461,2410,3.5,1090907501\n461,2420,3.5,1091959801\n461,2422,1.5,1090909289\n461,2424,1.5,1091959221\n461,2427,1.0,1091959491\n461,2446,1.0,1090907810\n461,2455,4.0,1090908334\n461,2470,2.0,1091959112\n461,2473,1.0,1090909280\n461,2485,2.5,1091959911\n461,2496,2.5,1090908347\n461,2497,1.0,1090909259\n461,2502,4.0,1091959050\n461,2505,1.0,1090909245\n461,2513,2.0,1093224438\n461,2539,2.0,1091959410\n461,2541,2.5,1091959569\n461,2542,4.0,1090908319\n461,2571,4.5,1091958534\n461,2580,3.5,1091067188\n461,2581,2.0,1090908343\n461,2599,3.5,1090908337\n461,2616,3.5,1091959853\n461,2628,1.5,1091958574\n461,2640,4.0,1090908310\n461,2641,3.5,1091959444\n461,2642,1.0,1093224434\n461,2643,0.5,1090909254\n461,2671,3.5,1091959058\n461,2687,2.0,1090908277\n461,2699,2.5,1090908295\n461,2700,4.5,1091958886\n461,2706,2.5,1091958709\n461,2710,2.5,1091958726\n461,2716,4.5,1091052185\n461,2717,1.0,1091959768\n461,2719,1.5,1090908280\n461,2722,2.5,1090908307\n461,2723,3.0,1091959362\n461,2734,1.5,1090909227\n461,2735,2.0,1090908283\n461,2761,4.5,1091067329\n461,2762,4.5,1091958565\n461,2770,1.5,1090907381\n461,2787,2.0,1090907695\n461,2791,5.0,1090907353\n461,2792,2.5,1090908302\n461,2797,3.5,1090908288\n461,2804,3.5,1091067285\n461,2858,2.0,1091958481\n461,2871,2.0,1091959455\n461,2872,3.5,1090907512\n461,2881,1.0,1091959481\n461,2891,2.5,1093224709\n461,2908,2.5,1091959539\n461,2915,3.0,1091067262\n461,2916,3.0,1091067220\n461,2918,4.5,1091958783\n461,2953,0.5,1096527462\n461,2959,5.0,1091067248\n461,2968,3.0,1093225306\n461,2985,4.5,1091048451\n461,2986,1.0,1090907508\n461,2987,4.0,1091067282\n461,2989,1.5,1093224416\n461,2997,4.0,1090907798\n461,3005,2.0,1090908245\n461,3006,3.5,1091959429\n461,3016,3.5,1090907515\n461,3020,2.0,1093224420\n461,3033,3.0,1091959242\n461,3039,5.0,1091052171\n461,3044,2.5,1091067297\n461,3081,2.5,1090908252\n461,3082,1.0,1091959517\n461,3087,2.0,1090908237\n461,3101,2.5,1091959036\n461,3107,3.0,1090907528\n461,3113,1.0,1096527625\n461,3114,3.5,1091958752\n461,3147,3.5,1091959046\n461,3155,2.0,1090909180\n461,3157,2.0,1090908264\n461,3160,3.5,1090908257\n461,3175,3.0,1091067303\n461,3176,2.5,1091958994\n461,3182,3.0,1096527500\n461,3186,2.5,1090909191\n461,3203,3.5,1090907532\n461,3210,4.0,1091067194\n461,3246,3.5,1090907497\n461,3249,1.5,1093224700\n461,3250,2.0,1090909184\n461,3251,1.5,1093224695\n461,3253,4.0,1090908269\n461,3255,3.0,1091959343\n461,3256,2.5,1090908205\n461,3259,1.0,1093224403\n461,3263,2.5,1090908189\n461,3270,4.0,1090909166\n461,3317,3.0,1091959753\n461,3334,3.5,1090907522\n461,3354,0.5,1091959775\n461,3408,4.0,1090907280\n461,3409,2.5,1090908218\n461,3418,4.0,1091959062\n461,3424,3.0,1091959874\n461,3438,3.5,1091052086\n461,3452,2.5,1091052087\n461,3478,2.5,1090907655\n461,3480,2.0,1090909139\n461,3481,4.0,1090908202\n461,3489,1.0,1091959764\n461,3499,3.5,1090908193\n461,3504,3.5,1091052163\n461,3510,1.5,1090907452\n461,3513,2.0,1090909136\n461,3527,3.5,1090908207\n461,3528,1.5,1090909142\n461,3535,3.0,1091959847\n461,3536,3.0,1090908226\n461,3578,3.5,1090907344\n461,3591,3.5,1091052145\n461,3608,4.0,1090908170\n461,3617,2.0,1090907469\n461,3623,1.5,1091048462\n461,3699,2.5,1091052158\n461,3701,2.0,1093224665\n461,3702,3.5,1091052153\n461,3703,4.0,1091052148\n461,3712,2.0,1090909127\n461,3723,3.0,1090909119\n461,3751,4.0,1091958924\n461,3752,2.5,1090908175\n461,3755,2.0,1091959348\n461,3785,0.5,1091959746\n461,3791,4.0,1090907648\n461,3793,2.0,1090908184\n461,3798,2.5,1090908179\n461,3841,0.5,1093225145\n461,3863,1.0,1090907447\n461,3868,4.0,1091067244\n461,3893,2.5,1096527610\n461,3895,0.5,1093224965\n461,3896,3.5,1090909091\n461,3897,4.0,1090908167\n461,3911,3.0,1091959440\n461,3948,2.5,1091959153\n461,3949,4.0,1090908131\n461,3959,3.5,1090909095\n461,3967,2.5,1091959899\n461,3968,1.0,1090907482\n461,3977,3.5,1091959117\n461,3980,1.5,1093224658\n461,3993,2.5,1090909056\n461,3994,2.5,1091959184\n461,3996,4.0,1091958775\n461,4002,3.0,1091049818\n461,4010,3.5,1090909050\n461,4011,4.5,1090908134\n461,4019,1.5,1090908154\n461,4020,3.0,1090907664\n461,4022,3.5,1090907360\n461,4025,2.5,1090908138\n461,4027,4.0,1091959026\n461,4033,3.5,1090909081\n461,4034,2.5,1091048478\n461,4062,1.5,1093224641\n461,4066,3.5,1090909076\n461,4069,1.0,1090909068\n461,4084,3.5,1090909071\n461,4085,4.5,1090908142\n461,4091,2.0,1090909034\n461,4105,4.0,1091067232\n461,4128,3.5,1091049826\n461,4132,4.0,1090907668\n461,4148,3.0,1090908150\n461,4159,0.5,1090909020\n461,4210,4.0,1090907672\n461,4214,3.5,1090909040\n461,4226,4.5,1091048482\n461,4238,1.5,1090909025\n461,4246,4.5,1091049808\n461,4291,2.0,1090909014\n461,4306,3.0,1090907275\n461,4308,4.0,1091959575\n461,4310,1.0,1093224387\n461,4321,4.0,1090908159\n461,4343,1.0,1090907653\n461,4370,2.0,1091049820\n461,4447,3.5,1091049797\n461,4465,3.0,1093224627\n461,4478,3.0,1093224616\n461,4564,1.0,1090908992\n461,4571,3.5,1090908110\n461,4603,0.5,1090907774\n461,4621,2.5,1093224620\n461,4638,1.5,1090908103\n461,4666,1.5,1090908115\n461,4673,3.0,1093224629\n461,4720,3.5,1096527589\n461,4734,2.5,1096527437\n461,4792,0.5,1090908121\n461,4816,2.0,1090907487\n461,4846,3.0,1096527433\n461,4865,3.0,1090907678\n461,4876,0.5,1090907615\n461,4878,3.0,1091067307\n461,4896,3.5,1091959314\n461,4951,2.5,1090908976\n461,4963,3.0,1091959276\n461,4973,4.5,1090908107\n461,4975,1.0,1096527568\n461,4979,4.5,1091049813\n461,4993,4.5,1090908092\n461,5010,3.0,1091052190\n461,5013,2.5,1093224391\n461,5015,1.5,1091049806\n461,5025,1.5,1090908964\n461,5049,3.5,1090908950\n461,5066,1.5,1093224942\n461,5103,3.0,1093224613\n461,5254,3.0,1090908955\n461,5308,2.0,1090908916\n461,5349,4.0,1091959178\n461,5357,3.0,1090908075\n461,5377,3.5,1096527586\n461,5378,0.5,1091049776\n461,5388,4.0,1090908078\n461,5418,3.5,1090908084\n461,5445,3.5,1091959246\n461,5500,5.0,1091067333\n461,5502,3.0,1090908073\n461,5540,3.5,1090908929\n461,5617,3.5,1090907638\n461,5618,4.0,1090908936\n461,5679,4.5,1090907395\n461,5754,2.0,1090908924\n461,5782,4.0,1130133861\n461,5810,3.5,1090908939\n461,5816,3.0,1150092445\n461,5952,4.5,1091959162\n461,5989,3.0,1090908062\n461,5991,2.5,1091049753\n461,6003,2.0,1093224603\n461,6016,3.5,1093225088\n461,6058,2.0,1093224911\n461,6157,1.5,1090907610\n461,6201,2.5,1090908056\n461,6250,1.5,1093224899\n461,6323,2.0,1090908905\n461,6333,3.5,1090908044\n461,6365,2.0,1090908047\n461,6377,4.5,1093224378\n461,6476,3.0,1090908052\n461,6502,4.0,1090908898\n461,6503,1.0,1093224574\n461,6534,2.5,1090907629\n461,6539,3.5,1090908025\n461,6796,2.5,1091052182\n461,6857,3.5,1091067174\n461,6874,4.0,1090908871\n461,6934,2.0,1090908884\n461,6942,4.0,1090908863\n461,6944,2.5,1093224581\n461,6947,3.0,1091067370\n461,6979,3.5,1090908888\n461,6983,3.5,1090908880\n461,7022,3.5,1093224878\n461,7036,3.0,1090907735\n461,7090,3.5,1093225033\n461,7153,5.0,1091049781\n461,7171,2.5,1093225072\n461,7373,3.5,1093225093\n461,7386,4.5,1091052188\n461,7438,4.0,1090908866\n461,8368,4.5,1150092449\n461,8464,3.5,1091052203\n461,8636,4.5,1093225013\n461,8665,4.0,1091958266\n461,8722,1.0,1093225135\n461,8783,3.5,1091958277\n461,8798,4.5,1093225028\n461,8807,3.0,1093225045\n461,8874,4.0,1096527369\n461,8961,4.5,1130133852\n461,33679,3.5,1150092304\n461,33794,4.0,1130133848\n461,34048,3.5,1150092276\n461,34405,4.0,1130133839\n461,35836,4.0,1130133883\n461,36519,3.5,1150092204\n461,37733,3.5,1150091788\n461,38038,4.5,1130133875\n461,39183,3.5,1150091805\n461,40629,3.5,1150092135\n461,40815,4.5,1150092124\n461,41566,3.0,1150091773\n461,41569,4.0,1150091757\n461,41716,3.5,1150092090\n461,42728,3.0,1150092047\n461,42730,3.0,1150092076\n461,44191,3.5,1150091718\n462,21,3.5,1115312737\n462,104,4.5,1115312685\n462,141,4.0,1115312652\n462,180,3.0,1115312698\n462,186,2.5,1115312258\n462,246,4.0,1115312253\n462,356,5.0,1115312512\n462,357,3.0,1115312710\n462,380,3.5,1115312581\n462,440,2.0,1115312587\n462,539,3.0,1115312628\n462,543,2.5,1115312275\n462,552,2.0,1115312284\n462,587,3.5,1115312606\n462,597,3.5,1115312616\n462,785,3.5,1115312723\n462,1042,2.0,1115312657\n462,1265,3.0,1115312756\n462,1372,3.0,1115312360\n462,1376,3.0,1115312280\n462,1396,2.5,1115312271\n462,1476,3.0,1115312687\n462,1500,3.0,1115312693\n462,1517,5.0,1115312673\n462,1580,4.0,1115312593\n462,1625,5.0,1115312352\n462,1639,3.0,1115312245\n462,1784,3.5,1115312752\n462,1923,5.0,1115312510\n462,2001,5.0,1115312307\n462,2100,3.5,1115312322\n462,2108,3.0,1115312743\n462,2302,4.0,1115312599\n462,2321,3.5,1115312356\n462,2324,4.0,1115312517\n462,2353,3.5,1115312297\n462,2596,1.0,1115312760\n462,2657,3.0,1115312318\n462,2671,2.0,1115312609\n462,2699,3.0,1115312242\n462,2706,4.5,1115312635\n462,2858,5.0,1115312520\n462,3052,3.0,1115312631\n462,3174,3.0,1115312763\n462,3175,2.0,1115312640\n462,3176,3.5,1115312328\n462,3253,4.0,1115312645\n462,3255,3.0,1115312590\n462,3261,3.5,1115312717\n462,3977,3.0,1115312342\n462,4321,3.5,1115312578\n463,1,3.0,1049913385\n463,7,4.0,1050499745\n463,11,3.0,1049924343\n463,17,4.0,1050499223\n463,24,2.0,1050439270\n463,25,3.0,1050499156\n463,32,4.0,1050439203\n463,39,3.0,1049924900\n463,47,4.0,1049922469\n463,48,3.0,1050499840\n463,50,5.0,1049913552\n463,52,4.0,1049913506\n463,110,5.0,1049912928\n463,132,2.0,1051643569\n463,151,3.0,1050439020\n463,160,1.0,1050439585\n463,161,3.0,1050438983\n463,168,3.0,1050499923\n463,195,3.0,1050499745\n463,222,4.0,1050499356\n463,223,4.0,1049923845\n463,225,3.0,1051643426\n463,260,5.0,1049912928\n463,266,4.0,1049912641\n463,288,2.0,1051643535\n463,292,3.0,1051643461\n463,293,4.0,1050499156\n463,296,3.0,1049913527\n463,316,4.0,1050439429\n463,318,5.0,1049913589\n463,329,3.0,1050439353\n463,339,3.0,1049924343\n463,349,3.0,1051643331\n463,350,3.0,1051643381\n463,353,4.0,1049922660\n463,356,3.0,1049924031\n463,357,4.0,1049924002\n463,377,3.0,1049922528\n463,380,4.0,1049913914\n463,442,2.0,1050439484\n463,454,3.0,1051643381\n463,457,3.0,1049913035\n463,474,3.0,1049922649\n463,480,4.0,1049913808\n463,490,4.0,1051643301\n463,509,3.0,1049912562\n463,527,5.0,1049913608\n463,539,3.0,1050499463\n463,541,4.0,1051711344\n463,551,4.0,1049924002\n463,587,4.0,1050499745\n463,588,4.0,1049913411\n463,589,4.0,1049912983\n463,590,5.0,1049913781\n463,592,4.0,1049913831\n463,593,5.0,1049913589\n463,595,5.0,1049913411\n463,597,2.0,1049912458\n463,608,4.0,1049913631\n463,610,4.0,1050439342\n463,628,4.0,1051643257\n463,647,3.0,1050439020\n463,708,4.0,1050499651\n463,733,3.0,1049922549\n463,736,4.0,1050499784\n463,786,1.0,1051643407\n463,802,2.0,1050499553\n463,832,3.0,1049922750\n463,852,3.0,1050499553\n463,858,5.0,1049912418\n463,880,2.0,1050439606\n463,904,4.0,1049922352\n463,908,4.0,1049922352\n463,914,4.0,1050499182\n463,915,4.0,1049924031\n463,916,4.0,1049924150\n463,919,4.0,1050437796\n463,920,4.0,1050438915\n463,934,4.0,1049924281\n463,1036,4.0,1049912983\n463,1037,3.0,1050439528\n463,1047,3.0,1051643302\n463,1059,4.0,1050499307\n463,1060,4.0,1049923908\n463,1073,4.0,1049913808\n463,1079,5.0,1049923865\n463,1088,3.0,1050499697\n463,1089,4.0,1049922382\n463,1090,3.0,1050438959\n463,1092,4.0,1051643302\n463,1094,4.0,1050438959\n463,1097,4.0,1050439234\n463,1101,4.0,1050499441\n463,1127,3.0,1049913889\n463,1129,3.0,1049913946\n463,1183,2.0,1050438983\n463,1193,5.0,1049913608\n463,1196,5.0,1049913725\n463,1197,4.0,1049913012\n463,1198,4.0,1049912458\n463,1200,4.0,1049912948\n463,1204,4.0,1049913752\n463,1207,5.0,1049913536\n463,1208,4.0,1050438898\n463,1210,5.0,1049913035\n463,1213,3.0,1049913645\n463,1214,5.0,1049912817\n463,1219,4.0,1049912817\n463,1221,4.0,1049913552\n463,1222,3.0,1050438983\n463,1225,4.0,1049913589\n463,1231,4.0,1051711318\n463,1233,5.0,1049913589\n463,1240,5.0,1049912983\n463,1242,4.0,1050438927\n463,1246,4.0,1051711660\n463,1259,4.0,1049913764\n463,1270,4.0,1050439203\n463,1275,4.0,1050437828\n463,1285,4.0,1049924814\n463,1288,4.0,1049923796\n463,1290,3.0,1050499553\n463,1291,3.0,1049913035\n463,1296,4.0,1050499463\n463,1298,4.0,1050439086\n463,1302,3.0,1051711442\n463,1307,4.0,1049923880\n463,1320,2.0,1050439396\n463,1330,2.0,1051711851\n463,1339,4.0,1050499713\n463,1343,4.0,1051643331\n463,1344,3.0,1049922406\n463,1347,4.0,1051712004\n463,1356,4.0,1049912677\n463,1357,4.0,1050499426\n463,1358,4.0,1049913619\n463,1370,2.0,1049922750\n463,1371,3.0,1050439369\n463,1372,4.0,1049913977\n463,1373,2.0,1049912677\n463,1374,5.0,1049913844\n463,1375,3.0,1050439370\n463,1376,4.0,1049913889\n463,1378,4.0,1051712195\n463,1380,3.0,1049924932\n463,1387,4.0,1049912817\n463,1393,4.0,1050499307\n463,1394,5.0,1049923865\n463,1396,4.0,1050439234\n463,1407,3.0,1049912875\n463,1408,4.0,1050439035\n463,1409,3.0,1050499697\n463,1479,2.0,1050499724\n463,1488,3.0,1051643438\n463,1500,4.0,1049923880\n463,1544,2.0,1050439528\n463,1569,4.0,1050499356\n463,1573,2.0,1049922819\n463,1580,4.0,1049913889\n463,1584,4.0,1050439251\n463,1587,4.0,1051712437\n463,1608,2.0,1049922869\n463,1610,5.0,1049913035\n463,1615,3.0,1051643353\n463,1617,4.0,1049922367\n463,1619,3.0,1050439020\n463,1620,2.0,1051643257\n463,1625,4.0,1049922469\n463,1639,4.0,1050499223\n463,1641,4.0,1049924256\n463,1653,3.0,1049922649\n463,1674,4.0,1049922424\n463,1676,2.0,1050439110\n463,1687,2.0,1051643493\n463,1721,4.0,1050499369\n463,1732,3.0,1049922841\n463,1748,4.0,1049922406\n463,1777,4.0,1049924964\n463,1889,3.0,1051643214\n463,1892,3.0,1051643331\n463,1909,2.0,1050439286\n463,1914,4.0,1049912654\n463,1921,4.0,1049922768\n463,1957,4.0,1051711334\n463,1959,4.0,1050499697\n463,1960,4.0,1050438940\n463,1961,3.0,1051711487\n463,1962,4.0,1051711354\n463,1965,3.0,1050439251\n463,1968,4.0,1049912311\n463,1974,3.0,1051712239\n463,1982,4.0,1049912855\n463,1983,3.0,1051712605\n463,1984,1.0,1051712828\n463,1994,4.0,1049922549\n463,1997,4.0,1049912817\n463,2000,4.0,1049924227\n463,2001,4.0,1051711789\n463,2006,3.0,1050437828\n463,2011,2.0,1051711964\n463,2012,1.0,1049912367\n463,2013,4.0,1049913977\n463,2020,4.0,1050499131\n463,2028,4.0,1049912948\n463,2054,3.0,1050439500\n463,2058,3.0,1049922819\n463,2081,4.0,1049913444\n463,2088,1.0,1051712565\n463,2100,3.0,1051643660\n463,2105,4.0,1049913977\n463,2115,3.0,1051711851\n463,2119,1.0,1051712743\n463,2122,2.0,1051712651\n463,2134,3.0,1051712099\n463,2138,4.0,1051643648\n463,2141,3.0,1051712109\n463,2143,3.0,1050499796\n463,2144,3.0,1049924950\n463,2145,3.0,1051711964\n463,2146,4.0,1050499664\n463,2155,3.0,1049924932\n463,2164,1.0,1049912677\n463,2174,3.0,1049924215\n463,2193,3.0,1051643679\n463,2194,5.0,1049912983\n463,2245,3.0,1051711806\n463,2248,3.0,1049923983\n463,2262,3.0,1050499635\n463,2263,3.0,1051712464\n463,2288,3.0,1051711334\n463,2289,4.0,1049923845\n463,2311,4.0,1050439396\n463,2316,3.0,1050499859\n463,2321,4.0,1049924343\n463,2329,4.0,1049912738\n463,2334,3.0,1051643426\n463,2352,3.0,1051711487\n463,2355,4.0,1049913431\n463,2359,3.0,1049923983\n463,2369,2.0,1050499713\n463,2371,4.0,1051711851\n463,2375,2.0,1051712508\n463,2376,3.0,1051712146\n463,2378,4.0,1051712195\n463,2391,4.0,1051643189\n463,2393,3.0,1050439462\n463,2396,5.0,1049923755\n463,2403,4.0,1051712122\n463,2404,2.0,1051712663\n463,2406,3.0,1050499463\n463,2407,3.0,1049924293\n463,2410,3.0,1051712311\n463,2411,3.0,1051712576\n463,2420,3.0,1051711882\n463,2421,2.0,1051712495\n463,2422,1.0,1051712760\n463,2423,4.0,1049912418\n463,2450,1.0,1049912698\n463,2455,4.0,1049912875\n463,2470,3.0,1051711987\n463,2471,1.0,1051712508\n463,2497,2.0,1050499933\n463,2502,5.0,1050499223\n463,2505,2.0,1051643506\n463,2513,4.0,1051712426\n463,2529,4.0,1050439203\n463,2541,2.0,1049912616\n463,2542,3.0,1049922528\n463,2551,4.0,1049912711\n463,2571,5.0,1049912929\n463,2599,4.0,1049924172\n463,2617,2.0,1051643381\n463,2622,4.0,1051643711\n463,2628,1.0,1050439270\n463,2640,4.0,1049913889\n463,2641,4.0,1050439396\n463,2657,3.0,1050439342\n463,2664,4.0,1049912841\n463,2671,3.0,1049924846\n463,2706,3.0,1049924240\n463,2716,4.0,1049923942\n463,2717,2.0,1051712207\n463,2724,2.0,1050499912\n463,2735,3.0,1051712464\n463,2761,4.0,1049913431\n463,2762,4.0,1049922367\n463,2791,4.0,1051711442\n463,2795,4.0,1051711545\n463,2797,4.0,1049923960\n463,2803,3.0,1051643475\n463,2804,5.0,1051711318\n463,2858,5.0,1049913645\n463,2871,4.0,1049913781\n463,2875,3.0,1050499960\n463,2890,4.0,1050438983\n463,2908,3.0,1049912311\n463,2916,2.0,1049922679\n463,2918,4.0,1049923830\n463,2942,3.0,1050499810\n463,2985,4.0,1050439299\n463,2987,1.0,1049913431\n463,2989,4.0,1051711882\n463,2997,2.0,1049923796\n463,3005,1.0,1051643426\n463,3018,3.0,1051711615\n463,3039,4.0,1049924048\n463,3052,2.0,1049923983\n463,3081,4.0,1049912616\n463,3087,3.0,1051711694\n463,3098,3.0,1051711521\n463,3101,4.0,1049922819\n463,3102,4.0,1049922819\n463,3175,3.0,1049913808\n463,3176,2.0,1049922719\n463,3185,3.0,1051214702\n463,3210,4.0,1051711545\n463,3249,3.0,1051643353\n463,3253,4.0,1049924886\n463,3256,3.0,1051643331\n463,3257,3.0,1050499960\n463,3259,3.0,1050499784\n463,3260,4.0,1049912626\n463,3263,2.0,1049912573\n463,3317,4.0,1049924215\n463,3361,4.0,1049924172\n463,3408,4.0,1051210420\n463,3412,4.0,1051711615\n463,3421,4.0,1049923865\n463,3422,4.0,1050499570\n463,3441,4.0,1050439098\n463,3479,3.0,1049913889\n463,3481,4.0,1049923942\n463,3489,1.0,1051643771\n463,3505,4.0,1049922505\n463,3519,4.0,1050439035\n463,3525,3.0,1051712250\n463,3527,4.0,1049922719\n463,3528,3.0,1050499697\n463,3534,3.0,1051214768\n463,3552,4.0,1049924281\n463,3555,3.0,1051214670\n463,3556,2.0,1051210583\n463,3578,5.0,1051210542\n463,3591,3.0,1051711945\n463,3608,2.0,1051711645\n463,3623,2.0,1051214702\n463,3638,3.0,1050499784\n463,3686,4.0,1049922869\n463,3693,4.0,1051712050\n463,3698,3.0,1050439441\n463,3702,4.0,1050439286\n463,3703,4.0,1050439270\n463,3704,4.0,1050439429\n463,3706,2.0,1051711819\n463,3740,2.0,1051712061\n463,3751,4.0,1051210336\n463,3752,3.0,1051215423\n463,3753,3.0,1050439060\n463,3755,3.0,1051214702\n463,3763,3.0,1051711725\n463,3791,3.0,1051712160\n463,3793,4.0,1050439251\n463,3798,3.0,1051215159\n463,3825,2.0,1051215599\n463,3844,4.0,1051711806\n463,3863,4.0,1049923598\n463,3897,4.0,1049923796\n463,3911,4.0,1049924048\n463,3917,3.0,1051712146\n463,3952,4.0,1051210386\n463,3967,4.0,1051210278\n463,3977,2.0,1051214785\n463,3988,1.0,1051215409\n463,3994,4.0,1049922779\n463,3996,4.0,1049912929\n463,4002,3.0,1051711558\n463,4007,4.0,1051711521\n463,4014,4.0,1049924293\n463,4020,3.0,1049922751\n463,4022,4.0,1049913831\n463,4025,2.0,1051214827\n463,4027,5.0,1049913831\n463,4029,3.0,1049924256\n463,4034,5.0,1051210069\n463,4036,4.0,1051210571\n463,4041,3.0,1050499598\n463,4084,3.0,1051712311\n463,4085,4.0,1049924310\n463,4103,4.0,1050438959\n463,4128,4.0,1051711682\n463,4132,3.0,1050499987\n463,4148,2.0,1051215133\n463,4149,3.0,1051215720\n463,4161,2.0,1051215197\n463,4214,4.0,1049912418\n463,4223,4.0,1050439020\n463,4226,5.0,1049913552\n463,4238,2.0,1051215121\n463,4246,4.0,1050499570\n463,4262,3.0,1049912602\n463,4299,4.0,1049913946\n463,4306,5.0,1049913411\n463,4308,5.0,1051210311\n463,4321,3.0,1049913946\n463,4344,2.0,1051215409\n463,4361,3.0,1050499168\n463,4370,1.0,1050439370\n463,4378,2.0,1051210401\n463,4444,4.0,1049912983\n463,4447,3.0,1051214645\n463,4448,3.0,1051210454\n463,4478,4.0,1051711789\n463,4487,2.0,1050499912\n463,4489,3.0,1051712021\n463,4508,4.0,1051711932\n463,4535,3.0,1050499474\n463,4543,3.0,1051711851\n463,4571,4.0,1049913914\n463,4618,2.0,1050439620\n463,4623,3.0,1049924825\n463,4641,2.0,1051210278\n463,4643,1.0,1050439528\n463,4681,2.0,1051711920\n463,4720,4.0,1049912841\n463,4734,3.0,1049924031\n463,4776,3.0,1051214520\n463,4809,3.0,1051711600\n463,4814,2.0,1051215181\n463,4823,2.0,1051214739\n463,4835,2.0,1051711463\n463,4844,3.0,1051210559\n463,4848,4.0,1049912418\n463,4880,4.0,1051210386\n463,4881,3.0,1051210278\n463,4886,4.0,1049913411\n463,4896,3.0,1051210454\n463,4901,3.0,1049922751\n463,4903,4.0,1051210226\n463,4932,2.0,1051711920\n463,4941,2.0,1050439441\n463,4963,4.0,1049924267\n463,4973,4.0,1049923830\n463,4975,3.0,1049922719\n463,4979,3.0,1049924172\n463,4993,5.0,1049913589\n463,4995,4.0,1050499238\n463,5010,3.0,1050439035\n463,5013,4.0,1049924031\n463,5111,3.0,1051643582\n463,5171,2.0,1050439546\n463,5172,1.0,1051550808\n463,5237,4.0,1051712004\n463,5265,4.0,1051214785\n463,5266,4.0,1049922719\n463,5294,4.0,1049922424\n463,5299,4.0,1050499356\n463,5303,3.0,1050499884\n463,5349,4.0,1049913808\n463,5377,4.0,1049923926\n463,5378,3.0,1049913977\n463,5388,3.0,1049913012\n463,5400,3.0,1051214739\n463,5415,3.0,1051214739\n463,5418,2.0,1049922505\n463,5445,2.0,1049913012\n463,5463,2.0,1049913914\n463,5464,3.0,1051210351\n463,5481,1.0,1051215067\n463,5502,4.0,1049922719\n463,5540,3.0,1051643749\n463,5620,3.0,1050499871\n463,5679,5.0,1049912841\n463,5693,3.0,1050499238\n463,5694,3.0,1049912367\n463,5812,4.0,1051550788\n463,5816,4.0,1051210336\n463,5859,3.0,1051712160\n463,5944,1.0,1050439546\n463,5952,4.0,1050437796\n463,5970,4.0,1050499811\n463,6078,3.0,1051712357\n463,6303,4.0,1050439396\n463,6308,3.0,1050499987\n464,10,5.0,829911793\n464,39,5.0,829912558\n464,62,5.0,829911793\n464,95,5.0,829911793\n464,153,5.0,829912557\n464,158,4.0,829912557\n464,163,4.0,829912558\n464,165,4.0,829912558\n464,173,2.0,829912558\n464,196,3.0,829912558\n464,198,4.0,829912558\n464,204,4.0,829912558\n464,222,5.0,829912557\n464,236,4.0,829912558\n464,256,4.0,829912558\n464,257,5.0,829912558\n464,260,5.0,829912558\n464,262,5.0,829912558\n464,296,5.0,829912558\n464,317,2.0,829912558\n464,339,5.0,829912558\n464,344,3.0,829912557\n464,349,4.0,829912557\n464,380,4.0,829912558\n464,410,4.0,829912557\n464,434,4.0,829912557\n464,588,5.0,829912557\n464,592,4.0,829912557\n464,595,5.0,829912557\n464,610,4.0,829911793\n465,17,5.0,1170653276\n465,39,4.5,1170653255\n465,135,1.0,1170652740\n465,327,3.0,1170652767\n465,531,3.5,1170652746\n465,542,0.5,1170652893\n465,562,3.0,1170652771\n465,661,4.0,1170653770\n465,778,5.0,1170653457\n465,838,5.0,1170653263\n465,858,5.0,1170653592\n465,1620,3.5,1170652847\n465,1895,4.5,1170652934\n465,1958,5.0,1170652812\n465,2145,4.0,1170652763\n465,2336,5.0,1170653408\n465,2375,3.0,1170652879\n465,2542,5.0,1170653427\n465,2581,3.0,1170652760\n465,2959,5.0,1170653589\n465,3107,3.0,1170652734\n465,3452,4.0,1170652906\n465,3512,3.5,1170652951\n465,3844,5.0,1170652953\n465,4011,5.0,1170653455\n465,4246,4.5,1170653260\n465,4896,4.5,1170653605\n465,4921,5.0,1170653523\n465,4995,4.0,1170653526\n465,5377,3.5,1170653517\n465,5816,4.5,1170653563\n465,6942,4.0,1170653399\n465,27706,4.0,1170653646\n465,30793,3.5,1170653609\n465,31694,1.0,1170653280\n465,34162,4.0,1170652940\n465,38798,3.0,1170653612\n465,40629,5.0,1170653266\n465,40815,4.5,1170653520\n466,1,5.0,944892273\n466,2,3.0,944978286\n466,25,3.0,945139829\n466,34,4.0,944979430\n466,36,3.0,945317020\n466,39,4.0,944979604\n466,41,4.0,945010502\n466,48,3.0,944979236\n466,50,4.0,945139638\n466,150,4.0,945139757\n466,153,2.0,944978804\n466,223,5.0,944979917\n466,246,5.0,945139311\n466,260,5.0,944977176\n466,296,4.0,945232550\n466,316,2.0,945317266\n466,318,5.0,945139349\n466,329,3.0,944978286\n466,333,4.0,945317313\n466,344,2.0,944892302\n466,357,5.0,944979809\n466,364,5.0,944978989\n466,381,3.0,944892303\n466,440,2.0,944979745\n466,480,4.0,944978157\n466,497,5.0,945140540\n466,500,4.0,945317187\n466,527,5.0,945139349\n466,539,3.0,945317137\n466,541,3.0,945139801\n466,586,4.0,945317291\n466,588,4.0,944978924\n466,589,3.0,945139738\n466,592,4.0,944977911\n466,594,5.0,944978924\n466,595,5.0,944978989\n466,596,5.0,944978924\n466,608,4.0,945139883\n466,616,5.0,944979057\n466,627,3.0,949377348\n466,648,1.0,944978339\n466,674,1.0,944978060\n466,678,4.0,945010704\n466,709,3.0,944979109\n466,761,4.0,944978548\n466,783,4.0,944979109\n466,848,4.0,945317247\n466,858,5.0,944942987\n466,898,5.0,944979430\n466,899,5.0,945010461\n466,903,4.0,944977399\n466,904,5.0,944977273\n466,912,5.0,944892273\n466,919,5.0,944977223\n466,923,5.0,944977357\n466,940,5.0,944977694\n466,953,5.0,945232758\n466,954,5.0,945140415\n466,1022,4.0,944979024\n466,1023,5.0,944979109\n466,1029,5.0,944979057\n466,1036,4.0,945140034\n466,1042,3.0,944980010\n466,1050,4.0,945139263\n466,1079,5.0,945139434\n466,1091,2.0,945836678\n466,1094,4.0,945139717\n466,1097,5.0,945139864\n466,1103,4.0,945140176\n466,1104,4.0,945140034\n466,1135,3.0,945836604\n466,1196,4.0,944977696\n466,1197,5.0,944977756\n466,1198,5.0,944977696\n466,1200,5.0,945232987\n466,1203,4.0,945139663\n466,1208,3.0,944942987\n466,1210,4.0,944892303\n466,1220,4.0,945836527\n466,1221,4.0,944942987\n466,1224,5.0,945139464\n466,1231,4.0,945140071\n466,1242,5.0,945233281\n466,1256,5.0,944977176\n466,1259,5.0,944977789\n466,1265,4.0,944977357\n466,1266,4.0,945139414\n466,1269,5.0,944979858\n466,1270,3.0,944979714\n466,1282,3.0,944978924\n466,1287,4.0,944977789\n466,1288,4.0,945836302\n466,1291,4.0,944977956\n466,1297,2.0,945836436\n466,1307,5.0,945140225\n466,1321,3.0,945140445\n466,1356,3.0,944978124\n466,1358,4.0,945139801\n466,1370,3.0,944892273\n466,1371,3.0,944978761\n466,1373,2.0,944978804\n466,1374,5.0,944977834\n466,1375,4.0,944978157\n466,1376,4.0,944978060\n466,1377,3.0,944978124\n466,1378,3.0,945836657\n466,1387,5.0,945139663\n466,1394,4.0,944979714\n466,1408,5.0,945317086\n466,1544,3.0,944978490\n466,1566,3.0,944979178\n466,1580,3.0,944979604\n466,1617,3.0,944977451\n466,1639,5.0,945140370\n466,1641,4.0,945139990\n466,1663,4.0,945836436\n466,1676,3.0,944978339\n466,1688,5.0,944979201\n466,1704,4.0,944892929\n466,1784,4.0,945233032\n466,1810,3.0,945139717\n466,1883,3.0,945140106\n466,1907,5.0,944978989\n466,1917,2.0,944978367\n466,1934,5.0,944979858\n466,1947,5.0,945233333\n466,1968,3.0,945836527\n466,1997,4.0,945140225\n466,2003,4.0,945836576\n466,2005,1.0,944892273\n466,2011,1.0,945836576\n466,2018,5.0,944978989\n466,2028,5.0,945139414\n466,2054,3.0,944978287\n466,2078,5.0,944979024\n466,2080,5.0,944978924\n466,2081,5.0,944979057\n466,2085,5.0,944979024\n466,2087,5.0,944978989\n466,2088,3.0,944978416\n466,2090,4.0,944979178\n466,2100,2.0,945836527\n466,2114,3.0,945317187\n466,2115,4.0,944978124\n466,2140,2.0,945317187\n466,2141,3.0,944979109\n466,2144,2.0,945836527\n466,2145,2.0,945836576\n466,2174,3.0,945836436\n466,2193,2.0,944978060\n466,2243,5.0,944979858\n466,2245,3.0,945836576\n466,2262,3.0,945836628\n466,2321,2.0,944979943\n466,2324,4.0,948124791\n466,2352,3.0,945836302\n466,2355,5.0,944979562\n466,2369,3.0,945836628\n466,2371,2.0,944892929\n466,2384,3.0,944979562\n466,2394,4.0,944898563\n466,2395,4.0,944979809\n466,2396,5.0,944897726\n466,2405,4.0,945836657\n466,2406,4.0,944977911\n466,2414,4.0,944978287\n466,2421,2.0,944978448\n466,2427,4.0,945317187\n466,2469,3.0,945836576\n466,2470,3.0,945836657\n466,2473,2.0,945836740\n466,2478,3.0,945317332\n466,2501,4.0,944898002\n466,2506,4.0,947735412\n466,2529,5.0,944892929\n466,2539,3.0,944898563\n466,2558,2.0,947735304\n466,2571,2.0,944897726\n466,2599,4.0,949377543\n466,2617,4.0,944898945\n466,2628,3.0,944978287\n466,2640,4.0,944977834\n466,2641,5.0,944978199\n466,2642,2.0,944978804\n466,2683,4.0,944898563\n466,2687,5.0,944979024\n466,2693,4.0,949377501\n466,2700,3.0,944898002\n466,2723,4.0,948339736\n466,2736,4.0,945836604\n466,2739,4.0,945010270\n466,2746,5.0,945836527\n466,2761,5.0,944897726\n466,2762,4.0,945139829\n466,2797,5.0,945317111\n466,2863,4.0,944977483\n466,2875,3.0,945317247\n466,2915,2.0,945836527\n466,2916,3.0,944977834\n466,2918,5.0,945317053\n466,2987,5.0,944977834\n466,3034,4.0,944978989\n466,3035,5.0,944980010\n466,3037,4.0,945232758\n466,3052,3.0,945316556\n466,3060,4.0,944979810\n466,3072,4.0,944979562\n466,3088,5.0,944979604\n466,3097,4.0,944977223\n466,3108,5.0,945140225\n466,3114,5.0,944978924\n466,3130,2.0,945317420\n466,3157,2.0,949377475\n466,3175,2.0,948985208\n466,3176,4.0,948339694\n466,5060,3.0,944979604\n467,43,4.0,939063188\n467,155,3.0,939064184\n467,223,2.0,939063188\n467,341,4.0,939715642\n467,432,2.0,939064322\n467,523,4.0,941441316\n467,590,5.0,942047345\n467,608,5.0,939063829\n467,858,4.0,939063829\n467,903,5.0,939063829\n467,928,5.0,939628293\n467,1056,3.0,946094367\n467,1093,3.0,939063537\n467,1124,4.0,939064124\n467,1213,4.0,939063829\n467,1221,4.0,939063829\n467,1236,4.0,942756581\n467,1513,2.0,939063537\n467,1537,4.0,942047345\n467,1584,5.0,945642825\n467,1645,4.0,941876931\n467,1684,3.0,941440809\n467,1704,5.0,939063829\n467,1711,4.0,939064257\n467,1721,5.0,939628293\n467,1784,5.0,939063871\n467,1923,4.0,939628293\n467,2023,4.0,939064124\n467,2062,3.0,939064124\n467,2150,3.0,939064184\n467,2154,4.0,939064040\n467,2165,2.0,939628293\n467,2166,4.0,941441316\n467,2168,4.0,942047345\n467,2188,3.0,939063634\n467,2268,4.0,939063871\n467,2336,3.0,939063365\n467,2390,3.0,939063365\n467,2395,4.0,939063188\n467,2396,5.0,939063287\n467,2424,4.0,939063871\n467,2433,5.0,939063588\n467,2434,5.0,939063365\n467,2469,4.0,939064221\n467,2501,2.0,939731054\n467,2539,3.0,939731054\n467,2567,4.0,939731054\n467,2575,5.0,939628293\n467,2580,4.0,939063365\n467,2590,3.0,943804795\n467,2599,4.0,943804714\n467,2716,4.0,939063287\n467,2724,4.0,939062828\n467,2725,3.0,939062573\n467,2762,4.0,939062479\n467,2858,5.0,939062480\n467,2881,4.0,939062746\n467,2942,5.0,942047378\n467,2950,4.0,939064363\n467,2997,4.0,943804760\n467,3051,3.0,945642349\n467,3079,4.0,945642308\n467,3083,4.0,945642308\n467,3125,5.0,945642255\n468,1,4.0,1296195523\n468,2,2.0,1296195941\n468,3,2.5,1296196738\n468,6,3.5,1296195765\n468,10,3.0,1296195616\n468,11,2.0,1296195998\n468,16,3.5,1296196073\n468,17,3.5,1296195956\n468,19,1.5,1296190090\n468,21,2.5,1296195775\n468,24,2.5,1296198402\n468,25,3.0,1296195961\n468,31,1.5,1296193889\n468,32,3.0,1296189720\n468,34,3.5,1296191457\n468,39,3.0,1296195802\n468,44,1.5,1296197500\n468,47,3.5,1296195557\n468,48,2.5,1296197205\n468,50,3.0,1296195544\n468,58,3.0,1296197114\n468,62,2.5,1296195949\n468,65,0.5,1296192303\n468,88,1.5,1296192404\n468,104,2.0,1296195992\n468,107,3.0,1296202861\n468,110,3.0,1296195515\n468,111,4.0,1296193008\n468,135,1.5,1296198467\n468,150,3.0,1296191153\n468,153,1.0,1296191749\n468,158,2.0,1296197013\n468,160,1.5,1296196963\n468,162,4.0,1296194504\n468,170,2.0,1296198261\n468,185,1.5,1296195798\n468,186,1.5,1296196975\n468,203,2.0,1296201724\n468,207,2.0,1296201591\n468,208,2.0,1296195829\n468,216,1.0,1296192291\n468,231,2.5,1296195857\n468,235,3.5,1296194040\n468,236,2.5,1296197294\n468,246,3.5,1296192936\n468,252,2.0,1296197360\n468,256,2.0,1296197456\n468,260,3.5,1296195511\n468,267,2.0,1296203339\n468,272,3.0,1296189314\n468,277,3.0,1296197473\n468,288,2.0,1296195964\n468,293,3.5,1296195959\n468,296,3.5,1296193351\n468,300,2.0,1296195914\n468,316,2.0,1296195862\n468,317,3.0,1296196112\n468,318,3.5,1296195508\n468,326,3.5,1296194633\n468,329,2.5,1296195845\n468,333,2.5,1296197322\n468,337,3.5,1296196078\n468,339,2.5,1296195759\n468,344,1.5,1296190092\n468,349,2.5,1296193229\n468,356,3.0,1296195502\n468,357,3.0,1296195824\n468,361,2.5,1296201530\n468,364,3.5,1296195563\n468,367,1.5,1296195850\n468,368,2.5,1296196081\n468,374,1.5,1296202971\n468,376,3.5,1296201581\n468,377,3.0,1296195553\n468,412,3.0,1296190264\n468,414,2.0,1296190297\n468,419,1.5,1296202988\n468,432,2.5,1296197193\n468,434,2.5,1296195806\n468,435,2.5,1296197828\n468,440,2.0,1296193814\n468,441,3.0,1296198091\n468,448,2.5,1296203891\n468,455,1.0,1296189301\n468,457,3.5,1296195518\n468,468,3.0,1296198280\n468,471,4.0,1296197444\n468,480,2.5,1296195506\n468,485,2.5,1296196866\n468,491,2.0,1296198827\n468,497,3.0,1296197502\n468,500,2.5,1296195860\n468,515,3.5,1296197314\n468,520,3.0,1296196841\n468,524,3.0,1296202903\n468,529,2.5,1296197336\n468,531,3.0,1296198340\n468,535,3.5,1296193365\n468,539,3.0,1296195834\n468,541,3.5,1296192468\n468,543,2.5,1296196868\n468,552,2.5,1296196849\n468,556,3.5,1296194029\n468,585,2.5,1296197475\n468,586,2.5,1296195816\n468,587,2.5,1296195620\n468,588,2.5,1296190323\n468,590,3.0,1296195538\n468,593,3.0,1296195504\n468,594,4.0,1296195986\n468,595,3.0,1296191868\n468,596,4.0,1296197806\n468,597,2.5,1296195620\n468,608,4.0,1296194220\n468,620,2.5,1296199712\n468,637,2.0,1296201316\n468,648,3.0,1296195559\n468,653,1.5,1296196202\n468,661,3.5,1296197346\n468,673,1.5,1296198305\n468,708,2.5,1296196118\n468,719,2.5,1296189306\n468,736,2.0,1296195864\n468,750,4.0,1296195260\n468,778,4.0,1296195929\n468,780,2.0,1296195532\n468,783,2.5,1296197177\n468,784,2.5,1296196231\n468,785,2.5,1296197541\n468,788,1.5,1296196026\n468,802,2.0,1296197017\n468,806,3.0,1296190588\n468,830,2.0,1296198094\n468,837,3.0,1296201324\n468,838,3.0,1296198033\n468,858,4.0,1296194661\n468,880,2.5,1296201837\n468,898,3.5,1296194423\n468,899,3.5,1296197466\n468,902,2.5,1296197947\n468,903,4.0,1296192976\n468,904,4.0,1296192883\n468,905,3.5,1296199970\n468,908,4.0,1296192909\n468,909,3.5,1296191139\n468,910,4.0,1296194280\n468,911,3.0,1296193334\n468,912,3.5,1296195226\n468,913,4.0,1296194904\n468,914,3.0,1296197426\n468,919,4.0,1296195947\n468,920,4.0,1296196172\n468,922,3.5,1296194892\n468,923,5.0,1296192929\n468,924,4.5,1296189688\n468,926,3.5,1296190443\n468,928,3.5,1296194480\n468,930,4.0,1296192853\n468,932,3.0,1296190207\n468,933,3.5,1296201686\n468,936,3.5,1296199981\n468,942,3.0,1296193029\n468,946,4.0,1296193059\n468,947,4.5,1296193047\n468,950,4.0,1296194543\n468,951,4.0,1296194668\n468,952,2.5,1296191215\n468,953,3.5,1296193401\n468,954,4.0,1296202951\n468,955,4.0,1296194214\n468,963,3.0,1296197724\n468,965,4.5,1296189906\n468,968,4.0,1296198267\n468,970,3.0,1296191843\n468,1019,2.5,1296189669\n468,1020,3.0,1296193912\n468,1021,2.5,1296190944\n468,1022,3.0,1296197936\n468,1025,3.0,1296201301\n468,1027,2.0,1296198132\n468,1028,3.5,1296197564\n468,1029,3.5,1296198021\n468,1035,3.5,1296196767\n468,1036,2.5,1296195826\n468,1042,3.0,1296189275\n468,1059,3.0,1296197953\n468,1069,3.0,1296194882\n468,1073,3.5,1296195616\n468,1076,3.5,1296195263\n468,1077,2.5,1296198388\n468,1078,3.0,1296191622\n468,1079,2.5,1296196006\n468,1080,4.0,1296193304\n468,1081,2.5,1296202915\n468,1084,3.0,1296193124\n468,1086,3.5,1296194399\n468,1088,2.0,1296197222\n468,1089,3.0,1296195762\n468,1090,3.0,1296196238\n468,1094,3.0,1296196769\n468,1095,3.5,1296198556\n468,1097,3.5,1296195616\n468,1103,3.5,1296193354\n468,1104,3.5,1296201445\n468,1120,2.5,1296197182\n468,1124,3.0,1296201539\n468,1127,3.0,1296190072\n468,1129,2.5,1296197914\n468,1132,3.0,1296194685\n468,1136,4.0,1296193302\n468,1148,3.5,1296194299\n468,1172,3.0,1296189281\n468,1178,4.0,1296192859\n468,1183,3.0,1296196125\n468,1185,3.0,1296198702\n468,1189,4.0,1296192871\n468,1193,4.0,1296194420\n468,1196,3.0,1296195546\n468,1197,3.5,1296195620\n468,1198,3.5,1296195555\n468,1199,4.0,1296196908\n468,1200,3.0,1296190426\n468,1203,4.0,1296189616\n468,1204,4.0,1296194359\n468,1207,3.5,1296194493\n468,1208,4.0,1296191149\n468,1209,3.5,1296194369\n468,1210,3.5,1296195535\n468,1211,4.0,1296194070\n468,1212,4.5,1296192832\n468,1213,4.0,1296195967\n468,1214,3.5,1296190431\n468,1219,4.5,1296194530\n468,1221,4.0,1296195788\n468,1222,4.0,1296196016\n468,1224,3.5,1296193075\n468,1225,3.5,1296190544\n468,1228,4.0,1296194533\n468,1230,3.5,1296191046\n468,1231,3.5,1296198739\n468,1233,3.5,1296194210\n468,1234,3.0,1296196675\n468,1235,3.5,1296189327\n468,1237,3.5,1296195280\n468,1240,3.0,1296195627\n468,1243,3.0,1296203189\n468,1244,3.5,1296189330\n468,1245,4.0,1296194317\n468,1246,2.5,1296196003\n468,1247,3.5,1296194188\n468,1248,4.0,1296194728\n468,1250,4.0,1296194455\n468,1252,4.0,1296192895\n468,1253,3.5,1296201383\n468,1254,4.0,1296193013\n468,1256,4.5,1296193113\n468,1257,3.0,1296192094\n468,1258,4.0,1296195907\n468,1260,5.0,1296192901\n468,1262,3.5,1296194223\n468,1263,4.0,1296198036\n468,1265,3.5,1296195618\n468,1266,3.5,1296194068\n468,1267,3.5,1296194365\n468,1269,3.0,1296191226\n468,1270,3.0,1296191518\n468,1272,3.5,1296193317\n468,1276,3.5,1296194257\n468,1278,3.5,1296197128\n468,1281,4.0,1296194462\n468,1282,3.5,1296197111\n468,1283,3.0,1296194348\n468,1284,3.5,1296192222\n468,1287,2.5,1296192003\n468,1288,4.0,1296194241\n468,1291,3.0,1296195832\n468,1292,3.5,1296191965\n468,1293,3.5,1296198016\n468,1295,3.0,1296202684\n468,1296,3.0,1296198487\n468,1297,2.5,1296201853\n468,1300,2.5,1296194055\n468,1302,2.5,1296197574\n468,1303,4.0,1296193043\n468,1304,3.5,1296196188\n468,1305,3.5,1296194476\n468,1333,4.0,1296192320\n468,1339,2.5,1296197431\n468,1340,3.5,1296194501\n468,1344,3.5,1296201521\n468,1347,2.5,1296198042\n468,1348,4.0,1296194693\n468,1350,2.5,1296202984\n468,1366,2.5,1296202656\n468,1367,1.5,1296189597\n468,1380,3.0,1296196152\n468,1387,3.5,1296195895\n468,1391,3.0,1296196130\n468,1393,2.0,1296195944\n468,1394,3.5,1296196499\n468,1396,2.5,1296198300\n468,1399,2.5,1296203549\n468,1405,3.0,1296191881\n468,1407,2.5,1296196061\n468,1408,2.5,1296197483\n468,1409,2.0,1296198285\n468,1411,3.5,1296198166\n468,1419,3.5,1296194099\n468,1431,1.5,1296192113\n468,1438,2.5,1296198513\n468,1449,3.5,1296198834\n468,1464,4.0,1296203038\n468,1479,2.5,1296198464\n468,1485,2.0,1296196084\n468,1499,1.5,1296190775\n468,1515,2.0,1296202884\n468,1517,2.0,1296191383\n468,1527,2.5,1296196220\n468,1544,2.5,1296198162\n468,1552,2.0,1296196496\n468,1556,1.0,1296202845\n468,1562,1.5,1296191733\n468,1566,2.5,1296198855\n468,1569,1.5,1296198207\n468,1580,3.0,1296195618\n468,1584,3.0,1296195883\n468,1586,1.5,1296198317\n468,1591,1.5,1296203203\n468,1592,1.0,1296190286\n468,1610,2.5,1296195893\n468,1617,3.0,1296193403\n468,1625,3.0,1296198384\n468,1645,2.0,1296196755\n468,1649,4.0,1296194115\n468,1653,3.5,1296196056\n468,1672,2.5,1296201597\n468,1674,3.0,1296197888\n468,1676,1.5,1296196504\n468,1682,3.5,1296195925\n468,1688,2.5,1296190790\n468,1701,3.0,1296201760\n468,1704,3.0,1296195795\n468,1721,2.5,1296195616\n468,1722,2.0,1296196854\n468,1729,3.0,1296196742\n468,1732,4.0,1296192205\n468,1735,3.0,1296203174\n468,1747,2.5,1296196998\n468,1748,3.0,1296197171\n468,1777,2.5,1296196558\n468,1784,2.5,1296191266\n468,1801,2.5,1296198831\n468,1805,2.0,1296198013\n468,1810,2.5,1296201338\n468,1831,1.5,1296198108\n468,1834,2.5,1296201706\n468,1876,2.5,1296196542\n468,1882,1.5,1296197849\n468,1883,2.0,1296198554\n468,1884,3.0,1296198200\n468,1887,2.0,1296190517\n468,1892,2.0,1296198688\n468,1894,1.5,1296202958\n468,1907,2.5,1296202893\n468,1909,2.5,1296197877\n468,1916,3.0,1296203107\n468,1917,1.0,1296191199\n468,1921,3.5,1296197244\n468,1923,2.0,1296195974\n468,1925,3.5,1296201266\n468,1927,3.5,1296190463\n468,1934,3.5,1296193274\n468,1935,3.5,1296194152\n468,1939,3.0,1296192074\n468,1942,3.0,1296190479\n468,1945,3.5,1296194431\n468,1947,2.5,1296197220\n468,1949,3.0,1296193045\n468,1950,3.0,1296194413\n468,1952,4.0,1296194202\n468,1953,3.0,1296189259\n468,1955,4.0,1296198558\n468,1957,3.5,1296198000\n468,1959,2.5,1296198414\n468,1960,3.0,1296198112\n468,1961,3.0,1296195784\n468,1962,3.0,1296197383\n468,1965,3.0,1296198227\n468,1966,3.0,1296194125\n468,1968,3.0,1296195899\n468,1982,3.0,1296202998\n468,1994,2.5,1296197164\n468,1997,2.5,1296197034\n468,2005,3.0,1296197863\n468,2006,2.0,1296197202\n468,2010,4.0,1296194688\n468,2011,2.5,1296191521\n468,2012,3.0,1296191529\n468,2013,2.5,1296198189\n468,2018,3.5,1296191609\n468,2019,4.0,1296194890\n468,2021,2.0,1296193797\n468,2022,3.5,1296203392\n468,2023,3.5,1296197213\n468,2028,3.0,1296195573\n468,2033,2.5,1296192356\n468,2035,3.0,1296193189\n468,2053,1.5,1296198720\n468,2054,2.5,1296196063\n468,2059,3.0,1296203280\n468,2064,3.5,1296197344\n468,2065,3.5,1296201673\n468,2066,3.5,1296192857\n468,2067,3.0,1296198682\n468,2072,3.0,1296189780\n468,2076,4.0,1296197363\n468,2078,3.5,1296197441\n468,2080,3.5,1296197263\n468,2081,2.5,1296197291\n468,2084,3.0,1296200192\n468,2085,3.0,1296189601\n468,2087,3.5,1296198844\n468,2100,3.0,1296196478\n468,2105,3.0,1296196844\n468,2115,3.0,1296196032\n468,2125,2.0,1296201694\n468,2132,3.0,1296194496\n468,2134,2.5,1296198145\n468,2137,2.0,1296198356\n468,2139,3.0,1296198704\n468,2150,2.5,1296189264\n468,2160,3.5,1296193357\n468,2161,3.0,1296197050\n468,2174,3.0,1296191927\n468,2183,3.5,1296194051\n468,2186,4.0,1296192830\n468,2193,2.5,1296197126\n468,2194,3.5,1296198392\n468,2195,1.5,1296193682\n468,2203,4.0,1296194723\n468,2208,4.0,1296194675\n468,2210,4.0,1296194093\n468,2221,4.0,1296192456\n468,2243,3.0,1296198173\n468,2248,3.0,1296198011\n468,2268,2.5,1296196488\n468,2273,2.5,1296197063\n468,2289,3.5,1296194142\n468,2291,3.5,1296196021\n468,2294,2.5,1296191077\n468,2300,3.0,1296194060\n468,2303,4.5,1296199803\n468,2311,2.5,1296189813\n468,2313,4.0,1296198544\n468,2321,3.0,1296196993\n468,2324,3.0,1296196186\n468,2329,1.5,1296190688\n468,2333,3.0,1296198443\n468,2335,1.5,1296198275\n468,2336,3.0,1296196933\n468,2353,2.5,1296197261\n468,2355,3.5,1296196042\n468,2366,4.0,1296197854\n468,2371,2.5,1296197873\n468,2393,2.5,1296197166\n468,2394,2.5,1296198118\n468,2395,3.5,1296196485\n468,2398,3.5,1296203285\n468,2406,2.5,1296196686\n468,2407,2.5,1296196984\n468,2409,2.5,1296201360\n468,2410,2.5,1296198472\n468,2411,2.5,1296198706\n468,2412,2.0,1296203193\n468,2413,2.5,1296193241\n468,2420,2.0,1296197334\n468,2424,2.5,1296196857\n468,2431,1.5,1296197995\n468,2433,2.0,1296198797\n468,2454,3.0,1296201684\n468,2455,2.5,1296197145\n468,2469,2.5,1296201665\n468,2470,3.0,1296196516\n468,2474,3.0,1296203426\n468,2478,3.0,1296198178\n468,2488,3.0,1296194372\n468,2496,2.0,1296192486\n468,2501,3.0,1296189342\n468,2502,3.5,1296195995\n468,2528,3.0,1296201628\n468,2529,3.0,1296196522\n468,2539,2.5,1296190784\n468,2541,2.0,1296193858\n468,2567,1.5,1296201310\n468,2571,3.0,1296195542\n468,2572,2.0,1296196814\n468,2580,2.5,1296197405\n468,2581,2.5,1296197460\n468,2605,2.0,1296197604\n468,2612,3.0,1296195210\n468,2616,2.5,1296201285\n468,2617,2.5,1296196115\n468,2628,2.0,1296195616\n468,2648,3.5,1296194266\n468,2657,2.5,1296196649\n468,2664,3.5,1296194192\n468,2671,2.5,1296197004\n468,2683,2.0,1296195768\n468,2687,2.5,1296198436\n468,2691,2.0,1296203500\n468,2692,3.0,1296196168\n468,2694,1.0,1296197100\n468,2699,3.0,1296191179\n468,2701,1.5,1296196831\n468,2706,1.5,1296190708\n468,2707,2.5,1296189352\n468,2716,3.0,1296195818\n468,2717,2.5,1296197544\n468,2719,1.5,1296198812\n468,2722,1.0,1296197438\n468,2724,1.5,1296189293\n468,2726,3.5,1296192881\n468,2727,3.0,1296202747\n468,2728,3.5,1296198446\n468,2729,3.5,1296193038\n468,2731,3.5,1296189920\n468,2746,2.5,1296197134\n468,2747,4.0,1296203142\n468,2750,2.5,1296201745\n468,2761,4.0,1296197302\n468,2762,3.0,1296195571\n468,2791,3.0,1296190310\n468,2797,3.5,1296192153\n468,2803,2.5,1296198461\n468,2804,3.5,1296196689\n468,2857,4.0,1296201104\n468,2858,3.5,1296190586\n468,2863,4.0,1296194122\n468,2871,3.0,1296189296\n468,2890,3.0,1296198283\n468,2905,3.5,1296193093\n468,2908,3.5,1296198211\n468,2915,2.0,1296189299\n468,2916,2.5,1296196019\n468,2918,3.5,1296195902\n468,2935,3.5,1296199972\n468,2936,4.0,1296195217\n468,2944,3.0,1296197478\n468,2946,3.5,1296201111\n468,2947,3.0,1296196670\n468,2949,3.0,1296198296\n468,2953,2.5,1296197562\n468,2959,3.0,1296195619\n468,2966,3.5,1296194237\n468,2968,3.0,1296189267\n468,2973,3.5,1296201799\n468,2974,1.0,1296191761\n468,2976,3.0,1296203461\n468,2987,3.5,1296195927\n468,2997,2.5,1296191962\n468,3002,3.5,1296199691\n468,3006,3.0,1296197174\n468,3007,4.0,1296190696\n468,3020,2.5,1296197978\n468,3022,5.0,1296194944\n468,3030,3.5,1296192814\n468,3033,2.5,1296197950\n468,3034,3.5,1296198736\n468,3035,3.0,1296194161\n468,3052,2.5,1296196199\n468,3075,4.0,1296194320\n468,3077,4.0,1296189924\n468,3082,1.5,1296197155\n468,3087,3.0,1296198198\n468,3088,3.5,1296199985\n468,3089,4.5,1296192150\n468,3095,3.0,1296192963\n468,3097,4.0,1296193056\n468,3098,3.0,1296201553\n468,3099,2.5,1296200020\n468,3104,3.0,1296198793\n468,3105,2.5,1296191424\n468,3108,2.5,1296189335\n468,3114,4.0,1296195932\n468,3136,3.0,1296199816\n468,3140,4.0,1296199854\n468,3147,2.5,1296195989\n468,3148,2.5,1296197860\n468,3152,4.0,1296203349\n468,3155,1.5,1296191020\n468,3156,2.0,1296192147\n468,3157,2.5,1296201379\n468,3175,3.0,1296197523\n468,3196,3.0,1296194330\n468,3198,3.0,1296201510\n468,3201,3.0,1296194264\n468,3210,3.0,1296197032\n468,3232,4.0,1296194922\n468,3246,3.0,1296198365\n468,3247,2.5,1296197589\n468,3252,3.0,1296198745\n468,3253,2.5,1296196661\n468,3255,3.0,1296196776\n468,3258,2.5,1296202981\n468,3259,2.0,1296203251\n468,3263,2.5,1296197960\n468,3270,2.0,1296193871\n468,3271,2.0,1296201681\n468,3285,2.0,1296191827\n468,3306,4.0,1296192947\n468,3307,4.0,1296192878\n468,3309,4.5,1296197635\n468,3310,4.5,1296192943\n468,3314,2.5,1296192244\n468,3317,3.0,1296197403\n468,3334,3.0,1296194229\n468,3341,3.0,1296194076\n468,3354,2.5,1296198302\n468,3359,3.5,1296194078\n468,3361,2.5,1296198221\n468,3362,4.0,1296193025\n468,3363,3.5,1296189344\n468,3364,3.0,1296191304\n468,3365,3.5,1296194321\n468,3420,3.0,1296189750\n468,3424,3.0,1296194110\n468,3429,4.0,1296201912\n468,3435,3.5,1296192817\n468,3444,1.5,1296192566\n468,3448,2.5,1296196910\n468,3450,2.5,1296198336\n468,3451,2.5,1296203293\n468,3461,3.5,1296203022\n468,3462,4.0,1296192906\n468,3468,4.0,1296202882\n468,3471,3.5,1296196785\n468,3476,3.0,1296198754\n468,3477,2.5,1296203249\n468,3479,2.5,1296201393\n468,3489,2.0,1296197148\n468,3499,3.0,1296197597\n468,3504,3.5,1296201846\n468,3505,2.5,1296203145\n468,3507,3.0,1296199993\n468,3510,2.5,1296197938\n468,3512,2.0,1296203296\n468,3524,3.0,1296191252\n468,3527,2.5,1296197106\n468,3551,3.5,1296203091\n468,3552,2.5,1296197047\n468,3555,2.0,1296197538\n468,3559,3.5,1296199856\n468,3608,3.5,1296198018\n468,3618,2.5,1296201780\n468,3623,2.5,1296196107\n468,3624,2.0,1296197309\n468,3629,4.5,1296192995\n468,3632,3.5,1296199907\n468,3634,3.0,1296194323\n468,3638,2.5,1296201696\n468,3639,3.0,1296198789\n468,3640,3.0,1296199901\n468,3671,2.5,1296192490\n468,3676,4.5,1296204007\n468,3683,3.5,1296192538\n468,3686,2.5,1296198807\n468,3703,3.0,1296198046\n468,3705,2.0,1296192310\n468,3717,1.0,1296196981\n468,3726,2.5,1296191320\n468,3730,3.5,1296192959\n468,3736,3.0,1296190096\n468,3740,2.5,1296192247\n468,3741,4.5,1296191576\n468,3742,4.0,1296191788\n468,3751,3.5,1296196148\n468,3755,2.0,1296196758\n468,3788,3.5,1296192589\n468,3791,2.5,1296203255\n468,3793,2.5,1296195778\n468,3798,2.5,1296197816\n468,3801,3.5,1296190793\n468,3809,2.5,1296197587\n468,3812,2.5,1296201763\n468,3814,2.5,1296201739\n468,3827,2.5,1296198067\n468,3861,1.5,1296197667\n468,3863,2.5,1296198147\n468,3911,3.5,1296197372\n468,3916,2.5,1296197054\n468,3929,4.5,1296191675\n468,3948,2.5,1296196942\n468,3959,3.0,1296202924\n468,3967,3.0,1296192284\n468,3968,1.5,1296191903\n468,3969,1.5,1296198063\n468,3977,1.5,1296196145\n468,3979,1.0,1296203377\n468,3986,2.0,1296189960\n468,3987,1.5,1296193176\n468,3988,1.5,1296197821\n468,3993,2.5,1296203571\n468,3994,3.0,1296197242\n468,3996,3.5,1296195970\n468,3999,1.5,1296201362\n468,4002,3.0,1296197304\n468,4008,2.5,1296201427\n468,4014,2.5,1296196712\n468,4016,2.5,1296198069\n468,4018,2.0,1296197830\n468,4020,3.0,1296202967\n468,4022,3.0,1296196058\n468,4023,2.5,1296197997\n468,4025,2.0,1296196927\n468,4027,4.0,1296196076\n468,4052,2.0,1296191065\n468,4054,1.5,1296201609\n468,4069,1.5,1296198727\n468,4103,2.5,1296200181\n468,4105,3.0,1296198242\n468,4144,3.5,1296193118\n468,4191,3.0,1296190345\n468,4226,3.5,1296195781\n468,4232,2.5,1296198809\n468,4237,3.5,1296192851\n468,4239,2.0,1296192573\n468,4270,1.5,1296197276\n468,4299,2.5,1296197927\n468,4306,2.5,1296195842\n468,4310,1.5,1296197297\n468,4321,2.5,1296196940\n468,4322,3.0,1296193386\n468,4327,3.0,1296201454\n468,4333,2.5,1296203346\n468,4361,3.0,1296197096\n468,4367,1.5,1296197199\n468,4369,2.0,1296197398\n468,4370,3.5,1296190023\n468,4405,4.5,1296192795\n468,4406,3.5,1296194472\n468,4409,2.5,1296201808\n468,4432,3.5,1296194843\n468,4447,2.5,1296196882\n468,4467,3.0,1296190137\n468,4499,2.5,1296198216\n468,4515,3.5,1296201108\n468,4545,2.5,1296203102\n468,4546,3.5,1296194297\n468,4571,2.5,1296192266\n468,4623,2.5,1296198448\n468,4628,2.5,1296201775\n468,4639,1.5,1296190580\n468,4643,2.5,1296197209\n468,4679,2.5,1296201702\n468,4700,2.0,1296203178\n468,4701,2.0,1296197408\n468,4713,2.5,1296190535\n468,4720,3.0,1296196891\n468,4721,2.5,1296190703\n468,4728,1.5,1296201488\n468,4776,2.5,1296197459\n468,4799,2.5,1296200012\n468,4816,2.0,1296197140\n468,4844,2.0,1296191644\n468,4848,3.5,1296197093\n468,4855,3.0,1296198313\n468,4857,2.5,1296203113\n468,4874,2.5,1296197265\n468,4878,3.0,1296197546\n468,4881,4.0,1296198105\n468,4886,3.5,1296195889\n468,4889,2.5,1296203368\n468,4890,2.0,1296198348\n468,4896,2.5,1296196930\n468,4958,1.5,1296191951\n468,4963,2.5,1296196040\n468,4969,3.5,1296190892\n468,4970,4.0,1296192600\n468,4973,3.0,1296190577\n468,4979,2.5,1296198686\n468,4980,2.5,1296192263\n468,4993,3.5,1296195622\n468,4994,2.5,1296203400\n468,4995,3.0,1296191862\n468,4998,3.0,1296194464\n468,5001,3.5,1296199190\n468,5008,3.0,1296194735\n468,5013,3.0,1296197504\n468,5014,2.5,1296201401\n468,5059,4.5,1296199697\n468,5060,3.0,1296196879\n468,5064,2.5,1296193249\n468,5065,2.5,1296201562\n468,5103,2.5,1296201415\n468,5121,4.5,1296192777\n468,5139,3.0,1296191564\n468,5171,2.0,1296201560\n468,5177,4.5,1296194752\n468,5202,3.0,1296194879\n468,5218,3.0,1296196771\n468,5265,2.5,1296193841\n468,5266,2.5,1296197045\n468,5267,3.0,1296203110\n468,5275,2.5,1296203456\n468,5288,4.0,1296191361\n468,5292,3.0,1296203166\n468,5299,2.0,1296197152\n468,5300,3.0,1296189909\n468,5313,1.0,1296203223\n468,5339,2.5,1296194155\n468,5349,2.5,1296195887\n468,5377,3.0,1296190051\n468,5378,2.0,1296197941\n468,5388,3.0,1296197002\n468,5400,1.5,1296198344\n468,5404,3.0,1296190001\n468,5418,3.0,1296196155\n468,5434,3.5,1296194384\n468,5444,2.5,1296197985\n468,5445,3.0,1296195921\n468,5449,0.5,1296201500\n468,5459,1.5,1296197066\n468,5464,2.5,1296196773\n468,5475,3.5,1296192988\n468,5502,3.0,1296197559\n468,5505,2.5,1296201833\n468,5507,0.5,1296197866\n468,5523,2.0,1296190165\n468,5528,2.5,1296197964\n468,5540,3.0,1296193227\n468,5602,3.5,1296193131\n468,5603,4.0,1296193032\n468,5604,4.0,1296194677\n468,5620,1.5,1296198779\n468,5669,3.0,1296196947\n468,5673,3.0,1296197495\n468,5679,2.5,1296196467\n468,5707,2.5,1296190060\n468,5712,2.5,1296192578\n468,5747,3.5,1296193070\n468,5812,3.0,1296202912\n468,5816,2.5,1296197886\n468,5872,1.0,1296198424\n468,5902,3.0,1296190121\n468,5914,4.5,1296202530\n468,5932,4.0,1296192766\n468,5941,1.5,1296193788\n468,5943,2.0,1296203067\n468,5945,3.0,1296190048\n468,5952,3.5,1296195838\n468,5955,2.0,1296191070\n468,5956,2.5,1296197463\n468,5957,2.0,1296201671\n468,5989,3.5,1296197230\n468,5991,2.0,1296196554\n468,5992,3.0,1296198294\n468,5995,4.0,1296196536\n468,6123,3.5,1296195116\n468,6148,3.0,1296199207\n468,6156,2.0,1296201419\n468,6157,1.5,1296197342\n468,6198,3.5,1296190627\n468,6254,3.5,1296191442\n468,6281,2.5,1296198149\n468,6296,3.0,1296198560\n468,6297,2.0,1296201856\n468,6303,3.0,1296190914\n468,6331,3.5,1296194172\n468,6333,3.0,1296196529\n468,6373,2.0,1296196987\n468,6377,3.5,1296196014\n468,6378,2.0,1296197196\n468,6380,4.0,1296203218\n468,6383,1.0,1296189656\n468,6385,3.5,1296198836\n468,6395,2.5,1296193257\n468,6400,3.5,1296192903\n468,6408,3.0,1296191007\n468,6433,4.5,1296193005\n468,6440,4.0,1296191715\n468,6460,4.0,1296194644\n468,6513,3.0,1296199390\n468,6534,2.5,1296197377\n468,6539,2.5,1296195898\n468,6564,1.0,1296201714\n468,6565,2.5,1296197316\n468,6579,3.0,1296199242\n468,6584,2.5,1296201788\n468,6593,2.0,1296201375\n468,6612,3.5,1296192764\n468,6650,4.0,1296193002\n468,6659,2.5,1296198492\n468,6662,3.0,1296201342\n468,6708,3.0,1296197285\n468,6711,3.0,1296197268\n468,6739,2.5,1296191341\n468,6780,4.0,1296202520\n468,6787,3.5,1296190501\n468,6791,3.5,1296191469\n468,6807,3.5,1296196990\n468,6818,4.0,1296192819\n468,6858,3.5,1296194519\n468,6863,3.0,1296196462\n468,6869,3.0,1296192926\n468,6870,3.0,1296196508\n468,6873,3.0,1296201437\n468,6874,3.0,1296196088\n468,6879,2.0,1296201647\n468,6936,2.5,1296197447\n468,6942,2.5,1296196899\n468,6947,3.0,1296197497\n468,6957,2.5,1296191567\n468,6979,2.5,1296198796\n468,6986,3.5,1296192001\n468,6987,4.0,1296193065\n468,6993,3.0,1296194345\n468,7013,4.0,1296192821\n468,7043,3.5,1296195134\n468,7044,3.0,1296204045\n468,7056,4.0,1296194831\n468,7062,3.0,1296192318\n468,7063,5.0,1296190279\n468,7065,3.5,1296192325\n468,7073,3.5,1296193370\n468,7074,4.5,1296195078\n468,7075,3.5,1296194395\n468,7076,3.0,1296193332\n468,7084,3.0,1296193135\n468,7089,4.0,1296190558\n468,7090,3.0,1296197481\n468,7091,4.0,1296192897\n468,7096,3.0,1296194090\n468,7132,4.0,1296194715\n468,7135,3.0,1296192918\n468,7139,3.5,1296198817\n468,7147,3.0,1296192191\n468,7149,2.5,1296198717\n468,7153,3.5,1296195790\n468,7156,4.0,1296193069\n468,7160,2.5,1296198084\n468,7195,3.5,1296199236\n468,7196,3.0,1296199465\n468,7209,4.0,1296194133\n468,7210,3.5,1296192855\n468,7238,4.0,1296191278\n468,7256,3.5,1296194702\n468,7309,4.0,1296192395\n468,7325,2.0,1296198540\n468,7334,3.0,1296201752\n468,7347,1.5,1296203019\n468,7361,2.5,1296196068\n468,7367,2.5,1296202906\n468,7386,3.0,1296202896\n468,7387,3.5,1296194038\n468,7407,2.5,1296190213\n468,7419,3.5,1296190230\n468,7438,3.0,1296196700\n468,7484,4.0,1296192788\n468,7566,4.5,1296189845\n468,7706,4.0,1296190993\n468,7748,3.5,1296194377\n468,7834,3.5,1296190250\n468,7897,3.0,1296191593\n468,7914,4.0,1296192042\n468,7934,3.5,1296201742\n468,7938,3.0,1296192979\n468,7939,3.0,1296193100\n468,7979,3.5,1296194523\n468,7983,3.5,1296201749\n468,8011,3.0,1296194546\n468,8042,4.0,1296194804\n468,8169,2.5,1296189789\n468,8207,3.5,1296194397\n468,8235,4.0,1296194966\n468,8257,3.0,1296191785\n468,8264,4.0,1296194312\n468,8267,3.5,1296199715\n468,8275,4.0,1296194852\n468,8336,3.5,1296194196\n468,8337,3.0,1296194393\n468,8338,3.5,1296192385\n468,8340,3.0,1296201577\n468,8360,2.0,1296196698\n468,8361,2.0,1296198571\n468,8366,2.5,1296201557\n468,8368,2.5,1296196916\n468,8376,2.5,1296197006\n468,8423,3.0,1296199161\n468,8451,3.0,1296192442\n468,8464,2.5,1296196644\n468,8491,4.0,1296194779\n468,8507,4.0,1296193116\n468,8511,4.5,1296194875\n468,8528,2.0,1296197355\n468,8529,3.0,1296197374\n468,8542,3.5,1296194656\n468,8600,4.0,1296190976\n468,8609,4.5,1296194959\n468,8610,2.5,1296190475\n468,8620,3.5,1296193561\n468,8623,2.5,1296198747\n468,8641,2.5,1296190803\n468,8644,2.0,1296197072\n468,8661,3.0,1296199533\n468,8665,3.0,1296196894\n468,8684,4.0,1296194996\n468,8700,3.0,1296199412\n468,8711,3.0,1296199989\n468,8751,4.0,1296192754\n468,8754,3.0,1296194381\n468,8783,2.5,1296197520\n468,8797,4.5,1296192782\n468,8838,4.0,1296203437\n468,8840,2.5,1296203444\n468,8874,3.5,1296196897\n468,8882,3.0,1296192633\n468,8950,3.5,1296197576\n468,8958,3.0,1296197835\n468,8961,3.5,1296196141\n468,8968,1.5,1296190242\n468,8970,3.0,1296196787\n468,8981,3.0,1296197818\n468,25750,4.5,1296194926\n468,25752,4.0,1296199151\n468,25755,3.5,1296192916\n468,25764,4.5,1296194930\n468,25769,4.5,1296192828\n468,25771,3.5,1296190902\n468,25777,4.0,1296194757\n468,25827,3.5,1296199983\n468,25839,3.5,1296194526\n468,25868,3.0,1296191587\n468,25916,2.5,1296199180\n468,25993,2.5,1296199261\n468,26052,3.5,1296193091\n468,26111,3.0,1296191889\n468,26122,3.5,1296194828\n468,26133,3.5,1296195182\n468,26171,4.5,1296195165\n468,26178,3.0,1296199279\n468,26302,3.5,1296192974\n468,26313,4.0,1296199809\n468,26391,2.5,1296203446\n468,26400,4.5,1296195057\n468,26414,3.5,1296199415\n468,26425,2.5,1296193120\n468,26614,3.0,1296197256\n468,26712,4.5,1296189893\n468,26850,3.0,1296189985\n468,27334,3.5,1296202870\n468,27706,2.5,1296198186\n468,27773,2.0,1296194058\n468,27808,2.0,1296201321\n468,27816,2.5,1296199365\n468,27821,2.5,1296201897\n468,27873,2.5,1296193295\n468,27879,3.5,1296192991\n468,27904,3.5,1296197975\n468,30707,3.0,1296197388\n468,30723,4.0,1296199813\n468,30793,2.5,1296197021\n468,30810,2.5,1296197274\n468,30812,3.5,1296191412\n468,30818,2.5,1296192136\n468,30822,2.5,1296201700\n468,30892,3.5,1296199286\n468,31116,2.5,1296194433\n468,31547,4.5,1296194956\n468,31549,4.0,1296199722\n468,31685,2.0,1296197924\n468,31737,3.0,1296199290\n468,31770,3.0,1296193531\n468,32031,2.5,1296203064\n468,32160,3.5,1296194776\n468,32280,3.5,1296189869\n468,32371,3.0,1296199387\n468,32853,4.0,1296192810\n468,32882,3.0,1296192235\n468,32898,4.5,1296194638\n468,33312,4.0,1296193339\n468,33380,3.5,1296189839\n468,33493,2.5,1296196889\n468,33660,3.0,1296197485\n468,33679,1.5,1296197078\n468,33681,0.5,1296190191\n468,33794,3.0,1296191745\n468,34048,2.5,1296197211\n468,34072,3.0,1296198278\n468,34321,2.0,1296191556\n468,34437,3.5,1296201404\n468,34542,4.0,1296192932\n468,34583,3.0,1296199518\n468,36517,3.0,1296198138\n468,36535,2.5,1296203362\n468,36553,3.0,1296199362\n468,37733,3.0,1296197885\n468,37741,3.5,1296198048\n468,37785,3.0,1296190906\n468,38304,4.0,1296194690\n468,39292,3.5,1296202864\n468,40278,2.5,1296198056\n468,40583,2.5,1296197879\n468,40819,2.5,1296196506\n468,41226,3.5,1296194726\n468,41566,2.5,1296196684\n468,41569,2.5,1296197044\n468,41571,2.5,1296201875\n468,42163,3.5,1296194165\n468,42681,3.5,1296189939\n468,44022,2.0,1296201297\n468,44195,2.5,1296196667\n468,44199,2.5,1296197812\n468,44555,3.5,1296194748\n468,44587,4.5,1296194947\n468,44633,4.0,1296199193\n468,44671,3.0,1296199719\n468,44761,4.0,1296201618\n468,45186,2.0,1296197909\n468,45431,2.5,1296198723\n468,45447,2.0,1296196802\n468,45499,2.0,1296196810\n468,45517,2.5,1296197912\n468,45722,2.0,1296196761\n468,45837,4.0,1296196950\n468,45950,2.5,1296198081\n468,46530,2.5,1296197917\n468,46578,3.0,1296196527\n468,46664,3.5,1296195076\n468,46850,3.0,1296194032\n468,46967,1.5,1296201777\n468,46974,2.0,1296204104\n468,46976,2.5,1296201390\n468,47099,3.0,1296197555\n468,47152,3.5,1296195316\n468,47287,3.5,1296195179\n468,47610,2.5,1296197929\n468,47629,2.5,1296198417\n468,47714,3.0,1296192512\n468,47721,4.0,1296194834\n468,47997,2.5,1296202841\n468,47999,3.5,1296203352\n468,48198,3.0,1296199818\n468,48301,4.0,1296195128\n468,48385,3.0,1296197824\n468,48394,3.0,1296196646\n468,48516,3.0,1296196672\n468,48741,3.0,1296199312\n468,48774,3.0,1296196797\n468,48780,2.5,1296196967\n468,48982,2.5,1296203577\n468,49225,3.5,1296194969\n468,49272,3.0,1296196945\n468,49394,3.5,1296194766\n468,49824,2.0,1296193788\n468,49932,3.5,1296204119\n468,50259,4.0,1296199327\n468,50658,4.0,1296189936\n468,50740,4.0,1296192745\n468,50742,4.0,1296189970\n468,50872,4.0,1296197506\n468,50912,3.0,1296203951\n468,51044,4.0,1296201121\n468,51080,3.5,1296202888\n468,51540,3.5,1296198342\n468,52241,3.0,1296193411\n468,52435,3.5,1296201288\n468,52666,2.5,1296192022\n468,52767,4.5,1296189822\n468,52967,3.5,1296191431\n468,53125,2.0,1296196707\n468,53322,2.5,1296197069\n468,53550,3.0,1296199702\n468,53894,2.5,1296203272\n468,53972,1.5,1296197186\n468,54286,3.0,1296197131\n468,54419,3.0,1296193875\n468,54426,3.5,1296189726\n468,54881,3.0,1296194671\n468,55063,3.5,1296194807\n468,55071,3.0,1296193314\n468,55276,3.0,1296194053\n468,55280,3.0,1296199333\n468,55290,3.0,1296198141\n468,55687,3.0,1296199165\n468,55768,2.5,1296191914\n468,55805,3.0,1296191943\n468,55814,3.5,1296193023\n468,55820,4.5,1296196874\n468,55830,1.5,1296191819\n468,56152,3.0,1296198351\n468,56174,2.5,1296196495\n468,56367,3.5,1296197279\n468,56563,3.5,1296199322\n468,56782,3.5,1296194024\n468,57368,3.0,1296193238\n468,57972,4.0,1296199626\n468,58559,3.0,1296196470\n468,58879,3.0,1296203441\n468,59315,2.5,1296196783\n468,59387,3.0,1296203258\n468,59418,2.5,1296190598\n468,59501,2.5,1296203094\n468,59615,2.0,1296197552\n468,59784,2.5,1296200150\n468,59832,3.0,1296194179\n468,59846,3.5,1296198288\n468,60040,1.5,1296197972\n468,60069,4.0,1296196722\n468,60684,2.5,1296197082\n468,60763,2.0,1296190731\n468,60766,4.0,1296194362\n468,61240,3.5,1296197593\n468,61323,3.5,1296196740\n468,62383,3.5,1296189665\n468,63072,3.0,1296198699\n468,63082,2.5,1296198528\n468,63859,2.5,1296198490\n468,63876,3.0,1296197897\n468,64285,3.0,1296201925\n468,64575,3.0,1296194403\n468,64701,3.0,1296199258\n468,64839,3.0,1296194104\n468,64957,3.0,1296196906\n468,65130,2.5,1296203511\n468,65638,4.0,1296191297\n468,66019,4.0,1296199726\n468,66934,3.0,1296197844\n468,67255,2.5,1296198848\n468,67504,5.0,1296199673\n468,68157,3.0,1296196663\n468,68237,3.0,1296196799\n468,68954,3.5,1296197311\n468,69122,2.5,1296196877\n468,69241,2.5,1296192033\n468,69306,1.5,1296203907\n468,69481,3.5,1296193398\n468,69604,2.5,1296201793\n468,69757,3.0,1296189783\n468,69951,3.5,1296201527\n468,70286,2.5,1296197424\n468,70488,3.5,1296199735\n468,70927,3.0,1296203961\n468,71156,2.5,1296203133\n468,71211,3.0,1296201870\n468,71264,2.5,1296201843\n468,71379,2.5,1296201304\n468,71464,4.0,1296198265\n468,71520,2.5,1296203129\n468,71525,3.0,1296190020\n468,71535,3.0,1296197307\n468,71650,4.0,1296199733\n468,71899,3.5,1296201922\n468,72011,3.0,1296198059\n468,72176,3.0,1296192200\n468,72226,4.0,1296198125\n468,72405,3.5,1296191549\n468,72626,3.0,1296192278\n468,72647,4.5,1296193144\n468,73017,1.5,1296197651\n468,73276,3.0,1296190267\n468,73572,3.0,1296199718\n468,74458,3.0,1296197036\n468,74486,2.5,1296189776\n468,74545,3.0,1296194271\n468,76093,2.5,1296196852\n468,77307,2.5,1296194112\n468,77359,3.0,1296199383\n468,77455,4.0,1296201066\n468,77866,2.5,1296201319\n468,78499,4.0,1296196551\n468,78517,3.0,1296203726\n468,78574,3.5,1296203055\n468,78829,3.0,1296192081\n468,79132,3.0,1296196481\n468,79824,3.0,1296191486\n468,80463,3.5,1296196728\n468,80572,2.5,1296203762\n468,80599,4.5,1296199868\n468,80862,3.0,1296201170\n468,81562,3.0,1296189514\n468,81845,3.0,1296196257\n468,81910,3.0,1296191250\n468,82459,4.0,1296202070\n468,82934,3.0,1296201721\n468,83096,3.5,1296197142\n468,83318,5.0,1296199871\n468,83322,4.0,1296196834\n468,83359,5.0,1296199873\n468,83361,3.5,1296197392\n468,83411,5.0,1296199870\n468,83603,3.5,1296196412\n469,170,4.5,1282471428\n469,468,3.0,1282471439\n469,555,4.5,1282471649\n469,616,2.0,1282471430\n469,719,0.5,1282471399\n469,720,4.0,1282471400\n469,838,3.5,1282471409\n469,1093,5.0,1282471432\n469,1244,2.5,1282471433\n469,1345,5.0,1282471403\n469,1479,2.0,1282471404\n469,1513,4.0,1282471406\n469,1947,5.0,1282471411\n469,2076,4.0,1282471413\n469,2915,3.5,1282471397\n469,3108,3.5,1282471435\n469,3210,4.5,1282471423\n469,3510,4.0,1282471425\n469,4643,4.5,1282471426\n469,8784,2.5,1282471436\n469,72612,2.5,1282471653\n470,1,3.5,1234088628\n470,29,4.0,1233101190\n470,70,3.5,1234089783\n470,172,4.0,1232976151\n470,224,3.5,1232976270\n470,247,3.5,1232976340\n470,253,3.0,1234089754\n470,261,3.5,1232976195\n470,296,3.0,1234088603\n470,318,3.0,1234088613\n470,661,3.0,1232976207\n470,841,2.5,1234091077\n470,913,4.5,1232976172\n470,965,3.0,1233101085\n470,969,4.5,1232976201\n470,1028,3.5,1232976140\n470,1076,4.0,1234089860\n470,1175,3.5,1233101166\n470,1190,2.0,1234091444\n470,1206,3.0,1234090174\n470,1212,3.5,1234091394\n470,1260,2.5,1234089010\n470,1271,1.5,1232976283\n470,1284,4.0,1234090290\n470,1285,4.5,1232976189\n470,1287,3.0,1232976293\n470,1295,3.5,1234090403\n470,1333,3.5,1232976185\n470,1339,2.5,1234089742\n470,1348,3.0,1234089703\n470,1554,4.0,1234090134\n470,1569,2.0,1232976250\n470,1748,2.5,1234089096\n470,1967,3.5,1234089064\n470,2010,3.5,1234090198\n470,2097,3.5,1234089620\n470,2105,3.0,1232976259\n470,2167,2.0,1234089775\n470,2173,2.5,1233101119\n470,2488,2.5,1234091095\n470,2746,3.0,1232976327\n470,2867,2.5,1234089747\n470,3221,4.0,1234090094\n470,3264,4.5,1234089769\n470,3435,3.0,1234089005\n470,3521,4.0,1234090931\n470,4128,3.0,1234089735\n470,4195,4.0,1234089614\n470,4720,3.0,1234089830\n470,4970,3.5,1234090254\n470,5146,4.0,1234089731\n470,5489,3.5,1234089713\n470,6541,3.5,1234089133\n470,6754,2.5,1234089804\n470,6987,3.5,1234090225\n470,7013,3.5,1234088977\n470,7051,4.0,1234089205\n470,7064,5.0,1234088884\n470,7068,3.0,1234090970\n470,7099,4.0,1234089187\n470,7454,3.0,1234089139\n470,7587,4.0,1234088998\n470,7766,3.5,1234088990\n470,7943,3.0,1234088918\n470,25763,2.0,1234090452\n470,25771,0.5,1234088858\n470,26265,3.5,1234089609\n470,31658,4.5,1234089113\n470,56757,3.0,1233101039\n471,1,3.5,1239658613\n471,2,3.0,1239744723\n471,10,4.5,1257634439\n471,150,4.5,1239659215\n471,186,3.0,1239660559\n471,260,5.0,1239657317\n471,292,3.0,1251234423\n471,356,4.0,1239659177\n471,364,4.0,1239658695\n471,376,3.5,1256074188\n471,377,2.5,1239747156\n471,380,3.5,1239660804\n471,405,4.0,1239745349\n471,480,3.5,1239657778\n471,520,3.0,1239744640\n471,527,4.0,1239744571\n471,541,3.5,1239658389\n471,586,2.5,1239746516\n471,588,3.5,1239657561\n471,589,4.5,1239660784\n471,593,4.5,1239657270\n471,594,4.5,1239658699\n471,597,3.5,1239660592\n471,736,3.0,1239659730\n471,750,3.5,1239744365\n471,780,3.0,1239745466\n471,788,4.0,1239744794\n471,919,3.5,1239748140\n471,1022,4.0,1239658549\n471,1023,4.0,1239656893\n471,1028,3.5,1239659905\n471,1029,3.5,1239744686\n471,1032,4.0,1239748285\n471,1047,2.5,1239746311\n471,1059,2.5,1239658026\n471,1080,4.5,1239658491\n471,1101,3.5,1239745150\n471,1136,4.5,1239658483\n471,1196,4.0,1239657313\n471,1198,4.0,1239659104\n471,1200,4.5,1239744162\n471,1201,4.5,1239660052\n471,1206,2.5,1239659293\n471,1210,4.5,1239657316\n471,1214,4.0,1239744126\n471,1219,4.0,1239746697\n471,1222,4.0,1239660261\n471,1233,4.0,1239745386\n471,1240,5.0,1239660764\n471,1246,3.5,1239744889\n471,1250,3.5,1239660529\n471,1258,4.5,1239744402\n471,1262,4.0,1239657957\n471,1291,4.5,1239659095\n471,1320,3.5,1239744160\n471,1333,3.5,1239656616\n471,1342,2.5,1273433548\n471,1387,3.5,1239659673\n471,1388,3.0,1239659679\n471,1544,3.0,1239657788\n471,1566,3.5,1239744307\n471,1580,3.0,1239746608\n471,1587,4.0,1239660791\n471,1610,4.0,1239746081\n471,1616,3.5,1251742975\n471,1665,3.5,1239656916\n471,1707,3.0,1239746521\n471,1721,3.5,1239745055\n471,1722,3.5,1239658268\n471,1779,3.0,1239748574\n471,1923,3.5,1239744111\n471,1954,4.5,1239658937\n471,1974,3.0,1257192629\n471,1991,2.5,1251235025\n471,1992,2.0,1251235027\n471,2018,4.5,1239658727\n471,2028,4.0,1239657723\n471,2051,3.0,1239747129\n471,2078,4.0,1239658529\n471,2081,3.0,1239660100\n471,2115,4.0,1239659099\n471,2124,3.5,1239659790\n471,2214,3.5,1239746718\n471,2253,3.5,1239656852\n471,2291,4.0,1239744653\n471,2355,3.5,1239658644\n471,2376,4.5,1239653323\n471,2383,3.0,1239653515\n471,2409,4.0,1239658941\n471,2410,4.0,1239658944\n471,2427,3.5,1239745267\n471,2459,3.5,1239657993\n471,2513,2.5,1251234319\n471,2514,2.0,1251234322\n471,2549,2.0,1239659244\n471,2571,3.0,1239661583\n471,2600,1.0,1239653036\n471,2628,3.0,1239657333\n471,2671,3.5,1239660577\n471,2706,3.5,1239657816\n471,2710,2.0,1242510718\n471,2716,3.0,1239745876\n471,2719,2.0,1239656754\n471,2724,3.5,1239660621\n471,2803,3.5,1239660612\n471,2903,3.5,1252616421\n471,2947,4.5,1239657888\n471,2948,4.5,1239658229\n471,2949,4.0,1239654135\n471,2959,4.0,1239660016\n471,2985,4.0,1239744192\n471,2989,4.0,1239658246\n471,2990,4.0,1239653243\n471,2991,4.0,1239658257\n471,2993,4.0,1239653227\n471,2995,2.0,1239745915\n471,3034,4.0,1239658691\n471,3082,3.5,1239656484\n471,3114,3.0,1239658616\n471,3147,4.5,1239659208\n471,3262,3.5,1239745821\n471,3398,3.0,1239747500\n471,3412,3.5,1239744693\n471,3527,4.0,1239660788\n471,3578,4.0,1239660447\n471,3633,4.5,1239658261\n471,3635,4.0,1239658239\n471,3638,4.5,1239658271\n471,3639,4.5,1239658253\n471,3654,3.5,1239997882\n471,3702,4.5,1239657373\n471,3703,4.5,1239657379\n471,3704,4.0,1239657372\n471,3821,3.5,1239744787\n471,3824,3.5,1239659839\n471,3827,3.5,1239747476\n471,3849,4.0,1239746832\n471,3948,3.5,1257192129\n471,3984,4.5,1239658242\n471,4005,4.0,1239994806\n471,4022,5.0,1239659224\n471,4124,2.5,1239659683\n471,4148,4.5,1239657857\n471,4214,3.5,1239660308\n471,4223,4.5,1239995095\n471,4306,3.5,1239658687\n471,4310,2.5,1239746343\n471,4370,3.5,1239745224\n471,4718,3.5,1239657822\n471,4886,4.0,1239658637\n471,4949,2.0,1258156955\n471,4958,3.0,1243722294\n471,4993,5.0,1239657163\n471,5218,4.5,1239657436\n471,5299,3.5,1273433502\n471,5378,3.5,1239657331\n471,5459,3.0,1239747191\n471,5479,4.0,1239746405\n471,5528,3.5,1239744959\n471,5630,4.5,1239659013\n471,5669,4.0,1239745443\n471,5679,4.0,1239660141\n471,5830,3.5,1239748297\n471,5872,3.5,1239994833\n471,5952,4.5,1239657172\n471,6242,4.0,1240526829\n471,6281,3.0,1239994768\n471,6286,4.0,1239657417\n471,6377,3.5,1239658634\n471,6379,2.5,1239657228\n471,6537,3.5,1239660796\n471,6664,4.5,1239660749\n471,6979,3.5,1239659311\n471,6990,4.0,1239745654\n471,7149,3.5,1239744530\n471,7153,5.0,1239657177\n471,7569,4.5,1239658236\n471,7570,4.0,1239658275\n471,7573,4.0,1239746091\n471,7809,3.5,1239998003\n471,7980,3.5,1239657710\n471,8361,3.0,1239747411\n471,8404,4.0,1239748611\n471,8493,4.0,1239997936\n471,8526,3.0,1239745995\n471,8528,3.0,1239744057\n471,8581,4.0,1239659267\n471,8589,4.0,1239745403\n471,8622,3.5,1239745452\n471,8640,3.0,1239747305\n471,8783,2.5,1239744296\n471,8957,3.5,1239743874\n471,26007,4.5,1239745513\n471,26393,3.5,1239745344\n471,26403,4.5,1239660152\n471,27075,3.0,1239659793\n471,30825,3.0,1257192566\n471,33493,4.0,1239657326\n471,33615,4.0,1239657547\n471,39052,3.0,1239654916\n471,39446,4.0,1251234851\n471,43391,3.0,1239657649\n471,44022,3.5,1239653591\n471,44301,4.0,1239657402\n471,44317,2.0,1239655660\n471,48877,3.5,1273433592\n471,51662,4.0,1239745570\n471,52644,2.5,1273433521\n471,54272,4.0,1251743437\n471,55577,3.5,1273433596\n471,57528,4.5,1239660709\n471,59615,3.5,1239659091\n471,62999,3.5,1239657548\n471,66246,4.5,1239657588\n471,66317,4.0,1256074834\n471,69644,4.5,1251234352\n472,1,5.0,939004597\n472,6,3.0,994737953\n472,7,2.0,944321656\n472,11,3.0,944321835\n472,16,4.0,939692158\n472,17,4.0,939141338\n472,21,4.0,939072462\n472,25,5.0,939691226\n472,29,4.0,1017535257\n472,32,3.0,939049777\n472,34,5.0,939071579\n472,36,4.0,946843083\n472,39,4.0,939072462\n472,47,4.0,994738167\n472,50,4.0,1017535859\n472,69,4.5,1075915788\n472,94,4.0,1017534656\n472,101,4.0,1004423372\n472,111,4.0,939072776\n472,117,3.0,1006929225\n472,121,4.0,939691618\n472,123,3.0,949996107\n472,125,5.0,939072152\n472,141,2.5,1156728938\n472,144,4.0,944321656\n472,150,3.0,939691973\n472,155,3.0,974245114\n472,162,5.0,939049553\n472,176,3.0,939071418\n472,180,2.0,944321656\n472,198,1.0,962171889\n472,211,4.0,1162244498\n472,213,4.0,1017534915\n472,223,4.0,939072217\n472,232,3.0,939071898\n472,235,4.0,1017535333\n472,241,1.0,962171468\n472,246,5.0,939049553\n472,260,4.0,939072841\n472,265,3.0,939691869\n472,288,3.0,994738036\n472,290,4.0,970518370\n472,293,4.0,949996107\n472,296,5.0,940539077\n472,299,3.0,939692234\n472,300,3.0,944061932\n472,318,5.0,947222673\n472,322,4.0,939072462\n472,342,5.0,944321404\n472,345,4.0,962170023\n472,348,3.0,939072217\n472,356,4.0,939071839\n472,357,5.0,944062114\n472,363,5.0,939049591\n472,364,4.0,939004597\n472,369,2.5,1161358140\n472,377,4.0,1156728929\n472,380,2.0,962171913\n472,390,5.0,1004423372\n472,412,2.0,962171293\n472,431,3.0,994738168\n472,441,4.0,939691545\n472,443,4.0,1047765919\n472,446,3.0,939691405\n472,449,4.0,948656430\n472,456,4.0,1017535421\n472,457,4.0,939691713\n472,467,4.0,958950101\n472,480,4.0,994737675\n472,492,2.0,939072462\n472,493,4.0,994737953\n472,497,2.0,939071750\n472,501,4.0,970518900\n472,511,3.0,1158605231\n472,513,2.0,944321548\n472,514,4.0,970518127\n472,522,3.0,994738036\n472,527,3.0,939691768\n472,529,5.0,939072841\n472,538,3.0,939692234\n472,541,5.0,939049777\n472,551,5.0,958950245\n472,556,3.0,939049669\n472,562,4.0,939072152\n472,574,4.0,939072395\n472,581,3.0,939049669\n472,588,3.0,939004597\n472,589,2.0,950131344\n472,593,5.0,939072776\n472,594,4.0,994738309\n472,595,5.0,939004597\n472,599,5.0,939004952\n472,608,3.0,939691713\n472,659,4.0,994738168\n472,661,4.0,939004659\n472,678,4.0,939691713\n472,708,4.0,939072462\n472,714,1.0,962170354\n472,720,5.0,939691164\n472,728,3.0,939072040\n472,745,5.0,939691471\n472,750,5.0,939005079\n472,769,3.0,939691164\n472,783,2.0,939004706\n472,785,4.5,1075916020\n472,800,4.0,939691545\n472,813,1.0,962170599\n472,837,4.0,944321548\n472,838,2.0,944321656\n472,841,4.0,1006929182\n472,858,5.0,939003985\n472,898,3.0,939071962\n472,899,4.0,974244991\n472,902,4.0,944062013\n472,903,5.0,939072776\n472,904,4.0,939691164\n472,905,4.0,939071363\n472,906,4.0,939072599\n472,908,5.0,939003828\n472,910,4.0,939072776\n472,912,5.0,939004850\n472,913,5.0,939004850\n472,914,5.0,939691344\n472,915,4.0,958950297\n472,919,5.0,939072776\n472,920,4.5,1075915883\n472,922,5.0,939691713\n472,923,5.0,939004850\n472,924,4.0,939049849\n472,926,5.0,939003828\n472,928,5.0,944062013\n472,930,5.0,944062114\n472,938,4.0,994738309\n472,942,4.5,1075915978\n472,951,5.0,944061874\n472,953,5.0,939691545\n472,955,5.0,939691869\n472,968,5.0,944061932\n472,969,5.0,974244991\n472,1019,5.0,994737564\n472,1028,5.0,939692158\n472,1029,4.0,994738309\n472,1035,4.0,994738309\n472,1036,3.0,939691713\n472,1041,4.0,939691344\n472,1050,3.0,939049553\n472,1057,3.0,944321548\n472,1060,5.0,939071962\n472,1073,5.0,939072329\n472,1077,3.0,970518055\n472,1078,4.0,939003572\n472,1079,5.0,939003725\n472,1080,4.0,939071363\n472,1084,4.0,939691471\n472,1089,5.0,970518833\n472,1090,5.0,994309048\n472,1097,4.0,939049849\n472,1099,4.0,1162244502\n472,1100,2.0,962170671\n472,1103,4.0,944062066\n472,1104,5.0,970518708\n472,1123,5.0,944062375\n472,1129,4.0,962170835\n472,1136,5.0,939003572\n472,1147,5.0,939049553\n472,1148,5.0,939691164\n472,1162,1.0,944321321\n472,1171,3.0,939071962\n472,1172,4.0,939071363\n472,1175,5.0,939071514\n472,1178,5.0,962171976\n472,1179,4.0,1017535421\n472,1180,1.0,944321656\n472,1183,3.0,939691545\n472,1184,3.0,939072040\n472,1185,3.0,974245114\n472,1188,4.0,944321835\n472,1189,5.0,949995614\n472,1191,4.0,1006929004\n472,1193,5.0,939003985\n472,1196,4.5,1075915845\n472,1197,5.0,939071750\n472,1198,5.0,939691471\n472,1199,5.0,939691869\n472,1200,4.0,939049961\n472,1201,4.5,1156728545\n472,1202,5.0,958950101\n472,1203,4.0,1017535172\n472,1204,5.0,939004995\n472,1206,5.0,939049849\n472,1208,5.0,939003984\n472,1209,4.0,939072841\n472,1210,3.0,939049849\n472,1211,3.0,939071898\n472,1212,4.0,939049020\n472,1213,5.0,939072599\n472,1214,5.0,939049961\n472,1215,4.0,944062066\n472,1219,5.0,939691405\n472,1220,5.0,939071656\n472,1221,5.0,939003985\n472,1222,4.0,939691344\n472,1223,4.0,1075915905\n472,1224,3.0,1017534915\n472,1225,4.0,1017535172\n472,1228,5.0,1017534737\n472,1230,5.0,939003572\n472,1233,5.0,939072894\n472,1234,4.0,939003572\n472,1235,4.0,939072329\n472,1236,3.0,939071898\n472,1240,5.0,939072841\n472,1242,2.0,939691344\n472,1244,4.0,939003984\n472,1245,4.0,1157512094\n472,1247,5.0,939005079\n472,1248,5.0,939691164\n472,1249,5.0,939692104\n472,1250,5.0,939003828\n472,1252,5.0,944062013\n472,1254,4.0,939049020\n472,1256,2.0,944321656\n472,1258,4.0,939692234\n472,1259,4.0,939071656\n472,1260,5.0,962171728\n472,1263,2.0,962171976\n472,1265,4.0,939072462\n472,1266,5.0,939691344\n472,1267,5.0,939004952\n472,1269,3.0,939004850\n472,1270,3.0,939049849\n472,1272,5.0,939692234\n472,1273,3.0,970518179\n472,1274,4.0,1017535172\n472,1276,4.0,939071579\n472,1278,4.0,939003572\n472,1279,3.0,939072329\n472,1280,4.0,1017534788\n472,1282,3.0,994738309\n472,1283,5.0,939691226\n472,1284,5.0,962171728\n472,1285,5.0,944321835\n472,1288,5.0,939071579\n472,1292,5.0,939072329\n472,1295,4.0,944062114\n472,1296,4.0,1017534737\n472,1299,5.0,939691164\n472,1303,4.0,939692104\n472,1304,5.0,939071962\n472,1307,5.0,939072217\n472,1310,4.5,1075915968\n472,1321,4.5,1162244245\n472,1333,4.5,1156728373\n472,1339,1.0,962170417\n472,1348,4.0,1156728353\n472,1357,4.0,1017535781\n472,1358,5.0,1017534872\n472,1361,5.0,949995614\n472,1374,3.0,939049777\n472,1380,4.0,994738436\n472,1387,5.0,994737899\n472,1392,4.0,1017535257\n472,1393,4.0,939072841\n472,1394,5.0,939071750\n472,1405,3.0,939004706\n472,1413,3.0,949996360\n472,1449,3.0,939071656\n472,1466,3.0,939692104\n472,1476,3.0,944321835\n472,1489,2.0,939004706\n472,1500,4.0,1017535421\n472,1517,5.0,958950297\n472,1537,5.0,939071418\n472,1566,2.0,939004659\n472,1569,3.0,939072395\n472,1580,5.0,944321835\n472,1610,5.0,939691405\n472,1614,1.0,944321835\n472,1617,5.0,939072894\n472,1625,5.0,940539131\n472,1639,4.0,1017535258\n472,1641,4.0,939072329\n472,1653,4.0,939049961\n472,1658,2.0,939691869\n472,1663,4.0,939692905\n472,1673,4.0,1017535258\n472,1674,4.0,949996156\n472,1678,3.0,939692234\n472,1682,4.0,939691618\n472,1688,3.0,994738309\n472,1693,2.0,962170106\n472,1699,4.0,939692104\n472,1701,3.0,939072217\n472,1704,3.0,939691471\n472,1719,5.0,940539077\n472,1721,5.0,939691405\n472,1729,4.0,1017535489\n472,1732,4.0,944321656\n472,1734,2.0,939692533\n472,1747,4.0,944321835\n472,1748,3.0,939049777\n472,1760,1.0,994738695\n472,1777,3.0,944321404\n472,1784,3.0,939071579\n472,1785,4.0,962170835\n472,1794,3.0,944321321\n472,1796,2.0,950776150\n472,1799,4.0,939691973\n472,1845,5.0,939071579\n472,1856,5.0,1006929033\n472,1861,2.0,944321321\n472,1865,4.0,949996391\n472,1866,3.0,939049224\n472,1883,1.0,939049224\n472,1888,3.0,939071656\n472,1907,2.0,939004597\n472,1914,3.0,939692653\n472,1921,4.0,939691226\n472,1922,4.0,974244507\n472,1923,5.0,939071579\n472,1946,4.0,1017535630\n472,1947,3.0,939692037\n472,1948,4.0,944321548\n472,1952,5.0,939691618\n472,1953,5.0,939003984\n472,1954,5.0,939003985\n472,1955,4.0,994738650\n472,1956,5.0,939691164\n472,1957,5.0,939072776\n472,1958,4.0,939071750\n472,1960,4.5,1162244543\n472,1964,4.5,1075915973\n472,1965,4.0,939049961\n472,1966,5.0,939071839\n472,1968,4.0,939072329\n472,1997,4.5,1156728380\n472,2000,3.0,944321835\n472,2001,3.0,944321739\n472,2013,2.0,939691713\n472,2014,3.0,939692368\n472,2016,2.0,939692431\n472,2019,4.0,1017535781\n472,2020,4.0,949996107\n472,2025,3.0,939691226\n472,2028,3.0,944061874\n472,2037,3.0,944062066\n472,2064,5.0,939049553\n472,2065,4.0,939072395\n472,2067,5.0,939005079\n472,2073,5.0,939071656\n472,2078,4.0,1017535489\n472,2080,3.0,944061932\n472,2081,4.0,939072395\n472,2085,4.0,1017535173\n472,2102,4.0,970518127\n472,2108,4.0,944321548\n472,2109,4.0,939692533\n472,2117,4.0,950131344\n472,2130,3.0,994738168\n472,2136,4.0,944321404\n472,2141,3.0,939692431\n472,2144,5.0,944321404\n472,2145,4.0,1017535723\n472,2150,4.0,939049153\n472,2159,4.0,994738168\n472,2160,4.5,1156728377\n472,2169,3.0,962170354\n472,2171,4.0,994738489\n472,2174,5.0,939072217\n472,2186,4.0,1075916035\n472,2194,4.0,1017535859\n472,2231,3.0,939692037\n472,2243,4.0,939072152\n472,2245,3.0,939692653\n472,2248,5.0,939072040\n472,2249,3.0,939692431\n472,2261,5.0,1014277534\n472,2276,3.0,974244601\n472,2282,3.0,939692104\n472,2285,4.0,949996360\n472,2289,5.0,939071898\n472,2291,5.0,950776150\n472,2294,4.0,939004659\n472,2296,3.0,947222762\n472,2300,5.0,958950180\n472,2301,3.0,939071839\n472,2302,3.0,939049224\n472,2303,4.0,994738309\n472,2310,4.0,1017535630\n472,2318,5.0,939692431\n472,2321,3.0,939072395\n472,2324,3.0,947222831\n472,2325,4.0,944321548\n472,2329,2.0,962170023\n472,2330,5.0,950776150\n472,2331,3.0,939072152\n472,2335,3.5,1158605234\n472,2344,4.0,939691768\n472,2349,4.0,939071839\n472,2355,3.0,939004598\n472,2359,5.0,944321739\n472,2360,3.0,974244935\n472,2366,5.0,994737953\n472,2371,4.0,944321835\n472,2375,3.0,939071750\n472,2384,1.0,939072040\n472,2387,4.0,944321835\n472,2391,4.0,940539077\n472,2394,3.0,939004597\n472,2395,5.0,953094994\n472,2396,2.0,939048793\n472,2401,4.0,939691618\n472,2406,3.0,939071750\n472,2407,3.0,939072217\n472,2416,3.0,944321321\n472,2425,3.0,939141157\n472,2427,4.0,944061932\n472,2433,2.0,939692037\n472,2439,3.0,939141057\n472,2442,4.0,939141157\n472,2463,4.0,944321548\n472,2467,5.0,940539077\n472,2468,3.0,944321739\n472,2470,4.0,944321548\n472,2478,3.0,944321739\n472,2482,3.0,1010960589\n472,2485,3.0,939071514\n472,2488,5.0,944062066\n472,2490,5.0,939048793\n472,2502,4.0,940538450\n472,2505,1.0,939048793\n472,2518,3.0,939072329\n472,2529,3.0,939005079\n472,2539,4.0,939141157\n472,2541,1.0,939141157\n472,2542,4.0,939048793\n472,2553,5.0,939004952\n472,2554,5.0,950131344\n472,2571,5.0,939048793\n472,2572,2.0,944062232\n472,2580,4.0,939141057\n472,2590,4.0,940538500\n472,2599,5.0,940538500\n472,2605,2.0,940538500\n472,2606,3.0,950776150\n472,2609,3.0,940538500\n472,2610,3.0,939141057\n472,2621,3.0,944062279\n472,2622,1.0,944062013\n472,2627,5.0,1047765891\n472,2628,4.0,939049777\n472,2644,5.0,962170417\n472,2648,4.5,1075916008\n472,2657,5.0,939692905\n472,2671,3.0,944062279\n472,2672,3.0,939141057\n472,2683,4.0,944062184\n472,2686,3.0,947222831\n472,2687,4.0,939004597\n472,2693,4.0,939049669\n472,2697,1.0,944321656\n472,2700,4.0,939072040\n472,2701,3.0,944062232\n472,2706,3.0,939002838\n472,2710,3.0,939003019\n472,2712,2.0,939003158\n472,2713,2.0,939003244\n472,2716,3.0,939071656\n472,2717,2.0,939072395\n472,2718,4.0,948656159\n472,2722,3.0,939003123\n472,2723,4.0,939003123\n472,2724,3.0,939071579\n472,2726,5.0,940539221\n472,2729,5.0,939691768\n472,2730,2.0,994309048\n472,2731,4.0,962170023\n472,2732,3.0,947222673\n472,2736,4.0,951611626\n472,2759,4.0,948656221\n472,2761,4.0,939002838\n472,2762,5.0,939002838\n472,2770,4.0,949995783\n472,2791,5.0,939049153\n472,2797,3.0,939071418\n472,2804,5.0,946843083\n472,2805,4.0,939003206\n472,2824,5.0,951173767\n472,2840,2.0,939141807\n472,2858,2.0,939002838\n472,2860,3.0,939003019\n472,2861,1.0,939003206\n472,2871,5.0,944062066\n472,2875,5.0,994738537\n472,2881,1.0,939003123\n472,2882,2.0,959831064\n472,2885,3.0,939002920\n472,2890,3.0,945502818\n472,2891,3.0,959831017\n472,2912,4.0,959831017\n472,2915,4.0,1017535781\n472,2916,4.0,994737621\n472,2917,4.0,994738107\n472,2918,5.0,944061874\n472,2925,4.0,939003984\n472,2926,4.0,944321739\n472,2935,4.0,939071363\n472,2936,4.0,948656295\n472,2940,4.0,962171728\n472,2944,4.0,1162244200\n472,2947,4.0,1162244221\n472,2948,4.0,1162244228\n472,2949,4.5,1162244239\n472,2951,5.0,944061874\n472,2959,2.0,945502818\n472,2966,3.0,943899827\n472,2968,4.0,950131344\n472,2972,4.0,1017534788\n472,2973,4.0,944321548\n472,2974,3.0,948656089\n472,2987,5.0,944061874\n472,2988,4.0,946843083\n472,2997,4.0,945502818\n472,3000,4.0,1017535723\n472,3007,4.0,1006928934\n472,3019,4.0,1017535333\n472,3022,5.0,944061932\n472,3037,5.0,970518055\n472,3039,4.0,958950246\n472,3054,1.0,959831064\n472,3057,3.0,944061653\n472,3067,4.0,1017535905\n472,3072,4.0,1004423372\n472,3081,4.0,943899827\n472,3082,2.0,948656047\n472,3088,3.0,944321656\n472,3089,5.0,974244507\n472,3090,3.0,974244991\n472,3099,3.0,948656386\n472,3100,3.0,944061932\n472,3104,4.0,944321739\n472,3108,4.0,948656430\n472,3114,5.0,948655922\n472,3125,2.0,946842902\n472,3127,4.0,949995343\n472,3133,5.0,953095219\n472,3134,4.0,947222673\n472,3135,5.0,1017534915\n472,3146,5.0,948656089\n472,3147,2.0,948656009\n472,3156,1.0,946842867\n472,3163,3.0,948655922\n472,3167,5.0,946843083\n472,3169,4.0,946843083\n472,3173,4.0,946842794\n472,3174,3.0,946842867\n472,3176,3.0,948655922\n472,3182,4.0,1017535630\n472,3188,4.0,1006928876\n472,3200,4.0,970518127\n472,3201,5.0,953094943\n472,3210,5.0,948656386\n472,3224,4.0,949996236\n472,3246,4.0,1162244548\n472,3260,4.0,1017534915\n472,3263,4.0,948656386\n472,3265,4.0,970519115\n472,3266,4.0,994738036\n472,3285,3.0,951611626\n472,3304,3.0,1017535029\n472,3308,3.0,954742077\n472,3317,4.0,952901714\n472,3328,2.0,958949891\n472,3330,5.0,953094994\n472,3334,4.0,962171728\n472,3342,4.0,1162244493\n472,3359,5.0,974244601\n472,3361,5.0,958950297\n472,3362,5.0,953095219\n472,3363,4.0,1017535173\n472,3365,3.0,1156728555\n472,3384,5.0,994737953\n472,3408,3.0,958949891\n472,3418,4.0,994737953\n472,3421,5.0,958950101\n472,3424,4.0,958950180\n472,3435,4.0,1017535334\n472,3462,4.0,962171581\n472,3467,3.0,1017534951\n472,3471,5.0,994737621\n472,3481,4.0,954741927\n472,3499,4.0,1156728385\n472,3504,5.0,954742077\n472,3506,4.5,1158605135\n472,3507,4.0,958950180\n472,3508,5.0,1156728567\n472,3521,4.0,954742125\n472,3534,2.0,961745111\n472,3535,3.0,958949934\n472,3539,4.5,1075915732\n472,3543,4.0,954742024\n472,3549,4.0,994738309\n472,3551,5.0,994738650\n472,3556,3.0,958949891\n472,3578,4.0,958949934\n472,3608,4.0,958950246\n472,3653,5.0,1006928934\n472,3671,5.0,958950037\n472,3683,5.0,962171728\n472,3702,4.5,1157512384\n472,3703,4.0,994737621\n472,3718,5.0,1004422779\n472,3730,5.0,962171110\n472,3741,4.0,970518833\n472,3751,4.0,962169824\n472,3752,3.0,962169824\n472,3753,1.0,970517723\n472,3755,2.0,970517723\n472,3783,4.0,994738107\n472,3785,4.0,970517723\n472,3789,4.0,1017534788\n472,3793,3.0,970517723\n472,3811,4.0,1017535258\n472,3814,5.0,970518127\n472,3819,3.0,970517988\n472,3893,3.0,970517723\n472,3897,3.0,970517723\n472,3910,1.0,994738436\n472,3911,4.0,970517723\n472,3913,4.0,1006929033\n472,3925,4.0,970518179\n472,3947,5.0,974244935\n472,3948,4.0,974244416\n472,3955,2.0,979540065\n472,3967,3.0,974244416\n472,3993,3.0,979539865\n472,3996,4.0,979539865\n472,4011,4.0,981441662\n472,4019,4.0,979539966\n472,4020,4.0,979540065\n472,4022,3.0,979539865\n472,4027,4.0,979539865\n472,4029,3.0,1158605083\n472,4034,5.0,979539865\n472,4054,2.0,981441662\n472,4056,3.0,981441662\n472,4091,3.0,1010960589\n472,4116,4.0,1010960630\n472,4117,4.0,1004423139\n472,4190,5.0,1017534872\n472,4197,4.0,994738650\n472,4210,2.0,994737953\n472,4211,3.0,1017534951\n472,4225,3.0,1004422921\n472,4234,3.0,994309232\n472,4239,3.0,994309232\n472,4246,4.0,994309499\n472,4262,5.0,1162244886\n472,4278,4.5,1075915933\n472,4292,5.0,994309048\n472,4304,5.0,1006929004\n472,4306,4.0,1010439969\n472,4308,3.5,1156728983\n472,4327,4.0,1156728549\n472,4349,4.5,1158605059\n472,4356,4.0,994738374\n472,4361,4.0,1017535859\n472,4369,4.0,994309138\n472,4378,4.0,994309138\n472,4432,5.0,994309048\n472,4440,4.0,1162244525\n472,4474,3.0,1006929104\n472,4490,2.0,994738847\n472,4546,4.0,1006929140\n472,4562,5.0,1004423139\n472,4570,4.0,1010960661\n472,4589,4.0,1017535334\n472,4641,4.0,1004423139\n472,4698,4.0,1010960589\n472,4711,5.0,1006928934\n472,4754,3.0,1017534841\n472,4769,4.0,1006928934\n472,4783,5.0,1006928934\n472,4826,4.0,1162244490\n472,4848,4.0,1006928698\n472,4855,4.0,1162244202\n472,4886,5.0,1006928698\n472,4896,3.0,1006928698\n472,4914,4.0,1017534788\n472,4963,3.0,1010439856\n472,4970,4.0,939691973\n472,4973,4.0,1010960402\n472,4978,3.0,1014277421\n472,4979,2.0,1010439856\n472,4990,3.0,1014277458\n472,4993,3.0,1010439727\n472,4995,4.0,1014277421\n472,5010,3.0,1014277421\n472,5013,3.0,1010960402\n472,5018,3.0,1026344748\n472,5022,4.0,1017535058\n472,5025,4.0,1014277458\n472,5060,4.0,1010960630\n472,5074,5.0,1014277421\n472,5092,4.0,1014277458\n472,5177,4.0,1017534688\n472,5187,4.0,1026344748\n472,5218,3.0,1018080215\n472,5226,3.5,1158605140\n472,5256,2.0,1017534530\n472,5267,4.0,1017534594\n472,5285,3.0,1020325429\n472,5291,3.0,1158604913\n472,5292,4.0,1050100913\n472,5298,4.0,1020325429\n472,5299,4.0,1156728975\n472,5316,3.0,1023325980\n472,5349,3.0,1023325980\n472,5377,3.0,1023325980\n472,5378,3.0,1023326012\n472,5379,4.0,1023325980\n472,5401,4.0,1026887149\n472,5417,4.0,1026887149\n472,5444,4.0,1026887149\n472,5445,3.0,1026887149\n472,5446,4.0,1172531320\n472,5463,3.0,1026887197\n472,5479,3.0,1031894398\n472,5502,2.0,1031894362\n472,5507,3.0,1031894362\n472,5524,3.0,1031894362\n472,5572,3.0,1037746946\n472,5577,2.0,1032568460\n472,5617,4.0,1037746889\n472,5618,5.0,1172531135\n472,5669,3.0,1047765891\n472,5810,3.0,1037746889\n472,5825,4.0,1172956897\n472,5899,4.0,1162244329\n472,5902,4.5,1075915870\n472,5914,4.0,1075915707\n472,5932,4.5,1164753473\n472,5941,3.0,1047765772\n472,5942,3.0,1047765832\n472,5945,2.0,1047765721\n472,5952,3.0,1047765721\n472,5965,3.0,1162244187\n472,5991,4.0,1050100913\n472,5993,3.0,1047765772\n472,5995,4.0,1172531312\n472,6003,5.0,1047765772\n472,6016,4.0,1156728740\n472,6032,4.0,1050100843\n472,6042,4.0,1047765773\n472,6057,2.0,1047765773\n472,6062,5.0,1047765773\n472,6185,2.0,1047765773\n472,6188,4.5,1075915920\n472,6212,3.0,1047765832\n472,6216,1.0,1047765721\n472,6218,4.0,1050101331\n472,6331,4.5,1075915769\n472,6365,1.5,1156728961\n472,6368,4.5,1075915722\n472,6377,4.0,1075915586\n472,6440,4.5,1075915657\n472,6461,5.0,1156728563\n472,6539,3.5,1075915632\n472,6620,4.0,1156728234\n472,6662,4.5,1162244652\n472,6711,4.5,1075915818\n472,6773,4.5,1075915525\n472,6777,3.5,1157512083\n472,6787,4.5,1156728101\n472,6807,4.0,1075915598\n472,6936,2.0,1075915492\n472,6942,4.0,1075915498\n472,6947,5.0,1075915483\n472,6975,3.0,1162244528\n472,6979,4.0,1157512376\n472,6987,4.0,1156728350\n472,6993,4.5,1075915796\n472,7013,4.5,1157386833\n472,7070,3.0,1162244261\n472,7072,3.0,1162244164\n472,7084,4.0,1075915578\n472,7147,3.0,1075915518\n472,7153,2.0,1075915476\n472,7438,2.5,1156728950\n472,7587,4.0,1156728112\n472,7771,5.0,1162244476\n472,7802,4.5,1162244323\n472,8042,4.0,1157512059\n472,8228,4.5,1156728124\n472,8949,4.0,1156728270\n472,8961,3.5,1156728747\n472,26172,4.0,1162244155\n472,26231,3.5,1172530533\n472,26425,4.5,1156728243\n472,26729,5.0,1168889546\n472,30707,2.5,1157512035\n472,32582,4.0,1172531111\n472,32632,4.0,1162244518\n472,33639,4.5,1157512317\n472,37741,4.5,1156728120\n472,38038,4.0,1156728252\n472,38992,3.5,1158605176\n472,39292,2.5,1156728152\n472,41285,3.5,1172531452\n472,41997,3.5,1172531439\n472,43396,4.0,1162244387\n472,44022,3.5,1164753301\n472,44191,4.0,1157512402\n472,44195,3.0,1156728091\n472,44761,4.0,1158605391\n472,45440,3.5,1164753282\n472,45501,3.0,1161358124\n472,45728,4.0,1164753219\n472,45730,1.0,1172530814\n472,45950,4.5,1164753215\n472,46322,4.5,1172530550\n472,46850,4.5,1164753203\n472,46967,4.0,1164753270\n472,47423,4.0,1172530523\n472,47997,4.0,1172530800\n472,48319,3.5,1172530755\n472,48738,4.0,1165517980\n472,49132,4.0,1172956890\n472,49272,4.0,1165517959\n472,50068,4.0,1170954729\n473,2,5.0,1425643774\n473,104,3.5,1425644175\n473,110,5.0,1425644210\n473,145,4.5,1425645124\n473,316,0.5,1425645578\n473,356,5.0,1425644213\n473,364,5.0,1425643485\n473,377,3.5,1425645567\n473,500,5.0,1425644068\n473,765,4.0,1425644109\n473,780,5.0,1425643902\n473,1027,2.0,1425645565\n473,1036,5.0,1425643530\n473,1246,3.5,1425644076\n473,1370,5.0,1425643997\n473,1527,5.0,1425643563\n473,1704,5.0,1425644064\n473,1917,5.0,1425644006\n473,1954,4.0,1425645585\n473,2335,4.0,1425644170\n473,2431,5.0,1425644057\n473,2571,5.0,1425643453\n473,2959,5.0,1425645497\n473,3147,5.0,1425643444\n473,3448,5.0,1425644078\n473,3489,5.0,1425644065\n473,3578,5.0,1425643489\n473,4306,5.0,1425643344\n473,4874,5.0,1425643640\n473,4886,5.0,1425643448\n473,4973,5.0,1425643558\n473,5377,3.5,1425643120\n473,6157,2.0,1425643193\n473,6373,5.0,1425643114\n473,6378,3.0,1425643124\n473,6548,5.0,1425643259\n473,6754,4.0,1425643217\n473,7293,5.0,1425643161\n473,8464,5.0,1425643135\n473,8529,4.0,1425643187\n473,8984,2.5,1425644012\n473,32587,5.0,1425644005\n473,33794,4.0,1425643493\n473,36529,5.0,1425643169\n473,45208,3.0,1425644120\n473,49272,4.5,1425643778\n473,50872,5.0,1425643501\n473,53974,3.5,1425644133\n473,54004,5.0,1425644172\n473,58559,5.0,1425645521\n473,59315,5.0,1425643495\n473,59900,2.0,1425644188\n473,68157,5.0,1425645591\n473,72998,5.0,1425643504\n473,76093,5.0,1425643337\n473,79091,4.5,1425645588\n473,79132,5.0,1425643321\n473,80549,4.5,1425668744\n473,83349,2.5,1425645634\n473,85414,3.0,1425643537\n473,86548,5.0,1425645627\n473,88163,5.0,1425668726\n473,88810,5.0,1425668742\n473,89745,5.0,1425643497\n473,90403,3.0,1425645640\n473,90430,5.0,1425645651\n473,90890,1.0,1425644192\n473,91529,5.0,1425643469\n473,99114,5.0,1425645643\n473,99728,5.0,1425668729\n473,100083,2.5,1425668769\n473,101142,4.0,1425668771\n473,109374,5.0,1425643073\n473,111617,3.5,1425644157\n473,112556,5.0,1425643077\n473,112852,4.0,1425644226\n474,260,4.0,976163499\n474,316,4.0,976163143\n474,480,4.0,977201887\n474,595,5.0,976163768\n474,858,5.0,976163045\n474,898,5.0,976163962\n474,899,5.0,976163696\n474,909,4.0,976163962\n474,919,4.0,976163696\n474,951,4.0,977201760\n474,1197,5.0,976163582\n474,1198,4.0,976163095\n474,1214,4.0,976493665\n474,1219,4.0,976493665\n474,1221,5.0,976163499\n474,1238,5.0,976163397\n474,1244,4.0,976163962\n474,1282,4.0,977201799\n474,1288,5.0,976163696\n474,1304,4.0,976163582\n474,1387,4.0,976163499\n474,1466,4.0,977201799\n474,1673,3.0,976163045\n474,1903,4.0,977202217\n474,1947,5.0,976163768\n474,2019,5.0,976163499\n474,2070,5.0,976163351\n474,2150,1.0,976164041\n474,2160,4.0,977201847\n474,2300,4.0,976163696\n474,2303,4.0,976163696\n474,2657,3.0,976163768\n474,2858,3.0,977201760\n474,2863,3.0,976163696\n474,2944,3.0,976163582\n474,3101,3.0,976163095\n474,3104,4.0,976163143\n474,3545,4.0,976163696\n474,3578,4.0,977201847\n474,3819,3.0,976163915\n474,4008,4.0,977201847\n475,1,4.5,1446908358\n475,16,4.0,1447072053\n475,47,4.0,1447071828\n475,110,4.0,1447414544\n475,111,4.5,1447072049\n475,153,1.0,1447329525\n475,260,5.0,1446908093\n475,296,5.0,1446908211\n475,316,3.0,1446909035\n475,356,4.5,1446908262\n475,480,4.5,1446908568\n475,541,4.0,1447071701\n475,588,3.5,1446908542\n475,589,4.5,1447071931\n475,592,4.0,1447329513\n475,858,5.0,1446908198\n475,903,4.0,1447072029\n475,924,5.0,1447339191\n475,1036,5.0,1447329757\n475,1097,3.5,1446908443\n475,1196,5.0,1447237781\n475,1198,5.0,1447935227\n475,1200,4.0,1447269576\n475,1201,5.0,1447269602\n475,1203,5.0,1447269581\n475,1210,4.0,1447329650\n475,1213,5.0,1447072052\n475,1214,4.0,1447269575\n475,1221,5.0,1447237783\n475,1228,4.5,1447072060\n475,1270,5.0,1447329733\n475,1275,3.5,1447329710\n475,1377,4.0,1447329522\n475,1387,4.0,1447269603\n475,1562,1.0,1447329537\n475,1580,3.0,1447329624\n475,1721,3.0,1446908857\n475,2028,4.0,1446908215\n475,2167,4.0,1447329754\n475,2288,4.0,1447269610\n475,2355,3.5,1446908635\n475,2571,5.0,1446908081\n475,2617,3.5,1447255334\n475,2628,1.0,1447255300\n475,2640,3.5,1447329621\n475,2641,2.5,1447329643\n475,2687,3.0,1447255432\n475,2701,1.0,1447255366\n475,2706,2.0,1446908111\n475,2716,4.0,1447329646\n475,2761,4.0,1447255385\n475,2762,3.5,1447255296\n475,2959,5.0,1446908095\n475,2985,3.5,1446909060\n475,3082,2.0,1447255379\n475,3114,3.5,1446908113\n475,3285,2.0,1447255439\n475,3354,1.5,1447255419\n475,3462,4.0,1446908249\n475,3483,3.0,1447255567\n475,3535,4.0,1447072279\n475,3564,0.5,1447778383\n475,3578,4.0,1446908294\n475,3615,1.5,1447239779\n475,3623,2.5,1447072169\n475,3624,2.0,1447255392\n475,3646,1.5,1447327386\n475,3703,4.0,1447256595\n475,3717,2.5,1447239346\n475,3751,2.0,1447255346\n475,3752,2.0,1447255389\n475,3753,3.0,1447255357\n475,3785,2.0,1447072263\n475,3793,3.5,1447072140\n475,3821,0.5,1447239688\n475,3827,2.5,1447255443\n475,3897,4.0,1447072173\n475,3977,1.0,1447255341\n475,3981,2.0,1447255494\n475,3988,2.0,1447255429\n475,3997,0.5,1447255560\n475,4015,2.0,1447327166\n475,4016,4.0,1447072567\n475,4025,2.0,1447778072\n475,4232,1.5,1447072678\n475,4270,2.5,1447239392\n475,4299,3.5,1447072556\n475,4306,2.0,1446908382\n475,4310,2.0,1447072290\n475,4367,2.0,1447072362\n475,4368,0.5,1447778309\n475,4369,3.0,1447239431\n475,4370,2.5,1447072235\n475,4386,1.0,1447255558\n475,4388,1.0,1447072696\n475,4447,1.0,1447327103\n475,4638,1.0,1447239424\n475,4643,2.0,1447072274\n475,4701,2.5,1447072561\n475,4718,2.0,1447072292\n475,4720,2.5,1447255370\n475,4735,1.0,1447327985\n475,4744,1.5,1447327608\n475,4757,1.5,1447328003\n475,4876,1.0,1447327588\n475,4886,3.5,1447072127\n475,4890,1.5,1447778136\n475,4896,3.5,1447072160\n475,4963,4.0,1447072147\n475,4993,5.0,1446908089\n475,4994,2.5,1447778317\n475,5010,4.5,1447239336\n475,5128,1.0,1447778405\n475,5171,1.5,1447255497\n475,5218,2.0,1447072218\n475,5219,2.5,1447239506\n475,5254,4.0,1447072606\n475,5266,2.0,1447255416\n475,5313,0.5,1447239735\n475,5349,4.0,1447072143\n475,5378,2.0,1447072738\n475,5418,4.0,1447072154\n475,5419,1.0,1447255547\n475,5445,3.0,1447072129\n475,5459,2.0,1447239352\n475,5463,3.0,1447255520\n475,5478,2.0,1447327895\n475,5480,1.5,1447778702\n475,5481,1.5,1447327098\n475,5502,3.0,1447239332\n475,5504,0.5,1447778490\n475,5507,2.0,1447072640\n475,5523,0.5,1447778855\n475,5574,1.5,1447239613\n475,5621,0.5,1447778365\n475,5679,2.0,1447239358\n475,5784,1.0,1447327901\n475,5785,3.0,1447239646\n475,5810,3.0,1447072592\n475,5816,3.0,1447072748\n475,5872,1.0,1447239479\n475,5952,5.0,1446908199\n475,5956,4.0,1447072057\n475,5989,4.5,1447072172\n475,5991,3.0,1447072271\n475,6016,4.5,1447269572\n475,6059,2.5,1447327391\n475,6157,1.0,1447072595\n475,6333,3.0,1447072746\n475,6365,2.0,1447072163\n475,6377,3.0,1447072128\n475,6378,3.0,1447239344\n475,6383,2.0,1447239581\n475,6502,4.0,1447072220\n475,6503,1.0,1447239560\n475,6534,2.0,1447072601\n475,6537,1.0,1447072282\n475,6539,3.5,1447072139\n475,6541,1.0,1447239515\n475,6548,2.0,1447239663\n475,6550,2.0,1447778296\n475,6564,1.0,1447239677\n475,6566,0.5,1447778766\n475,6586,2.5,1447239768\n475,6595,2.5,1447239723\n475,6686,0.5,1447329344\n475,6711,4.5,1447072741\n475,6754,3.0,1447239534\n475,6863,4.0,1447072251\n475,6874,4.5,1446908355\n475,6888,1.0,1447327407\n475,6934,2.0,1447072213\n475,6936,1.5,1447778141\n475,7143,3.5,1447072240\n475,7147,4.0,1447072209\n475,7153,5.0,1446908087\n475,7164,1.5,1447328063\n475,7317,2.5,1447327544\n475,7360,4.0,1447072665\n475,7361,4.0,1447072145\n475,7369,0.5,1447329039\n475,7373,3.0,1447072548\n475,7438,4.5,1446908364\n475,7439,1.0,1447327703\n475,7451,2.5,1447239503\n475,7454,2.0,1447239572\n475,7458,2.0,1446909050\n475,7502,5.0,1446909151\n475,8360,2.0,1446908672\n475,8361,2.5,1447072524\n475,8368,4.0,1446908440\n475,8371,2.5,1447072715\n475,8372,1.0,1447328125\n475,8528,2.5,1447072580\n475,8636,4.0,1447072744\n475,8640,2.0,1447327532\n475,8641,3.0,1447072563\n475,8644,2.0,1447239329\n475,8665,4.0,1447072205\n475,8666,0.5,1447327723\n475,8783,2.5,1447239512\n475,8810,0.5,1447239576\n475,8861,1.0,1447239733\n475,8866,3.0,1447778499\n475,8873,2.5,1447778177\n475,8874,4.0,1446908348\n475,8907,1.0,1447327577\n475,8947,1.0,1447778312\n475,8957,2.5,1447072552\n475,8961,4.0,1447072155\n475,8970,3.5,1447072462\n475,8972,2.5,1447072593\n475,8984,2.5,1447072532\n475,8985,1.0,1447327477\n475,27423,3.0,1447779288\n475,27772,1.0,1447329048\n475,30707,4.0,1446908365\n475,30749,4.0,1447072277\n475,30793,2.0,1447072300\n475,30812,3.5,1447072075\n475,31221,0.5,1447327944\n475,31685,2.0,1447072639\n475,31696,3.0,1447072631\n475,32296,1.5,1447328833\n475,32587,4.0,1447072740\n475,33004,3.0,1447072529\n475,33158,1.0,1447778758\n475,33166,3.0,1447072266\n475,33493,2.5,1447329655\n475,33615,2.0,1447072703\n475,33646,2.5,1447778447\n475,33679,3.0,1447072359\n475,33794,3.5,1447072157\n475,34048,2.5,1447239428\n475,34150,1.0,1447072671\n475,34162,2.5,1447072312\n475,34319,2.0,1447327213\n475,34332,2.0,1447778676\n475,35836,3.5,1447239349\n475,36401,1.5,1447327524\n475,36519,1.5,1447327663\n475,36529,4.0,1447239445\n475,37380,1.0,1447327992\n475,37386,1.0,1447327450\n475,37731,3.0,1447327990\n475,37830,3.0,1447327911\n475,39435,2.0,1447328282\n475,39444,3.5,1447327970\n475,39446,1.0,1447239744\n475,40815,4.0,1446908495\n475,40819,3.5,1447072436\n475,40851,2.5,1447778836\n475,41566,3.0,1446908779\n475,41569,3.0,1447327135\n475,41997,3.5,1447239519\n475,42011,2.0,1447327720\n475,42418,2.0,1447328927\n475,42738,2.5,1447327487\n475,43928,0.5,1447778556\n475,43936,3.0,1447327612\n475,44191,3.5,1446908308\n475,44195,3.5,1446909158\n475,44665,3.0,1447239454\n475,45186,3.5,1447239602\n475,45447,3.0,1447072569\n475,45499,2.0,1447072432\n475,45517,1.0,1447072616\n475,45666,4.0,1447327976\n475,45672,1.0,1447327385\n475,45722,2.0,1447239342\n475,46335,2.5,1447327840\n475,46530,1.5,1447239592\n475,46578,4.0,1447072215\n475,46723,3.0,1447072649\n475,46965,2.0,1447327626\n475,46972,2.0,1447239653\n475,46974,2.0,1447778872\n475,47044,2.0,1447327969\n475,47099,3.0,1447072669\n475,47200,2.0,1447327499\n475,47518,2.5,1447327958\n475,47640,2.5,1447778728\n475,48322,2.5,1447328117\n475,48385,3.0,1446909164\n475,48394,3.5,1446908268\n475,48516,5.0,1447072036\n475,48780,4.5,1447072211\n475,48783,3.5,1447327981\n475,49272,5.0,1447072207\n475,49274,1.0,1447778345\n475,49278,2.5,1447239669\n475,49396,3.0,1447328305\n475,49530,4.0,1446909160\n475,49649,0.5,1447778479\n475,49651,4.5,1447327947\n475,50068,3.0,1447327453\n475,50872,4.5,1447072241\n475,51077,0.5,1447327614\n475,51086,2.0,1447327706\n475,51255,3.5,1447268348\n475,51540,4.0,1447239544\n475,51575,0.5,1447328933\n475,51662,4.0,1446908562\n475,51935,3.0,1447239795\n475,51939,2.0,1447778934\n475,52245,3.0,1447327549\n475,52281,3.0,1447071721\n475,52694,1.0,1447329165\n475,52722,1.0,1447072611\n475,52973,3.0,1447239491\n475,53000,4.0,1447071717\n475,53121,0.5,1447239772\n475,53125,2.0,1447072543\n475,53322,3.5,1447239547\n475,53460,2.5,1447778862\n475,53464,0.5,1447239810\n475,53519,3.0,1447327297\n475,53972,2.5,1447239537\n475,53993,0.5,1447778365\n475,53996,3.0,1447072527\n475,54001,3.5,1447239418\n475,54190,3.0,1447327624\n475,54259,3.0,1447072637\n475,54272,2.5,1447072550\n475,54286,4.0,1447072222\n475,54503,3.5,1447072366\n475,54648,1.5,1447328890\n475,54995,3.0,1447327408\n475,55232,1.5,1447327710\n475,55721,4.0,1447328235\n475,55768,1.0,1447328272\n475,55820,4.5,1447072237\n475,56145,4.0,1447327593\n475,56174,2.5,1447072360\n475,56176,0.5,1447778839\n475,56367,3.5,1447072226\n475,56775,3.0,1447239807\n475,56801,0.5,1447778487\n475,57368,4.0,1447071727\n475,57640,3.0,1447239750\n475,58025,2.0,1447239803\n475,58293,1.0,1447327547\n475,58559,5.0,1446909123\n475,58655,1.5,1447329057\n475,58803,3.0,1447239754\n475,59037,3.0,1447329302\n475,59103,2.0,1447329015\n475,59315,4.0,1447239318\n475,59369,3.5,1447239444\n475,59421,1.5,1447328966\n475,59501,2.5,1447327624\n475,59615,1.0,1447239509\n475,59784,3.5,1446908527\n475,60040,2.0,1447239643\n475,60069,3.5,1446908224\n475,60072,3.0,1447239702\n475,60074,2.0,1447071726\n475,60126,2.5,1447778320\n475,60684,4.5,1446908505\n475,60937,1.0,1447328950\n475,61024,3.0,1447239683\n475,61132,4.5,1447071725\n475,61160,2.5,1447328878\n475,62155,3.0,1447328116\n475,62394,1.0,1447778746\n475,62999,1.0,1447328052\n475,63082,3.0,1447072238\n475,63113,2.0,1447071723\n475,63859,2.5,1447327584\n475,63876,3.0,1447239700\n475,64030,1.0,1447778732\n475,64497,1.0,1447778531\n475,64614,3.0,1447072304\n475,64620,4.5,1447327494\n475,64839,4.5,1447072651\n475,64957,3.0,1447072597\n475,64969,2.5,1447327458\n475,64983,3.0,1447327978\n475,66171,2.0,1447328979\n475,67408,2.5,1446909078\n475,67734,3.0,1447327650\n475,67923,2.5,1447328858\n475,68157,4.5,1447071775\n475,68205,1.0,1447328880\n475,68237,4.0,1447071795\n475,68319,0.5,1447239607\n475,68358,4.0,1447072260\n475,68554,2.5,1447327484\n475,68659,3.0,1447329455\n475,68791,2.0,1447239766\n475,68793,1.0,1447328885\n475,68954,3.0,1446908222\n475,69122,3.0,1447072268\n475,69481,3.5,1446908437\n475,69526,0.5,1447239789\n475,69644,1.0,1447328054\n475,69757,3.5,1447327123\n475,69784,1.0,1447327727\n475,69844,3.5,1446908410\n475,70286,3.5,1447239354\n475,70336,0.5,1447778590\n475,71156,3.0,1447327797\n475,71535,3.5,1446908400\n475,71745,3.5,1447327967\n475,72011,3.5,1447072683\n475,72043,2.5,1447329721\n475,72226,3.5,1447071934\n475,72395,2.5,1447328988\n475,72641,3.0,1447778229\n475,72733,3.0,1447328856\n475,72998,3.0,1446908484\n475,73017,3.0,1447072372\n475,73023,3.5,1447328911\n475,73321,4.0,1447255630\n475,73929,1.0,1447269131\n475,74458,4.5,1446908315\n475,74532,2.0,1447256061\n475,74789,1.0,1447239609\n475,74795,3.5,1446908825\n475,75805,1.0,1447329301\n475,76093,4.0,1447072517\n475,76175,0.5,1447269085\n475,76251,3.5,1447072565\n475,76293,2.5,1447328266\n475,77206,2.5,1447256346\n475,77364,2.5,1447256028\n475,77561,3.5,1447329586\n475,78088,3.0,1447255860\n475,78105,2.0,1447255690\n475,78209,1.5,1447255724\n475,78467,0.5,1447256251\n475,78469,2.5,1447269090\n475,78499,4.5,1447072357\n475,78637,0.5,1447255772\n475,79091,2.0,1447071718\n475,79132,3.0,1446908082\n475,79185,2.0,1447269105\n475,79224,3.0,1447255817\n475,79242,3.0,1447255760\n475,79293,1.5,1447255637\n475,79592,2.5,1447269085\n475,79695,1.0,1447269094\n475,79702,4.0,1447072646\n475,80363,2.0,1447255806\n475,80463,3.5,1447072457\n475,80489,4.0,1447239752\n475,80549,3.0,1447239826\n475,81156,3.0,1447255994\n475,81229,3.0,1447255620\n475,81537,2.0,1447269103\n475,81562,2.5,1446908520\n475,81564,3.5,1446908553\n475,81591,3.0,1447072460\n475,81782,2.0,1447269099\n475,81834,4.0,1446908372\n475,81845,4.0,1447072307\n475,81932,4.0,1447239757\n475,82095,0.5,1447256093\n475,82169,2.0,1447255815\n475,82202,1.0,1447255788\n475,82459,4.0,1447071873\n475,82461,3.0,1447239813\n475,83349,2.0,1447268863\n475,83613,1.5,1447255727\n475,84152,4.5,1447255610\n475,84772,2.0,1447268861\n475,84944,3.5,1447255657\n475,85022,1.5,1447256001\n475,85056,2.0,1447268879\n475,85131,2.5,1447255794\n475,85342,4.0,1447255785\n475,85510,3.0,1447268865\n475,85774,4.0,1447071948\n475,86298,2.0,1447255808\n475,86332,2.0,1447329595\n475,86644,2.5,1447328996\n475,86833,3.0,1447778339\n475,86880,1.5,1447255644\n475,86882,3.0,1447255617\n475,86911,1.0,1447255670\n475,87192,3.5,1447255856\n475,87222,3.0,1447328063\n475,87232,4.0,1447072609\n475,87306,3.5,1447255633\n475,87430,0.5,1447255725\n475,87485,1.5,1447255779\n475,87520,0.5,1447327973\n475,87529,2.0,1447256019\n475,87869,2.5,1446909041\n475,87876,0.5,1447268893\n475,88125,3.5,1447072584\n475,88129,4.0,1447072690\n475,88140,3.5,1447239637\n475,88744,4.0,1446908606\n475,88812,3.0,1447256017\n475,89030,2.5,1447256138\n475,89492,4.0,1447239690\n475,89745,4.0,1447072355\n475,89804,3.5,1447255718\n475,89864,4.0,1447239770\n475,90249,3.0,1447255792\n475,90524,2.0,1447268951\n475,90647,2.0,1447255820\n475,90746,3.5,1447255702\n475,90866,3.5,1447072084\n475,91077,3.0,1447842943\n475,91094,3.0,1447255881\n475,91485,2.0,1447268635\n475,91500,4.0,1446908578\n475,91529,2.5,1446908231\n475,91535,2.5,1447255710\n475,91542,3.5,1447239621\n475,91630,3.5,1447239741\n475,91658,4.0,1447255608\n475,91660,0.5,1447268972\n475,92420,3.5,1447255720\n475,92938,1.0,1447256213\n475,93270,2.5,1447256100\n475,93363,2.5,1447255766\n475,93510,4.0,1447255640\n475,93766,0.5,1447256074\n475,93838,4.0,1447255835\n475,94018,1.5,1447255876\n475,94777,2.5,1447255666\n475,94864,2.0,1446908837\n475,95309,3.5,1446908827\n475,95441,3.0,1447255667\n475,95510,2.0,1447239739\n475,95875,1.5,1447255750\n475,96079,4.0,1447240147\n475,96610,4.0,1447239567\n475,96691,2.0,1447256157\n475,96737,4.0,1447255751\n475,96821,4.0,1447255627\n475,96861,2.5,1447255867\n475,96863,1.5,1447268744\n475,97304,4.0,1446908362\n475,97913,3.0,1447239817\n475,97921,3.5,1446908417\n475,97923,3.5,1447255752\n475,98122,4.0,1447256427\n475,98124,4.0,1447255946\n475,98154,3.0,1447268633\n475,98809,3.0,1447072663\n475,98961,4.0,1446908492\n475,99112,2.0,1447255776\n475,99114,4.0,1446908209\n475,99117,2.0,1447256134\n475,99728,2.5,1447256035\n475,99813,4.0,1447255894\n475,100498,1.0,1447255955\n475,101864,2.5,1447268384\n475,102033,2.5,1447256141\n475,102123,3.5,1447255767\n475,102125,2.5,1447329585\n475,102445,3.5,1447239656\n475,102481,2.5,1447255973\n475,102686,0.5,1447255891\n475,102716,3.0,1447255905\n475,102880,1.0,1447256010\n475,102903,1.0,1447255685\n475,103042,2.5,1447268390\n475,103141,2.5,1447255740\n475,103228,4.0,1447255654\n475,103249,3.0,1446909043\n475,103253,2.0,1446909069\n475,103335,1.0,1447255696\n475,103339,2.5,1447255950\n475,103655,0.5,1447256241\n475,103772,2.5,1447268397\n475,103810,2.5,1447255954\n475,103883,2.5,1447256089\n475,104241,3.0,1447268408\n475,104243,2.0,1447329336\n475,104841,4.5,1446908491\n475,104879,4.0,1446908310\n475,104913,4.5,1447268394\n475,105504,3.5,1447268392\n475,105755,1.0,1447256370\n475,105844,4.0,1447268383\n475,106002,2.5,1447255736\n475,106072,3.5,1447255679\n475,106100,4.0,1446908349\n475,106487,3.0,1448031993\n475,106489,3.0,1447239717\n475,106766,4.0,1447255855\n475,106782,5.0,1446908412\n475,106916,3.5,1447268385\n475,106918,4.0,1447255730\n475,106920,4.0,1447071797\n475,107069,3.0,1447255939\n475,107348,3.0,1447255899\n475,107406,4.0,1447255742\n475,107953,3.0,1447268546\n475,108190,2.5,1447255737\n475,108928,2.0,1447256032\n475,108945,2.0,1447255877\n475,109374,4.5,1447071770\n475,109487,3.5,1447071958\n475,109578,3.5,1447255915\n475,109673,2.0,1447329317\n475,109850,2.0,1447256281\n475,110102,4.5,1447239781\n475,110127,2.5,1447255900\n475,110553,2.5,1447255797\n475,111113,3.0,1447255919\n475,111362,3.5,1447239666\n475,111364,3.0,1447255791\n475,111443,3.5,1447329226\n475,111622,3.5,1447256004\n475,111743,1.5,1447256071\n475,111759,4.0,1447072692\n475,111781,4.0,1447240130\n475,112138,3.0,1447328865\n475,112175,3.5,1447255682\n475,112183,3.0,1447071791\n475,112290,3.5,1447255642\n475,112370,0.5,1447255931\n475,112421,3.5,1447256268\n475,112552,4.5,1446908255\n475,112556,4.0,1446908312\n475,112623,4.0,1446908631\n475,112852,4.5,1447072635\n475,112911,2.0,1447256249\n475,113348,2.0,1447256090\n475,114662,3.5,1446908770\n475,115170,3.0,1447256064\n475,115210,3.5,1446908533\n475,115569,4.0,1447071819\n475,115617,4.0,1447239624\n475,115713,5.0,1446908140\n475,116161,3.0,1447256097\n475,116797,4.0,1446908135\n475,116823,2.0,1447255664\n475,117529,3.0,1447256491\n475,118696,2.0,1447255701\n475,119145,4.5,1447256486\n475,120799,2.0,1447255985\n475,122882,5.0,1446908352\n475,122886,4.5,1452259407\n475,122892,3.5,1447256484\n475,122900,4.0,1447255922\n475,122902,1.5,1447256325\n475,130634,2.5,1447256489\n475,132046,3.0,1447256115\n475,133195,1.0,1447256525\n475,134130,4.0,1454428207\n475,134170,4.0,1447256170\n475,134853,5.0,1446908136\n475,135133,3.0,1449834805\n475,136020,2.0,1447237796\n475,139644,3.0,1454428216\n475,142488,5.0,1454428201\n475,146656,4.5,1454428219\n475,148626,5.0,1454428198\n476,16,5.0,978966317\n476,111,4.0,971680962\n476,593,4.0,971680928\n476,785,3.0,971681012\n476,1093,5.0,971879190\n476,1097,2.0,971680989\n476,1127,1.0,971878795\n476,1198,3.0,971681012\n476,2318,4.0,971879270\n476,2369,2.0,971878972\n476,2395,4.0,971879462\n476,2396,3.0,971879462\n476,2428,2.0,971879215\n476,2490,2.0,971879410\n476,2580,2.0,971879270\n476,2600,3.0,971879550\n476,2683,3.0,971878911\n476,2692,4.0,971879427\n476,2700,4.0,971879513\n476,2701,1.0,971879550\n476,2706,2.0,971878795\n476,2707,4.0,971878911\n476,2710,3.0,971878929\n476,2712,3.0,971879215\n476,2716,3.0,971879236\n476,2719,1.0,971879270\n476,2722,3.0,971878972\n476,2724,1.0,971879462\n476,2762,4.0,971879462\n476,2772,3.0,971878972\n476,2826,2.0,971878795\n476,2858,5.0,971878795\n476,2881,3.0,971879190\n476,2959,5.0,971879215\n476,2987,3.0,971879550\n476,2995,1.0,971879270\n476,2997,5.0,971878911\n476,3081,4.0,971879462\n476,3113,1.0,971879215\n476,3127,3.0,971680928\n476,3160,5.0,971879362\n476,3174,4.0,971879362\n476,3175,4.0,971879236\n476,3578,3.0,971879270\n476,3623,4.0,971879378\n476,3752,1.0,971879362\n477,158,2.0,1329273308\n477,193,0.5,1329273629\n477,1027,0.5,1329273654\n477,1032,0.5,1329273648\n477,1371,5.0,1329273453\n477,1376,5.0,1329273299\n477,1527,5.0,1329273804\n477,1580,4.0,1329273976\n477,1644,1.0,1329273645\n477,1690,1.0,1329273431\n477,1722,4.0,1329273336\n477,2717,4.0,1329273624\n477,2881,0.5,1329273632\n477,2985,2.0,1329273301\n477,3717,4.0,1329273478\n477,4571,0.5,1329273631\n477,5481,5.0,1329273637\n477,8371,5.0,1329273855\n477,37386,5.0,1329273822\n477,65982,3.5,1329273959\n477,83613,4.0,1329273836\n478,47,3.5,1446621801\n478,260,4.5,1446622759\n478,293,3.5,1446622432\n478,296,5.0,1446621714\n478,318,5.0,1446621527\n478,356,5.0,1446621713\n478,778,4.5,1448366070\n478,1089,5.0,1446829908\n478,1193,4.5,1448366068\n478,1210,4.5,1446829751\n478,1270,5.0,1446622582\n478,1527,5.0,1446622660\n478,1884,4.0,1446622315\n478,2028,4.5,1446621699\n478,2329,5.0,1446621529\n478,2542,5.0,1446621572\n478,2571,3.5,1446621543\n478,2959,4.5,1446621716\n478,3147,4.0,1446621727\n478,3949,4.5,1446621947\n478,4011,5.0,1446621835\n478,4973,2.5,1446621923\n478,4993,5.0,1446622013\n478,4995,4.5,1446621791\n478,5952,5.0,1446622109\n478,5956,4.5,1446830553\n478,5989,5.0,1446621949\n478,5995,5.0,1446621644\n478,6016,4.5,1446621851\n478,6373,4.5,1446830537\n478,6902,4.0,1446622620\n478,7153,5.0,1446621979\n478,7293,3.5,1446830506\n478,7361,4.0,1446622736\n478,7438,4.0,1446621926\n478,7458,4.5,1446830493\n478,8368,4.5,1446622638\n478,8984,4.5,1446830502\n478,30812,4.0,1448366027\n478,32587,4.5,1446621931\n478,47099,4.5,1448366020\n478,48516,4.5,1446621779\n478,53125,4.0,1446621673\n478,54001,4.5,1446621676\n478,55247,5.0,1446622172\n478,55269,4.5,1446622204\n478,58559,3.5,1446621987\n478,59022,2.5,1446622341\n478,59315,3.5,1446621844\n478,64957,5.0,1446830173\n478,68157,4.5,1446623029\n478,72378,2.5,1446621819\n478,72998,4.0,1446622651\n478,73017,4.0,1446622630\n478,74458,4.5,1446622412\n478,79132,5.0,1446622776\n478,80463,3.5,1446621664\n478,80693,3.5,1446830417\n478,81537,3.5,1446622200\n478,81562,3.0,1446621814\n478,84844,5.0,1446622362\n478,88125,4.5,1446622406\n478,89492,4.0,1446621822\n478,91529,4.0,1446623043\n478,91542,4.0,1446622632\n478,92259,5.0,1446622009\n478,99114,4.0,1446621730\n478,106918,5.0,1446830134\n478,109374,4.5,1446622140\n478,109487,5.0,1446621584\n478,118900,3.5,1446622281\n478,119145,4.0,1446622655\n478,122886,5.0,1446622586\n478,138036,4.0,1448365930\n479,2,4.0,1409093666\n479,104,4.0,1410192250\n479,150,5.0,1409005120\n479,318,5.0,1409004681\n479,367,4.0,1409093530\n479,586,4.0,1409093577\n479,593,5.0,1409004732\n479,1097,4.0,1409005147\n479,1136,5.0,1409004746\n479,1193,4.0,1409093557\n479,1206,3.0,1409093622\n479,1270,4.5,1409093498\n479,1387,4.0,1409005161\n479,1388,3.5,1409004128\n479,1580,4.5,1409093527\n479,1663,4.0,1410192304\n479,1704,4.0,1409093588\n479,1732,3.0,1409093701\n479,1920,2.0,1409004174\n479,1961,4.5,1409093598\n479,1968,4.5,1409093663\n479,2004,2.0,1409004133\n479,2082,3.5,1409004123\n479,2114,3.5,1409004206\n479,2116,2.0,1409004096\n479,2502,4.0,1409093698\n479,2571,4.0,1409004715\n479,2683,4.0,1409093607\n479,2706,4.0,1409093634\n479,2762,4.0,1409093515\n479,2791,4.0,1409093728\n479,2916,4.0,1409093710\n479,2918,4.5,1409093650\n479,2959,4.0,1409004704\n479,3534,3.0,1409004141\n479,3793,4.0,1409093593\n479,4226,4.5,1409004729\n479,4306,4.0,1409093549\n479,4558,3.5,1409004232\n479,4686,3.5,1409004449\n479,4886,4.0,1409093638\n479,4896,4.5,1409093797\n479,4963,4.0,1409093654\n479,4980,3.0,1409004201\n479,4993,2.0,1409093519\n479,4995,4.5,1409093679\n479,5481,4.0,1410192265\n479,5618,0.5,1409004709\n479,5621,4.0,1409004359\n479,5816,4.0,1409093780\n479,5952,2.0,1409093544\n479,6377,4.0,1409093657\n479,6539,4.0,1409093628\n479,7153,1.0,1409004756\n479,7361,4.0,1409093684\n479,8464,4.0,1410192261\n479,8622,4.0,1409004044\n479,8961,4.5,1409093732\n479,33794,5.0,1409004830\n479,45950,4.0,1409004273\n479,46976,5.0,1409093851\n479,47610,5.0,1409005155\n479,48738,5.0,1409093858\n479,49530,5.0,1409005125\n479,51255,3.0,1409093862\n479,54001,4.0,1409093788\n479,54503,5.0,1409093823\n479,55247,5.0,1409005016\n479,55280,2.0,1410192461\n479,56367,5.0,1409005177\n479,58303,4.5,1410192448\n479,58559,5.0,1409004822\n479,58998,4.0,1410192457\n479,59315,4.0,1410192258\n479,59369,4.5,1409005208\n479,63082,5.0,1409093849\n479,64614,4.0,1410192481\n479,67255,4.5,1410192468\n479,69122,5.0,1409005151\n479,69481,4.5,1410192503\n479,69757,5.0,1409093767\n479,69844,4.5,1409093785\n479,72011,4.5,1410192483\n479,72998,5.0,1409005122\n479,73017,4.0,1409005203\n479,79132,5.0,1409004743\n479,80463,4.5,1410192509\n479,80489,4.0,1409005211\n479,81562,5.0,1409094234\n479,81834,5.0,1409005131\n479,81845,4.5,1410192464\n479,87232,4.0,1409005223\n479,87520,4.0,1409004489\n479,88125,5.0,1409005133\n479,89864,5.0,1410192476\n479,91529,5.0,1409004834\n479,91542,4.0,1409005205\n479,99114,4.0,1409004240\n479,106487,4.5,1409093810\n480,1,5.0,1272669366\n480,2,5.0,1272669458\n480,32,3.0,1272668464\n480,34,3.5,1272670036\n480,47,4.0,1272670017\n480,50,4.5,1272667244\n480,110,4.0,1272668411\n480,150,4.5,1339456571\n480,158,4.5,1339455084\n480,165,5.0,1272668487\n480,180,3.0,1339285240\n480,185,4.0,1272670061\n480,223,4.0,1339284707\n480,296,4.0,1272668440\n480,318,5.0,1272667015\n480,339,4.5,1272668589\n480,344,3.0,1339456450\n480,356,2.0,1339456579\n480,357,4.0,1272670051\n480,364,5.0,1272668489\n480,367,3.5,1272668505\n480,377,5.0,1272671503\n480,380,3.5,1272668458\n480,434,4.0,1272668563\n480,442,4.0,1272668709\n480,455,3.0,1339284908\n480,457,4.5,1272668421\n480,474,4.0,1339284947\n480,480,5.0,1272668408\n480,481,3.0,1272670428\n480,485,4.0,1339455106\n480,500,4.0,1339284652\n480,539,3.5,1272669408\n480,586,5.0,1272669437\n480,587,3.5,1272670041\n480,588,3.5,1272668468\n480,589,5.0,1272669274\n480,590,4.0,1272668446\n480,593,4.5,1272666729\n480,595,3.5,1339456458\n480,608,3.5,1272670006\n480,648,3.5,1272670011\n480,653,4.5,1272668796\n480,736,4.5,1272668493\n480,750,2.5,1339284717\n480,778,4.0,1339284996\n480,780,4.5,1272666627\n480,784,2.0,1272668815\n480,832,5.0,1272668804\n480,858,4.0,1339456454\n480,904,4.5,1272666867\n480,1027,4.5,1339455426\n480,1028,0.5,1339455551\n480,1036,5.0,1272666561\n480,1059,3.5,1339455255\n480,1060,3.5,1339455372\n480,1080,4.0,1339454974\n480,1089,4.5,1272668610\n480,1097,4.0,1339456465\n480,1136,4.0,1272667253\n480,1200,4.0,1272669265\n480,1206,4.0,1339284702\n480,1207,4.5,1339455039\n480,1213,5.0,1272668612\n480,1214,4.5,1272666803\n480,1240,4.5,1339285265\n480,1259,4.5,1272670103\n480,1265,5.0,1272667434\n480,1270,4.0,1272670014\n480,1370,4.0,1272668821\n480,1393,3.5,1272668641\n480,1407,4.0,1272668749\n480,1408,4.5,1339285365\n480,1485,4.5,1272668743\n480,1499,3.5,1339455530\n480,1517,4.5,1272668632\n480,1527,3.5,1272668586\n480,1552,5.0,1272671511\n480,1569,3.5,1272673110\n480,1573,4.5,1272668727\n480,1580,5.0,1272668522\n480,1608,4.5,1339285505\n480,1617,4.5,1272668556\n480,1639,3.0,1339455053\n480,1641,5.0,1272668785\n480,1644,3.0,1339455351\n480,1676,5.0,1272669452\n480,1680,3.0,1339455518\n480,1682,5.0,1272668661\n480,1717,3.5,1339455501\n480,1721,4.5,1272668524\n480,1729,5.0,1339455111\n480,1732,4.0,1339455033\n480,1777,4.0,1272672623\n480,1784,2.5,1339285492\n480,1792,3.5,1272778290\n480,1917,4.0,1272666550\n480,1920,4.0,1272665583\n480,1923,5.0,1272668605\n480,1954,4.5,1339285421\n480,1968,4.0,1272666894\n480,2000,4.5,1272668767\n480,2001,3.0,1339455117\n480,2011,4.0,1339285301\n480,2028,5.0,1272668494\n480,2054,4.5,1272669445\n480,2058,4.0,1339455481\n480,2081,4.0,1339455073\n480,2082,5.0,1339455642\n480,2118,4.5,1339285292\n480,2161,4.0,1339455311\n480,2232,4.5,1339283559\n480,2294,4.5,1339455189\n480,2353,5.0,1272672157\n480,2420,4.5,1339455434\n480,2424,3.5,1272669401\n480,2529,5.0,1339285842\n480,2542,5.0,1272672310\n480,2571,5.0,1272666665\n480,2617,4.0,1272668773\n480,2671,3.5,1339455186\n480,2683,4.5,1272668601\n480,2706,0.5,1339455315\n480,2762,4.5,1272666581\n480,2797,4.0,1339455154\n480,2959,3.5,1272667353\n480,2968,5.0,1339285310\n480,2985,3.5,1339455679\n480,2997,2.5,1272668581\n480,3114,2.5,1272668655\n480,3147,4.5,1272666778\n480,3168,3.0,1339455624\n480,3253,4.0,1339285221\n480,3256,4.0,1339456486\n480,3409,4.0,1272665557\n480,3438,4.0,1339456544\n480,3499,4.5,1272665488\n480,3535,3.5,1272669938\n480,3578,5.0,1272668108\n480,3698,4.5,1339455460\n480,3717,2.0,1339285497\n480,3751,3.0,1339455142\n480,3755,2.0,1339455260\n480,3793,3.5,1272670073\n480,3897,4.0,1272668734\n480,3911,3.0,1272669779\n480,3916,4.0,1272669311\n480,3948,5.0,1272668838\n480,3967,3.0,1339455547\n480,4011,4.5,1272667735\n480,4022,4.0,1272668760\n480,4023,4.0,1272778035\n480,4034,4.0,1272670453\n480,4148,3.5,1272666721\n480,4223,4.0,1272672726\n480,4226,5.0,1272666879\n480,4246,4.0,1339284991\n480,4251,4.0,1272668173\n480,4270,3.0,1339455200\n480,4306,5.0,1272666918\n480,4351,4.0,1272665599\n480,4381,4.0,1272669787\n480,4621,3.5,1339284919\n480,4638,2.0,1339455305\n480,4776,5.0,1272669313\n480,4878,2.5,1339284110\n480,4896,5.0,1272764444\n480,4901,2.0,1339455417\n480,4963,3.0,1339285379\n480,4993,5.0,1272667000\n480,5010,4.5,1339283425\n480,5108,4.5,1272669330\n480,5266,5.0,1272669861\n480,5349,3.5,1272670109\n480,5377,2.5,1272669974\n480,5418,5.0,1272668082\n480,5445,4.0,1272666682\n480,5449,3.5,1272672899\n480,5464,4.5,1272669014\n480,5481,4.5,1339285260\n480,5630,4.0,1272666741\n480,5816,5.0,1272764423\n480,5833,4.5,1272665889\n480,5903,4.0,1339284120\n480,5952,5.0,1272666982\n480,5956,5.0,1272673098\n480,5989,3.0,1339455790\n480,6016,4.5,1272667606\n480,6281,5.0,1272671054\n480,6323,4.5,1272671404\n480,6365,3.0,1339455103\n480,6373,3.0,1339454956\n480,6377,4.5,1272668711\n480,6380,4.0,1272665734\n480,6502,4.5,1272666831\n480,6539,4.5,1272777807\n480,6796,5.0,1272667132\n480,6870,4.0,1272667994\n480,6874,4.0,1272667409\n480,6879,4.5,1272670695\n480,6942,4.5,1272672755\n480,7004,3.5,1339284902\n480,7143,4.5,1339285392\n480,7153,5.0,1272666992\n480,7162,4.0,1339455528\n480,7254,4.5,1272670772\n480,7256,4.0,1272672112\n480,7293,4.5,1272672629\n480,7347,3.5,1272672992\n480,7360,4.5,1272670692\n480,7362,4.0,1339455941\n480,7438,2.0,1339284056\n480,7445,4.0,1339284807\n480,7458,4.5,1339455357\n480,7502,5.0,1339285385\n480,8360,3.5,1339283435\n480,8361,4.0,1339455271\n480,8368,5.0,1272764407\n480,8369,4.5,1339456151\n480,8528,3.0,1339285510\n480,8529,3.5,1272669383\n480,8641,5.0,1272668856\n480,8644,4.0,1272670779\n480,8665,5.0,1272670455\n480,8783,3.5,1339283584\n480,8798,5.0,1272670543\n480,8860,4.0,1272765460\n480,8874,5.0,1272667041\n480,8907,3.5,1272672173\n480,8908,4.0,1272665951\n480,8949,0.5,1339455119\n480,8950,4.0,1272669931\n480,8957,4.5,1272666853\n480,8958,3.5,1272667440\n480,8972,3.5,1272778017\n480,27611,5.0,1339284100\n480,27674,4.0,1272671391\n480,27773,5.0,1272667751\n480,27831,4.0,1272667404\n480,27867,4.0,1339455410\n480,30707,1.5,1272668071\n480,30825,5.0,1272669869\n480,31410,3.5,1272671900\n480,31685,3.5,1339455949\n480,32587,5.0,1272666571\n480,33166,3.5,1339285158\n480,33672,3.5,1272666098\n480,33679,2.5,1339455293\n480,33794,4.0,1272667726\n480,34162,3.5,1272666911\n480,34405,5.0,1272667999\n480,35836,3.5,1272666769\n480,36276,3.5,1272671083\n480,36708,4.5,1272672626\n480,37731,1.5,1339455993\n480,39446,4.0,1272777826\n480,40412,4.5,1272668089\n480,40723,4.0,1272666126\n480,40732,4.5,1272666815\n480,40815,5.0,1272670804\n480,40819,4.0,1272672432\n480,41566,3.0,1339284755\n480,41569,3.0,1272671457\n480,41997,4.0,1272667084\n480,43936,4.5,1272666592\n480,44199,5.0,1272667783\n480,44511,4.0,1272669891\n480,44555,4.0,1272667616\n480,45672,3.5,1272672892\n480,45722,3.5,1339284912\n480,46578,5.0,1272668030\n480,46970,3.0,1339455586\n480,46972,3.5,1339455892\n480,46976,4.5,1272668009\n480,47610,3.0,1339284934\n480,47629,4.0,1272672529\n480,48516,5.0,1272667164\n480,48774,4.5,1272666691\n480,48780,5.0,1272666970\n480,49272,3.5,1272668087\n480,49278,4.5,1272669297\n480,49530,5.0,1272668081\n480,50445,3.5,1272671273\n480,50872,3.5,1272668041\n480,51084,4.5,1272672638\n480,51255,5.0,1272666925\n480,51412,4.5,1272665926\n480,51540,3.5,1272671348\n480,51662,3.5,1272672801\n480,52328,5.0,1272671117\n480,52952,3.0,1339455912\n480,53000,4.0,1272671452\n480,53972,2.5,1339285881\n480,54001,5.0,1272764414\n480,54286,5.0,1272667820\n480,54372,5.0,1272666173\n480,54503,4.5,1272669796\n480,54881,4.5,1272667918\n480,54997,4.5,1272668055\n480,55094,2.0,1272778261\n480,55247,1.5,1339285217\n480,55765,2.0,1272670402\n480,55820,4.5,1272667745\n480,56145,5.0,1272670832\n480,56174,4.0,1272667056\n480,56251,5.0,1339285825\n480,56782,3.5,1339455242\n480,57368,4.5,1272670843\n480,57669,5.0,1272666943\n480,58559,4.0,1272666753\n480,58803,4.5,1272671473\n480,58998,3.5,1272669806\n480,59315,3.0,1339285997\n480,59369,4.0,1272666844\n480,59421,4.5,1272673089\n480,59784,3.0,1272671188\n480,60069,4.0,1272666657\n480,60074,3.5,1272672166\n480,60161,4.5,1272666004\n480,61352,4.5,1272670541\n480,62155,3.5,1272672740\n480,62374,3.0,1272670707\n480,62644,3.0,1272670247\n480,62956,4.5,1272669830\n480,63072,3.0,1339284116\n480,63113,3.0,1339455506\n480,63131,4.5,1339456234\n480,64716,3.5,1272672154\n480,64839,3.0,1272667721\n480,64969,3.5,1339455634\n480,64983,4.0,1272671439\n480,65088,4.0,1272672873\n480,65216,5.0,1272672581\n480,66203,4.0,1272672636\n480,66297,4.5,1272666139\n480,67197,3.5,1272778044\n480,67255,4.0,1339284773\n480,67997,4.5,1339455953\n480,68073,4.5,1272670905\n480,68135,3.5,1272672862\n480,68237,5.0,1272666637\n480,68791,4.0,1272669920\n480,68954,2.5,1339285893\n480,69122,4.0,1272666933\n480,69306,3.5,1339456241\n480,69757,4.0,1272668053\n480,69844,5.0,1272764430\n480,70286,4.5,1339283920\n480,71106,3.5,1339285011\n480,71135,4.5,1272670819\n480,71264,3.5,1339284737\n480,71535,4.0,1272665777\n480,72226,2.0,1272667700\n480,72378,3.5,1272666613\n480,72998,5.0,1272667769\n480,73017,5.0,1339284321\n480,73211,4.0,1272667930\n480,74228,4.0,1339285306\n480,74458,4.0,1339283590\n480,74740,3.5,1272670778\n480,78088,4.0,1339283568\n480,78349,4.0,1339283468\n480,79132,5.0,1339283594\n480,79702,3.0,1339285851\n480,80463,4.5,1339455165\n480,81562,3.0,1339455207\n480,81834,4.5,1339283418\n480,81845,5.0,1339455002\n480,85414,3.5,1339284814\n480,88125,4.5,1339283421\n480,88744,3.5,1339455019\n480,89745,5.0,1339284337\n480,90888,3.0,1339284349\n480,91542,5.0,1339284328\n480,93363,4.0,1339284312\n480,94018,3.5,1339284364\n480,94777,4.5,1339284235\n480,94864,4.0,1339284298\n481,1,4.0,1437000892\n481,16,4.0,1437107274\n481,32,4.0,1437001138\n481,58,5.0,1437001711\n481,111,5.0,1437001061\n481,260,5.0,1437000913\n481,288,4.0,1437005927\n481,293,5.0,1437001979\n481,296,5.0,1437001071\n481,307,5.0,1437001570\n481,318,3.5,1437001004\n481,356,4.0,1437000890\n481,495,4.5,1437106903\n481,527,3.5,1437001006\n481,541,5.0,1437001831\n481,593,4.0,1437000887\n481,608,4.5,1437001083\n481,680,4.0,1437106441\n481,702,5.0,1437005446\n481,750,5.0,1437001062\n481,778,4.5,1437001898\n481,858,5.0,1437000986\n481,899,4.0,1437001363\n481,903,5.0,1437001834\n481,908,5.0,1437001848\n481,912,4.0,1437001066\n481,919,4.0,1437106109\n481,922,5.0,1437001850\n481,923,5.0,1437001090\n481,924,5.0,1437001080\n481,933,5.0,1437001545\n481,955,4.0,1437001472\n481,1032,4.5,1437106260\n481,1084,4.5,1437001358\n481,1089,5.0,1437001076\n481,1097,4.5,1437107173\n481,1136,3.0,1437106074\n481,1172,5.0,1437001195\n481,1193,5.0,1437001002\n481,1196,5.0,1437001055\n481,1198,4.0,1437001073\n481,1201,5.0,1437001057\n481,1206,5.0,1437001854\n481,1208,5.0,1437001069\n481,1210,5.0,1437001134\n481,1213,4.5,1437000994\n481,1221,5.0,1437000991\n481,1222,5.0,1437006129\n481,1227,5.0,1437001674\n481,1230,5.0,1437001114\n481,1240,3.5,1437005605\n481,1244,4.0,1437001937\n481,1247,4.0,1437001087\n481,1251,5.0,1437001459\n481,1252,5.0,1437001097\n481,1256,4.5,1437107405\n481,1258,5.0,1437006117\n481,1260,5.0,1437001206\n481,1270,5.0,1437000896\n481,1281,5.0,1437001355\n481,1282,5.0,1437106201\n481,1291,4.0,1437001380\n481,1304,5.0,1437001223\n481,1348,5.0,1437001943\n481,1354,4.0,1437003938\n481,1356,4.5,1437001351\n481,1374,4.5,1437001300\n481,1387,4.0,1437107158\n481,1527,4.0,1437107001\n481,1580,4.0,1437106994\n481,1682,4.0,1437005893\n481,1704,3.5,1437106992\n481,1729,4.0,1437005949\n481,1732,5.0,1437003466\n481,1784,3.5,1437006193\n481,1884,5.0,1437107584\n481,1952,5.0,1437001402\n481,1955,4.0,1441892391\n481,1961,3.5,1437005929\n481,1997,4.0,1437002064\n481,2010,5.0,1437001458\n481,2065,4.0,1437106183\n481,2068,5.0,1437106067\n481,2115,3.5,1437107198\n481,2160,4.0,1437005381\n481,2291,4.0,1437005924\n481,2351,4.5,1437001479\n481,2360,5.0,1437001370\n481,2361,4.0,1437105878\n481,2529,5.0,1437002017\n481,2542,4.0,1437005912\n481,2571,4.0,1437000902\n481,2572,3.5,1439688849\n481,2628,3.0,1437001026\n481,2692,5.0,1437001118\n481,2712,4.0,1437006131\n481,2729,3.0,1437006135\n481,2730,4.5,1437006153\n481,2731,5.0,1437001915\n481,2732,5.0,1437002006\n481,2762,4.5,1437001019\n481,2763,2.0,1439688851\n481,2858,4.5,1437001016\n481,2918,3.5,1437001125\n481,2959,4.5,1437001018\n481,2997,5.0,1437001141\n481,3000,5.0,1437001222\n481,3010,5.0,1437005142\n481,3022,4.5,1437001291\n481,3083,5.0,1437001508\n481,3089,5.0,1437001890\n481,3134,5.0,1437001465\n481,3168,5.0,1437006171\n481,3285,4.0,1437002557\n481,3306,5.0,1437001665\n481,3307,5.0,1437001889\n481,3310,5.0,1437002009\n481,3362,4.5,1437001836\n481,3462,5.0,1437001202\n481,3471,4.0,1437005554\n481,3503,5.0,1437005547\n481,3504,5.0,1437001376\n481,3534,2.5,1437002629\n481,3535,4.0,1437002378\n481,3560,4.0,1437106924\n481,3578,4.0,1437002209\n481,3629,5.0,1437107397\n481,3677,5.0,1437106601\n481,3753,2.5,1437002320\n481,3863,4.0,1437002376\n481,3882,1.5,1437002613\n481,3897,4.5,1437002205\n481,3910,5.0,1437002687\n481,3949,4.5,1437001081\n481,3996,4.0,1437002223\n481,4011,4.0,1437005914\n481,4014,4.0,1437004094\n481,4016,4.0,1437002548\n481,4017,4.0,1437003153\n481,4023,3.0,1437002587\n481,4144,4.5,1437001468\n481,4226,4.0,1437002166\n481,4235,4.5,1437001226\n481,4246,5.0,1437002306\n481,4262,4.5,1437001115\n481,4270,2.0,1437002429\n481,4306,3.5,1437002214\n481,4308,3.5,1437002285\n481,4343,1.5,1437002620\n481,4370,3.5,1437002292\n481,4628,4.0,1437107118\n481,4638,2.0,1437002473\n481,4643,2.0,1437002371\n481,4658,4.0,1437105826\n481,4728,3.0,1437002794\n481,4776,3.0,1437002423\n481,4848,4.5,1437002347\n481,4874,3.5,1437002504\n481,4886,4.5,1437002227\n481,4896,3.5,1437006298\n481,4914,5.0,1437106502\n481,4963,3.5,1437002182\n481,4973,5.0,1437001051\n481,4992,2.0,1437002822\n481,4993,5.0,1437001087\n481,4994,3.5,1437003180\n481,4995,3.5,1437002190\n481,5014,3.5,1437002765\n481,5056,5.0,1437003673\n481,5147,5.0,1437003669\n481,5179,5.0,1437005469\n481,5218,3.0,1437002297\n481,5225,4.5,1437001981\n481,5266,2.5,1437002470\n481,5269,5.0,1437003835\n481,5304,4.5,1437004331\n481,5319,5.0,1437006449\n481,5349,3.0,1437002183\n481,5378,3.5,1437006307\n481,5418,5.0,1437002201\n481,5445,3.5,1437002178\n481,5449,2.0,1437002768\n481,5459,3.5,1437002343\n481,5489,5.0,1437003878\n481,5560,4.5,1437003744\n481,5607,5.0,1437006459\n481,5618,5.0,1437005698\n481,5620,2.0,1437002777\n481,5669,3.5,1437002303\n481,5686,4.5,1437004997\n481,5791,4.5,1437002852\n481,5878,5.0,1437001507\n481,5881,1.0,1437002846\n481,5902,4.5,1437002355\n481,5944,3.5,1437002781\n481,5945,3.5,1437006180\n481,5952,4.0,1437001093\n481,5956,3.5,1437107334\n481,5989,4.0,1437006296\n481,5991,3.5,1437002367\n481,5992,4.5,1437002677\n481,6003,4.0,1437002813\n481,6016,5.0,1437000996\n481,6155,3.0,1437002717\n481,6197,4.5,1437007415\n481,6214,5.0,1437005080\n481,6283,5.0,1437005617\n481,6287,2.5,1437003544\n481,6333,1.0,1437006311\n481,6365,3.5,1437006300\n481,6370,4.5,1437004375\n481,6373,3.0,1437002358\n481,6377,5.0,1437002179\n481,6385,4.0,1437002715\n481,6539,3.0,1437002218\n481,6591,3.5,1437003789\n481,6666,5.0,1437004173\n481,6711,4.5,1437003357\n481,6774,4.0,1437007406\n481,6863,4.0,1437002353\n481,6874,5.0,1437002191\n481,6888,1.0,1437002938\n481,6934,3.0,1437002271\n481,6942,2.5,1437002375\n481,6947,3.0,1437002478\n481,6975,4.5,1437003842\n481,6985,5.0,1437005306\n481,6987,5.0,1437005267\n481,7043,5.0,1437106401\n481,7063,5.0,1437003876\n481,7071,4.0,1437005458\n481,7090,4.5,1441892578\n481,7091,4.0,1437107574\n481,7147,4.0,1437002259\n481,7149,3.5,1437002868\n481,7151,4.0,1437003173\n481,7153,4.0,1437002165\n481,7160,4.0,1437002730\n481,7162,4.0,1437002725\n481,7254,4.0,1437002365\n481,7293,3.5,1441892562\n481,7323,5.0,1437002648\n481,7327,5.0,1437005272\n481,7347,3.5,1437002907\n481,7361,5.0,1437002186\n481,7371,5.0,1437002843\n481,7419,4.0,1437107276\n481,7438,5.0,1437002196\n481,7451,2.0,1437002610\n481,7505,4.5,1437003935\n481,8154,5.0,1437002005\n481,8197,5.0,1437002048\n481,8239,5.0,1437002088\n481,8368,3.5,1437002254\n481,8477,5.0,1437001701\n481,8529,3.5,1437002573\n481,8533,2.5,1437005527\n481,8620,4.0,1437004193\n481,8636,2.5,1437006309\n481,8638,3.0,1437001680\n481,8645,3.5,1437003045\n481,8665,5.0,1437002252\n481,8798,3.5,1437002438\n481,8873,4.5,1437003553\n481,8930,4.5,1437003943\n481,8949,4.0,1437002445\n481,8961,3.0,1437006293\n481,8966,3.0,1437003244\n481,8969,4.0,1437003049\n481,8970,4.0,1437002484\n481,8973,4.5,1437002078\n481,8981,4.0,1437002716\n481,25750,5.0,1437106059\n481,25771,5.0,1437003734\n481,26094,5.0,1437005404\n481,26258,4.0,1437105806\n481,26326,5.0,1437105780\n481,26574,4.0,1437004294\n481,26729,5.0,1437007724\n481,27423,5.0,1437005044\n481,27611,3.5,1437005560\n481,27773,5.0,1437001202\n481,27821,3.5,1437003247\n481,30707,4.5,1437002345\n481,30749,4.5,1437001304\n481,30812,4.0,1437002519\n481,31973,5.0,1437004326\n481,32444,4.0,1437106570\n481,32587,4.0,1437001147\n481,32825,4.5,1437106699\n481,32898,5.0,1437005548\n481,33166,4.0,1437002362\n481,33493,3.0,1437002269\n481,33679,2.5,1437002467\n481,33903,5.0,1437007302\n481,34048,2.0,1437107222\n481,34072,4.0,1437002863\n481,34437,4.5,1437002824\n481,36276,4.0,1437003828\n481,36529,4.0,1437002519\n481,37741,4.0,1437002749\n481,39183,5.0,1437002532\n481,39869,4.0,1437003953\n481,40819,4.5,1437002495\n481,41566,3.0,1437002452\n481,41997,3.5,1437107169\n481,42677,4.5,1437107187\n481,44555,5.0,1437001841\n481,44694,4.5,1437001927\n481,44717,3.0,1437005055\n481,45447,2.5,1437002570\n481,45720,3.0,1437002728\n481,46578,5.0,1437001659\n481,46723,4.0,1437002656\n481,46976,3.5,1437003350\n481,47152,5.0,1437106568\n481,47721,5.0,1437106063\n481,48165,5.0,1437003824\n481,48385,3.5,1437002433\n481,48394,5.0,1437002282\n481,48516,4.5,1437006170\n481,48997,4.0,1441892419\n481,49272,3.5,1437002277\n481,49299,4.0,1437006468\n481,50842,4.0,1437003964\n481,50872,4.5,1437002386\n481,50912,4.0,1437004091\n481,51662,3.0,1437002289\n481,52666,4.5,1437003826\n481,53123,4.0,1437001672\n481,54001,4.0,1437002497\n481,54259,3.0,1437002645\n481,54272,3.0,1437002557\n481,54286,5.0,1437002287\n481,54503,4.0,1437002465\n481,55118,4.0,1437007396\n481,55247,4.5,1437001512\n481,55269,4.5,1437002080\n481,55721,4.5,1437001623\n481,55820,5.0,1437001405\n481,56174,3.0,1437002475\n481,56367,5.0,1437002293\n481,56587,3.0,1437006185\n481,56757,3.0,1437002739\n481,56782,4.5,1437001625\n481,56869,5.0,1437005037\n481,57038,5.0,1437005025\n481,58301,4.0,1437003846\n481,58559,3.5,1437002233\n481,58879,4.0,1437107315\n481,59615,2.0,1437002637\n481,59805,4.0,1437006549\n481,60069,4.5,1437001281\n481,60333,4.5,1437003882\n481,61323,4.0,1437001971\n481,63082,4.0,1437006686\n481,63179,4.5,1437004063\n481,64278,5.0,1437007686\n481,64614,4.5,1437001418\n481,64957,3.5,1437002604\n481,66097,4.0,1437002788\n481,68157,5.0,1437001928\n481,68358,3.5,1441892356\n481,68872,4.0,1437004336\n481,68954,4.0,1441892363\n481,69122,3.5,1437002425\n481,69134,4.0,1437003957\n481,70533,4.0,1437005649\n481,71033,4.0,1437006454\n481,71108,5.0,1437003816\n481,71433,4.5,1437006512\n481,71535,1.0,1437005940\n481,71755,5.0,1437006499\n481,72683,4.0,1437006573\n481,72998,3.0,1441892361\n481,73017,3.0,1441892350\n481,74458,4.0,1437002493\n481,74789,2.5,1437002770\n481,77658,5.0,1437001235\n481,78499,4.5,1437002500\n481,79132,4.0,1437001145\n481,79702,4.5,1437002695\n481,81591,4.0,1437002529\n481,81786,4.5,1437004100\n481,81834,3.0,1437003549\n481,84187,3.5,1437005645\n481,85394,4.5,1437003897\n481,85774,4.0,1437001984\n481,86320,4.5,1437003930\n481,86626,4.0,1437106459\n481,86882,3.5,1437002923\n481,88125,4.0,1437001598\n481,88682,4.0,1437107322\n481,89000,3.5,1437006473\n481,89039,4.0,1437106339\n481,89356,3.5,1437006462\n481,89759,4.5,1437001844\n481,90863,4.5,1437107286\n481,90866,4.0,1437003225\n481,92163,4.0,1437106580\n481,92259,4.0,1437001156\n481,96020,4.0,1437006731\n481,96606,5.0,1437001596\n481,96829,5.0,1437001347\n481,96832,5.0,1437003988\n481,97230,5.0,1437107341\n481,98056,4.5,1437003822\n481,98963,5.0,1437004891\n481,99114,5.0,1437001312\n481,100106,4.5,1437007680\n481,103210,3.5,1437106143\n481,105246,4.5,1437004383\n481,106642,2.5,1437005622\n481,106782,4.0,1437002895\n481,107771,4.5,1437145367\n481,108727,4.0,1437003950\n481,108873,3.5,1437006457\n481,108979,5.0,1441892330\n481,108981,4.0,1437003966\n481,109374,3.5,1437001369\n481,109487,4.5,1441892373\n481,109848,4.5,1437005592\n481,111235,3.5,1437105983\n481,111443,3.5,1441892426\n481,112062,4.0,1437004111\n481,112070,4.0,1437996597\n481,112556,4.0,1437001699\n481,116797,3.5,1439688859\n481,116897,5.0,1437006448\n481,117533,4.0,1437001031\n481,122886,4.0,1437106119\n481,129191,4.0,1437004285\n481,130980,4.5,1437007991\n481,131830,4.0,1437996528\n481,138696,5.0,1437004594\n481,138698,4.5,1437004716\n482,32,4.0,949292001\n482,70,3.0,949292302\n482,799,3.0,949292236\n482,818,2.0,949291953\n482,1210,4.0,949292001\n482,1214,5.0,949292087\n482,1219,5.0,949292087\n482,1258,5.0,949292128\n482,1261,4.0,949292269\n482,1278,5.0,949292163\n482,1321,3.0,949292087\n482,1333,4.0,949292163\n482,1334,4.0,949292236\n482,1337,2.0,949292269\n482,1347,2.0,949292236\n482,1355,4.0,949291953\n482,1387,4.0,949292087\n482,1407,3.0,949292383\n482,1721,5.0,949291953\n482,1752,3.0,949291953\n482,1982,3.0,949292236\n482,1994,3.0,949292163\n482,1997,5.0,949292087\n482,2003,4.0,949292236\n482,2097,3.0,949292383\n482,2118,4.0,949292196\n482,2160,3.0,949292196\n482,2288,3.0,949292087\n482,2366,4.0,949292128\n482,2454,2.0,949292269\n482,2455,2.0,949292269\n482,2517,3.0,949292383\n482,2617,4.0,949292302\n482,2633,4.0,949292196\n482,2634,5.0,949292332\n482,2635,5.0,949292128\n482,2636,5.0,949292128\n482,2637,4.0,949292128\n482,2638,3.0,949292128\n482,2644,5.0,949292163\n482,2647,5.0,949292163\n482,2648,5.0,949292087\n482,2649,5.0,949292196\n482,2650,5.0,949292196\n482,2651,5.0,949292269\n482,2652,5.0,949292302\n482,2653,2.0,949292163\n482,2654,5.0,949292196\n482,2664,5.0,949292163\n482,2716,5.0,949292087\n482,2747,3.0,949292302\n482,2780,4.0,949292236\n482,2781,3.0,949292332\n482,2784,4.0,949292087\n482,2867,2.0,949292236\n482,2901,4.0,949292302\n482,3016,3.0,949292383\n482,3018,5.0,949292001\n482,3264,3.0,949292236\n483,50,4.0,1465389616\n483,110,4.0,1465387307\n483,111,3.0,1465387417\n483,260,4.0,1465387263\n483,293,4.0,1465387311\n483,318,5.0,1465387257\n483,356,5.0,1465387336\n483,377,3.0,1465387536\n483,380,4.0,1465387574\n483,457,3.5,1465387340\n483,541,5.0,1465389610\n483,588,2.5,1465387504\n483,589,4.0,1465387306\n483,593,5.0,1465387333\n483,648,4.0,1465387522\n483,778,5.0,1465387437\n483,1036,4.5,1465387389\n483,1089,4.0,1465387397\n483,1196,5.0,1465387264\n483,1198,4.0,1465387260\n483,1200,5.0,1465387318\n483,1210,3.5,1465387290\n483,1213,5.0,1465387394\n483,1214,5.0,1465387420\n483,1222,4.5,1465389630\n483,1240,5.0,1465387341\n483,1258,4.0,1465389633\n483,1259,5.0,1465387564\n483,1291,4.0,1465387282\n483,1527,3.0,1465387443\n483,1573,2.0,1465387568\n483,1580,3.0,1465387435\n483,1676,4.0,1465387586\n483,1682,3.0,1465387384\n483,1732,5.0,1465387406\n483,1884,4.0,1465387578\n483,1968,4.0,1465387519\n483,1997,3.5,1465389618\n483,2028,4.0,1465387313\n483,2288,5.0,1465389579\n483,2329,5.0,1465387374\n483,2403,5.0,1465389634\n483,2571,3.5,1465387268\n483,2628,0.5,1465387488\n483,2916,5.0,1465387573\n483,2997,1.0,1465387494\n483,3147,5.0,1465387352\n483,3275,1.5,1465387597\n483,3527,5.0,1465387600\n483,3623,3.5,1465387540\n483,3702,4.0,1465389629\n483,3703,5.0,1465389622\n483,3793,2.0,1465387404\n483,3996,1.0,1465387509\n483,4638,2.0,1465387603\n483,4776,3.5,1465389619\n483,4878,4.0,1465387376\n483,4993,4.0,1465387337\n483,5378,0.5,1465387481\n483,5418,5.0,1465387372\n483,5952,4.0,1465387315\n483,6333,0.5,1465387491\n483,6365,0.5,1465387450\n483,7153,4.0,1465387316\n483,7254,2.5,1465387440\n483,7438,1.0,1465387365\n483,8644,1.0,1465387424\n483,8665,5.0,1465387402\n483,8798,5.0,1465387557\n483,8874,4.0,1465387409\n483,33166,3.0,1465387555\n483,33493,1.0,1465387442\n483,33794,3.5,1465387349\n483,34405,0.5,1465387508\n483,39183,2.0,1465387583\n483,44195,3.0,1465387526\n483,45186,4.0,1465387595\n483,48385,3.0,1465387476\n483,49530,4.0,1465387470\n483,53125,2.5,1465387467\n483,54286,4.0,1465387344\n483,56782,5.0,1465389576\n483,58559,4.0,1465387310\n483,59315,5.0,1465387351\n483,59615,3.5,1465387530\n483,60040,5.0,1465387593\n483,63113,4.0,1465387533\n483,68237,3.5,1465389578\n483,68358,1.0,1465387357\n483,69481,5.0,1465387515\n483,70286,5.0,1465387373\n483,71535,3.5,1465387414\n483,72641,0.5,1465387496\n483,73321,4.0,1465387552\n483,77561,4.0,1465387426\n483,79132,3.5,1465387335\n483,82459,4.0,1465387517\n483,88129,4.5,1465387501\n483,88140,5.0,1465387474\n483,88744,5.0,1465387471\n483,90405,2.5,1465387560\n483,91500,3.0,1465387380\n483,93840,3.5,1465387547\n483,96079,4.0,1465387431\n483,96610,4.0,1465387452\n483,102125,4.0,1465387458\n483,102445,0.5,1465387478\n483,103228,3.0,1465387553\n483,106100,4.0,1465387484\n483,106487,3.0,1465387421\n483,106782,4.5,1465387366\n483,111362,4.5,1465387413\n483,111759,5.0,1465387382\n483,112852,3.5,1465387362\n483,115149,4.0,1465387563\n483,116823,3.0,1465387498\n483,122886,0.5,1465387346\n483,122900,5.0,1465387486\n483,122904,1.5,1465387448\n484,1,3.0,851345204\n484,3,4.0,851345272\n484,17,5.0,851345205\n484,25,2.0,851345205\n484,32,5.0,851345204\n484,41,4.0,851345432\n484,62,5.0,851345205\n484,65,1.0,851345432\n484,76,5.0,851345499\n484,104,3.0,851345320\n484,376,5.0,851345272\n484,494,4.0,851345272\n484,640,4.0,851345499\n484,648,4.0,851345205\n484,719,4.0,851345499\n484,724,4.0,851345499\n484,736,3.0,851345204\n484,780,5.0,851345204\n484,788,4.0,851345366\n484,1073,4.0,851345320\n485,31,4.0,1337748425\n485,105,2.5,1337748405\n485,362,4.5,1337748523\n485,1234,4.5,1337748746\n485,1321,2.5,1337748546\n485,1918,4.0,1337748463\n485,2109,3.5,1337748591\n485,2150,4.0,1337748457\n485,2161,3.5,1337748418\n485,2746,4.5,1337748488\n485,3006,3.0,1337748472\n485,3252,3.5,1337748562\n485,3361,4.0,1337748576\n485,3386,2.5,1337748535\n485,3396,3.5,1337748581\n485,3717,1.0,1337748452\n485,3826,3.0,1337748585\n485,3916,4.5,1337748572\n485,5991,4.0,1337748512\n485,8823,3.0,1337748768\n486,1,5.0,1464121011\n486,34,2.5,1464121171\n486,231,5.0,1464121125\n486,260,5.0,1464121502\n486,356,4.0,1464121000\n486,480,3.5,1464121512\n486,500,1.5,1464121160\n486,541,5.0,1464121547\n486,588,4.0,1464121049\n486,589,4.0,1464121534\n486,750,5.0,1464121014\n486,778,3.5,1464123190\n486,780,2.5,1464121560\n486,924,5.0,1464121577\n486,1080,5.0,1464121090\n486,1136,5.0,1464120985\n486,1196,5.0,1464121509\n486,1197,4.5,1464120982\n486,1210,5.0,1464121528\n486,1230,4.5,1464121179\n486,1247,4.0,1464121106\n486,1265,5.0,1464120986\n486,1270,5.0,1464120983\n486,1273,5.0,1464123344\n486,1288,5.0,1464121217\n486,1573,4.0,1464121624\n486,1584,3.0,1464121637\n486,1653,4.0,1464121589\n486,1682,4.0,1464121027\n486,1732,4.5,1464123195\n486,1784,4.0,1464121104\n486,1884,4.5,1464121132\n486,1916,4.0,1464123373\n486,1917,3.0,1464121609\n486,1968,4.5,1464121075\n486,2000,4.0,1464121013\n486,2012,3.5,1464121628\n486,2296,3.0,1464121457\n486,2324,4.0,1464121006\n486,2395,4.5,1464121219\n486,2542,3.0,1464121062\n486,2571,4.0,1464121499\n486,2572,3.5,1464121140\n486,2628,2.5,1464121579\n486,2683,4.0,1464121176\n486,2716,4.0,1464121003\n486,2791,4.0,1464121029\n486,2916,5.0,1464121640\n486,2918,4.0,1464120995\n486,2997,4.0,1464121042\n486,3019,3.5,1464123191\n486,3114,5.0,1464121040\n486,3462,5.0,1464121208\n486,3481,3.5,1464121165\n486,3521,4.0,1464123193\n486,3948,3.5,1464121054\n486,4027,3.5,1464121045\n486,4370,2.5,1464121607\n486,4816,5.0,1464121098\n486,4973,2.0,1464121019\n486,4975,1.5,1464121625\n486,4979,5.0,1464121073\n486,5378,3.0,1464121576\n486,5445,2.5,1464121545\n486,5508,3.0,1464123450\n486,5902,4.0,1464123403\n486,6001,3.5,1464123354\n486,6188,3.5,1464121426\n486,6502,3.0,1464121591\n486,6807,4.5,1464121225\n486,6863,3.0,1464121047\n486,6978,3.5,1464123265\n486,7206,4.0,1464123384\n486,7323,2.5,1464121181\n486,7325,3.0,1464121448\n486,7361,4.5,1464121523\n486,7460,3.5,1464123382\n486,7947,4.0,1464123406\n486,7983,4.5,1464123412\n486,8376,3.5,1464121093\n486,8641,4.0,1464121088\n486,8874,4.0,1464121016\n486,8949,4.0,1464123358\n486,30810,4.0,1464121174\n486,34048,2.5,1464121594\n486,45517,3.0,1464121084\n486,46972,3.0,1464121120\n486,48774,3.0,1464121553\n486,52245,3.0,1464121433\n486,54503,4.5,1464120698\n486,55269,4.0,1464121206\n486,58156,3.0,1464121445\n486,59315,2.5,1464121517\n486,60684,3.5,1464121562\n486,60756,2.5,1464121419\n486,62434,3.0,1464121344\n486,64614,3.5,1464120712\n486,68237,5.0,1464121558\n486,68954,5.0,1464120996\n486,70286,4.0,1464121537\n486,72226,4.5,1464121130\n486,72998,2.5,1464121514\n486,73017,4.0,1464120713\n486,76077,4.5,1464122826\n486,78499,5.0,1464121020\n486,79132,3.5,1464121501\n486,82461,2.0,1464121635\n486,86911,3.0,1464121147\n486,88744,2.5,1464121567\n486,89745,2.5,1464121521\n486,94864,2.0,1464121586\n486,94959,3.0,1464121039\n486,97913,3.0,1464121069\n486,101864,2.5,1464121600\n486,102125,2.5,1464121564\n486,102445,2.5,1464121570\n486,102481,3.0,1464121451\n486,103228,2.0,1464121619\n486,103253,3.0,1464121605\n486,104841,2.5,1464121543\n486,106766,2.0,1464123456\n486,107406,2.5,1464121633\n486,109374,4.0,1464121030\n486,109487,2.5,1464121507\n486,111360,2.0,1464121614\n486,111759,4.0,1464121539\n486,112852,2.0,1464121532\n486,115713,3.0,1464121519\n486,122882,4.5,1464121510\n486,122886,3.0,1464121526\n486,128360,4.0,1464120907\n486,134130,2.0,1464120716\n486,134170,3.0,1464120930\n486,135887,2.0,1464120789\n486,139385,3.5,1464120913\n486,140174,3.5,1464120722\n486,140267,5.0,1464120771\n486,144976,5.0,1464120776\n487,2,4.0,832836515\n487,10,4.0,832836302\n487,11,4.0,832836467\n487,17,5.0,832836492\n487,19,3.0,832836405\n487,22,5.0,832836661\n487,27,3.0,832838282\n487,31,5.0,832836558\n487,32,4.0,832836378\n487,34,3.0,832836378\n487,39,4.0,832836405\n487,47,4.0,832836352\n487,48,3.0,832836572\n487,50,5.0,832836405\n487,54,3.0,832837960\n487,74,4.0,832837995\n487,89,3.0,832838523\n487,94,3.0,832837830\n487,95,5.0,832836467\n487,102,3.0,832838036\n487,104,3.0,832837436\n487,110,5.0,832836352\n487,122,3.0,832837343\n487,141,5.0,832836515\n487,145,4.0,832836701\n487,147,4.0,832837759\n487,150,4.0,832836228\n487,153,3.0,832836250\n487,158,3.0,832836541\n487,160,3.0,832836405\n487,161,4.0,832836302\n487,165,3.0,832836250\n487,168,3.0,832836541\n487,175,4.0,832837551\n487,179,3.0,832837916\n487,180,3.0,832837830\n487,185,3.0,832836330\n487,186,3.0,832836492\n487,193,3.0,832836590\n487,195,4.0,832837311\n487,203,3.0,832836683\n487,207,4.0,832837206\n487,208,3.0,832836330\n487,216,3.0,832836717\n487,218,4.0,832836661\n487,222,5.0,832836683\n487,224,3.0,832836541\n487,225,3.0,832836352\n487,227,4.0,832836610\n487,230,4.0,832836661\n487,231,3.0,832836275\n487,236,3.0,832836449\n487,237,4.0,832836610\n487,240,3.0,832838156\n487,248,3.0,832837258\n487,252,3.0,832836467\n487,253,3.0,832836330\n487,257,4.0,832836717\n487,261,5.0,832836515\n487,265,4.0,832836492\n487,266,5.0,832836378\n487,270,4.0,832837747\n487,273,4.0,832836632\n487,277,5.0,832836610\n487,280,5.0,832836717\n487,288,3.0,832836352\n487,289,4.0,832837343\n487,293,4.0,832836515\n487,296,4.0,832836228\n487,300,4.0,832836330\n487,304,4.0,832837995\n487,316,4.0,832836276\n487,318,3.0,832836275\n487,329,4.0,832836276\n487,333,4.0,832836558\n487,339,4.0,832836302\n487,340,4.0,832837747\n487,344,3.0,832836250\n487,349,4.0,832836250\n487,350,4.0,832837206\n487,353,3.0,832837294\n487,355,3.0,832837374\n487,356,4.0,832838265\n487,357,4.0,832838265\n487,361,3.0,832838789\n487,364,5.0,832836590\n487,367,3.0,832836632\n487,370,3.0,832838557\n487,371,4.0,832837571\n487,372,3.0,832838789\n487,376,3.0,832837516\n487,377,4.0,832838393\n487,378,4.0,832839039\n487,380,3.0,832836228\n487,381,4.0,832836683\n487,410,2.0,832836352\n487,412,3.0,832838746\n487,415,4.0,832837844\n487,420,3.0,832836405\n487,421,4.0,832837781\n487,422,4.0,832839099\n487,426,3.0,832837571\n487,431,4.0,832836701\n487,433,3.0,832838294\n487,440,4.0,832836683\n487,450,4.0,832839025\n487,453,4.0,832839129\n487,454,4.0,832836590\n487,455,4.0,832838819\n487,457,5.0,832836449\n487,466,3.0,832838674\n487,471,4.0,832837388\n487,474,5.0,832838492\n487,475,5.0,832838764\n487,480,4.0,832838322\n487,489,4.0,832838947\n487,490,4.0,832838916\n487,491,3.0,832837536\n487,497,5.0,832838523\n487,500,5.0,832838464\n487,508,5.0,832838416\n487,510,4.0,832839025\n487,516,3.0,832838931\n487,520,3.0,832838592\n487,521,3.0,832838880\n487,524,5.0,832838839\n487,527,5.0,832838377\n487,539,4.0,832838464\n487,540,3.0,832838854\n487,542,4.0,832838916\n487,543,4.0,832838916\n487,544,4.0,832838989\n487,550,3.0,832837960\n487,552,3.0,832837436\n487,555,3.0,832836558\n487,585,4.0,832837343\n487,586,4.0,832838619\n487,587,4.0,832838603\n487,588,4.0,832836250\n487,590,5.0,832836228\n487,592,4.0,832836228\n487,593,4.0,832836425\n487,594,4.0,832838789\n487,595,4.0,832836276\n487,596,4.0,832839068\n487,597,4.0,832838539\n487,640,3.0,832837975\n487,648,5.0,832838947\n487,662,3.0,832838245\n487,708,4.0,832837805\n487,724,4.0,832838377\n487,736,5.0,832837374\n488,47,4.0,1308944597\n488,224,4.0,1308938709\n488,293,4.5,1308943595\n488,319,4.5,1308938825\n488,455,3.0,1308938730\n488,608,4.0,1308944534\n488,743,3.5,1308938811\n488,778,4.5,1308944251\n488,880,4.5,1308938892\n488,1089,4.0,1308944591\n488,1103,3.5,1308938862\n488,1125,4.0,1308938881\n488,1136,4.5,1308944558\n488,1206,4.0,1308944513\n488,1235,4.0,1308938763\n488,1258,5.0,1308944606\n488,1287,3.5,1308938692\n488,1357,4.5,1308938749\n488,1409,3.5,1308938836\n488,1586,3.0,1308938803\n488,1918,3.0,1308938700\n488,2746,4.5,1308938723\n488,2826,2.5,1308938785\n488,2959,4.0,1308943590\n488,3499,4.0,1308938741\n488,3949,4.0,1308939626\n488,4235,4.0,1308939319\n488,4878,4.5,1308943127\n488,4881,4.5,1308946186\n488,4993,3.5,1308939593\n488,5618,5.0,1308939629\n488,5952,3.5,1308939600\n488,5971,4.5,1308939608\n488,5995,4.5,1308939615\n488,6016,4.5,1308939328\n488,6773,4.5,1308946371\n488,7153,3.5,1308939597\n488,7323,4.0,1308945243\n488,7361,4.5,1308939342\n488,8014,4.5,1308944436\n488,27186,4.5,1308948497\n488,46578,4.5,1308946032\n488,48394,4.0,1308940302\n488,48738,4.0,1308943095\n488,48774,4.0,1308945757\n488,55442,4.5,1308941766\n488,61236,4.0,1308943109\n488,64839,4.5,1308941773\n488,66097,4.0,1308945995\n488,70286,5.0,1308943121\n488,71899,5.0,1308941788\n488,72226,4.0,1308943080\n488,74486,4.5,1308939071\n488,81591,4.0,1308944269\n489,24,3.0,944961127\n489,41,4.0,944960408\n489,282,3.0,944959719\n489,480,2.0,944956897\n489,858,3.0,944960213\n489,910,5.0,944960488\n489,915,5.0,944960127\n489,923,4.0,944960309\n489,924,4.0,944960048\n489,1193,4.0,944959719\n489,1246,4.0,944959750\n489,1513,3.0,944961127\n489,1911,3.0,944961017\n489,2282,3.0,944960127\n489,2396,5.0,944961222\n489,2700,5.0,944961222\n489,2710,4.0,944961017\n489,2716,4.0,944961017\n489,2718,5.0,944960213\n489,2858,5.0,944961017\n489,2942,2.0,944959857\n489,2987,3.0,944961223\n489,3095,5.0,944960353\n489,3114,5.0,944961223\n490,1,1.0,851786086\n490,6,5.0,851786277\n490,9,4.0,851786427\n490,14,3.0,851786330\n490,32,3.0,851786086\n490,36,3.0,851786277\n490,58,4.0,851786330\n490,79,4.0,851786427\n490,95,4.0,851786086\n490,112,4.0,851786277\n490,141,4.0,851786086\n490,494,4.0,851786277\n490,628,4.0,851786427\n490,648,4.0,851786087\n490,653,4.0,851786330\n490,733,5.0,851786277\n490,736,3.0,851786086\n490,762,3.0,851786427\n490,780,3.0,851786086\n490,784,4.0,851786330\n490,786,4.0,851786330\n490,1073,1.0,851786330\n491,1,5.0,940796476\n491,11,3.0,940797048\n491,21,3.0,940796953\n491,34,4.0,940796422\n491,39,4.0,940797183\n491,52,1.0,940796953\n491,86,1.0,940795660\n491,125,4.0,940797129\n491,235,4.0,940796953\n491,253,4.0,940889429\n491,299,2.0,940795660\n491,345,4.0,940797226\n491,356,4.0,940796828\n491,357,5.0,940797129\n491,380,1.0,940797307\n491,440,3.0,940797307\n491,471,3.0,940797129\n491,588,3.0,940797129\n491,708,4.0,940797048\n491,799,3.0,940797129\n491,838,5.0,940797226\n491,1171,4.0,940797307\n491,1265,4.0,940796828\n491,1392,3.0,940796903\n491,1407,2.0,940889379\n491,1580,3.0,940797048\n491,1614,3.0,940797308\n491,1701,5.0,940796476\n491,1784,4.0,940796828\n491,1794,4.0,940796828\n491,1885,5.0,940796903\n491,2013,5.0,940795746\n491,2070,3.0,940795701\n491,2107,2.0,940889379\n491,2289,4.0,940796422\n491,2331,4.0,940796828\n491,2336,4.0,940795620\n491,2356,2.0,940797183\n491,2395,3.0,940795571\n491,2396,4.0,940795572\n491,2541,1.0,940795789\n491,2580,4.0,940795572\n491,2599,5.0,940796374\n491,2690,5.0,940797129\n491,2699,3.0,940795870\n491,2710,5.0,940795701\n491,2712,5.0,940795746\n491,2715,1.0,940796196\n491,2716,3.0,940795620\n491,2722,2.0,940795108\n491,2724,1.0,940795257\n491,2758,4.0,940795870\n491,2762,5.0,940794973\n491,2763,4.0,940795036\n491,2770,4.0,940795198\n491,2775,3.0,940795155\n491,2829,2.0,940795198\n491,2858,5.0,940794973\n491,2890,5.0,940794973\n491,2891,4.0,940795257\n491,2959,4.0,940795198\n491,2976,4.0,940795155\n491,2987,4.0,940795571\n492,30,2.0,898110583\n492,35,4.0,898111314\n492,77,4.0,898111123\n492,144,2.0,898111194\n492,154,5.0,898110821\n492,199,3.0,898110953\n492,213,2.0,898110739\n492,232,5.0,898110796\n492,247,4.0,898110796\n492,264,4.0,898111194\n492,265,5.0,898110796\n492,306,5.0,898110674\n492,307,5.0,898110739\n492,308,4.0,898110979\n492,326,3.0,898110543\n492,347,4.0,898111263\n492,446,5.0,898110843\n492,495,5.0,898111297\n492,501,5.0,898111027\n492,506,4.0,898111278\n492,509,3.0,898110821\n492,559,5.0,898111329\n492,573,1.0,898111099\n492,608,3.0,898108501\n492,620,4.0,898111061\n492,681,3.0,898110771\n492,690,4.0,898111214\n492,715,2.0,898110843\n492,721,4.0,898110927\n492,760,3.0,898110927\n492,793,4.0,898111123\n492,820,5.0,898111061\n492,824,4.0,898110674\n492,854,4.0,898110739\n492,1131,4.0,898110674\n492,1132,4.0,898110583\n492,1161,4.0,898111123\n492,1173,5.0,898111246\n492,1174,3.0,898111099\n492,1176,5.0,898111027\n492,1183,2.0,898107401\n492,1202,2.0,898110543\n492,1206,5.0,898111061\n492,1211,5.0,898111027\n492,1218,5.0,898110979\n492,1224,3.0,898110674\n492,1232,5.0,898110453\n492,1233,3.0,898108428\n492,1243,4.0,898110953\n492,1249,3.0,898110927\n492,1264,3.0,898110927\n492,1280,4.0,898110583\n492,1295,2.0,898111061\n492,1306,5.0,898111061\n492,1357,3.0,898110583\n492,1365,4.0,898110739\n492,1369,3.0,898110642\n492,1406,1.0,898111397\n492,1415,3.0,898110927\n492,1419,4.0,898110642\n492,1483,3.0,898107965\n492,1596,3.0,898107498\n492,1614,2.0,898107789\n492,1617,4.0,898107401\n492,1625,3.0,898107529\n492,1644,2.0,898107753\n492,1654,4.0,898107789\n492,1699,3.0,898107442\n492,1713,1.0,898108099\n492,1719,3.0,898107471\n492,1733,2.0,898107529\n492,1805,3.0,898107877\n492,1836,3.0,898107471\n492,2019,5.0,898110739\n493,7,4.0,954685491\n493,11,4.0,954685288\n493,17,4.0,954685153\n493,25,3.0,954685326\n493,28,4.0,954685191\n493,34,5.0,954684819\n493,48,2.0,954685491\n493,58,4.0,954685352\n493,105,4.0,954685326\n493,140,4.0,954685631\n493,207,4.0,954685597\n493,222,4.0,954685491\n493,237,2.0,954685413\n493,239,1.0,954685721\n493,252,4.0,954685538\n493,258,3.0,954685631\n493,266,4.0,954685571\n493,342,3.0,954685379\n493,351,4.0,954685516\n493,356,3.0,954685288\n493,357,4.0,954685326\n493,361,4.0,954685631\n493,377,4.0,954685326\n493,440,5.0,954685326\n493,469,4.0,954685721\n493,484,3.0,954684903\n493,497,2.0,954685229\n493,509,4.0,954685352\n493,539,4.0,954685326\n493,587,5.0,954685435\n493,597,4.0,954685352\n493,608,4.0,954684954\n493,613,4.0,954685663\n493,691,4.0,954685663\n493,736,4.0,954685597\n493,837,3.0,954684561\n493,838,4.0,954685288\n493,852,1.0,954685413\n493,858,4.0,954684927\n493,902,3.0,954684592\n493,905,4.0,954684761\n493,910,3.0,954684794\n493,934,3.0,954684761\n493,945,3.0,954684761\n493,1066,3.0,954684761\n493,1183,5.0,954685229\n493,1188,5.0,954685191\n493,1197,3.0,954684561\n493,1221,3.0,954684995\n493,1225,4.0,954684954\n493,1252,4.0,954684995\n493,1256,2.0,954684714\n493,1265,4.0,954685191\n493,1270,4.0,954684819\n493,1353,5.0,954685694\n493,1393,4.0,954685191\n493,1398,4.0,954685631\n493,1408,2.0,954685229\n493,1441,4.0,954685435\n493,1498,3.0,954685694\n493,1541,4.0,954685631\n493,1569,4.0,954685571\n493,1614,4.0,954684714\n493,1617,4.0,954684954\n493,1629,4.0,954685631\n493,1643,4.0,954684561\n493,1680,5.0,954685288\n493,1721,4.0,954685326\n493,1772,2.0,954684794\n493,1835,4.0,954685597\n493,1888,5.0,954685516\n493,1894,3.0,954685571\n493,1912,3.0,954685229\n493,2025,1.0,954685491\n493,2045,3.0,954685288\n493,2062,1.0,954685379\n493,2088,1.0,954684715\n493,2108,3.0,954685413\n493,2125,4.0,954685288\n493,2243,3.0,954684715\n493,2288,3.0,954684592\n493,2291,2.0,954685249\n493,2297,4.0,954685663\n493,2316,4.0,954685571\n493,2324,4.0,954685091\n493,2352,4.0,954684715\n493,2384,3.0,954684684\n493,2396,4.0,954685191\n493,2424,4.0,954685539\n493,2485,4.0,954685571\n493,2496,2.0,954685460\n493,2497,1.0,954685721\n493,2558,3.0,954685721\n493,2697,3.0,954685249\n493,2804,5.0,954684819\n493,2860,4.0,954684794\n493,2875,5.0,954685491\n493,3044,5.0,954685379\n493,3081,4.0,954685663\n493,3096,3.0,954684848\n493,3097,3.0,954685091\n493,3108,2.0,954685516\n493,3114,4.0,954684761\n493,3244,3.0,954684761\n493,3259,5.0,954685597\n493,3269,4.0,954685539\n493,3363,3.0,954684794\n493,3548,4.0,954684903\n493,3550,3.0,954685894\n493,3551,3.0,954684883\n494,50,5.0,1342747884\n494,260,4.5,1342748091\n494,296,4.0,1342747685\n494,318,4.5,1342747739\n494,356,3.5,1342747833\n494,527,5.0,1342747868\n494,593,4.5,1342748986\n494,750,4.0,1342748223\n494,858,5.0,1342747450\n494,910,4.0,1342748200\n494,1080,3.5,1342747660\n494,1089,4.0,1342747845\n494,1090,4.0,1342747690\n494,1193,5.0,1342747955\n494,1196,4.5,1342748124\n494,1197,4.0,1342748309\n494,1198,4.0,1342748110\n494,1201,4.0,1342748081\n494,1203,4.5,1342748304\n494,1210,4.0,1342747779\n494,1213,4.5,1342747902\n494,1221,5.0,1342747453\n494,1259,5.0,1342748774\n494,1265,3.5,1342747636\n494,1267,4.0,1342746012\n494,1276,5.0,1342747933\n494,1610,4.0,1342748831\n494,1704,4.0,1342747772\n494,1722,2.5,1342745942\n494,1732,4.0,1342747598\n494,1747,3.5,1342745968\n494,1947,2.0,1342746028\n494,2028,5.0,1342747786\n494,2329,4.5,1342747925\n494,2502,5.0,1342747752\n494,2542,4.5,1342747767\n494,2571,4.0,1342748022\n494,2788,4.5,1342747655\n494,2791,4.5,1342747591\n494,2918,3.5,1342748623\n494,2947,4.0,1342747627\n494,2959,4.5,1342748135\n494,3578,4.5,1342747508\n494,3752,2.0,1342746041\n494,4011,4.0,1342747560\n494,4262,3.5,1342747694\n494,4327,4.5,1342748757\n494,5047,1.0,1342746843\n494,5418,4.0,1342748332\n494,5420,3.0,1342746706\n494,5952,3.0,1342748162\n494,6874,3.0,1342748749\n494,6947,4.0,1342746077\n494,7502,4.5,1342748375\n494,7669,4.0,1342748504\n494,30707,4.0,1342747565\n494,31410,4.0,1342747512\n494,34405,4.0,1342746088\n494,41997,4.0,1342748388\n494,42011,3.0,1342746800\n494,44191,3.5,1342748412\n494,48516,4.5,1342748097\n494,48738,4.0,1342748403\n494,48774,4.0,1342748392\n494,48780,4.0,1342748396\n494,49272,4.0,1342748372\n494,50068,4.5,1342748400\n494,54286,4.0,1342748379\n494,55118,4.5,1342746535\n494,60069,4.0,1342748532\n494,66934,4.5,1342748423\n494,68157,4.0,1342748589\n494,69757,3.5,1342747389\n494,78469,3.5,1342746954\n494,79592,3.5,1342747202\n494,86833,3.5,1342747012\n494,94959,4.5,1369076771\n494,97306,4.5,1369076827\n495,34,5.0,846384319\n495,47,4.0,846384293\n495,110,5.0,846384274\n495,150,4.0,846384142\n495,161,3.0,846384233\n495,165,3.0,846384168\n495,208,4.0,846384233\n495,253,3.0,846384274\n495,292,5.0,846384215\n495,316,3.0,846384194\n495,329,4.0,846384194\n495,349,4.0,846384168\n495,356,5.0,846384215\n495,364,4.0,846384293\n495,367,4.0,846384293\n495,454,4.0,846384274\n495,457,5.0,846384194\n495,480,4.0,846384215\n495,527,5.0,846384480\n495,587,5.0,846384319\n495,589,4.0,846384274\n495,590,5.0,846384142\n495,592,3.0,846384142\n495,595,4.0,846384194\n495,597,3.0,846384319\n496,2,4.0,834060098\n496,3,3.0,843218375\n496,6,5.0,843218321\n496,11,4.0,837017766\n496,15,3.0,834598803\n496,19,2.0,834059934\n496,20,4.0,834598410\n496,22,5.0,834060753\n496,23,4.0,843218321\n496,27,4.0,834598448\n496,31,4.0,834060152\n496,34,2.0,834059907\n496,47,3.0,834059907\n496,48,3.0,834060152\n496,61,4.0,843218417\n496,62,5.0,837510633\n496,71,5.0,834598137\n496,79,4.0,843218338\n496,89,4.0,843218356\n496,95,4.0,837017561\n496,105,5.0,834060152\n496,110,5.0,834059873\n496,140,4.0,834598470\n496,141,2.0,834060114\n496,150,4.0,834059753\n496,151,5.0,834060075\n496,153,2.0,834059779\n496,158,4.0,834060114\n496,160,3.0,837017717\n496,161,4.0,834059827\n496,165,4.0,834059779\n496,168,5.0,834060135\n496,170,3.0,834598493\n496,185,5.0,834059851\n496,188,3.0,834598763\n496,204,4.0,843218375\n496,207,4.0,834060874\n496,208,4.0,834059851\n496,225,4.0,834059907\n496,227,4.0,834060218\n496,230,4.0,843218356\n496,231,1.0,834059806\n496,236,4.0,843218394\n496,237,4.0,834060218\n496,240,4.0,834060820\n496,252,4.0,834059999\n496,253,4.0,834059851\n496,256,3.0,834060135\n496,257,4.0,834598269\n496,261,3.0,834060114\n496,266,5.0,834059933\n496,271,4.0,834598383\n496,277,4.0,834060173\n496,280,4.0,843218303\n496,281,5.0,834598910\n496,282,4.0,834059971\n496,292,5.0,834059827\n496,293,4.0,834060098\n496,304,4.0,834598354\n496,315,4.0,834060790\n496,316,5.0,834059806\n496,317,3.0,834059907\n496,318,5.0,843218287\n496,329,5.0,834059806\n496,337,2.0,834059971\n496,338,5.0,834598117\n496,339,3.0,834059827\n496,344,2.0,834059779\n496,349,4.0,834059779\n496,350,4.0,834060194\n496,351,3.0,834598354\n496,356,5.0,834060194\n496,364,5.0,834059999\n496,367,3.0,834060098\n496,368,5.0,834060718\n496,376,4.0,834060753\n496,377,3.0,834060717\n496,380,4.0,834059753\n496,382,3.0,834060834\n496,383,4.0,834060834\n496,410,3.0,834059873\n496,419,3.0,837511201\n496,420,3.0,834059933\n496,422,3.0,843218375\n496,432,3.0,837017741\n496,434,4.0,834059827\n496,440,4.0,834060135\n496,442,4.0,837017795\n496,450,4.0,834060820\n496,454,3.0,834598493\n496,455,3.0,834598372\n496,457,5.0,834059873\n496,474,4.0,834060738\n496,480,5.0,834060400\n496,485,3.0,834598985\n496,494,5.0,834598629\n496,500,4.0,834060718\n496,515,3.0,834598775\n496,524,5.0,834060853\n496,528,3.0,837511426\n496,539,5.0,834060738\n496,540,3.0,834598372\n496,544,4.0,843218338\n496,552,3.0,834060790\n496,553,5.0,834060000\n496,555,4.0,834060135\n496,586,3.0,834060853\n496,587,5.0,834060696\n496,588,4.0,834059779\n496,589,5.0,834060790\n496,590,5.0,834059753\n496,592,3.0,834059753\n496,593,5.0,834059873\n496,595,4.0,834059806\n496,597,4.0,834060738\n496,648,5.0,834060369\n496,653,4.0,834598076\n496,724,3.0,834598803\n496,733,5.0,843218287\n496,761,3.0,837511174\n496,780,5.0,837017561\n496,786,5.0,843218303\n496,802,4.0,843218287\n496,805,4.0,843218303\n496,835,5.0,843218394\n496,1036,5.0,843218356\n497,246,5.0,940018718\n497,265,4.0,939767844\n497,308,5.0,940018282\n497,496,2.0,939767844\n497,527,5.0,939768497\n497,715,2.0,939768161\n497,923,2.0,939768497\n497,1041,2.0,939768028\n497,1079,5.0,942292951\n497,1081,4.0,940364525\n497,1096,4.0,940364249\n497,1097,5.0,940364445\n497,1124,3.0,942293168\n497,1131,5.0,939768396\n497,1132,4.0,939768497\n497,1150,5.0,940364481\n497,1172,5.0,940364289\n497,1173,1.0,942293281\n497,1179,4.0,939767934\n497,1185,5.0,940364572\n497,1186,5.0,940364612\n497,1188,3.0,940018718\n497,1196,4.0,940364445\n497,1197,3.0,940364087\n497,1198,5.0,940364289\n497,1200,4.0,940364143\n497,1207,3.0,939768396\n497,1211,3.0,940364339\n497,1220,3.0,940364694\n497,1221,3.0,939768444\n497,1225,5.0,940364445\n497,1231,3.0,940364400\n497,1242,1.0,940364339\n497,1246,5.0,942293244\n497,1247,5.0,939768396\n497,1258,4.0,940364653\n497,1259,4.0,940364481\n497,1270,3.0,940364400\n497,1285,4.0,940364612\n497,1288,4.0,940364200\n497,1289,5.0,940364572\n497,1293,4.0,942292852\n497,1295,2.0,940364481\n497,1296,3.0,940364087\n497,1300,5.0,940364289\n497,1302,4.0,940364612\n497,1307,5.0,940364339\n497,1374,3.0,942292951\n497,1376,2.0,940364525\n497,1394,5.0,940364339\n497,1663,3.0,940364249\n497,1674,5.0,940364143\n497,1810,4.0,940018282\n497,1944,4.0,939768444\n497,1956,4.0,940364400\n497,1957,3.0,940364200\n497,1958,4.0,942292852\n497,1959,5.0,940364289\n497,1961,4.0,940364400\n497,1968,5.0,940364143\n497,1994,4.0,942293093\n497,2020,4.0,940364339\n497,2022,3.0,942293125\n497,2028,4.0,939768497\n497,2064,5.0,940364087\n497,2068,3.0,942293244\n497,2100,3.0,940364694\n497,2105,1.0,940364200\n497,2115,4.0,940364143\n497,2134,4.0,940364200\n497,2144,3.0,940364249\n497,2145,4.0,940364087\n497,2146,4.0,940364339\n497,2150,4.0,940364400\n497,2174,2.0,940364446\n497,2240,5.0,940364653\n497,2243,4.0,940364200\n497,2248,5.0,940364143\n497,2262,2.0,940364087\n497,2312,5.0,940364445\n497,2313,3.0,940452283\n497,2324,2.0,940018348\n497,2352,5.0,940364249\n497,2369,2.0,940364612\n497,2371,4.0,940364445\n497,2395,5.0,939767934\n497,2406,4.0,940364200\n497,2470,2.0,940364339\n497,2496,4.0,939768078\n497,2501,4.0,939768078\n497,2518,2.0,942293168\n497,2599,5.0,939767984\n497,2712,5.0,939766909\n497,2716,4.0,940364249\n497,2724,5.0,939766834\n497,2762,4.0,939766567\n497,2797,3.0,940364694\n497,2801,5.0,939768161\n497,2859,4.0,942292951\n497,2917,5.0,940364694\n497,2918,5.0,940364653\n497,2938,4.0,942293200\n497,2973,5.0,942293281\n497,3019,2.0,942293244\n497,3067,2.0,942292915\n498,357,3.5,1166907035\n498,520,3.0,1166906977\n498,588,4.5,1166906824\n498,1035,2.5,1166906993\n498,1136,5.0,1166906841\n498,1183,4.0,1166907024\n498,1197,3.5,1166906931\n498,1214,2.0,1166906900\n498,1544,4.0,1166907583\n498,1569,3.5,1166907058\n498,1721,0.5,1166907673\n498,2406,4.0,1166907905\n498,2918,5.0,1166906833\n498,3033,5.0,1166907929\n498,3421,4.0,1166907882\n498,5378,0.5,1166907665\n498,5459,3.0,1166907648\n498,5481,1.5,1166907017\n498,6934,3.0,1166907546\n498,8636,3.0,1166906943\n499,50,5.0,965247608\n499,111,5.0,965247885\n499,162,4.0,965247661\n499,185,1.0,965247402\n499,260,4.0,965247608\n499,750,5.0,965248041\n499,858,5.0,965247608\n499,903,5.0,965248104\n499,913,5.0,965248041\n499,926,4.0,965248150\n499,953,4.0,965247266\n499,1084,5.0,965248008\n499,1104,4.0,965248008\n499,1193,5.0,965247291\n499,1197,4.0,965247335\n499,1210,4.0,965247402\n499,1213,5.0,965248041\n499,1221,5.0,965248203\n499,1230,5.0,965248168\n499,1248,4.0,965247661\n499,1254,4.0,965248104\n499,1267,5.0,965248041\n499,1280,5.0,965248041\n499,1461,1.0,965247402\n499,2010,4.0,965247977\n499,2019,5.0,965247850\n499,2858,5.0,965247885\n499,3089,5.0,965247608\n499,3238,1.0,965247402\n499,3435,5.0,965247977\n499,3741,4.0,965247850\n499,3742,4.0,965247608\n499,5060,5.0,965248203\n500,1,2.0,1228946388\n500,2,1.5,1228946281\n500,19,3.0,1228963336\n500,34,2.5,1228946744\n500,39,2.5,1228946243\n500,48,2.5,1228963545\n500,62,3.5,1228946126\n500,110,3.5,1228920957\n500,158,2.5,1229098692\n500,231,3.0,1228920995\n500,260,1.0,1228946667\n500,317,3.0,1228963470\n500,318,4.5,1228945990\n500,329,0.5,1228946757\n500,337,3.0,1228963143\n500,344,2.5,1228920531\n500,356,5.0,1228920719\n500,362,4.0,1228920135\n500,364,2.5,1228946719\n500,367,1.5,1228920944\n500,480,1.5,1228946663\n500,497,3.5,1228963385\n500,500,3.0,1228921057\n500,520,3.0,1228963488\n500,551,3.0,1228963167\n500,586,4.0,1228946090\n500,588,3.0,1228920888\n500,593,1.5,1228920712\n500,595,3.0,1228920972\n500,596,3.0,1229098357\n500,597,2.5,1228921246\n500,616,3.0,1228920138\n500,700,4.0,1228921289\n500,708,4.0,1228963181\n500,736,1.0,1228946728\n500,783,2.5,1229098696\n500,784,1.0,1228963377\n500,919,2.0,1228946400\n500,1013,4.0,1228920280\n500,1025,3.5,1228920224\n500,1035,3.0,1229098604\n500,1073,2.5,1228921142\n500,1088,4.0,1229098924\n500,1089,1.5,1228946080\n500,1097,1.0,1228920940\n500,1193,3.0,1228946169\n500,1197,4.0,1228920997\n500,1207,4.0,1228963303\n500,1210,1.0,1228946683\n500,1219,1.0,1228946269\n500,1225,3.5,1228946163\n500,1246,3.0,1228946324\n500,1265,1.0,1228921259\n500,1282,3.5,1228963467\n500,1367,2.5,1228920431\n500,1380,3.0,1228946407\n500,1407,0.5,1228962976\n500,1441,3.5,1228920193\n500,1485,2.5,1228946361\n500,1517,3.0,1228921215\n500,1569,3.0,1229098543\n500,1580,0.5,1228920793\n500,1704,3.5,1254039793\n500,1721,3.5,1228921001\n500,1739,1.0,1228920471\n500,1777,1.5,1228946472\n500,1923,2.0,1228920904\n500,1947,3.0,1228920101\n500,1959,4.0,1228920233\n500,1968,4.5,1228921052\n500,2005,1.0,1233450575\n500,2053,0.5,1228920271\n500,2054,1.0,1228946155\n500,2078,3.5,1229098985\n500,2081,2.5,1228946418\n500,2139,4.5,1228920284\n500,2141,3.0,1228920276\n500,2144,3.5,1229099010\n500,2145,4.5,1228920153\n500,2150,4.0,1228963831\n500,2273,3.5,1229098392\n500,2321,3.5,1228946445\n500,2324,5.0,1228920623\n500,2355,2.5,1228921136\n500,2420,3.5,1229098981\n500,2470,1.0,1228962982\n500,2502,3.5,1228946137\n500,2541,4.5,1229099143\n500,2571,1.0,1228946697\n500,2572,4.5,1228920422\n500,2599,3.0,1228946228\n500,2657,1.5,1228946340\n500,2671,3.5,1228963112\n500,2683,3.5,1228921013\n500,2694,4.0,1229098564\n500,2706,2.0,1228920950\n500,2710,0.5,1254039837\n500,2724,2.5,1229098933\n500,2762,1.5,1228946736\n500,2797,3.5,1228921126\n500,2915,3.0,1228920094\n500,2918,3.5,1228921008\n500,2959,2.5,1228946780\n500,3114,3.0,1254039813\n500,3174,4.0,1228946043\n500,3247,3.0,1228920168\n500,3253,3.0,1228946348\n500,3255,3.0,1228963406\n500,3397,2.0,1229628723\n500,3408,1.5,1228946174\n500,3418,1.5,1228946261\n500,3421,2.0,1228963158\n500,3448,3.5,1233450556\n500,3481,4.0,1228921235\n500,3624,4.0,1229098900\n500,3717,3.0,1228963411\n500,3751,1.5,1228921206\n500,3752,3.0,1229098334\n500,3755,2.0,1228963209\n500,3793,3.0,1228921061\n500,3863,1.0,1228920119\n500,3897,3.5,1228920601\n500,3948,2.5,1228921200\n500,3949,2.0,1228946499\n500,3977,2.0,1228921016\n500,4014,4.5,1228922024\n500,4018,4.0,1228963438\n500,4022,3.0,1254039877\n500,4025,4.0,1228963424\n500,4178,3.5,1228921420\n500,4246,4.0,1228946093\n500,4299,4.0,1229099173\n500,4306,2.5,1228946807\n500,4308,2.5,1228946232\n500,4369,3.5,1229098555\n500,4370,2.0,1228963049\n500,4447,3.0,1228963203\n500,4571,3.0,1228920127\n500,4641,3.5,1229098408\n500,4701,3.0,1229099007\n500,4703,4.0,1228921470\n500,4720,2.5,1228946489\n500,4748,1.5,1228920461\n500,4749,1.5,1228920465\n500,4750,1.5,1228920467\n500,4816,4.0,1228963626\n500,4878,2.5,1228921249\n500,4880,3.5,1228921860\n500,4886,3.0,1228920874\n500,4896,2.5,1228921168\n500,4963,3.5,1228920772\n500,4973,4.5,1254039855\n500,4993,1.5,1228946786\n500,4995,3.5,1228920880\n500,5218,2.0,1228946142\n500,5299,3.5,1228946159\n500,5377,3.5,1228946329\n500,5481,3.0,1228963316\n500,5679,0.5,1228946391\n500,5810,3.5,1228920494\n500,5816,3.0,1228946240\n500,5952,1.0,1228920759\n500,5989,4.0,1228920894\n500,5991,3.5,1228946461\n500,5995,4.0,1228946319\n500,6218,3.5,1228962990\n500,6377,3.0,1228946061\n500,6539,4.0,1228921238\n500,6565,1.5,1228963590\n500,6863,3.5,1228946303\n500,6942,4.5,1228921476\n500,7147,4.0,1228946248\n500,7173,2.5,1228920607\n500,7254,2.5,1228962997\n500,7293,4.0,1229099147\n500,7361,3.5,1254039850\n500,7380,4.0,1228921095\n500,7444,4.0,1228920446\n500,7669,5.0,1254040049\n500,8131,3.5,1228921461\n500,8360,3.5,1228920776\n500,8366,4.0,1228920669\n500,8368,3.0,1228946431\n500,8376,3.0,1228963087\n500,8528,3.5,1228963609\n500,8529,3.0,1228963565\n500,8533,3.5,1228946858\n500,8784,3.5,1228926965\n500,8949,1.0,1228946193\n500,8957,1.0,1229098353\n500,8961,3.0,1228921131\n500,30749,1.5,1228946358\n500,30793,3.0,1228946185\n500,30810,1.0,1228963561\n500,31433,4.5,1228977517\n500,33639,4.0,1228926953\n500,33660,3.0,1228964104\n500,33679,3.0,1228946458\n500,34162,3.0,1228946441\n500,35836,2.0,1228946064\n500,37729,3.5,1229098613\n500,38061,5.0,1228920637\n500,40815,3.5,1228946104\n500,41566,3.0,1228946221\n500,45447,2.5,1228946493\n500,45517,3.5,1228963630\n500,45722,3.5,1228920857\n500,46578,4.0,1228920852\n500,46976,3.0,1228946385\n500,47518,4.5,1228920510\n500,48385,1.0,1228920953\n500,48394,3.5,1228920935\n500,49286,4.0,1233450559\n500,51662,2.0,1228920811\n500,52287,4.5,1229628747\n500,52435,4.5,1229098891\n500,53123,2.0,1229628713\n500,53125,4.0,1228946449\n500,53322,4.0,1228963282\n500,54001,3.0,1228946284\n500,54259,4.5,1228921076\n500,54272,4.0,1228921041\n500,54281,4.0,1228946033\n500,54503,2.5,1228946108\n500,55267,3.0,1228946868\n500,55999,4.0,1228963798\n500,56152,4.0,1228921093\n500,56367,4.5,1228926941\n500,58047,3.5,1228946018\n500,58347,4.5,1228920687\n500,58998,3.0,1228963523\n500,59501,3.0,1229628755\n500,59784,3.5,1229098379\n500,60069,2.0,1254039799\n500,62155,4.5,1228938927\n500,62718,4.5,1228977508\n500,63239,1.5,1228946298\n500,63393,2.5,1228920768\n500,64034,4.5,1229528514\n500,65230,3.0,1233450795\n500,65585,3.5,1233450664\n500,66509,2.5,1254039935\n500,69406,4.0,1254040072\n500,69606,4.0,1254039829\n500,69757,4.0,1254039914\n500,69844,3.5,1254039927\n500,69945,2.5,1254039818\n500,70183,4.0,1254039954\n500,70293,4.0,1254039917\n501,1,5.0,1283137657\n501,36,4.5,1283137825\n501,47,5.0,1283137699\n501,50,3.5,1289258039\n501,111,0.5,1283137802\n501,296,5.0,1283137478\n501,318,5.0,1284994196\n501,356,4.5,1283137639\n501,364,3.5,1283199805\n501,367,3.0,1309479705\n501,593,4.5,1283137642\n501,596,3.0,1309492781\n501,608,3.0,1283137690\n501,745,4.0,1283138249\n501,778,5.0,1283305909\n501,858,5.0,1283137709\n501,1089,5.0,1283137811\n501,1097,4.0,1283137734\n501,1136,3.5,1309492528\n501,1148,4.0,1283138070\n501,1203,5.0,1309479844\n501,1206,4.0,1283137831\n501,1213,4.5,1284182265\n501,1221,4.0,1309492462\n501,1222,3.0,1290890226\n501,1265,4.0,1309149552\n501,1580,4.0,1283137731\n501,1682,4.5,1283137847\n501,1704,5.0,1307129555\n501,1729,4.0,1284182322\n501,1732,4.0,1309492484\n501,1791,2.0,1309492910\n501,2028,4.5,1284182237\n501,2329,5.0,1283137892\n501,2355,4.0,1284182342\n501,2483,0.5,1283130588\n501,2542,5.0,1283138182\n501,2571,4.0,1309492730\n501,2692,5.0,1283138011\n501,2701,2.0,1309493055\n501,2761,3.5,1309492548\n501,2762,4.0,1291663189\n501,2959,5.0,1283136740\n501,2997,3.5,1299472330\n501,3105,4.5,1294191019\n501,3114,5.0,1283137839\n501,3160,4.5,1294191006\n501,3409,3.0,1283135584\n501,3481,4.5,1283138032\n501,3578,4.5,1283137751\n501,3623,3.5,1283137979\n501,3751,4.0,1283137982\n501,3949,5.0,1283138547\n501,4011,5.0,1283138081\n501,4022,4.0,1283137961\n501,4226,4.5,1283137792\n501,4235,5.0,1295411146\n501,4306,4.5,1309492516\n501,4878,3.5,1309492603\n501,4886,4.0,1283137863\n501,4896,4.0,1283138063\n501,4963,4.5,1299472130\n501,4973,4.0,1285806853\n501,4993,4.5,1284182249\n501,4995,3.5,1291563434\n501,5266,4.5,1283139148\n501,5319,5.0,1302652183\n501,5459,3.5,1309493047\n501,5608,5.0,1283227068\n501,5630,4.5,1307129471\n501,5669,4.0,1287248554\n501,5816,3.5,1309492575\n501,5952,4.0,1284182310\n501,5954,4.0,1284994262\n501,5989,5.0,1283138072\n501,6016,5.0,1283138480\n501,6323,4.0,1291437655\n501,6377,4.0,1283137895\n501,6863,5.0,1283139135\n501,6874,3.0,1283138810\n501,7153,4.5,1283137789\n501,7254,4.5,1299472160\n501,7323,4.0,1284182332\n501,7361,5.0,1309149350\n501,7934,4.0,1283138936\n501,8360,4.0,1283138214\n501,8644,4.0,1309493029\n501,8950,3.0,1284331608\n501,8957,5.0,1283139100\n501,8961,4.5,1299472303\n501,25788,4.5,1284182235\n501,25911,3.0,1309492684\n501,27706,4.0,1296689182\n501,27815,4.5,1283139323\n501,30812,4.0,1283139246\n501,31685,4.0,1309493029\n501,31952,2.5,1309492824\n501,32031,2.5,1309493175\n501,33679,3.5,1309493092\n501,34319,3.5,1309493166\n501,36519,3.5,1292956082\n501,37731,5.0,1284994225\n501,39446,4.0,1309492710\n501,40148,5.0,1283135934\n501,41285,4.5,1298787060\n501,42197,2.5,1309492804\n501,43267,5.0,1309234837\n501,44195,5.0,1294548056\n501,44199,4.0,1284182325\n501,44974,5.0,1295465203\n501,46559,4.0,1298260509\n501,46578,4.5,1283139188\n501,46976,4.5,1283139275\n501,47099,4.5,1299472145\n501,47721,2.5,1283139638\n501,48516,5.0,1283138508\n501,48780,3.0,1290111458\n501,48877,3.0,1309492708\n501,50872,4.0,1284182306\n501,51662,4.0,1309492501\n501,52458,4.0,1283130282\n501,53123,5.0,1299472178\n501,55247,4.0,1290046009\n501,55577,3.0,1309492705\n501,55721,3.5,1299472313\n501,55768,3.5,1283130381\n501,55820,4.0,1309492721\n501,56174,4.0,1309493003\n501,56367,4.5,1299472291\n501,56587,4.0,1299472206\n501,57368,4.5,1284182274\n501,57669,4.5,1284182255\n501,58103,4.0,1283130326\n501,58191,4.0,1295652134\n501,58303,4.0,1292082014\n501,58559,3.5,1309492618\n501,59143,3.0,1309492695\n501,60069,4.0,1283138594\n501,60072,5.0,1283139023\n501,60074,2.5,1309493042\n501,60649,1.0,1299472478\n501,62644,3.5,1298811090\n501,62849,5.0,1283139031\n501,63062,3.5,1309493083\n501,63082,4.0,1287185158\n501,63436,3.0,1309492703\n501,64034,4.5,1283138309\n501,64614,4.5,1283138801\n501,64716,3.5,1309493021\n501,68157,5.0,1283138517\n501,68205,3.0,1299472364\n501,68954,4.5,1283138570\n501,69122,3.0,1283138313\n501,69844,3.5,1309492571\n501,70286,4.5,1283138866\n501,70567,3.0,1299903821\n501,71033,5.0,1283138582\n501,71131,3.5,1283298297\n501,71379,3.5,1289257987\n501,71899,4.5,1299472284\n501,72129,3.0,1309492702\n501,72226,5.0,1297093245\n501,72393,4.5,1290890244\n501,72395,5.0,1298259640\n501,72407,1.5,1309492928\n501,72998,4.5,1309479709\n501,74275,3.5,1283130971\n501,74458,5.0,1283138917\n501,74545,4.0,1298260507\n501,74624,3.5,1309492673\n501,76030,3.5,1291563417\n501,76093,4.0,1296077522\n501,77455,5.0,1287083484\n501,77798,2.5,1309492788\n501,78088,3.5,1309492643\n501,78349,2.0,1286580757\n501,78499,5.0,1283130395\n501,78729,2.0,1283136281\n501,78772,1.5,1309492916\n501,79132,5.0,1284516688\n501,79293,3.5,1309492520\n501,80026,4.5,1284221000\n501,80350,0.5,1292474358\n501,80463,4.0,1292530313\n501,80489,4.0,1292081989\n501,80549,3.5,1298811215\n501,80693,4.5,1296101105\n501,81156,3.0,1299472359\n501,81158,3.0,1298260232\n501,81535,2.5,1298260532\n501,81562,4.0,1296438351\n501,81564,4.0,1309492443\n501,81591,3.0,1309492869\n501,81834,3.0,1307129483\n501,81845,4.5,1299942026\n501,81847,2.5,1299472394\n501,81932,5.0,1299455930\n501,82037,3.0,1309492698\n501,82852,3.0,1298811206\n501,84954,5.0,1308793598\n501,85367,4.0,1309479544\n501,85414,4.0,1316314606\n501,85736,4.0,1303060921\n502,1,4.0,861302126\n502,6,3.0,861302161\n502,18,3.0,861302538\n502,25,5.0,861302126\n502,32,5.0,861302126\n502,36,5.0,861302161\n502,50,5.0,861322516\n502,52,4.0,861302194\n502,62,3.0,861302126\n502,68,3.0,861302518\n502,78,4.0,862510043\n502,104,4.0,861302194\n502,112,4.0,861302194\n502,125,4.0,861322517\n502,150,3.0,861322705\n502,194,4.0,861304067\n502,198,4.0,861322649\n502,223,5.0,861304067\n502,231,3.0,861304066\n502,235,4.0,861322482\n502,246,4.0,861304067\n502,260,4.0,861302161\n502,296,5.0,861322541\n502,318,5.0,861304067\n502,337,4.0,861322595\n502,376,3.0,861302194\n502,428,3.0,861322621\n502,471,4.0,861322541\n502,541,5.0,861322517\n502,555,4.0,861322621\n502,589,5.0,861322705\n502,605,3.0,869188561\n502,608,5.0,861302161\n502,648,3.0,861302126\n502,671,5.0,861302276\n502,697,4.0,868218086\n502,708,4.0,861302194\n502,714,5.0,868636987\n502,720,3.0,861304068\n502,733,3.0,861302161\n502,736,3.0,861302126\n502,745,5.0,861302338\n502,750,4.0,861322481\n502,765,1.0,861303351\n502,778,5.0,861302227\n502,780,3.0,861302881\n502,784,4.0,861302194\n502,785,5.0,861302338\n502,786,3.0,861302161\n502,804,3.0,868217898\n502,858,4.0,861302276\n502,869,3.0,861303115\n502,999,3.0,862510165\n502,1049,3.0,861302568\n502,1051,4.0,861302603\n502,1059,4.0,861302362\n502,1060,5.0,868217367\n502,1073,3.0,861302161\n502,1080,4.0,861322482\n502,1089,5.0,861322481\n502,1120,4.0,868217382\n502,1136,4.0,861322481\n502,1173,5.0,868637282\n502,1193,4.0,861322516\n502,1196,4.0,861322595\n502,1197,4.0,861322541\n502,1198,4.0,861322574\n502,1199,5.0,861322482\n502,1206,4.0,861322482\n502,1208,4.0,861322574\n502,1210,4.0,861302227\n502,1213,4.0,861322516\n502,1214,4.0,861322705\n502,1220,4.0,861322621\n502,1221,3.0,861322574\n502,1222,4.0,861322621\n502,1225,5.0,861322649\n502,1233,3.0,861303696\n502,1234,4.0,861322677\n502,1240,4.0,861322574\n502,1245,5.0,861322723\n502,1247,5.0,861322677\n502,1249,4.0,861322705\n502,1266,3.0,861322705\n502,1285,4.0,861322677\n502,1288,5.0,861322574\n502,1292,4.0,861322649\n502,1391,5.0,861302403\n502,1393,3.0,861302276\n502,1394,5.0,861322516\n502,1399,3.0,861303115\n502,1405,3.0,861302362\n502,1411,5.0,861302384\n502,1429,3.0,861302538\n502,1437,4.0,861303260\n502,1454,3.0,861303278\n502,1457,2.0,861303325\n502,1464,5.0,861303095\n502,1466,4.0,861302568\n502,1476,4.0,861302518\n502,1497,2.0,861303393\n502,1500,4.0,861302663\n502,1517,5.0,868217844\n502,1527,5.0,868217844\n502,1541,5.0,868217990\n502,1544,3.0,868217990\n502,1552,3.0,868217926\n502,1562,3.0,868218256\n502,1569,4.0,868637076\n502,1573,5.0,868217305\n502,1580,4.0,868217305\n502,1584,5.0,869188470\n502,1639,5.0,895850340\n503,1,4.0,1432365762\n503,50,4.0,1432366655\n503,208,3.5,1432365889\n503,260,4.0,1432365785\n503,356,4.0,1432365753\n503,357,4.0,1432365900\n503,480,4.0,1432365756\n503,527,4.0,1432366653\n503,593,4.0,1432365747\n503,858,4.0,1432366657\n503,912,4.0,1432366042\n503,953,3.5,1432365834\n503,1089,4.0,1432365902\n503,1196,4.0,1432365858\n503,1198,4.0,1432365855\n503,1210,4.0,1432365862\n503,1270,3.0,1432365769\n503,1291,4.0,1432365860\n503,2571,4.0,1432365760\n503,2858,4.0,1432366025\n503,3408,3.5,1432366685\n503,4973,4.0,1432366938\n503,4993,3.0,1432365875\n503,5378,3.0,1432366691\n503,5952,3.0,1432365879\n503,7153,3.0,1432365874\n503,49272,3.5,1432366966\n503,50872,4.0,1432365836\n503,54259,5.0,1432367070\n503,58559,4.0,1432365866\n503,59315,4.0,1432366968\n503,59784,4.0,1432367074\n503,60069,4.0,1432366964\n503,63082,3.5,1432366032\n503,72998,3.5,1432367086\n503,76093,4.5,1432366943\n503,78499,4.0,1432366668\n503,79091,5.0,1432367046\n503,81845,4.0,1432366039\n503,81847,1.0,1432367056\n503,89745,4.0,1432367080\n503,97913,4.0,1432367060\n503,112552,4.0,1432365830\n503,112852,4.0,1432367066\n504,1875,3.0,904376978\n504,1878,3.0,904377138\n504,1882,3.0,904377138\n504,1883,1.0,904376847\n504,1885,3.0,904376847\n504,1887,3.0,904377138\n504,1892,4.0,904376977\n504,1907,1.0,904376787\n504,1909,2.0,904376903\n504,1917,3.0,904376847\n504,1918,4.0,904376903\n504,1923,4.0,904376715\n504,2006,1.0,904376715\n504,2025,1.0,904376903\n504,2028,3.0,904376715\n504,2058,5.0,904376847\n504,2125,1.0,904376903\n504,2126,4.0,904376715\n504,2153,3.0,904376977\n504,2155,4.0,904377179\n504,2167,3.0,904376787\n504,2169,4.0,904376903\n504,2188,4.0,904376787\n504,2190,2.0,904376715\n505,3,3.0,1340413945\n505,7,3.0,1340413951\n505,52,3.0,1340414299\n505,110,2.5,1340410027\n505,111,3.0,1340405130\n505,141,3.0,1340413719\n505,215,3.5,1340415154\n505,224,3.0,1340414394\n505,260,4.0,1340405126\n505,261,3.0,1340414196\n505,266,3.0,1340413855\n505,296,3.0,1340405199\n505,318,3.5,1340404806\n505,337,3.0,1340412040\n505,339,3.0,1340413726\n505,348,3.5,1340411787\n505,356,4.0,1340405319\n505,364,2.5,1340406485\n505,380,3.0,1340413633\n505,457,3.0,1340410047\n505,480,3.0,1340406473\n505,492,3.0,1340415099\n505,509,3.0,1340413825\n505,527,4.0,1340404797\n505,539,3.5,1340406432\n505,587,3.0,1340413694\n505,589,3.0,1340409082\n505,590,3.0,1340406756\n505,593,3.0,1340408727\n505,594,3.5,1340413814\n505,596,3.0,1340411945\n505,597,3.5,1340407937\n505,608,3.0,1340409105\n505,707,3.0,1340415854\n505,750,3.5,1340405270\n505,898,3.5,1340404896\n505,899,3.5,1340405123\n505,900,3.5,1340405826\n505,903,3.5,1340405066\n505,904,4.5,1340405225\n505,905,4.0,1340405502\n505,908,4.5,1340405147\n505,909,3.0,1340405558\n505,910,3.5,1340405213\n505,911,4.0,1340405142\n505,912,4.5,1340405209\n505,913,3.0,1340404924\n505,914,3.0,1340409023\n505,918,3.0,1340409271\n505,919,3.5,1340405687\n505,920,3.0,1340405684\n505,921,3.0,1340412442\n505,922,4.0,1340404030\n505,923,3.5,1340405249\n505,924,3.0,1340405021\n505,926,3.5,1340404907\n505,928,3.0,1340404816\n505,930,3.5,1340405741\n505,932,3.0,1340411370\n505,933,3.0,1340409032\n505,942,3.5,1340405752\n505,945,4.0,1340404944\n505,947,3.0,1340409159\n505,949,3.5,1340405089\n505,953,4.0,1340405722\n505,954,4.0,1340405189\n505,955,3.0,1340405138\n505,965,3.0,1340404823\n505,969,3.0,1340408644\n505,994,3.5,1340406436\n505,1028,3.5,1340405988\n505,1032,3.0,1340411734\n505,1035,3.5,1340406022\n505,1036,3.5,1340408872\n505,1084,3.5,1340405996\n505,1088,4.0,1340407488\n505,1090,3.0,1340408908\n505,1092,3.0,1340414156\n505,1093,3.0,1340414555\n505,1096,3.0,1340408921\n505,1097,3.5,1340406303\n505,1101,3.0,1340413769\n505,1104,3.0,1340410114\n505,1124,3.5,1340415859\n505,1136,4.5,1340407304\n505,1172,4.0,1340404878\n505,1177,5.0,1340407226\n505,1183,4.0,1340407715\n505,1193,3.5,1340406962\n505,1196,4.0,1340405157\n505,1198,4.0,1340406298\n505,1203,3.0,1340408530\n505,1204,4.0,1340405304\n505,1207,3.0,1340405966\n505,1210,3.5,1340406273\n505,1212,2.5,1340409411\n505,1220,3.0,1340406323\n505,1225,4.0,1340404809\n505,1228,2.0,1340410867\n505,1230,3.5,1340405076\n505,1234,4.0,1340406066\n505,1240,3.0,1340408742\n505,1244,4.0,1340405094\n505,1245,3.0,1340409140\n505,1246,3.5,1340406284\n505,1247,3.5,1340405253\n505,1250,3.0,1340408498\n505,1252,4.0,1340405237\n505,1253,3.5,1340406825\n505,1254,3.0,1340408942\n505,1256,4.0,1340405114\n505,1258,3.5,1340409393\n505,1259,3.5,1340406314\n505,1260,3.0,1340407005\n505,1262,3.5,1340405944\n505,1265,3.0,1340408479\n505,1267,3.0,1340405178\n505,1269,2.0,1342311706\n505,1270,3.5,1340406280\n505,1272,3.0,1340408591\n505,1278,3.5,1340405204\n505,1281,4.0,1340405042\n505,1282,3.0,1340409804\n505,1284,4.5,1340404049\n505,1287,3.5,1340405818\n505,1288,2.5,1340408934\n505,1291,3.5,1340406327\n505,1292,3.5,1340406138\n505,1293,3.5,1340406743\n505,1296,4.5,1340404006\n505,1299,3.5,1340408999\n505,1304,3.5,1340405950\n505,1307,4.0,1340406290\n505,1333,3.0,1340410945\n505,1374,3.5,1340408447\n505,1380,3.5,1340407829\n505,1387,4.0,1340406124\n505,1580,3.0,1340413660\n505,1584,3.0,1340413775\n505,1597,3.0,1340414150\n505,1608,3.0,1340413963\n505,1617,3.5,1340404916\n505,1619,2.5,1340415805\n505,1663,3.5,1340408169\n505,1674,3.0,1340408570\n505,1704,2.5,1340409680\n505,1711,3.0,1340415785\n505,1721,3.0,1340413664\n505,1732,2.0,1340411589\n505,1784,3.5,1340406492\n505,1894,3.0,1340415638\n505,1934,4.0,1340407464\n505,1935,3.0,1340409558\n505,1939,3.0,1340409916\n505,1944,3.5,1340405217\n505,1945,3.5,1340405297\n505,1947,3.0,1340405962\n505,1950,3.5,1340405549\n505,1954,3.0,1340408666\n505,1955,3.0,1340411900\n505,1958,3.0,1340415660\n505,1959,4.0,1340407662\n505,1961,3.0,1340409281\n505,1968,3.5,1340406244\n505,1982,3.0,1340414890\n505,1994,3.0,1340414365\n505,2012,3.0,1340413783\n505,2020,3.0,1340406239\n505,2028,3.5,1340405259\n505,2065,3.5,1340407016\n505,2081,3.0,1340413968\n505,2100,3.0,1340414084\n505,2108,3.0,1340414708\n505,2109,3.0,1340408551\n505,2115,2.5,1340406229\n505,2144,3.5,1340411989\n505,2145,3.5,1340414628\n505,2146,3.5,1340415081\n505,2160,3.0,1340405992\n505,2183,3.5,1340406836\n505,2194,3.5,1340406874\n505,2208,3.0,1340409704\n505,2243,3.5,1340406396\n505,2245,3.0,1340415872\n505,2248,3.5,1340406248\n505,2268,3.0,1340409233\n505,2288,3.0,1340408267\n505,2300,2.0,1340409172\n505,2312,3.0,1340416084\n505,2329,3.5,1340412628\n505,2352,3.5,1340404018\n505,2353,4.0,1340407612\n505,2355,3.0,1340413773\n505,2396,3.0,1340408366\n505,2398,3.0,1340409460\n505,2403,3.0,1340415809\n505,2407,2.5,1340414187\n505,2410,3.0,1340415689\n505,2424,3.0,1340414178\n505,2431,3.0,1340414865\n505,2529,2.5,1340410856\n505,2565,3.0,1340412128\n505,2571,3.0,1340409838\n505,2640,3.0,1340413890\n505,2641,3.0,1340414434\n505,2657,3.5,1340413999\n505,2662,2.5,1340415771\n505,2671,3.0,1340414079\n505,2701,1.0,1340414168\n505,2712,4.0,1340407512\n505,2729,3.0,1340411258\n505,2739,3.0,1340413379\n505,2745,3.0,1340412278\n505,2750,3.5,1340406346\n505,2762,3.0,1340408731\n505,2791,3.5,1340408604\n505,2819,5.0,1340404940\n505,2847,3.0,1340406722\n505,2863,3.0,1340408813\n505,2915,3.0,1340414400\n505,2916,3.0,1340413786\n505,2917,3.0,1340406817\n505,2918,2.5,1340409807\n505,2936,3.5,1340405764\n505,2941,4.0,1340404191\n505,2942,3.0,1340415068\n505,2947,3.5,1340405936\n505,2948,3.5,1340405931\n505,2973,3.5,1340405334\n505,2987,3.0,1340413763\n505,2991,3.5,1340406105\n505,2993,2.5,1340409870\n505,3022,3.5,1340406978\n505,3035,4.0,1340404164\n505,3061,3.5,1340405778\n505,3089,3.0,1340405080\n505,3093,2.5,1340404281\n505,3095,3.5,1340405732\n505,3097,3.0,1340409184\n505,3100,3.0,1340415538\n505,3101,3.0,1340414088\n505,3105,3.0,1340413159\n505,3152,3.5,1340406152\n505,3160,3.0,1340413462\n505,3168,3.0,1340415200\n505,3176,4.0,1340407644\n505,3200,3.5,1340406194\n505,3201,3.0,1340406174\n505,3210,3.5,1340407903\n505,3246,3.0,1340408264\n505,3247,3.0,1340414700\n505,3252,3.0,1340411979\n505,3307,4.0,1340405086\n505,3334,3.5,1340404918\n505,3359,3.5,1340406113\n505,3360,3.0,1340409350\n505,3361,3.0,1340411784\n505,3363,3.5,1340403982\n505,3364,3.0,1340405027\n505,3386,4.5,1340407159\n505,3408,3.0,1340413894\n505,3418,3.0,1340414108\n505,3424,3.0,1340410979\n505,3435,3.0,1340409428\n505,3448,3.0,1340411867\n505,3451,4.0,1340406034\n505,3462,3.5,1340405506\n505,3471,3.5,1340406076\n505,3475,3.5,1340410717\n505,3481,3.0,1340406585\n505,3504,3.5,1340406145\n505,3505,4.0,1340404153\n505,3510,3.0,1340414536\n505,3529,3.5,1340404350\n505,3545,3.5,1340406129\n505,3552,4.0,1340407501\n505,3559,3.0,1340415089\n505,3578,3.0,1340409109\n505,3629,3.0,1340409551\n505,3635,3.5,1340406117\n505,3639,2.5,1340409708\n505,3654,3.5,1340412247\n505,3671,3.5,1340406082\n505,3675,4.0,1340405892\n505,3724,3.0,1342311981\n505,3730,3.5,1340406148\n505,3741,3.0,1340406160\n505,3791,4.0,1340407726\n505,3809,0.5,1340415528\n505,3897,3.0,1340406578\n505,3984,4.0,1340404077\n505,4007,3.0,1340406701\n505,4014,4.0,1340407534\n505,4018,3.0,1340414500\n505,4027,3.0,1340406571\n505,4085,3.0,1340409043\n505,4190,3.0,1340410793\n505,4246,3.0,1340414123\n505,4310,3.0,1340414606\n505,4321,4.0,1340407673\n505,4326,4.0,1340406306\n505,4327,3.0,1340405941\n505,4361,3.5,1340409492\n505,4370,0.5,1340414232\n505,4432,2.5,1340412182\n505,4447,3.0,1340414530\n505,4557,3.5,1340404378\n505,4798,3.0,1340412402\n505,4857,3.0,1340406178\n505,4979,3.0,1340414133\n505,4995,3.5,1340406603\n505,5060,3.0,1340408893\n505,5299,3.5,1340414304\n505,5385,3.0,1340408822\n505,5445,2.5,1340413737\n505,5502,3.0,1340414301\n505,5876,3.0,1340412905\n505,5945,3.0,1340415708\n505,5991,3.0,1340414519\n505,5995,3.5,1340405286\n505,6228,3.0,1340410898\n505,6373,3.0,1340414517\n505,6377,4.0,1340406641\n505,6413,5.0,1340407209\n505,6440,3.0,1340413360\n505,6711,3.5,1340413978\n505,6777,3.5,1340409696\n505,6787,4.5,1340404950\n505,6864,3.0,1340415272\n505,6867,3.0,1340406592\n505,6942,3.0,1340407776\n505,6979,3.0,1340415998\n505,6993,4.5,1340407286\n505,7013,2.0,1340410082\n505,7050,3.5,1340415084\n505,7055,3.5,1340409287\n505,7132,3.5,1340404983\n505,7149,4.0,1340407687\n505,7215,3.5,1340404802\n505,7216,2.5,1340406803\n505,7361,3.0,1340405232\n505,7569,3.5,1340409632\n505,7573,3.0,1340408469\n505,7836,3.0,1340410147\n505,7934,3.5,1340406349\n505,7983,3.5,1340406339\n505,8228,3.0,1340404829\n505,8361,3.0,1340415669\n505,8533,3.0,1340411671\n505,8535,4.5,1340407318\n505,8542,3.0,1340409940\n505,8638,3.5,1340406553\n505,8910,3.0,1340411633\n505,8916,3.5,1340404422\n505,8958,3.5,1340411960\n505,8961,3.5,1340408152\n505,8966,4.0,1340404224\n505,8970,4.0,1340407577\n505,8972,3.0,1340416030\n505,25771,2.0,1340410935\n505,25827,3.5,1340407857\n505,25850,4.0,1340407421\n505,25891,3.0,1340415078\n505,30793,3.0,1340414747\n505,30812,4.5,1340407370\n505,33493,3.0,1340414203\n505,36517,3.5,1340404130\n505,37741,4.0,1340406539\n505,38038,3.5,1340407886\n505,39292,3.5,1340406545\n505,40819,3.0,1340409418\n505,41285,3.5,1340406556\n505,43396,3.5,1340411113\n505,45447,3.5,1340415952\n505,45517,3.5,1340415095\n505,46578,3.0,1340414314\n505,47610,3.5,1340412118\n505,48394,1.0,1340405605\n505,48780,1.0,1340414402\n505,49272,3.0,1340414245\n505,49286,3.5,1340407434\n505,49772,3.0,1340412451\n505,50160,4.0,1340407452\n505,50872,3.0,1340414805\n505,52967,3.0,1340412634\n505,53123,3.5,1340406597\n505,54259,3.0,1340411087\n505,55052,3.5,1340413352\n505,55269,4.0,1340407547\n505,55451,4.5,1340407261\n505,55814,3.5,1340406616\n505,56367,3.0,1340414475\n505,60069,2.0,1340405623\n505,64622,3.0,1340412292\n505,86882,5.0,1340407242\n506,1,4.0,865395296\n506,2,3.0,865395979\n506,19,3.0,865395921\n506,32,3.0,865395295\n506,141,3.0,865395298\n506,296,3.0,865395921\n506,344,4.0,865395979\n506,364,3.0,865395921\n506,376,3.0,865395400\n506,480,3.0,865395979\n506,648,3.0,865395297\n506,661,4.0,865395465\n506,673,2.0,865395503\n506,724,3.0,865395502\n506,780,3.0,865395294\n506,784,3.0,865395401\n506,788,3.0,865395401\n506,858,4.0,865395502\n506,1059,4.0,865395921\n506,1073,3.0,865395344\n506,1391,5.0,865395678\n507,1,3.0,862090954\n507,3,2.0,862091271\n507,9,1.0,862091545\n507,18,4.0,862091839\n507,32,4.0,862090953\n507,36,5.0,862091271\n507,62,4.0,862090955\n507,95,3.0,862090955\n507,100,2.0,862091570\n507,112,4.0,862091445\n507,141,3.0,862090954\n507,260,5.0,862091271\n507,376,2.0,862091445\n507,494,2.0,862091272\n507,608,3.0,862091271\n507,648,4.0,862090954\n507,653,3.0,862091445\n507,671,5.0,862091777\n507,673,5.0,862091777\n507,694,3.0,862092115\n507,728,1.0,862092115\n507,733,3.0,862091271\n507,736,5.0,862090954\n507,745,5.0,862091893\n507,748,4.0,862091812\n507,778,3.0,862091545\n507,780,4.0,862090953\n507,783,4.0,862091545\n507,786,2.0,862091271\n507,802,3.0,862091498\n507,832,4.0,862091545\n507,849,2.0,862091839\n507,880,3.0,862091893\n507,1061,2.0,862091839\n507,1073,3.0,862091271\n507,1210,5.0,862091545\n507,1356,3.0,862091498\n507,1391,2.0,862091839\n508,11,3.0,844376294\n508,21,5.0,844376165\n508,32,3.0,844376206\n508,34,5.0,844376142\n508,41,5.0,844377195\n508,47,5.0,844376097\n508,50,5.0,844376206\n508,141,4.0,844376344\n508,150,5.0,844375898\n508,161,4.0,844376036\n508,185,3.0,844376036\n508,230,4.0,844376544\n508,252,3.0,844376344\n508,261,3.0,844376394\n508,288,4.0,844376071\n508,296,5.0,844375898\n508,300,5.0,844376097\n508,316,4.0,844375956\n508,318,5.0,844376016\n508,339,4.0,844376071\n508,342,3.0,844376544\n508,350,3.0,844376276\n508,355,1.0,844376488\n508,356,5.0,844376016\n508,377,4.0,844376097\n508,380,4.0,844375898\n508,440,4.0,844376226\n508,455,3.0,844376628\n508,457,5.0,844375956\n508,471,4.0,844377075\n508,480,3.0,844376036\n508,500,4.0,844376142\n508,508,5.0,844376344\n508,527,5.0,844376226\n508,539,4.0,844376206\n508,586,3.0,844376142\n508,587,3.0,844376165\n508,590,3.0,844375898\n508,592,3.0,844375898\n508,593,5.0,844375956\n508,594,3.0,844376523\n508,595,3.0,844375956\n508,597,2.0,844376165\n508,736,3.0,844376455\n508,780,4.0,844376523\n508,802,4.0,844376876\n508,1028,4.0,844377166\n508,1079,5.0,844376857\n509,1,3.0,939329344\n509,3,2.0,946276711\n509,6,3.0,939471667\n509,11,3.0,1095897396\n509,14,3.0,939342219\n509,16,4.0,939342432\n509,17,4.0,939328099\n509,21,4.0,939329651\n509,25,4.0,939340016\n509,28,4.0,940012794\n509,30,3.0,939341117\n509,32,4.0,939341117\n509,34,3.0,939329179\n509,36,4.5,1093299814\n509,41,4.5,1093278310\n509,42,2.0,940016257\n509,45,3.5,1093278335\n509,47,4.0,940016006\n509,50,5.0,940016006\n509,52,4.0,939329345\n509,58,3.0,939341261\n509,62,3.0,939328501\n509,64,2.0,946277009\n509,68,4.0,940013280\n509,69,3.5,1093295992\n509,70,1.0,939471667\n509,72,3.0,939329345\n509,81,3.0,940013280\n509,94,4.5,1093278348\n509,101,4.5,1095897708\n509,104,2.0,978938551\n509,110,5.0,939339943\n509,111,5.0,1093278375\n509,118,3.0,946277116\n509,125,4.0,942930627\n509,140,2.0,940013391\n509,144,4.0,939329728\n509,147,3.0,939343145\n509,150,3.0,939342347\n509,151,4.0,939340720\n509,154,4.0,978936993\n509,159,3.0,939341677\n509,162,4.5,1095897742\n509,166,1.0,946276711\n509,175,3.0,939340558\n509,176,3.0,946276073\n509,180,2.0,985745354\n509,194,4.0,939340642\n509,213,4.0,939340096\n509,214,4.0,939339943\n509,215,4.5,1093278361\n509,223,4.0,939329345\n509,224,3.0,939342100\n509,231,3.0,946276890\n509,232,3.0,939329252\n509,233,4.5,1093278398\n509,235,5.0,939329651\n509,237,3.0,946276773\n509,246,3.5,1124552941\n509,249,4.0,939341365\n509,253,3.0,1093299786\n509,260,5.0,978937536\n509,265,3.0,939340346\n509,266,4.0,940016671\n509,272,4.5,1093278423\n509,273,3.0,942409470\n509,281,5.0,939342219\n509,288,2.5,1093295691\n509,290,4.0,939342219\n509,293,3.0,939341426\n509,296,5.0,939340096\n509,299,3.0,939328501\n509,300,4.0,939341023\n509,303,3.0,940016621\n509,305,2.0,946276692\n509,306,4.0,939340016\n509,307,4.0,939340252\n509,308,4.0,939341426\n509,318,4.0,939340252\n509,326,3.0,939340179\n509,333,2.0,946276752\n509,334,4.0,939342432\n509,337,4.5,1093278436\n509,344,2.0,946276827\n509,345,1.0,939343145\n509,348,4.5,1095897738\n509,349,3.0,978937614\n509,356,4.0,939329406\n509,357,3.0,939329570\n509,364,3.5,1072415891\n509,367,2.0,946276346\n509,372,3.0,946276692\n509,373,4.0,1093295975\n509,377,1.0,940013699\n509,380,2.0,946276596\n509,383,3.0,979262432\n509,388,4.0,939328099\n509,417,3.0,939329345\n509,428,4.0,939341118\n509,431,3.0,940016152\n509,434,2.0,940016257\n509,441,4.0,946276346\n509,446,5.0,939326039\n509,453,2.0,946276519\n509,454,3.0,1093299752\n509,457,4.0,939471744\n509,458,3.0,978762169\n509,471,4.0,939329728\n509,474,4.0,1093299910\n509,475,4.0,939341023\n509,477,3.0,939341863\n509,480,3.0,978937644\n509,492,4.0,939329795\n509,493,3.0,939342718\n509,496,3.0,940013481\n509,497,3.0,1093295668\n509,500,3.0,946276800\n509,501,4.0,939340253\n509,506,2.0,979261660\n509,507,4.0,939342616\n509,508,3.0,939341988\n509,509,3.0,939342100\n509,515,4.0,939340642\n509,518,2.0,946276848\n509,520,1.0,946277062\n509,527,5.0,939339943\n509,529,4.0,939326663\n509,534,4.0,939340253\n509,535,5.0,939340253\n509,539,3.0,1072415926\n509,541,4.0,1093299858\n509,551,3.0,1093295420\n509,553,4.0,940016533\n509,555,3.0,940013107\n509,562,3.0,939328501\n509,567,3.0,946268775\n509,574,2.0,939329795\n509,586,3.0,1093299846\n509,587,2.0,940013391\n509,588,3.5,1093299695\n509,589,2.0,940018357\n509,590,5.0,940016621\n509,592,2.0,940014496\n509,593,4.0,939340179\n509,594,3.5,1093295493\n509,595,3.0,1093295652\n509,597,2.0,946276565\n509,605,2.0,940013391\n509,608,4.5,1093278448\n509,627,3.0,939342718\n509,639,3.0,946276213\n509,674,2.0,978937699\n509,678,4.0,979261848\n509,714,2.0,940016621\n509,736,2.0,940013315\n509,745,4.0,1124553277\n509,750,4.0,940016758\n509,762,1.0,940016432\n509,778,4.0,939340179\n509,780,2.0,940016974\n509,785,2.0,946276611\n509,800,4.0,939340179\n509,802,2.0,940013699\n509,806,3.0,939342900\n509,830,2.0,946276928\n509,850,3.0,940016097\n509,851,3.0,939341273\n509,852,3.0,940013699\n509,858,5.0,939325726\n509,864,4.0,978761824\n509,866,3.0,939341426\n509,869,3.0,940016292\n509,889,4.0,948602270\n509,893,4.0,939342040\n509,899,3.0,940018759\n509,902,3.5,1093295938\n509,904,4.0,940017935\n509,908,4.0,1072416787\n509,909,4.0,1037843565\n509,910,3.0,978936191\n509,912,5.0,940016758\n509,919,4.0,978937021\n509,923,5.0,940018190\n509,924,4.0,942609067\n509,949,2.0,978936953\n509,969,2.0,940017090\n509,971,4.0,978937170\n509,987,3.0,940013699\n509,991,4.0,940017214\n509,994,5.0,939342040\n509,997,3.0,942408806\n509,999,3.0,940016152\n509,1007,2.0,940016671\n509,1020,2.0,946276800\n509,1030,3.0,978937742\n509,1033,4.5,1093295852\n509,1036,2.5,1093299897\n509,1041,3.0,939340720\n509,1049,3.0,978937802\n509,1050,3.0,939342347\n509,1051,3.0,939341677\n509,1057,4.0,940013156\n509,1059,3.0,939341863\n509,1060,4.0,939329093\n509,1061,4.0,978936271\n509,1073,3.0,940642852\n509,1077,4.0,940642852\n509,1078,3.0,946268891\n509,1079,4.0,940018077\n509,1080,4.5,1093278540\n509,1088,2.0,1093295913\n509,1089,5.0,940016006\n509,1090,4.0,939417819\n509,1091,4.0,942931508\n509,1094,4.0,939341365\n509,1095,4.0,1165630471\n509,1096,4.0,940015597\n509,1097,3.0,1093299769\n509,1103,4.0,939328176\n509,1104,4.5,1093299375\n509,1114,3.0,939342432\n509,1120,3.0,939340558\n509,1125,4.0,940642852\n509,1135,3.0,942931297\n509,1136,5.0,939326733\n509,1145,3.0,940012597\n509,1147,4.5,1093278564\n509,1148,3.0,985745325\n509,1171,3.0,939329570\n509,1172,4.0,939417618\n509,1173,3.0,940015074\n509,1175,3.0,939329179\n509,1179,3.0,940012432\n509,1183,4.0,939342616\n509,1185,4.0,940015336\n509,1186,3.0,940015597\n509,1188,1.0,940013644\n509,1191,3.0,940012684\n509,1193,4.0,940014165\n509,1196,5.0,939417618\n509,1197,4.0,940014445\n509,1198,5.0,940014445\n509,1199,4.0,939328176\n509,1200,4.0,940016906\n509,1203,4.0,1124552895\n509,1206,4.0,942409063\n509,1207,4.0,942609134\n509,1208,5.0,939325800\n509,1210,4.0,940012857\n509,1211,3.5,1093295398\n509,1212,4.0,1165630366\n509,1213,5.0,939340253\n509,1214,3.5,1093299870\n509,1217,5.0,1093278043\n509,1219,4.5,1093295919\n509,1220,4.0,942930925\n509,1221,5.0,939325726\n509,1222,4.0,940015160\n509,1224,3.0,943629741\n509,1225,5.0,939417819\n509,1226,4.0,978938285\n509,1227,4.0,940015336\n509,1228,5.0,939326537\n509,1230,5.0,940642532\n509,1231,4.0,940015505\n509,1233,4.0,939340016\n509,1234,5.0,940017723\n509,1240,3.0,1093299833\n509,1242,4.0,940015160\n509,1243,4.0,978938422\n509,1244,4.5,1093278062\n509,1245,5.0,939325873\n509,1246,4.0,940015074\n509,1247,4.5,1093278603\n509,1249,4.0,978762250\n509,1250,4.0,978936993\n509,1251,3.5,1124553070\n509,1252,4.0,979262305\n509,1257,3.0,942931090\n509,1259,4.0,940014445\n509,1263,5.0,940014165\n509,1265,2.0,939329345\n509,1266,3.0,940016533\n509,1267,4.0,948602390\n509,1270,3.0,1093299730\n509,1271,3.0,939342616\n509,1272,4.0,1093295870\n509,1273,3.0,946268691\n509,1275,5.0,940014497\n509,1276,4.0,942409858\n509,1278,4.0,942409063\n509,1281,4.0,940017723\n509,1285,2.0,942931043\n509,1288,4.0,939417618\n509,1291,4.0,940014445\n509,1295,4.0,940015692\n509,1296,4.0,940015597\n509,1298,5.0,939471542\n509,1299,4.0,940015238\n509,1300,4.0,940015336\n509,1302,4.0,940015160\n509,1304,4.5,1093278635\n509,1307,4.5,1093278074\n509,1339,2.0,940013514\n509,1354,5.0,939342219\n509,1357,3.0,939339943\n509,1358,4.5,1093278865\n509,1365,4.0,939341608\n509,1366,3.0,940018357\n509,1371,3.0,978937802\n509,1374,3.0,940014497\n509,1375,3.0,939326663\n509,1377,2.0,978937847\n509,1378,3.0,940016621\n509,1379,2.5,1093295895\n509,1380,3.0,940642852\n509,1388,2.5,1093295806\n509,1393,4.0,939342537\n509,1394,4.0,939328176\n509,1396,4.0,940016097\n509,1405,2.5,1093295385\n509,1408,3.0,940013644\n509,1409,3.0,946276308\n509,1413,4.0,939339943\n509,1414,3.0,939329345\n509,1419,3.0,940014312\n509,1441,3.0,940013644\n509,1446,4.0,939329179\n509,1449,4.0,940017935\n509,1466,4.0,939340558\n509,1479,2.0,943368907\n509,1482,3.0,946276455\n509,1488,3.0,940016974\n509,1499,2.0,978937959\n509,1500,4.0,939329795\n509,1501,3.0,940016432\n509,1503,3.0,946276898\n509,1516,3.0,946276519\n509,1517,3.0,948602186\n509,1527,3.0,939471667\n509,1562,2.0,978937938\n509,1569,1.0,939329651\n509,1580,2.0,946276308\n509,1581,1.0,946276848\n509,1584,4.0,940017825\n509,1587,2.0,940014751\n509,1589,4.0,939342432\n509,1594,3.0,939341988\n509,1610,4.0,939471744\n509,1617,4.0,940012432\n509,1619,4.0,939341365\n509,1620,3.0,940016257\n509,1627,3.0,939471744\n509,1631,3.0,979260578\n509,1635,4.0,939340558\n509,1639,4.0,939342718\n509,1641,4.0,939329093\n509,1643,4.0,939341608\n509,1644,2.0,979261470\n509,1645,3.0,940016152\n509,1648,3.0,939342219\n509,1649,4.0,940012724\n509,1653,3.0,939341426\n509,1658,3.0,939328501\n509,1660,3.0,939341767\n509,1663,3.0,942931167\n509,1667,3.0,939341365\n509,1670,4.0,940017090\n509,1672,3.0,939341261\n509,1673,4.0,939341365\n509,1674,3.0,940642171\n509,1678,3.0,939340876\n509,1680,4.0,940013481\n509,1682,3.0,939340179\n509,1693,3.0,939341365\n509,1694,4.0,939342347\n509,1699,3.0,939340096\n509,1701,5.0,939329345\n509,1704,5.0,939340179\n509,1711,4.0,939326860\n509,1719,4.0,978937145\n509,1721,2.0,939328099\n509,1729,4.5,1093278926\n509,1730,3.0,948090683\n509,1732,5.0,939329345\n509,1735,2.0,940013347\n509,1747,2.0,939329870\n509,1753,1.0,946276596\n509,1777,1.0,939329870\n509,1784,4.0,978938864\n509,1788,4.0,939340096\n509,1794,4.0,939329406\n509,1797,3.0,940012564\n509,1799,3.0,939340720\n509,1805,2.0,939342537\n509,1810,3.0,939340346\n509,1824,3.0,946276235\n509,1827,3.5,1093280312\n509,1834,4.0,939341767\n509,1836,3.0,979261531\n509,1840,2.0,939340642\n509,1845,4.0,939329507\n509,1863,2.0,946277045\n509,1865,4.0,940642268\n509,1883,3.0,939329728\n509,1884,3.0,939342718\n509,1885,4.0,946276176\n509,1897,4.0,940013107\n509,1904,4.0,946276136\n509,1910,4.0,940016368\n509,1913,2.0,940014312\n509,1914,3.0,939329179\n509,1916,3.0,939340096\n509,1921,4.0,1095897422\n509,1923,3.0,939328099\n509,1945,4.0,1124552977\n509,1952,4.0,939326860\n509,1953,3.0,940014354\n509,1954,5.0,940014164\n509,1955,4.0,940014312\n509,1957,5.0,939326440\n509,1959,3.0,940015432\n509,1960,4.0,940015238\n509,1961,4.0,939417618\n509,1962,4.0,940015114\n509,1963,4.0,940017825\n509,1964,4.0,978937021\n509,1967,2.0,940014445\n509,1968,4.0,940015014\n509,1991,3.0,979261135\n509,1992,1.0,979261135\n509,1993,1.0,979261135\n509,1997,4.0,1093295799\n509,2000,3.0,940015277\n509,2003,1.0,942931297\n509,2010,3.5,1124552957\n509,2011,2.0,942931238\n509,2019,4.0,978936766\n509,2020,4.0,940015074\n509,2022,4.0,940015277\n509,2023,3.0,939325726\n509,2028,3.0,939340016\n509,2054,2.0,942931508\n509,2064,5.0,978936573\n509,2065,4.0,940015505\n509,2073,4.0,942931592\n509,2076,2.0,940015014\n509,2081,3.0,939471469\n509,2088,2.0,942931542\n509,2099,4.0,978937614\n509,2100,2.0,942931090\n509,2105,3.0,940014855\n509,2108,3.0,939329728\n509,2109,3.0,940642681\n509,2114,3.0,943629832\n509,2115,4.0,940014445\n509,2126,2.0,940016368\n509,2128,4.0,946276827\n509,2132,5.0,1093295410\n509,2133,1.0,940014855\n509,2134,2.0,942931469\n509,2144,3.0,942930925\n509,2145,2.0,940015432\n509,2154,2.0,979261470\n509,2155,4.0,939329795\n509,2160,3.0,1124553046\n509,2161,2.0,940014855\n509,2165,4.0,939328176\n509,2174,3.0,940018357\n509,2193,2.0,940014497\n509,2194,4.0,940015692\n509,2231,4.0,939340720\n509,2243,4.0,939417618\n509,2248,3.0,978937145\n509,2253,2.0,946276730\n509,2264,3.0,940015692\n509,2268,4.0,939341988\n509,2271,4.0,939326860\n509,2278,4.0,940016332\n509,2280,3.0,940016063\n509,2289,5.0,939329093\n509,2291,4.0,939341365\n509,2302,3.0,939329252\n509,2303,4.0,940014164\n509,2318,4.5,1093279001\n509,2323,2.0,940012724\n509,2324,3.0,939329093\n509,2329,4.0,1124552849\n509,2333,4.0,939340346\n509,2340,2.0,940012856\n509,2348,4.0,1037843635\n509,2352,4.0,940015014\n509,2356,3.0,939327651\n509,2359,3.0,946276235\n509,2363,3.0,979261411\n509,2366,4.0,978937558\n509,2369,3.0,942931090\n509,2371,4.0,942930970\n509,2372,3.0,942931469\n509,2375,2.0,942931167\n509,2378,2.0,942931429\n509,2391,3.0,940016063\n509,2395,4.5,1093279006\n509,2396,5.0,939327531\n509,2405,2.0,940014751\n509,2406,3.0,940014751\n509,2409,3.0,940014354\n509,2410,3.0,940015505\n509,2411,2.0,940015505\n509,2412,2.0,943629583\n509,2420,3.0,940015238\n509,2423,3.0,942931167\n509,2425,4.0,946268745\n509,2427,2.0,940016974\n509,2437,3.0,942929917\n509,2439,4.0,939340876\n509,2440,3.0,939341608\n509,2441,3.0,979262432\n509,2450,1.0,940014855\n509,2459,3.0,940017825\n509,2463,3.0,942931238\n509,2470,3.0,942930970\n509,2473,3.5,1093279027\n509,2474,4.0,940015074\n509,2478,2.0,940016671\n509,2481,4.5,1093278137\n509,2482,2.0,946276109\n509,2492,4.5,1093278086\n509,2501,4.0,940012358\n509,2502,2.0,939327531\n509,2511,4.0,978936271\n509,2529,4.0,940018190\n509,2539,3.0,939327805\n509,2542,4.5,1093278125\n509,2567,3.0,939327531\n509,2571,4.5,1093279062\n509,2577,3.0,948090837\n509,2580,3.0,939327531\n509,2581,1.0,942608641\n509,2583,3.0,939327805\n509,2589,2.0,946276039\n509,2594,4.0,939327805\n509,2598,4.0,939327923\n509,2599,3.0,939329093\n509,2600,3.0,948090762\n509,2610,3.0,939327651\n509,2620,4.0,946268650\n509,2628,3.0,978937802\n509,2640,3.0,978937593\n509,2641,2.0,940014751\n509,2642,2.0,940014751\n509,2657,2.0,940642852\n509,2662,3.0,940016860\n509,2674,3.0,978937273\n509,2677,3.5,1095897491\n509,2692,5.0,942608765\n509,2699,1.0,939329252\n509,2700,3.0,978938247\n509,2702,3.5,1093295774\n509,2706,2.0,978762088\n509,2710,4.0,939327130\n509,2712,3.0,939327130\n509,2716,3.0,942930925\n509,2717,2.0,942931297\n509,2728,3.0,978937170\n509,2731,4.0,939328501\n509,2734,3.0,940015336\n509,2735,2.0,940014909\n509,2739,4.0,940015074\n509,2745,4.0,940015277\n509,2746,1.0,939471469\n509,2762,4.0,939325352\n509,2769,2.0,1037842751\n509,2770,2.0,948602215\n509,2791,4.0,940018077\n509,2794,4.0,942931542\n509,2797,3.0,942930297\n509,2804,3.0,978936814\n509,2858,4.5,1093278089\n509,2862,2.0,940015014\n509,2871,4.5,1093279055\n509,2891,2.0,946269131\n509,2905,4.0,978937536\n509,2912,4.0,943368937\n509,2915,3.0,942931167\n509,2916,2.0,978937644\n509,2918,3.0,942608528\n509,2929,4.0,940015505\n509,2943,3.0,940013156\n509,2959,4.0,942409596\n509,2966,3.0,978937170\n509,2973,4.0,942931043\n509,2997,5.0,942408669\n509,3006,4.0,1124553288\n509,3007,5.0,948602100\n509,3033,2.0,942931429\n509,3037,4.0,942930297\n509,3039,4.0,942931090\n509,3052,4.0,942930001\n509,3067,4.0,943629741\n509,3072,4.0,942930970\n509,3081,3.5,1101709374\n509,3082,2.0,946269142\n509,3083,4.0,978937273\n509,3087,3.0,942931297\n509,3089,5.0,979260937\n509,3095,4.0,978936814\n509,3100,4.5,1093278135\n509,3104,5.0,942931043\n509,3108,4.0,978938525\n509,3129,4.0,978938403\n509,3130,4.0,946276947\n509,3142,4.0,946269017\n509,3148,4.0,1093295731\n509,3152,4.0,948602463\n509,3157,2.5,1093295755\n509,3160,4.0,948090741\n509,3168,4.0,978937558\n509,3173,2.0,978938747\n509,3174,2.0,948090991\n509,3175,3.5,1093279141\n509,3177,3.0,1037843438\n509,3178,4.0,948090655\n509,3179,4.0,979260834\n509,3180,2.0,979261710\n509,3188,3.0,978758185\n509,3189,4.0,1037842728\n509,3201,4.0,978937021\n509,3249,2.5,1093295543\n509,3253,3.0,978938422\n509,3263,3.5,1093295727\n509,3266,4.0,939329093\n509,3298,4.0,1037843059\n509,3302,4.0,978938464\n509,3307,5.0,978938129\n509,3317,4.0,1037842641\n509,3327,3.0,978758334\n509,3328,4.0,978758225\n509,3361,3.0,978938266\n509,3362,4.0,978936145\n509,3363,4.0,978938189\n509,3365,4.0,979262354\n509,3396,4.0,978938337\n509,3408,3.0,985745294\n509,3424,3.0,978938227\n509,3448,4.0,978938440\n509,3467,4.0,1037843617\n509,3468,5.0,978936814\n509,3476,4.5,1093278127\n509,3481,5.0,978758185\n509,3489,2.0,978937878\n509,3504,4.0,978937058\n509,3510,3.0,978758400\n509,3526,4.0,978937273\n509,3543,4.0,978937189\n509,3552,4.5,1095897805\n509,3555,3.0,978758400\n509,3556,3.0,1037842751\n509,3566,2.0,978758257\n509,3571,3.0,1037843156\n509,3578,3.0,978758298\n509,3608,3.0,978938502\n509,3617,1.0,978761971\n509,3618,4.0,978761971\n509,3624,2.5,1099008623\n509,3629,4.0,978938129\n509,3671,4.0,978938266\n509,3672,2.0,978937742\n509,3683,4.0,978937189\n509,3686,3.0,979261371\n509,3698,2.0,978937777\n509,3699,3.0,978937674\n509,3717,2.0,1037843480\n509,3730,4.0,978936766\n509,3735,3.0,978936191\n509,3744,2.0,978761971\n509,3747,3.0,979260523\n509,3751,3.0,1037842551\n509,3753,4.0,1037843367\n509,3760,2.0,978938502\n509,3763,3.0,1093295712\n509,3770,2.0,978937644\n509,3783,4.5,1093279163\n509,3793,4.0,978758298\n509,3794,2.0,1037842985\n509,3812,4.0,1093295537\n509,3821,1.0,1037843294\n509,3852,4.0,1037842963\n509,3860,3.0,978936356\n509,3863,4.0,978762000\n509,3880,4.0,979260864\n509,3882,1.0,1037843037\n509,3893,3.0,1093280158\n509,3896,2.0,978936055\n509,3897,4.0,978758146\n509,3910,4.0,978758147\n509,3911,4.5,1093279192\n509,3916,3.0,1093279991\n509,3948,3.0,978758400\n509,3949,4.5,1093279209\n509,3952,3.0,1037842822\n509,3953,3.0,1037843347\n509,3967,3.0,978758147\n509,3969,2.0,1037843430\n509,3972,4.0,1037842793\n509,3977,2.0,1037843317\n509,3978,3.0,1037843416\n509,3979,1.0,978757978\n509,3980,3.0,1037843165\n509,3983,5.0,978757908\n509,3993,3.0,979286723\n509,3994,3.0,978758225\n509,3996,4.5,1093278189\n509,3998,3.0,978758400\n509,4002,4.0,979261686\n509,4011,4.5,1093278215\n509,4014,3.0,985745250\n509,4017,3.0,1037842482\n509,4022,3.0,978937593\n509,4025,1.0,1037843317\n509,4027,5.0,980022343\n509,4029,3.0,1037842687\n509,4031,2.0,985745073\n509,4033,3.0,1037842585\n509,4034,5.0,978757931\n509,4036,3.0,1037843002\n509,4047,3.5,1072416798\n509,4056,3.0,1037842930\n509,4066,3.0,1095897504\n509,4069,2.0,985745144\n509,4161,1.0,1037843332\n509,4167,3.0,1037843262\n509,4226,5.0,1037842448\n509,4234,3.0,1037843243\n509,4235,5.0,1037842602\n509,4239,3.0,1037842917\n509,4262,4.5,1093279215\n509,4267,3.0,1037843347\n509,4306,4.0,1037842704\n509,4308,1.0,1037842813\n509,4321,3.5,1093295717\n509,4345,2.0,1037842867\n509,4367,2.5,1095897369\n509,4369,1.0,1037843209\n509,4378,3.0,1037842728\n509,4448,2.5,1093279929\n509,4499,3.5,1095897417\n509,4641,4.0,1037842513\n509,4701,3.0,1037843317\n509,4718,1.0,1037843022\n509,4720,3.0,1093277793\n509,4733,4.0,1037843156\n509,4734,2.0,1037843092\n509,4761,3.5,1093279779\n509,4776,4.0,1037842963\n509,4782,4.0,1037842985\n509,4823,2.0,1037843209\n509,4846,4.0,1037842667\n509,4873,5.0,1037842585\n509,4874,3.0,1037843179\n509,4878,4.0,1093277227\n509,4881,4.0,1037842667\n509,4886,4.5,1093277523\n509,4888,4.5,1093278218\n509,4889,4.0,1037843092\n509,4890,2.0,1037843116\n509,4896,3.0,1037842813\n509,4898,4.0,1037843367\n509,4901,3.0,1037842963\n509,4903,5.0,1037842513\n509,4961,3.0,1093280373\n509,4963,2.0,1037842621\n509,4973,4.0,1093277349\n509,4975,3.0,1037842793\n509,4977,3.0,1099008501\n509,4979,4.0,1037842602\n509,4993,4.5,1093279234\n509,4995,3.0,1037842667\n509,5009,4.0,1037843243\n509,5010,4.0,1037842687\n509,5013,5.0,1037842564\n509,5015,4.0,1037842482\n509,5016,2.0,1037843074\n509,5025,2.0,1037843243\n509,5060,3.0,940017214\n509,5072,4.0,1037842751\n509,5081,4.0,1037843377\n509,5147,4.0,1124552990\n509,5225,4.5,1093278284\n509,5258,4.0,1037842728\n509,5266,3.0,1037842667\n509,5293,2.5,1072416827\n509,5349,3.0,1037842641\n509,5377,3.0,1093277625\n509,5380,3.0,1093279951\n509,5388,3.5,1093279494\n509,5417,3.0,1037842464\n509,5445,4.0,1037842687\n509,5464,4.0,1037842551\n509,5477,4.0,1037843074\n509,5483,3.5,1093277836\n509,5502,3.0,1037842751\n509,5508,2.0,1093280006\n509,5528,3.0,1072416834\n509,5572,2.5,1093280148\n509,5577,3.5,1072416822\n509,5617,3.0,1093277604\n509,5669,4.5,1093278181\n509,5670,4.0,1093279457\n509,5673,3.0,1037842297\n509,5680,3.5,1099009339\n509,5782,4.0,1095897455\n509,5791,3.0,1072416778\n509,5792,3.5,1072416763\n509,5810,2.0,1037842236\n509,5820,4.0,1093277757\n509,5868,4.0,1037842170\n509,5876,4.0,1093277749\n509,5902,4.0,1093277258\n509,5945,2.5,1093277855\n509,5952,5.0,1093278231\n509,5954,3.5,1093277410\n509,5955,3.0,1093277844\n509,5956,3.5,1093279835\n509,5959,3.5,1093277532\n509,5989,3.5,1093277550\n509,5991,2.5,1093277899\n509,5995,3.5,1093277404\n509,6003,4.0,1093279662\n509,6016,4.5,1097205699\n509,6218,3.0,1072415897\n509,6269,5.0,1093277320\n509,6279,4.0,1093279800\n509,6296,3.5,1093279694\n509,6306,4.0,1093277784\n509,6331,4.0,1093277614\n509,6333,3.5,1093277519\n509,6337,4.0,1093279781\n509,6339,4.5,1093278305\n509,6365,4.0,1072415918\n509,6367,2.5,1072415939\n509,6377,3.5,1093277366\n509,6378,2.5,1072415905\n509,6380,4.0,1093277282\n509,6440,5.0,1093295238\n509,6502,3.0,1072415858\n509,6537,1.5,1093295426\n509,6538,4.0,1093280013\n509,6539,4.0,1093277555\n509,6552,5.0,1093277497\n509,6565,4.0,1093277808\n509,6612,4.5,1124553012\n509,6617,3.5,1093279817\n509,6620,3.5,1093277354\n509,6663,4.0,1093295619\n509,6708,2.5,1093277596\n509,6710,3.0,1093279808\n509,6711,4.0,1093277450\n509,6755,2.0,1165630554\n509,6787,4.5,1095897466\n509,6796,3.5,1124553145\n509,6807,4.0,1093295532\n509,6863,3.5,1093279633\n509,6867,3.5,1101708375\n509,6870,3.5,1093277383\n509,6874,2.5,1093277273\n509,6881,3.0,1095897340\n509,6890,3.0,1093277823\n509,6893,2.5,1072415867\n509,6932,3.5,1093277638\n509,6934,4.0,1095897404\n509,6947,4.0,1093277704\n509,6953,4.5,1093277683\n509,6957,3.0,1165630564\n509,6993,4.0,1124552914\n509,7139,3.5,1093277313\n509,7147,2.0,1093277482\n509,7149,2.5,1093280090\n509,7153,4.5,1093277220\n509,7156,3.5,1093277338\n509,7158,3.5,1099008066\n509,7160,3.5,1093277373\n509,7162,4.0,1093279724\n509,7171,3.0,1095897560\n509,7255,0.5,1095897237\n509,7256,4.5,1093277564\n509,7263,3.5,1093277477\n509,7323,3.5,1093277659\n509,7361,3.5,1099007992\n509,7438,4.0,1095460092\n509,7445,3.0,1095897304\n509,7460,1.0,1097371532\n509,8042,3.5,1124552927\n509,8154,4.0,1124553059\n509,8364,2.5,1124553201\n509,8366,3.0,1101708576\n509,8368,3.0,1165630506\n509,8373,1.0,1093277126\n509,8376,4.0,1165630582\n509,8464,3.0,1097371500\n509,8533,2.5,1093277097\n509,8622,4.0,1093276979\n509,8636,3.0,1165630511\n509,8638,4.5,1101708362\n509,8645,4.0,1124553263\n509,8781,2.5,1165630612\n509,8783,3.0,1165630590\n509,8784,3.5,1095897621\n509,8798,3.5,1095360991\n509,8873,4.0,1124553293\n509,8874,2.0,1165630478\n509,8927,3.0,1097205624\n509,8949,4.0,1124552856\n509,8950,3.0,1124553115\n509,8961,4.5,1124553358\n509,30707,4.0,1124553168\n509,30820,3.5,1124553124\n509,30850,4.0,1165630447\n509,32587,1.5,1124553100\n509,33660,3.5,1124553184\n509,33794,4.5,1124553351\n509,34271,3.5,1165630539\n509,34338,3.0,1165630600\n510,1,1.0,944346953\n510,17,4.0,944348185\n510,21,4.0,952820505\n510,25,1.0,944346953\n510,34,1.0,946974972\n510,36,4.0,946893253\n510,58,4.0,946892906\n510,84,4.0,947112271\n510,97,3.0,949223114\n510,211,3.0,947228157\n510,232,4.0,946891746\n510,246,4.0,952328513\n510,260,2.0,948183626\n510,265,4.0,946892517\n510,281,3.0,944348485\n510,290,3.0,946892580\n510,296,4.0,946880558\n510,318,4.0,944348557\n510,352,2.0,950425012\n510,356,3.0,946880364\n510,358,1.0,947360832\n510,428,4.0,946891865\n510,433,1.0,949997179\n510,482,1.0,948180496\n510,483,5.0,946892212\n510,488,4.0,944348210\n510,509,5.0,944346278\n510,515,4.0,946880460\n510,520,1.0,951561066\n510,522,1.0,946889433\n510,527,2.0,944348185\n510,529,4.0,946893119\n510,531,4.0,946892906\n510,541,1.0,944347209\n510,593,5.0,944347836\n510,608,4.0,944348071\n510,647,3.0,951560888\n510,696,3.0,953102975\n510,714,1.0,948180540\n510,750,5.0,952327949\n510,753,3.0,946893091\n510,845,5.0,955011276\n510,912,5.0,952328215\n510,921,4.0,948952698\n510,940,1.0,951560995\n510,945,4.0,952328638\n510,1027,1.0,951561067\n510,1040,4.0,953102941\n510,1041,2.0,952327907\n510,1046,2.0,948180573\n510,1077,3.0,952328638\n510,1079,4.0,1022623631\n510,1089,5.0,944346844\n510,1092,1.0,946974281\n510,1094,5.0,946974806\n510,1096,3.0,948183184\n510,1131,5.0,944347267\n510,1136,1.0,948183626\n510,1163,2.0,952819913\n510,1172,5.0,948183503\n510,1183,4.0,946893229\n510,1185,2.0,948183257\n510,1186,4.0,944346768\n510,1188,2.0,944348557\n510,1193,2.0,948183589\n510,1198,3.0,952328687\n510,1200,2.0,948183694\n510,1201,4.0,952820447\n510,1206,5.0,952328687\n510,1212,3.0,952328215\n510,1213,3.0,944348322\n510,1214,2.0,948183695\n510,1225,5.0,944347065\n510,1230,4.0,952328805\n510,1233,5.0,946880322\n510,1234,4.0,952328867\n510,1244,5.0,952328350\n510,1247,5.0,952328601\n510,1265,4.0,946975490\n510,1266,1.0,944346953\n510,1276,4.0,952328467\n510,1280,5.0,944347209\n510,1283,4.0,952328350\n510,1291,4.0,944347306\n510,1296,5.0,948844269\n510,1299,3.0,948183503\n510,1300,4.0,948183257\n510,1304,4.0,950070893\n510,1307,4.0,952328939\n510,1357,4.0,944346623\n510,1393,1.0,944348485\n510,1610,2.0,946881021\n510,1617,4.0,944348071\n510,1641,4.0,944346953\n510,1643,4.0,946974566\n510,1673,4.0,946892035\n510,1689,3.0,950420944\n510,1699,5.0,944348381\n510,1701,3.0,946880322\n510,1704,1.0,946880364\n510,1721,1.0,946880492\n510,1729,3.0,949997133\n510,1747,3.0,946975579\n510,1834,5.0,944348322\n510,1875,1.0,947228210\n510,1885,4.0,946892517\n510,1923,3.0,944348185\n510,1952,4.0,952328350\n510,1953,4.0,952328467\n510,1958,3.0,944347065\n510,1960,5.0,944347003\n510,1961,3.0,944347267\n510,1963,5.0,944347003\n510,1965,4.0,944347065\n510,2028,2.0,944348185\n510,2065,4.0,952328939\n510,2101,1.0,952327949\n510,2108,4.0,944348381\n510,2112,2.0,944347209\n510,2130,4.0,948183257\n510,2150,4.0,944347208\n510,2300,4.0,952328513\n510,2303,2.0,950071422\n510,2313,2.0,948183257\n510,2359,5.0,944346346\n510,2396,5.0,944346473\n510,2433,2.0,944348614\n510,2439,3.0,946892517\n510,2481,3.0,948614621\n510,2630,3.0,951606442\n510,2671,2.0,957809335\n510,2696,3.0,958422326\n510,2716,3.0,944347003\n510,2739,4.0,946975626\n510,2750,4.0,952328759\n510,2753,1.0,948614571\n510,2762,3.0,954576426\n510,2801,4.0,946892906\n510,2858,3.0,944346073\n510,2863,5.0,952328421\n510,2908,4.0,954998551\n510,2919,2.0,948614662\n510,2951,4.0,952820505\n510,2970,2.0,949223177\n510,2973,4.0,952328295\n510,3006,3.0,949223145\n510,3034,1.0,951561067\n510,3036,2.0,950424966\n510,3090,3.0,948183184\n510,3100,3.0,946892707\n510,3114,1.0,951561132\n510,3125,4.0,955531109\n510,3148,2.0,958614362\n510,3152,4.0,952328350\n510,3260,5.0,948845433\n510,3266,1.0,949997246\n510,3408,4.0,957809392\n510,3418,3.0,952328601\n510,3893,4.0,1022623947\n510,3897,5.0,1022623308\n510,4424,5.0,1022624565\n511,11,4.0,829351964\n511,16,5.0,829351964\n511,21,5.0,829351964\n511,25,4.0,829351964\n511,31,4.0,829352433\n511,36,5.0,829351964\n511,50,5.0,829352433\n511,58,5.0,829351964\n511,94,4.0,829351964\n511,100,5.0,829351964\n511,111,5.0,829351964\n511,125,3.0,829351964\n511,150,4.0,829352433\n511,193,1.0,829352433\n511,223,4.0,829352433\n511,231,3.0,829352433\n511,235,3.0,829352433\n511,237,4.0,829352433\n511,246,5.0,829352433\n511,280,5.0,829352433\n511,282,4.0,829352433\n511,288,3.0,829352433\n511,293,4.0,829352433\n511,296,5.0,829352433\n511,300,5.0,829352433\n511,318,5.0,829352433\n511,337,4.0,829352433\n511,342,5.0,829352433\n511,590,5.0,829352433\n511,608,5.0,829351964\n511,720,5.0,829351964\n512,318,5.0,1433818724\n512,356,5.0,1435375890\n512,589,3.0,1433818868\n512,1198,3.5,1433818766\n512,1291,4.0,1433818827\n512,2028,3.5,1447465310\n512,2115,4.0,1434150671\n512,2424,4.0,1434150117\n512,3578,5.0,1433818890\n512,4963,4.5,1434151036\n512,5064,5.0,1434150219\n512,5989,5.0,1434151014\n512,6942,3.5,1435800110\n512,8132,5.0,1435540227\n512,8529,5.0,1434150102\n512,48780,3.0,1434164145\n512,60069,4.0,1433818909\n512,63082,4.5,1434151044\n512,69122,4.0,1434150727\n512,72998,4.0,1434151171\n512,74458,5.0,1433818946\n512,79132,5.0,1433818792\n512,84152,4.5,1434150035\n512,86911,3.5,1434150750\n512,107141,4.0,1434150137\n512,116797,5.0,1446940778\n512,126548,3.0,1435800481\n513,110,5.0,843771870\n513,150,3.0,843771752\n513,151,5.0,843771936\n513,161,5.0,843771870\n513,208,3.0,843771870\n513,231,3.0,843771811\n513,292,3.0,843771870\n513,296,5.0,843771753\n513,318,5.0,843771830\n513,339,3.0,843771870\n513,344,3.0,843771780\n513,349,4.0,843771780\n513,356,4.0,843771830\n513,380,3.0,843771753\n513,434,3.0,843771830\n513,457,3.0,843771811\n513,480,4.0,843771830\n513,527,5.0,843771936\n513,590,3.0,843771752\n513,592,3.0,843771752\n513,593,5.0,843771811\n513,595,4.0,843771811\n514,1,4.0,853892832\n514,3,1.0,853892868\n514,5,1.0,853892868\n514,14,3.0,853892898\n514,17,3.0,853892833\n514,21,3.0,853894140\n514,24,1.0,853896519\n514,25,5.0,853892833\n514,29,5.0,853893081\n514,32,4.0,853892832\n514,34,4.0,853894009\n514,35,3.0,853894140\n514,36,4.0,853892867\n514,38,1.0,853896032\n514,39,3.0,854116134\n514,43,3.0,853893138\n514,44,3.0,853897100\n514,45,4.0,853894362\n514,47,4.0,853893935\n514,48,2.0,853894938\n514,50,5.0,853893691\n514,52,4.0,853892898\n514,57,3.0,853896692\n514,62,3.0,853892833\n514,69,3.0,854116294\n514,78,4.0,853893226\n514,83,3.0,853893246\n514,85,3.0,853893080\n514,92,4.0,853893059\n514,107,2.0,853895942\n514,110,3.0,853893691\n514,111,5.0,853893691\n514,112,3.0,853894491\n514,117,4.0,853893246\n514,144,3.0,853895135\n514,147,4.0,853894074\n514,150,4.0,853895900\n514,151,4.0,853894100\n514,153,3.0,853896269\n514,156,4.0,853893545\n514,157,2.0,854116294\n514,159,4.0,853894100\n514,162,5.0,853893691\n514,163,3.0,854116215\n514,172,2.0,853895776\n514,175,5.0,853893860\n514,176,5.0,853893713\n514,180,3.0,854116263\n514,190,3.0,853895191\n514,194,4.0,853893713\n514,198,3.0,853894449\n514,209,3.0,853896382\n514,222,3.0,853896453\n514,223,5.0,853893935\n514,227,1.0,853897100\n514,229,3.0,853894449\n514,230,3.0,853895684\n514,231,2.0,854116419\n514,232,3.0,853893860\n514,233,5.0,853893961\n514,235,3.0,853893788\n514,236,1.0,853896781\n514,247,5.0,853894693\n514,249,4.0,853893907\n514,252,2.0,853896781\n514,253,4.0,853894779\n514,260,5.0,853893832\n514,265,4.0,853893882\n514,266,3.0,853896711\n514,272,5.0,853893859\n514,273,2.0,853894801\n514,288,5.0,853893691\n514,290,3.0,853893811\n514,292,3.0,853895732\n514,293,4.0,853893881\n514,296,5.0,853893691\n514,299,4.0,853894217\n514,300,3.0,853893961\n514,302,3.0,853893761\n514,314,4.0,853893859\n514,316,3.0,853896896\n514,317,3.0,853896002\n514,318,5.0,853893691\n514,319,5.0,853893761\n514,320,3.0,853894491\n514,321,3.0,853894009\n514,322,4.0,853893832\n514,327,3.0,853897046\n514,329,2.0,853896364\n514,330,3.0,853894827\n514,331,3.0,853894169\n514,333,1.0,854116476\n514,337,4.0,853893811\n514,342,4.0,853894670\n514,344,3.0,854116539\n514,345,3.0,853895102\n514,350,4.0,853895754\n514,353,3.0,853894569\n514,356,4.0,853896102\n514,357,4.0,853895191\n514,361,3.0,853896732\n514,362,4.0,853895879\n514,364,2.0,853894895\n514,365,4.0,853896300\n514,366,3.0,853894801\n514,367,3.0,854116263\n514,368,4.0,854116294\n514,369,3.0,853893859\n514,371,4.0,853896399\n514,374,1.0,853896032\n514,377,3.0,853897009\n514,380,3.0,853896990\n514,407,3.0,853894755\n514,410,3.0,854116100\n514,412,3.0,853896253\n514,413,1.0,854116447\n514,415,1.0,854116476\n514,417,4.0,853894521\n514,426,4.0,853894755\n514,427,1.0,853895699\n514,433,3.0,854116392\n514,435,3.0,854116315\n514,441,3.0,853894334\n514,442,2.0,853897047\n514,446,5.0,853893761\n514,448,4.0,853894362\n514,449,3.0,854116195\n514,452,3.0,853894670\n514,454,3.0,853895753\n514,457,4.0,853894569\n514,469,3.0,853896300\n514,470,2.0,854116447\n514,471,4.0,853893788\n514,480,4.0,853895854\n514,481,3.0,853894310\n514,484,3.0,853895943\n514,490,3.0,853895732\n514,491,3.0,853896427\n514,493,4.0,853894217\n514,494,1.0,853892868\n514,497,3.0,853893961\n514,500,3.0,853895942\n514,505,3.0,853896001\n514,506,4.0,853895045\n514,507,4.0,853896152\n514,509,5.0,853893788\n514,510,2.0,853896495\n514,514,3.0,854116166\n514,515,4.0,853895045\n514,518,3.0,854116195\n514,520,3.0,854116539\n514,529,4.0,853894075\n514,531,3.0,853895085\n514,532,2.0,853894779\n514,535,4.0,853893735\n514,537,1.0,853895153\n514,538,4.0,853893907\n514,539,3.0,853896756\n514,541,5.0,853893713\n514,542,1.0,854116476\n514,543,3.0,853896732\n514,548,1.0,853897070\n514,551,3.0,853893832\n514,555,4.0,853893735\n514,558,1.0,853894938\n514,562,5.0,853893185\n514,574,4.0,853896216\n514,585,3.0,853895922\n514,586,3.0,853895900\n514,587,3.0,853896566\n514,588,4.0,853894895\n514,590,4.0,853893788\n514,592,4.0,853894258\n514,593,4.0,853893788\n514,594,4.0,853894362\n514,595,3.0,853894894\n514,596,4.0,853894362\n514,597,3.0,853896780\n514,606,3.0,853894827\n514,608,5.0,853892867\n514,613,4.0,853895135\n514,616,3.0,853894937\n514,648,3.0,853892832\n514,653,4.0,853892898\n514,661,4.0,853892928\n514,707,2.0,853892993\n514,708,2.0,853892898\n514,720,5.0,853893735\n514,733,3.0,853892867\n514,741,4.0,853893811\n514,745,4.0,853893059\n514,748,2.0,853893016\n514,750,5.0,853893713\n514,753,4.0,853896216\n514,762,1.0,853892928\n514,766,5.0,853893166\n514,778,5.0,853893691\n514,780,3.0,853892832\n514,784,2.0,853892898\n514,799,3.0,853893138\n514,800,5.0,853893735\n514,802,2.0,853892958\n514,805,3.0,853892958\n514,838,3.0,853894449\n514,851,4.0,853894009\n514,852,3.0,853892993\n514,880,1.0,853893138\n514,902,4.0,853894521\n514,908,5.0,853893935\n514,909,5.0,853894416\n514,910,4.0,853894309\n514,919,4.0,853894217\n514,921,3.0,854116044\n514,923,5.0,853893761\n514,924,5.0,853893811\n514,953,4.0,853894491\n514,955,4.0,853894416\n514,965,4.0,853894258\n514,1007,3.0,853895923\n514,1011,3.0,853895922\n514,1012,4.0,853895854\n514,1013,3.0,853895900\n514,1015,3.0,853895879\n514,1019,3.0,853895854\n514,1022,4.0,853894894\n514,1025,3.0,853894895\n514,1027,3.0,853895900\n514,1028,4.0,853895854\n514,1029,3.0,853894894\n514,1030,3.0,853894938\n514,1031,3.0,853895855\n514,1032,3.0,853894282\n514,1033,4.0,853894895\n514,1035,4.0,853895855\n514,1036,4.0,853896936\n514,1037,3.0,853894827\n514,1041,5.0,853893545\n514,1059,3.0,853893138\n514,1073,4.0,853892898\n514,1077,4.0,853894140\n514,1079,4.0,853894468\n514,1080,4.0,853893961\n514,1081,3.0,854116100\n514,1084,4.0,853893907\n514,1086,4.0,853894169\n514,1088,3.0,853896732\n514,1089,4.0,853893692\n514,1090,4.0,853894140\n514,1091,3.0,854116315\n514,1092,4.0,853895700\n514,1093,4.0,853896183\n514,1094,3.0,853893982\n514,1095,4.0,853894039\n514,1097,5.0,853895855\n514,1101,3.0,853896971\n514,1103,4.0,853894074\n514,1104,5.0,853893859\n514,1111,5.0,853893326\n514,1120,5.0,853893326\n514,1124,4.0,853896183\n514,1125,3.0,854116100\n514,1126,3.0,853895923\n514,1127,3.0,853894723\n514,1128,3.0,853894755\n514,1129,3.0,853895639\n514,1130,3.0,853894723\n514,1135,3.0,854116153\n514,1136,4.0,853893859\n514,1148,4.0,853893761\n514,1150,3.0,853893961\n514,1171,4.0,853896152\n514,1173,4.0,853894039\n514,1175,4.0,853893935\n514,1177,3.0,853895059\n514,1179,4.0,853894282\n514,1186,4.0,853894449\n514,1187,4.0,853896231\n514,1189,4.0,853894334\n514,1191,3.0,853896342\n514,1193,5.0,853893811\n514,1196,5.0,853894039\n514,1197,4.0,853894258\n514,1198,5.0,853894009\n514,1199,4.0,853893713\n514,1200,4.0,853894140\n514,1201,5.0,853894282\n514,1203,5.0,853894100\n514,1204,5.0,853893907\n514,1206,5.0,853893761\n514,1207,5.0,853893935\n514,1208,5.0,853893735\n514,1210,4.0,853894362\n514,1211,5.0,853894169\n514,1213,5.0,853896074\n514,1214,5.0,853893882\n514,1219,5.0,853893982\n514,1220,4.0,854116044\n514,1222,5.0,853894258\n514,1223,4.0,853894217\n514,1225,5.0,853893811\n514,1230,4.0,853893935\n514,1231,4.0,853894217\n514,1235,4.0,853894310\n514,1236,4.0,853896253\n514,1240,4.0,853894384\n514,1242,4.0,853894169\n514,1243,5.0,853894009\n514,1245,4.0,853893935\n514,1246,4.0,853894334\n514,1249,4.0,853894074\n514,1250,5.0,853894074\n514,1252,4.0,853893907\n514,1257,4.0,854116076\n514,1258,5.0,853893907\n514,1259,4.0,853894384\n514,1260,4.0,853894039\n514,1261,4.0,853894693\n514,1265,4.0,853896661\n514,1268,3.0,853896216\n514,1269,4.0,853895623\n514,1270,4.0,853897151\n514,1271,4.0,853896136\n514,1272,5.0,853894416\n514,1274,5.0,853894310\n514,1275,3.0,853894521\n514,1276,5.0,853894074\n514,1277,4.0,853894309\n514,1279,3.0,853894521\n514,1280,4.0,853894140\n514,1282,4.0,853894039\n514,1285,4.0,853893981\n514,1288,4.0,854116021\n514,1289,5.0,853894333\n514,1291,3.0,853896936\n514,1296,4.0,853894100\n514,1297,4.0,853897183\n514,1298,5.0,853896183\n514,1302,3.0,853896136\n514,1304,4.0,853894449\n514,1305,4.0,853894384\n514,1307,4.0,853896661\n514,1321,4.0,853894693\n514,1323,2.0,853894850\n514,1326,2.0,853894850\n514,1327,3.0,853894755\n514,1330,3.0,853894779\n514,1333,4.0,853894449\n514,1334,3.0,853894755\n514,1339,3.0,853894723\n514,1342,4.0,853894755\n514,1343,4.0,853894723\n514,1344,4.0,853895639\n514,1345,4.0,853894693\n514,1347,4.0,853894723\n514,1350,4.0,853894723\n514,1356,3.0,853892928\n514,1357,4.0,853893545\n514,1366,4.0,853893326\n514,1370,3.0,853895670\n514,1371,4.0,853895670\n514,1372,2.0,853895670\n514,1373,2.0,853895712\n514,1374,4.0,853895624\n514,1375,3.0,853895670\n514,1376,2.0,853895670\n514,1377,4.0,853896937\n514,1380,3.0,853896692\n514,1381,1.0,853896756\n514,1387,5.0,853894693\n514,1388,3.0,853894779\n514,1389,2.0,853894850\n514,1394,4.0,853894217\n514,1396,3.0,853896231\n514,1441,2.0,853896711\n514,2019,4.0,853894468\n514,5060,5.0,853894362\n515,60,3.0,1285890709\n515,169,5.0,1286399032\n515,273,2.5,1286398769\n515,519,4.0,1286398918\n515,1566,3.5,1286398944\n515,2080,3.5,1286398722\n515,2379,3.5,1286399042\n515,2422,5.0,1286399024\n515,2622,2.0,1286399011\n515,2739,5.0,1285890767\n515,2804,5.0,1286399831\n515,3246,5.0,1286398960\n515,3275,5.0,1286399754\n515,3386,4.0,1285890451\n515,3996,4.5,1286399929\n515,4019,5.0,1285890749\n515,4886,5.0,1286401644\n515,4995,4.5,1286399634\n515,5015,3.5,1286398897\n515,8827,5.0,1286399675\n515,30707,5.0,1286401629\n515,33794,4.5,1286399620\n515,48516,4.0,1286399999\n515,53125,4.5,1286399017\n515,54286,5.0,1286399762\n515,56367,4.0,1286401528\n515,58559,4.0,1286399966\n515,59315,4.5,1286401450\n515,69280,4.0,1286399260\n515,69757,4.0,1286399369\n515,70286,5.0,1286400025\n515,72641,5.0,1286399733\n515,72998,5.0,1286399571\n515,80463,5.0,1286399256\n516,3,3.0,844687536\n516,5,3.0,844687485\n516,6,4.0,844687340\n516,7,4.0,844687509\n516,9,3.0,844687820\n516,10,4.0,844687118\n516,12,3.0,844687789\n516,13,3.0,844688688\n516,19,3.0,844687167\n516,21,5.0,844687168\n516,22,5.0,844687379\n516,23,3.0,844687509\n516,25,5.0,844687365\n516,30,4.0,844688700\n516,31,4.0,844687388\n516,32,4.0,844687197\n516,34,3.0,844687152\n516,39,3.0,844687182\n516,44,3.0,844687325\n516,47,4.0,844687137\n516,64,3.0,844688650\n516,74,3.0,844687780\n516,79,3.0,844687828\n516,95,4.0,844687287\n516,110,4.0,844687118\n516,112,3.0,844687456\n516,132,3.0,844687647\n516,135,4.0,844687869\n516,140,4.0,844687882\n516,145,3.0,844687413\n516,153,2.0,844687044\n516,154,4.0,844687869\n516,155,4.0,844688604\n516,161,4.0,844687099\n516,163,3.0,844687428\n516,165,4.0,844687044\n516,168,3.0,844687300\n516,173,3.0,844687253\n516,177,3.0,844687658\n516,185,3.0,844687099\n516,186,3.0,844687300\n516,188,3.0,844687918\n516,191,3.0,844687844\n516,193,3.0,844687340\n516,195,3.0,844687694\n516,196,4.0,844687287\n516,203,4.0,844687413\n516,204,3.0,844687274\n516,218,4.0,844687485\n516,225,4.0,844687168\n516,230,5.0,844687401\n516,231,3.0,844687067\n516,232,4.0,844687524\n516,236,3.0,844687253\n516,237,3.0,844687379\n516,247,3.0,844687703\n516,249,3.0,844687625\n516,251,3.0,844687985\n516,253,4.0,844687118\n516,256,3.0,844687300\n516,266,3.0,844687197\n516,267,3.0,844687524\n516,273,3.0,844687379\n516,278,3.0,844687769\n516,292,4.0,844687099\n516,293,4.0,844687274\n516,296,5.0,844687015\n516,303,3.0,844687466\n516,305,3.0,844687606\n516,315,3.0,844687253\n516,316,3.0,844687085\n516,317,3.0,844687197\n516,318,5.0,844687085\n516,319,3.0,844687625\n516,326,4.0,844688688\n516,329,3.0,844687067\n516,337,5.0,844687252\n516,338,3.0,844687606\n516,339,3.0,844687099\n516,344,4.0,844687044\n516,349,4.0,844687067\n516,353,4.0,844687315\n516,356,4.0,844687085\n516,357,4.0,844687197\n516,360,3.0,844687882\n516,364,3.0,844687137\n516,365,3.0,844687754\n516,370,3.0,844687340\n516,374,3.0,844687509\n516,377,3.0,844687137\n516,380,3.0,844687015\n516,382,4.0,844687677\n516,384,3.0,844688745\n516,420,3.0,844687182\n516,432,3.0,844687238\n516,433,3.0,844687799\n516,442,3.0,844687264\n516,446,4.0,844687853\n516,455,3.0,844687456\n516,460,3.0,844687769\n516,464,3.0,844687669\n516,466,3.0,844687401\n516,468,3.0,844687428\n516,474,3.0,844687264\n516,480,3.0,844687085\n516,485,3.0,844687340\n516,494,4.0,844687625\n516,508,5.0,844687287\n516,521,3.0,844687895\n516,527,5.0,844687182\n516,529,3.0,844687496\n516,539,4.0,844687182\n516,543,3.0,844687456\n516,548,3.0,844687658\n516,552,3.0,844687413\n516,555,3.0,844687365\n516,586,3.0,844687167\n516,587,4.0,844687152\n516,588,3.0,844687044\n516,589,4.0,844687137\n516,590,4.0,844687015\n516,592,3.0,844687015\n516,593,5.0,844687044\n516,595,4.0,844687067\n516,597,4.0,844687167\n516,640,4.0,844688598\n516,648,3.0,844687315\n516,733,3.0,844687428\n516,736,5.0,844687300\n516,741,4.0,844688776\n516,786,4.0,844687536\n516,836,3.0,844688797\n516,852,4.0,844688797\n516,861,3.0,844688640\n516,1036,3.0,844687669\n516,1037,3.0,844688724\n516,1064,3.0,844688348\n516,1079,5.0,844688598\n516,1088,3.0,844688144\n516,1090,4.0,844688176\n516,1092,3.0,844688162\n516,1094,3.0,844688222\n516,1097,4.0,844687965\n516,1100,3.0,844688234\n516,1101,4.0,844687985\n516,1105,3.0,844688529\n516,1124,4.0,844688451\n516,1129,3.0,844688430\n516,1130,3.0,844688476\n517,2,5.0,846450065\n517,11,5.0,846450066\n517,17,5.0,846450097\n517,19,3.0,846450012\n517,39,4.0,846450026\n517,47,5.0,846449972\n517,95,4.0,846450097\n517,110,5.0,846449954\n517,153,3.0,846449875\n517,160,1.0,846450043\n517,165,4.0,846449875\n517,173,4.0,846450065\n517,185,5.0,846449928\n517,186,5.0,846450111\n517,208,5.0,846449929\n517,231,3.0,846449893\n517,236,5.0,846450097\n517,253,4.0,846449954\n517,266,5.0,846450043\n517,316,4.0,846449892\n517,317,5.0,846450043\n517,329,3.0,846449893\n517,344,4.0,846449875\n517,356,5.0,846449907\n517,357,5.0,846450026\n517,367,4.0,846449972\n517,377,5.0,846449972\n517,380,4.0,846449856\n517,420,4.0,846450026\n517,432,3.0,846450065\n517,434,5.0,846449907\n517,480,4.0,846449907\n517,500,5.0,846449990\n517,527,5.0,846450026\n517,539,4.0,846450011\n517,587,5.0,846449990\n517,588,5.0,846449875\n517,589,4.0,846449954\n517,590,5.0,846449856\n517,592,3.0,846449856\n517,595,5.0,846449893\n517,597,4.0,846449990\n518,1,5.0,945369114\n518,2,4.0,945362514\n518,4,1.0,945365209\n518,5,3.0,945364959\n518,7,3.0,945361906\n518,9,4.0,945369995\n518,11,5.0,945362876\n518,13,5.0,945369411\n518,17,5.0,945362632\n518,19,3.0,945365345\n518,21,1.0,945363877\n518,22,4.0,945367938\n518,24,3.0,945445633\n518,34,5.0,945363618\n518,39,4.0,945362876\n518,47,5.0,945367593\n518,48,1.0,945362044\n518,54,4.0,945364826\n518,64,2.0,945363167\n518,65,3.0,945365606\n518,74,3.0,945362943\n518,87,3.0,945369382\n518,88,3.0,945365379\n518,89,3.0,945368183\n518,95,4.0,945370057\n518,102,3.0,945365111\n518,104,4.0,945364980\n518,122,3.0,945362083\n518,126,3.0,945362544\n518,141,4.0,945364027\n518,153,3.0,945365209\n518,158,4.0,945369320\n518,160,3.0,945369995\n518,165,3.0,945369740\n518,169,4.0,945369439\n518,172,3.0,945368237\n518,173,1.0,945443639\n518,181,2.0,945369411\n518,186,2.0,945364758\n518,195,3.0,945363018\n518,196,3.0,945367039\n518,203,4.0,945364027\n518,207,3.0,945363127\n518,216,3.0,945365164\n518,218,3.0,945363973\n518,222,5.0,945362897\n518,223,5.0,945363835\n518,224,2.0,945361616\n518,225,4.0,945368427\n518,230,5.0,945367613\n518,231,1.0,945365298\n518,234,3.0,945364980\n518,236,3.0,945361957\n518,237,3.0,945362022\n518,239,4.0,945362108\n518,248,3.0,945365164\n518,250,3.0,945365606\n518,252,5.0,945362943\n518,253,5.0,945366856\n518,260,5.0,945362431\n518,265,4.0,945362762\n518,266,2.0,945361428\n518,270,4.0,945361865\n518,273,5.0,945367039\n518,275,3.0,945365229\n518,276,3.0,945362108\n518,282,4.0,945445877\n518,288,4.0,945367967\n518,289,4.0,945361957\n518,292,4.0,945369740\n518,296,5.0,945443754\n518,316,4.0,945369721\n518,317,4.0,945362480\n518,318,5.0,945444158\n518,329,3.0,945369691\n518,337,5.0,945445542\n518,339,5.0,945361690\n518,342,4.0,945361653\n518,344,4.0,945365209\n518,345,4.0,945363852\n518,351,3.0,945362044\n518,353,3.0,945367806\n518,355,1.0,945365250\n518,356,5.0,945361653\n518,360,3.0,945365440\n518,361,4.0,945361906\n518,362,5.0,945362996\n518,364,4.0,945369114\n518,367,4.0,945362455\n518,368,4.0,945364045\n518,372,4.0,945365275\n518,374,3.0,945369382\n518,377,4.0,945362827\n518,378,3.0,945362022\n518,379,3.0,945369721\n518,380,3.0,945361813\n518,381,3.0,945445750\n518,410,3.0,945364902\n518,414,3.0,945364703\n518,415,4.0,945365467\n518,420,3.0,945365135\n518,432,3.0,945365209\n518,434,4.0,945369889\n518,435,1.0,945365044\n518,440,3.0,945362783\n518,441,1.0,945364098\n518,442,3.0,945369663\n518,448,3.0,945445004\n518,450,4.0,945364886\n518,451,1.0,945362022\n518,453,2.0,945365087\n518,455,4.0,945369348\n518,457,5.0,945367538\n518,464,2.0,945443861\n518,466,1.0,945365087\n518,480,5.0,945369663\n518,481,4.0,945445666\n518,485,3.0,945365044\n518,487,3.0,945364863\n518,494,4.0,945367833\n518,498,3.0,945361979\n518,500,4.0,945364061\n518,502,3.0,945369348\n518,508,5.0,945445429\n518,509,1.0,945362876\n518,516,3.0,945364886\n518,518,2.0,945365024\n518,519,2.0,945369025\n518,520,3.0,945365298\n518,529,4.0,945444238\n518,532,3.0,945366895\n518,539,5.0,945361616\n518,542,3.0,945365467\n518,546,1.0,945370191\n518,550,2.0,945361865\n518,551,2.0,945362232\n518,552,4.0,945369783\n518,555,4.0,945361202\n518,558,3.0,945362557\n518,564,3.0,945365440\n518,575,5.0,945369271\n518,585,3.0,945364758\n518,586,5.0,945364758\n518,587,4.0,945361841\n518,588,4.0,945362206\n518,589,4.0,945369564\n518,590,2.0,945443476\n518,592,3.0,945369756\n518,593,5.0,945367407\n518,594,4.0,945362183\n518,595,5.0,945362262\n518,596,4.0,945369114\n518,597,4.0,945361386\n518,605,4.0,945363057\n518,608,5.0,945367520\n518,612,2.0,945365209\n518,616,4.0,945369201\n518,628,4.0,945367631\n518,648,4.0,945369847\n518,653,4.0,945362480\n518,661,4.0,945362294\n518,663,5.0,945365379\n518,673,5.0,945362544\n518,691,3.0,945362108\n518,708,5.0,945362920\n518,709,5.0,945369218\n518,711,4.0,945369411\n518,719,2.0,945365164\n518,733,5.0,945367708\n518,736,4.0,945362996\n518,742,5.0,945367147\n518,762,1.0,945365024\n518,780,5.0,945369663\n518,783,4.0,945369295\n518,786,3.0,945368237\n518,788,4.0,945362022\n518,798,4.0,945367906\n518,799,3.0,945363922\n518,801,3.0,945363852\n518,802,5.0,945361906\n518,805,5.0,945445645\n518,828,4.0,945369320\n518,829,1.0,945362365\n518,830,4.0,945364781\n518,832,3.0,945367875\n518,836,4.0,945369954\n518,837,3.0,945369146\n518,840,3.0,945365323\n518,858,3.0,945369539\n518,885,2.0,945362514\n518,899,5.0,945362183\n518,900,4.0,945362232\n518,902,3.0,945362632\n518,912,3.0,945362586\n518,914,4.0,945362739\n518,919,4.0,945362183\n518,920,4.0,945362805\n518,924,3.0,945444284\n518,932,4.0,945362943\n518,953,5.0,945444939\n518,986,4.0,945369146\n518,998,4.0,945443861\n518,1005,3.0,945365298\n518,1009,3.0,945362514\n518,1010,2.0,945364826\n518,1012,4.0,945369201\n518,1013,5.0,945369295\n518,1014,5.0,945364863\n518,1016,2.0,945364703\n518,1017,4.0,945443569\n518,1020,4.0,945365135\n518,1021,3.0,945364997\n518,1022,5.0,945362262\n518,1025,4.0,945369243\n518,1028,5.0,945362232\n518,1029,4.0,945369243\n518,1030,3.0,945362365\n518,1032,4.0,945362294\n518,1033,4.0,945369271\n518,1035,5.0,945362232\n518,1036,3.0,945367428\n518,1037,3.0,945368494\n518,1042,3.0,945363722\n518,1049,3.0,945369691\n518,1061,5.0,945443806\n518,1064,4.0,945364758\n518,1073,5.0,945362431\n518,1081,5.0,945362262\n518,1088,4.0,945362333\n518,1090,5.0,945445004\n518,1091,2.0,945364937\n518,1093,3.0,945362317\n518,1094,3.0,945361166\n518,1096,3.0,945445702\n518,1097,5.0,945362431\n518,1101,3.0,945363018\n518,1113,3.0,945363898\n518,1124,3.0,945445903\n518,1125,1.0,945363877\n518,1127,4.0,945367631\n518,1129,3.0,945369740\n518,1135,4.0,945364118\n518,1136,4.0,945363582\n518,1186,4.0,945445681\n518,1191,2.0,945444059\n518,1193,3.0,945444158\n518,1194,3.0,945363922\n518,1196,5.0,945362612\n518,1197,5.0,945360964\n518,1198,5.0,945369539\n518,1200,4.0,945369564\n518,1201,5.0,945369663\n518,1210,5.0,945362762\n518,1214,4.0,945366654\n518,1215,4.0,945366714\n518,1219,3.0,945366628\n518,1220,4.0,945362317\n518,1221,3.0,945369539\n518,1222,4.0,945369635\n518,1225,4.0,945444158\n518,1234,3.0,945363564\n518,1235,4.0,945363688\n518,1240,4.0,945367428\n518,1242,5.0,945369564\n518,1247,3.0,945362632\n518,1258,3.0,945366714\n518,1259,5.0,945363635\n518,1261,4.0,945363973\n518,1265,3.0,945361143\n518,1268,4.0,945445666\n518,1270,4.0,945363688\n518,1271,5.0,945445597\n518,1275,5.0,945369721\n518,1278,3.0,945363582\n518,1282,3.0,945362232\n518,1285,4.0,945363835\n518,1286,4.0,945363184\n518,1290,4.0,945363167\n518,1291,5.0,945369608\n518,1297,4.0,945364141\n518,1302,5.0,945445004\n518,1307,5.0,945362612\n518,1321,3.0,945366654\n518,1330,4.0,945364920\n518,1331,3.0,945366945\n518,1333,5.0,945366654\n518,1334,3.0,945366895\n518,1339,3.0,945361616\n518,1342,2.0,945366967\n518,1343,3.0,945367938\n518,1344,3.0,945367520\n518,1345,4.0,945366714\n518,1346,4.0,945366994\n518,1347,4.0,945366812\n518,1350,4.0,945366856\n518,1353,3.0,945362022\n518,1359,3.0,945365275\n518,1366,4.0,945445877\n518,1367,5.0,945369295\n518,1370,3.0,945367986\n518,1371,3.0,945370014\n518,1372,4.0,945369869\n518,1373,3.0,945370127\n518,1374,4.0,945369663\n518,1375,2.0,945369869\n518,1376,4.0,945369691\n518,1377,3.0,945369954\n518,1378,4.0,945364920\n518,1379,3.0,945365229\n518,1380,5.0,945362294\n518,1381,4.0,945362389\n518,1387,3.0,945366628\n518,1391,1.0,945365044\n518,1393,5.0,945361249\n518,1394,5.0,945363835\n518,1407,3.0,945366856\n518,1409,3.0,945361690\n518,1425,3.0,945364002\n518,1431,4.0,945370127\n518,1432,4.0,945370095\n518,1433,3.0,945367279\n518,1440,3.0,945364002\n518,1441,3.0,945361616\n518,1453,3.0,945362083\n518,1457,4.0,945362044\n518,1459,5.0,945368427\n518,1460,4.0,945365440\n518,1473,3.0,945363635\n518,1474,2.0,945364118\n518,1479,3.0,945361935\n518,1485,4.0,945364703\n518,1487,3.0,945362334\n518,1488,4.0,945369995\n518,1489,3.0,945362389\n518,1500,4.0,945363689\n518,1513,4.0,945363973\n518,1515,4.0,945368494\n518,1517,4.0,945363948\n518,1525,1.0,945362544\n518,1526,3.0,945365164\n518,1541,4.0,945361935\n518,1544,4.0,945368544\n518,1552,4.0,945368494\n518,1562,3.0,945370127\n518,1566,5.0,945362365\n518,1569,2.0,945361813\n518,1573,4.0,945367967\n518,1580,5.0,945363689\n518,1584,4.0,945360989\n518,1586,4.0,945369721\n518,1587,4.0,945369907\n518,1588,5.0,945363835\n518,1592,4.0,945365275\n518,1593,3.0,945362108\n518,1595,4.0,945369439\n518,1597,3.0,945361865\n518,1605,5.0,945443696\n518,1606,3.0,945370171\n518,1608,4.0,945367833\n518,1614,3.0,945363877\n518,1620,4.0,945367806\n518,1629,4.0,945363127\n518,1639,4.0,945361249\n518,1641,4.0,945363651\n518,1646,3.0,945365298\n518,1647,2.0,945368237\n518,1653,4.0,945367875\n518,1661,3.0,945367906\n518,1663,3.0,945363835\n518,1672,4.0,945445778\n518,1674,4.0,945362783\n518,1682,4.0,945445542\n518,1688,4.0,945362317\n518,1689,3.0,945364843\n518,1693,5.0,945445903\n518,1702,3.0,945362544\n518,1707,4.0,945369452\n518,1713,3.0,945364141\n518,1721,1.0,945361841\n518,1732,2.0,945363786\n518,1747,4.0,945363922\n518,1760,1.0,945362389\n518,1772,4.0,945362389\n518,1777,5.0,945361720\n518,1779,3.0,945368459\n518,1784,5.0,945363705\n518,1792,4.0,945368713\n518,1799,3.0,945443806\n518,1801,5.0,945363167\n518,1805,4.0,945368041\n518,1812,3.0,945365323\n518,1821,4.0,945362920\n518,1831,3.0,945368615\n518,1835,5.0,945363040\n518,1839,2.0,945365044\n518,1845,4.0,945367806\n518,1854,4.0,945362124\n518,1855,3.0,945365111\n518,1874,3.0,945361884\n518,1876,4.0,945369907\n518,1881,4.0,945362544\n518,1885,4.0,945445028\n518,1888,4.0,945361979\n518,1894,3.0,945362083\n518,1902,1.0,945361143\n518,1907,5.0,945369169\n518,1911,4.0,945364781\n518,1917,5.0,945368615\n518,1919,4.0,945369146\n518,1947,4.0,945362206\n518,1954,4.0,945369635\n518,1955,4.0,945445569\n518,1957,3.0,945444971\n518,1958,5.0,945364758\n518,1959,2.0,945362827\n518,1960,5.0,945445751\n518,1961,5.0,945445409\n518,1962,3.0,945445554\n518,1967,4.0,945362480\n518,1968,5.0,945363806\n518,1969,3.0,945367170\n518,1991,3.0,945366994\n518,1994,4.0,945366812\n518,1995,3.0,945367187\n518,1997,4.0,945366654\n518,2000,4.0,945363898\n518,2001,3.0,945364002\n518,2002,3.0,945364997\n518,2003,4.0,945364781\n518,2005,5.0,945362514\n518,2006,4.0,945361386\n518,2011,3.0,945364806\n518,2012,3.0,945364886\n518,2014,3.0,945369146\n518,2018,3.0,945369114\n518,2020,5.0,945362762\n518,2021,4.0,945362514\n518,2022,5.0,945445932\n518,2028,4.0,945360989\n518,2036,3.0,945369439\n518,2042,3.0,945365024\n518,2044,2.0,945365379\n518,2045,4.0,945369201\n518,2046,4.0,945369114\n518,2050,2.0,945365275\n518,2052,2.0,945364098\n518,2053,3.0,945365323\n518,2054,4.0,945362480\n518,2059,4.0,945369243\n518,2072,2.0,945365467\n518,2076,3.0,945444896\n518,2078,4.0,945362183\n518,2080,3.0,945362206\n518,2081,5.0,945362294\n518,2082,4.0,945364758\n518,2083,3.0,945362294\n518,2085,4.0,945369243\n518,2087,4.0,945362206\n518,2088,3.0,945362365\n518,2089,3.0,945369169\n518,2090,5.0,945369243\n518,2092,2.0,945362365\n518,2094,4.0,945369971\n518,2095,1.0,945365064\n518,2096,5.0,945362294\n518,2097,5.0,945366945\n518,2100,4.0,945362455\n518,2105,3.0,945362480\n518,2108,1.0,945361230\n518,2109,3.0,945364141\n518,2113,3.0,945367147\n518,2114,3.0,945445612\n518,2115,3.0,945369907\n518,2118,5.0,945366654\n518,2119,3.0,945367279\n518,2120,4.0,945366895\n518,2121,5.0,945367147\n518,2122,4.0,945367170\n518,2123,2.0,945369411\n518,2124,4.0,945364781\n518,2125,5.0,945361230\n518,2126,3.0,945368562\n518,2133,4.0,945443494\n518,2134,4.0,945364806\n518,2139,4.0,945369201\n518,2140,3.0,945362514\n518,2141,4.0,945369271\n518,2143,5.0,945362544\n518,2144,5.0,945363973\n518,2145,4.0,945364758\n518,2146,3.0,945363127\n518,2154,3.0,945361979\n518,2160,3.0,945366812\n518,2161,4.0,945360989\n518,2162,3.0,945362514\n518,2168,3.0,945361120\n518,2174,4.0,945362455\n518,2193,5.0,945362480\n518,2194,5.0,945369586\n518,2240,3.0,945445778\n518,2241,2.0,945365250\n518,2243,4.0,945362805\n518,2244,3.0,945365440\n518,2245,3.0,945364027\n518,2247,3.0,945364806\n518,2248,5.0,945362783\n518,2250,3.0,945445845\n518,2253,3.0,945362514\n518,2259,3.0,945363167\n518,2261,4.0,945365467\n518,2262,3.0,945363101\n518,2263,5.0,945368183\n518,2265,3.0,945365606\n518,2266,3.0,945362063\n518,2268,5.0,945443754\n518,2273,4.0,945360989\n518,2291,5.0,945445597\n518,2292,4.0,945362108\n518,2294,3.0,945369146\n518,2296,3.0,945365549\n518,2301,3.0,945364703\n518,2302,3.0,945363768\n518,2310,5.0,945444137\n518,2316,3.0,945363127\n518,2327,3.0,945367064\n518,2331,2.0,945362920\n518,2333,4.0,945444939\n518,2335,5.0,945364980\n518,2340,3.0,945361865\n518,2345,4.0,945445448\n518,2346,3.0,945368459\n518,2354,4.0,945365229\n518,2355,5.0,945363599\n518,2366,3.0,945369564\n518,2367,3.0,945443656\n518,2369,4.0,945363077\n518,2373,3.0,945370171\n518,2375,4.0,945365323\n518,2376,4.0,945369921\n518,2378,3.0,945364980\n518,2379,2.0,945365519\n518,2380,2.0,945365573\n518,2381,2.0,945365606\n518,2382,2.0,945365606\n518,2383,2.0,945365606\n518,2385,1.0,945361935\n518,2394,4.0,945362317\n518,2396,5.0,945361120\n518,2398,4.0,945445045\n518,2402,3.0,945370149\n518,2403,3.0,945369954\n518,2405,4.0,945363101\n518,2406,5.0,945362971\n518,2407,4.0,945364045\n518,2408,3.0,945365183\n518,2409,3.0,945369954\n518,2410,3.0,945370057\n518,2411,3.0,945370149\n518,2412,3.0,945370149\n518,2416,3.0,945364098\n518,2418,3.0,945364826\n518,2420,4.0,945445735\n518,2421,3.0,945370057\n518,2422,2.0,945370214\n518,2423,3.0,945365111\n518,2424,5.0,945361935\n518,2429,4.0,945369271\n518,2430,4.0,945369201\n518,2431,5.0,945365164\n518,2432,5.0,945445932\n518,2450,2.0,945369439\n518,2453,3.0,945362455\n518,2455,4.0,945366812\n518,2456,3.0,945366994\n518,2457,4.0,945364719\n518,2458,3.0,945365379\n518,2459,1.0,945367064\n518,2463,5.0,945364863\n518,2464,3.0,945367258\n518,2468,4.0,945363202\n518,2469,3.0,945363040\n518,2470,4.0,945443529\n518,2471,3.0,945365183\n518,2473,3.0,945365298\n518,2478,4.0,945365111\n518,2485,3.0,945363040\n518,2490,4.0,945368183\n518,2496,4.0,945362943\n518,2504,3.0,945365323\n518,2506,4.0,945361813\n518,2513,3.0,945366895\n518,2514,2.0,945367229\n518,2517,4.0,945366832\n518,2518,4.0,945363973\n518,2529,5.0,945369586\n518,2558,2.0,945362971\n518,2559,3.0,945369348\n518,2565,3.0,945362262\n518,2566,3.0,945369439\n518,2567,4.0,945363898\n518,2572,4.0,945361720\n518,2574,3.0,945365345\n518,2580,3.0,945443773\n518,2581,5.0,945361690\n518,2613,4.0,945366895\n518,2615,4.0,945443696\n518,2616,1.0,945369889\n518,2617,4.0,945366967\n518,2622,5.0,945362431\n518,2628,5.0,945362514\n518,2629,3.0,945362063\n518,2640,4.0,945369608\n518,2641,3.0,945369971\n518,2642,3.0,945370149\n518,2643,2.0,945370191\n518,2657,2.0,945362317\n518,2668,3.0,945367229\n518,2671,5.0,945361428\n518,2687,5.0,945369146\n518,2694,5.0,945365135\n518,2699,3.0,945364844\n518,2701,3.0,945370171\n518,2709,4.0,945364781\n518,2713,4.0,945367064\n518,2716,4.0,945363806\n518,2717,3.0,945365275\n518,2718,3.0,945363668\n518,2720,4.0,945365519\n518,2722,4.0,945368401\n518,2723,4.0,945365087\n518,2724,5.0,945362022\n518,2733,2.0,945364061\n518,2735,3.0,945369847\n518,2736,4.0,945364027\n518,2739,5.0,945445805\n518,2746,5.0,945362334\n518,2751,4.0,945365064\n518,2752,5.0,945365345\n518,2761,5.0,945369114\n518,2786,2.0,945365467\n518,2787,4.0,945366856\n518,2791,2.0,945363618\n518,2794,2.0,945365401\n518,2796,2.0,945365519\n518,2797,5.0,945362431\n518,2798,3.0,945365573\n518,2802,4.0,945363101\n518,2803,3.0,945367967\n518,2804,5.0,945363564\n518,2805,4.0,945362063\n518,2808,3.0,945370127\n518,2815,3.0,945370035\n518,2816,2.0,945370214\n518,2822,4.0,945362022\n518,2828,3.0,945369439\n518,2857,3.0,945362262\n518,2860,4.0,945365209\n518,2861,4.0,945445823\n518,2863,3.0,945362183\n518,2872,4.0,945362848\n518,2875,4.0,945362044\n518,2881,4.0,945368729\n518,2898,3.0,945367094\n518,2900,3.0,945367147\n518,2915,3.0,945363877\n518,2916,4.0,945367669\n518,2917,3.0,945443773\n518,2918,5.0,945363737\n518,2926,4.0,945363948\n518,2941,3.0,945362317\n518,2942,3.0,945363167\n518,2950,2.0,945360964\n518,2951,4.0,945369847\n518,2953,4.0,945365379\n518,2956,3.0,945368459\n518,2968,4.0,945362455\n518,2978,5.0,945365440\n518,2985,4.0,945369721\n518,2986,3.0,945370096\n518,2987,5.0,945369483\n518,2990,3.0,945369847\n518,3004,4.0,945363184\n518,3016,4.0,945366895\n518,3017,4.0,945367039\n518,3029,3.0,945370077\n518,3034,4.0,945369114\n518,3039,4.0,945363835\n518,3040,3.0,945364002\n518,3042,3.0,945365627\n518,3048,3.0,945365627\n518,3063,3.0,945369006\n518,3070,4.0,945363806\n518,3071,5.0,945445845\n518,3072,2.0,945363835\n518,3081,4.0,945362897\n518,3100,3.0,945445409\n518,3101,4.0,945368160\n518,3102,4.0,945367520\n518,3103,3.0,945363127\n518,3104,5.0,945363668\n518,3105,4.0,945445449\n518,3107,5.0,945369756\n518,3108,3.0,945361230\n518,3112,5.0,945445429\n518,3114,5.0,945363517\n518,3130,2.0,945365519\n518,3147,5.0,945367428\n519,50,4.0,1468758676\n519,104,4.0,1469927080\n519,111,4.0,1468758621\n519,216,4.0,1469927082\n519,223,4.5,1468759080\n519,235,4.0,1468758651\n519,260,5.0,1468928013\n519,288,4.5,1468927376\n519,296,4.5,1468927377\n519,318,4.5,1468759064\n519,333,4.0,1469927097\n519,356,4.0,1469181841\n519,441,4.5,1471683093\n519,527,2.0,1469182009\n519,589,4.5,1468759092\n519,593,4.0,1468758652\n519,608,4.0,1468758645\n519,750,4.0,1468758656\n519,858,4.5,1468759032\n519,923,4.5,1468759098\n519,924,5.0,1468927451\n519,1036,4.5,1468759090\n519,1078,4.5,1471685055\n519,1080,5.0,1468759663\n519,1089,5.0,1468927109\n519,1136,4.5,1469182184\n519,1193,4.5,1468759113\n519,1194,5.0,1471150616\n519,1199,5.0,1471150612\n519,1201,4.5,1468927525\n519,1203,5.0,1468927483\n519,1206,5.0,1468758399\n519,1213,5.0,1471150621\n519,1219,3.5,1469181965\n519,1220,4.5,1468927253\n519,1222,4.5,1468758988\n519,1228,4.5,1468758999\n519,1230,4.5,1471685031\n519,1240,4.5,1468758883\n519,1244,4.5,1471685039\n519,1251,5.0,1467009776\n519,1258,4.5,1468758859\n519,1259,4.0,1468758676\n519,1261,4.5,1468927239\n519,1270,5.0,1468927433\n519,1278,4.0,1473235397\n519,1380,4.0,1468926782\n519,1517,4.0,1469927071\n519,1704,4.0,1468767273\n519,1732,5.0,1463339036\n519,1753,4.5,1469926965\n519,1954,5.0,1466851007\n519,2019,5.0,1466850987\n519,2174,4.0,1468758662\n519,2324,5.0,1463338874\n519,2363,4.0,1468927863\n519,2395,4.5,1468927281\n519,2502,4.5,1469927131\n519,2700,4.5,1468758759\n519,2716,4.5,1468927255\n519,2791,4.5,1468758753\n519,2857,5.0,1463338907\n519,2959,5.0,1463338913\n519,2973,5.0,1471685051\n519,3033,4.0,1468760056\n519,3253,4.0,1469927063\n519,3307,5.0,1463338910\n519,3424,3.5,1469182044\n519,3481,4.0,1469366330\n519,3535,5.0,1468758557\n519,3552,3.5,1469927092\n519,3608,4.0,1469927088\n519,3671,4.5,1469927119\n519,3897,4.0,1468758687\n519,4002,5.0,1466850909\n519,4571,4.5,1469927116\n519,4973,5.0,1463338876\n519,4979,4.5,1468927277\n519,4993,4.5,1468927285\n519,5101,5.0,1471685742\n519,5618,5.0,1466950342\n519,5669,4.5,1470072626\n519,5673,4.0,1468758689\n519,5686,4.0,1468758644\n519,5772,5.0,1466960457\n519,6001,4.0,1468758647\n519,6122,5.0,1471685732\n519,6433,4.0,1468758653\n519,6669,5.0,1474422697\n519,6711,5.0,1463338905\n519,6807,3.5,1469182179\n519,6874,4.5,1468927126\n519,6993,4.5,1471685043\n519,7022,5.0,1468755425\n519,7302,5.0,1463338941\n519,7361,4.5,1468758956\n519,7438,4.5,1468927125\n519,7451,4.5,1469927147\n519,8464,2.0,1469182047\n519,8807,4.5,1469927006\n519,8874,4.5,1468758890\n519,8917,4.5,1469927142\n519,26326,5.0,1463339081\n519,27773,5.0,1469190254\n519,30810,4.0,1468758580\n519,32587,5.0,1463338951\n519,35836,4.5,1469927155\n519,38061,3.5,1469181970\n519,42163,5.0,1471685735\n519,44195,3.0,1469181973\n519,46578,4.0,1469960428\n519,48385,4.5,1468758840\n519,50872,3.5,1469182067\n519,51255,4.0,1469927049\n519,54503,5.0,1463338939\n519,61024,4.0,1469926999\n519,61132,4.5,1468758835\n519,67997,4.0,1469619273\n519,68157,4.5,1468928143\n519,71535,4.0,1469927060\n519,71899,5.0,1463338920\n519,72171,4.5,1468758767\n519,72226,3.5,1469927055\n519,78836,5.0,1469269706\n519,79702,4.0,1468758681\n519,86377,5.0,1470072674\n519,86882,4.5,1471685075\n519,89745,3.0,1469182070\n519,89904,5.0,1469177091\n519,97306,4.0,1468758625\n519,97913,4.0,1468758622\n519,99114,4.5,1468928138\n519,99764,5.0,1463339075\n519,102217,5.0,1470072722\n519,102800,4.5,1468758783\n519,103341,4.0,1469927078\n519,105844,4.0,1469190294\n519,106766,4.0,1468758602\n519,106916,3.0,1469182006\n519,106920,5.0,1463338931\n519,108932,4.0,1468758603\n519,109374,5.0,1463338935\n519,112183,4.0,1468758604\n519,115569,4.0,1468758598\n519,118890,5.0,1470072711\n519,120805,5.0,1471685805\n519,122882,3.0,1469181999\n519,122886,4.0,1468758679\n519,122904,4.0,1469927090\n519,127202,4.0,1469960406\n519,128360,4.5,1468928141\n519,128846,5.0,1470075328\n519,129514,5.0,1471686733\n519,130970,5.0,1471686745\n519,134130,4.5,1470041802\n519,134853,3.5,1469181951\n519,136445,5.0,1471686897\n519,136447,5.0,1471686728\n519,140265,5.0,1471686899\n519,140715,4.5,1469366290\n520,1,3.0,1142028487\n520,32,4.5,1142024573\n520,47,5.0,1142025848\n520,48,2.0,1142024211\n520,50,5.0,1142025871\n520,70,1.5,1142444254\n520,111,5.0,1142024764\n520,157,2.0,1143503629\n520,163,3.0,1142024149\n520,231,4.0,1142028927\n520,236,2.0,1142024187\n520,260,5.0,1142025781\n520,292,2.5,1142029728\n520,296,4.0,1142025901\n520,318,5.0,1142025816\n520,457,3.5,1146596079\n520,466,1.5,1142024182\n520,475,3.5,1142024826\n520,480,4.0,1143504870\n520,500,3.0,1142028932\n520,520,2.0,1142024215\n520,527,5.0,1142026274\n520,539,3.0,1143503593\n520,588,4.0,1142028522\n520,593,4.5,1142029975\n520,595,4.5,1142028512\n520,648,3.5,1142028862\n520,733,3.0,1143503503\n520,750,4.5,1142024717\n520,780,2.5,1143503541\n520,858,5.0,1142024599\n520,912,5.0,1142024691\n520,1047,2.0,1143503160\n520,1060,4.0,1142028071\n520,1089,4.0,1142026006\n520,1090,5.0,1142024644\n520,1093,2.5,1143503165\n520,1095,4.5,1142024770\n520,1097,3.5,1143504862\n520,1193,4.5,1142024649\n520,1196,5.0,1142025802\n520,1198,4.0,1142025770\n520,1200,4.0,1146596136\n520,1208,5.0,1142024737\n520,1210,4.0,1142025807\n520,1213,4.0,1142024621\n520,1214,4.0,1143503355\n520,1221,5.0,1142024635\n520,1234,5.0,1142024219\n520,1247,4.0,1142024742\n520,1252,5.0,1142024165\n520,1278,3.5,1142024141\n520,1291,3.0,1142028147\n520,1358,3.5,1142024143\n520,1387,3.0,1143504859\n520,1393,3.5,1142029737\n520,1396,3.0,1142029543\n520,1544,1.5,1143504879\n520,1573,1.5,1143503521\n520,1617,4.5,1142024594\n520,1627,1.5,1143503607\n520,1639,3.5,1142024238\n520,1653,3.5,1142027500\n520,1676,2.5,1143503613\n520,1682,4.0,1143503430\n520,1704,4.0,1142029963\n520,1784,3.5,1142029744\n520,1912,3.5,1142444277\n520,1917,1.0,1143503533\n520,1953,4.0,1142024746\n520,1961,4.5,1142029957\n520,2028,4.0,1143504852\n520,2067,4.5,1142024843\n520,2115,3.5,1143504864\n520,2194,4.0,1142024171\n520,2268,4.0,1142029949\n520,2297,2.5,1142029732\n520,2321,3.0,1142028079\n520,2329,4.5,1142025857\n520,2353,2.0,1142024207\n520,2355,3.5,1142028499\n520,2389,2.0,1143503633\n520,2571,5.0,1142029984\n520,2692,3.5,1142024217\n520,2696,4.0,1142028573\n520,2762,3.5,1142029970\n520,2791,3.0,1142029528\n520,2858,4.5,1142025879\n520,2959,4.5,1142025834\n520,3300,3.5,1143503584\n520,3301,3.0,1143503589\n520,3316,0.5,1142028916\n520,3317,4.0,1142444501\n520,3566,2.5,1143503154\n520,3578,4.5,1146596105\n520,3593,0.5,1143503644\n520,3623,1.0,1142028865\n520,3753,3.0,1143503552\n520,3755,2.5,1142444264\n520,3793,3.5,1142028455\n520,3977,0.5,1142024196\n520,4011,4.0,1146596085\n520,4073,1.0,1143503216\n520,4226,4.0,1142025827\n520,4262,3.5,1146596203\n520,4306,2.0,1142028560\n520,4310,1.0,1142029723\n520,4322,3.5,1146596192\n520,4370,2.0,1143504882\n520,4499,1.0,1143503130\n520,4816,3.0,1142029694\n520,4878,3.0,1146596143\n520,4886,4.5,1142024156\n520,4896,3.5,1142025674\n520,4963,3.5,1142444249\n520,4973,5.0,1142025821\n520,4974,1.0,1142026954\n520,4993,5.0,1142025788\n520,5349,2.5,1142028105\n520,5445,3.5,1143504856\n520,5449,2.0,1142028611\n520,5816,4.5,1142025667\n520,5952,4.0,1142025797\n520,5989,4.0,1143504854\n520,6249,0.5,1142029713\n520,6333,3.0,1142028459\n520,6365,3.5,1143503333\n520,6377,3.5,1142028477\n520,6503,0.5,1142028878\n520,6539,2.5,1142028115\n520,6662,4.0,1142024631\n520,6796,4.5,1142029747\n520,6870,4.5,1142024702\n520,6934,3.0,1143503336\n520,7153,4.0,1142024607\n520,7163,1.0,1143503182\n520,7438,4.0,1146596162\n520,8360,1.5,1142028555\n520,8368,3.5,1142025662\n520,8636,3.5,1142028095\n520,8784,3.0,1143503353\n520,8961,4.0,1142024588\n520,30707,4.5,1146596088\n520,30749,4.5,1142024597\n520,32587,3.5,1146596171\n520,33166,4.5,1142024642\n520,34048,0.5,1143504893\n520,36517,3.5,1142027606\n520,36529,3.5,1142027379\n520,37733,3.0,1143503401\n520,39292,4.5,1142447926\n520,40815,4.0,1142025648\n520,41566,3.5,1142025688\n520,44191,3.5,1143502917\n521,50,4.5,1370072261\n521,236,3.5,1370072069\n521,260,4.5,1370072777\n521,318,4.5,1370072453\n521,333,3.5,1370072102\n521,376,3.5,1370072072\n521,471,3.5,1370072127\n521,527,4.5,1370072270\n521,593,4.5,1370072804\n521,608,5.0,1370072968\n521,805,3.5,1370072058\n521,852,4.0,1370072131\n521,858,5.0,1370072258\n521,904,4.5,1370072317\n521,908,4.5,1370072695\n521,1172,5.0,1370072862\n521,1196,5.0,1370072806\n521,1197,4.0,1370072817\n521,1198,4.0,1370072713\n521,1203,5.0,1370072709\n521,1207,4.5,1370072738\n521,1213,5.0,1370072787\n521,1221,5.0,1370072280\n521,1275,4.0,1370072105\n521,1282,3.5,1370072034\n521,1372,4.0,1370072123\n521,1375,3.0,1370072084\n521,1377,4.0,1370072032\n521,1597,4.0,1370072111\n521,1645,4.0,1370072091\n521,1729,4.5,1370073540\n521,1747,3.5,1370072095\n521,1876,3.0,1370072043\n521,1909,3.0,1370072048\n521,2100,3.0,1370072055\n521,2324,4.5,1370072794\n521,2329,4.5,1370072830\n521,2571,5.0,1370072763\n521,2858,5.0,1370072812\n521,2871,3.5,1370073551\n521,2959,4.0,1370072723\n521,4226,4.0,1370072767\n521,4993,4.5,1370072888\n521,7502,5.0,1370072266\n521,44555,5.0,1370072485\n521,48516,4.0,1370073507\n521,58559,4.5,1370072412\n521,66934,4.5,1370072904\n521,79132,4.0,1370072751\n522,2,2.5,1391353926\n522,19,3.5,1391351897\n522,32,3.0,1391353917\n522,47,4.0,1391350444\n522,50,3.0,1391346849\n522,110,4.0,1391350258\n522,122,2.5,1391353786\n522,165,3.0,1391353890\n522,173,3.0,1391354262\n522,193,2.0,1391346544\n522,231,3.5,1391374553\n522,293,3.0,1391350440\n522,296,4.0,1391350322\n522,344,4.0,1391374544\n522,355,2.0,1391351910\n522,356,4.0,1391350391\n522,364,2.5,1391351469\n522,367,3.0,1391353098\n522,370,3.0,1391352683\n522,420,3.0,1391352264\n522,431,3.5,1391346486\n522,442,3.5,1391354252\n522,466,3.5,1391352616\n522,485,2.5,1391351913\n522,508,3.5,1391375657\n522,527,3.0,1391346845\n522,616,2.0,1391346526\n522,673,2.5,1391351885\n522,733,3.0,1391353194\n522,762,1.5,1391351878\n522,778,3.5,1391350346\n522,784,2.5,1391374587\n522,858,4.5,1391346840\n522,1036,3.0,1391350086\n522,1059,2.0,1391375308\n522,1089,4.0,1391350213\n522,1092,1.5,1391346446\n522,1097,3.0,1391350034\n522,1101,1.5,1391354071\n522,1129,4.0,1391354179\n522,1198,4.0,1391346897\n522,1201,3.5,1391350089\n522,1206,4.0,1391350118\n522,1208,3.5,1391350069\n522,1213,4.0,1391350093\n522,1220,5.0,1391349962\n522,1221,4.5,1391346862\n522,1222,4.0,1391350128\n522,1225,3.0,1391350150\n522,1227,3.0,1391349701\n522,1240,3.5,1391350021\n522,1247,3.5,1391350027\n522,1249,3.5,1391346492\n522,1270,4.5,1391350098\n522,1273,3.5,1391350360\n522,1278,4.0,1391349956\n522,1391,2.5,1391375033\n522,1393,3.5,1391354062\n522,1408,3.5,1391353454\n522,1466,2.5,1391349980\n522,1485,2.0,1391374528\n522,1537,3.0,1391346781\n522,1556,1.5,1391346690\n522,1610,3.5,1391350065\n522,1680,3.0,1391346624\n522,1682,4.0,1391351595\n522,1721,2.5,1391375337\n522,1732,3.5,1391350152\n522,1831,2.0,1391346556\n522,1917,2.5,1391353181\n522,1923,3.0,1391374781\n522,1954,3.0,1391349739\n522,1961,4.0,1391350246\n522,1997,2.5,1391349719\n522,2028,3.0,1391350133\n522,2125,2.5,1391346674\n522,2194,3.0,1391349988\n522,2205,3.5,1391354406\n522,2324,3.5,1391350500\n522,2329,3.5,1391350381\n522,2378,3.5,1391352625\n522,2379,2.5,1391352220\n522,2396,3.0,1391350663\n522,2403,3.5,1391354227\n522,2411,4.0,1391354213\n522,2571,4.0,1391350315\n522,2706,3.0,1391353651\n522,2710,1.0,1391354281\n522,2716,4.0,1391351583\n522,2762,2.5,1391350294\n522,2959,3.5,1391346893\n522,3039,3.5,1391353767\n522,3173,4.0,1391354045\n522,3174,3.5,1391374533\n522,3178,3.5,1391346731\n522,3273,3.0,1391352150\n522,3301,3.0,1391354361\n522,3409,2.5,1391353703\n522,3421,4.0,1391349743\n522,3578,4.5,1391350163\n522,3617,3.5,1391353692\n522,3623,1.5,1391354095\n522,3752,4.0,1391374511\n522,3831,3.0,1391353853\n522,3868,4.0,1391346636\n522,3948,4.0,1391352784\n522,4019,4.0,1391346680\n522,4022,2.5,1391375639\n522,4084,3.0,1391346772\n522,4239,4.5,1391353142\n522,4262,3.0,1391349952\n522,4343,3.5,1391352096\n522,4388,2.5,1391352010\n522,4718,3.5,1391353653\n522,4816,4.5,1391352766\n522,4844,2.5,1391354377\n522,4963,4.0,1391350622\n522,4973,3.0,1391346900\n522,4974,2.5,1391352411\n522,4979,1.5,1391374735\n522,4993,4.0,1391350311\n522,4995,4.5,1391350753\n522,5220,1.5,1391352491\n522,5225,3.0,1391350682\n522,5459,3.0,1391352108\n522,5507,2.5,1391346778\n522,5523,2.5,1391353041\n522,5541,2.5,1391352961\n522,5710,2.5,1391352667\n522,5952,3.5,1391350288\n522,5956,4.0,1391353464\n522,5989,4.5,1391353485\n522,6290,2.0,1391354307\n522,6373,4.0,1391353088\n522,6377,3.0,1391351389\n522,6503,1.5,1391352089\n522,6539,3.5,1391350186\n522,6711,3.0,1391350121\n522,6763,2.0,1391374850\n522,6793,1.5,1391352161\n522,6863,4.0,1391375012\n522,6874,4.0,1391350207\n522,6888,3.0,1391352142\n522,6942,3.0,1391351283\n522,6947,2.5,1391346660\n522,7143,4.0,1391348597\n522,7173,3.5,1391370881\n522,7325,4.0,1391352939\n522,7438,4.0,1391350241\n522,8363,3.0,1391351869\n522,8528,4.0,1391352874\n522,8529,3.0,1391375788\n522,8641,2.5,1391374730\n522,8958,4.0,1391351233\n522,8961,3.0,1391350904\n522,8984,2.5,1391353587\n522,26322,3.5,1391353638\n522,26732,4.0,1391353980\n522,30707,3.0,1391351014\n522,30825,3.5,1391352851\n522,32587,4.0,1391350292\n522,33660,3.5,1391350809\n522,33794,3.5,1391350083\n522,34162,4.0,1391353001\n522,35836,3.5,1391353069\n522,36517,2.5,1391374003\n522,41285,3.5,1391353374\n522,42011,2.0,1391374592\n522,44191,4.0,1391351157\n522,44665,3.5,1391354420\n522,45447,3.0,1391353572\n522,48516,4.5,1391350073\n522,49396,3.0,1391375018\n522,49651,2.0,1391354210\n522,53322,3.5,1391353596\n522,55247,3.5,1391350610\n522,55261,1.0,1391374847\n522,56367,3.0,1391351726\n522,58156,3.5,1391352926\n522,58559,3.5,1391346879\n522,59014,2.0,1391352001\n522,59900,2.0,1391354132\n522,60950,2.5,1391353384\n522,61132,2.5,1391374803\n522,62250,3.0,1391353969\n522,63082,3.0,1391353440\n522,64614,4.0,1391350017\n522,64622,2.5,1391351297\n522,64839,4.5,1391350843\n522,64969,4.0,1391374556\n522,65130,3.0,1391375316\n522,66744,4.0,1391353957\n522,68157,4.5,1391349982\n522,68554,3.0,1391375809\n522,68954,2.5,1391350228\n522,69122,4.5,1391351265\n522,70565,4.5,1391352889\n522,71464,2.5,1391353280\n522,74458,3.5,1391349958\n522,78469,2.5,1391352910\n522,79132,3.5,1391350196\n522,79695,2.0,1391353867\n522,80463,4.0,1391350054\n522,81831,4.0,1391352742\n522,81845,3.5,1391349985\n522,81932,4.5,1391350429\n522,82459,3.5,1391353316\n522,82852,2.5,1391374855\n522,86911,3.5,1391349110\n522,87869,2.0,1391349147\n522,88405,2.5,1391349066\n522,89774,2.5,1391350136\n522,90405,4.0,1391349194\n522,91483,1.5,1391347639\n522,91500,4.0,1391347823\n522,91529,4.5,1391347695\n522,91542,3.5,1391349904\n522,91628,1.5,1391349396\n522,93287,3.5,1391375023\n522,94777,3.0,1391347979\n522,95307,2.0,1391348073\n522,95449,1.5,1391347957\n522,95720,2.5,1391348276\n522,95949,3.5,1391349197\n522,96448,3.5,1391351915\n522,97168,2.5,1391347968\n522,97304,4.5,1391347579\n522,97752,3.0,1391347665\n522,97860,2.0,1391347886\n522,97921,2.5,1391348117\n522,97923,3.0,1391347758\n522,98083,3.0,1391349234\n522,98124,4.0,1391347603\n522,98961,2.5,1391348305\n522,99112,3.0,1391348315\n522,99114,4.0,1391347713\n522,99145,3.5,1391347837\n522,99813,4.5,1391347065\n522,100498,2.0,1391347199\n522,101531,2.0,1391347365\n522,102686,3.5,1391347209\n522,103137,1.5,1391347084\n522,103235,3.0,1391347075\n522,103984,2.0,1391348374\n522,104303,1.5,1391347274\n522,104913,4.0,1391347411\n522,106100,3.5,1391370798\n522,106487,3.5,1391347240\n522,106782,5.0,1391347502\n522,106916,3.0,1391346978\n523,16,1.0,1202235294\n523,48,4.0,1202235506\n523,50,5.0,1202234760\n523,110,5.0,1202234713\n523,141,4.0,1202234912\n523,150,3.5,1202234719\n523,253,4.0,1202234890\n523,260,4.5,1202234710\n523,266,4.5,1202235266\n523,296,3.5,1202234688\n523,318,5.0,1202234699\n523,349,4.0,1202234806\n523,356,4.5,1202234691\n523,364,4.0,1202234802\n523,367,4.5,1202234835\n523,377,4.0,1202234758\n523,380,3.5,1202234733\n523,434,3.5,1202234873\n523,480,4.0,1202234698\n523,500,4.0,1202234821\n523,520,4.0,1202235479\n523,539,5.0,1202234856\n523,555,5.0,1202235485\n523,587,4.5,1202234854\n523,588,4.0,1202234753\n523,589,5.0,1202234726\n523,590,4.5,1202234722\n523,593,4.5,1202234694\n523,595,5.0,1202234793\n523,628,4.5,1202235641\n523,648,4.5,1202234773\n523,733,4.5,1202234818\n523,736,3.0,1202234799\n523,780,3.0,1202234729\n523,783,3.5,1202235691\n523,784,2.5,1202235423\n523,858,4.5,1202234811\n523,1028,4.0,1202235561\n523,1036,4.5,1202234916\n523,1092,4.0,1202235697\n523,1101,4.5,1202235207\n523,1120,3.0,1202235808\n523,1183,4.5,1202235282\n523,1196,5.0,1202234765\n523,1197,5.0,1202234866\n523,1198,5.0,1202234775\n523,1206,1.5,1202235195\n523,1210,4.5,1202234747\n523,1225,4.0,1202235215\n523,1240,4.0,1202234863\n523,1246,4.5,1202235262\n523,1258,4.0,1202235221\n523,1265,5.0,1202234892\n523,1291,5.0,1202234908\n523,1391,3.0,1202235332\n523,1407,3.5,1202235308\n523,1527,3.5,1202234975\n523,1552,4.0,1202235527\n523,1569,3.5,1202235773\n523,1573,4.0,1202235284\n523,1580,4.0,1202234845\n523,1617,5.0,1202234896\n523,1645,4.0,1202235717\n523,1682,4.0,1202235237\n523,1704,4.5,1202234971\n523,1721,5.0,1202234847\n523,1777,3.5,1202235570\n523,1876,3.5,1202235656\n523,1917,3.5,1202235170\n523,1923,4.0,1202234985\n523,2081,5.0,1202235510\n523,2115,4.0,1202235259\n523,2161,4.0,1202235811\n523,2302,2.5,1202235493\n523,2324,4.0,1202235447\n523,2329,4.5,1202235440\n523,2396,4.0,1202234951\n523,2571,4.5,1202234783\n523,2617,3.5,1202235409\n523,2628,3.5,1202234877\n523,2640,4.0,1202235356\n523,2683,4.0,1202234980\n523,2762,4.5,1202234824\n523,2791,4.0,1202235299\n523,2858,4.0,1202234778\n523,2916,4.0,1202235231\n523,2942,3.0,1202233633\n523,2985,4.0,1202235591\n523,3100,4.0,1202233570\n523,3176,4.0,1202235540\n523,3194,4.0,1202233886\n523,3481,3.5,1202235467\n523,3578,5.0,1202234939\n523,3793,4.0,1202234993\n523,3897,3.0,1202235303\n523,4006,4.5,1202233681\n523,4085,4.0,1202235780\n523,4568,4.0,1202234465\n523,4662,4.0,1202234024\n523,4896,4.0,1202235608\n523,4963,4.0,1202235370\n523,4979,2.5,1202235759\n523,4993,4.5,1202234936\n523,4995,4.5,1202235398\n523,5349,4.0,1202235325\n523,5418,4.5,1202235616\n523,5445,4.0,1202235255\n523,5952,4.5,1202234966\n523,5989,4.0,1202235685\n523,6365,4.0,1202235649\n523,6377,4.0,1202235418\n523,6506,4.0,1202234576\n523,6539,4.5,1202235342\n523,6711,4.0,1202235700\n523,6874,4.0,1202235567\n523,7153,4.5,1202235225\n523,7361,3.0,1202235634\n523,7844,4.0,1202234504\n523,8961,4.5,1202235644\n523,26606,4.5,1202234614\n523,36525,3.0,1202234106\n523,46530,3.5,1202233714\n523,48061,4.5,1202234656\n523,49772,4.0,1202234430\n523,51084,3.5,1202234151\n523,53322,3.5,1202233911\n524,32,4.0,1256288131\n524,135,3.0,1256285340\n524,296,3.0,1256287686\n524,303,3.0,1256285308\n524,428,3.5,1256285463\n524,481,3.0,1256285395\n524,648,2.5,1256287786\n524,1020,5.0,1256285353\n524,1186,0.5,1256285276\n524,1206,4.0,1256288143\n524,1717,2.0,1256285325\n524,2013,3.0,1256285414\n524,2116,4.0,1256285429\n524,2231,4.5,1256293058\n524,2329,4.0,1256289301\n524,2333,1.5,1256285478\n524,2421,3.0,1256285383\n524,2485,2.0,1256285403\n524,2542,5.0,1256287500\n524,2596,4.5,1256291557\n524,2662,3.5,1256285454\n524,2959,4.0,1256289304\n524,2991,3.0,1256285490\n524,2997,3.5,1256288096\n524,3285,5.0,1256289575\n524,3578,4.5,1256288061\n524,3698,2.0,1256285360\n524,3793,3.0,1256287705\n524,4011,5.0,1256287527\n524,4226,4.0,1256287751\n524,4239,4.5,1256290483\n524,4878,5.0,1256290743\n524,4896,4.5,1256287622\n524,4963,4.0,1256287748\n524,5151,3.5,1256293014\n524,5225,4.0,1256289641\n524,5816,4.5,1256287604\n524,5956,4.5,1256289607\n524,6502,4.5,1256288187\n524,6539,3.0,1256287723\n524,7438,3.5,1256287702\n524,8368,4.5,1256287620\n524,8873,4.0,1256289656\n524,8874,5.0,1256288213\n524,8961,3.0,1256287691\n524,27831,4.5,1256288260\n524,33794,4.0,1256288157\n524,37731,5.0,1256287408\n524,40815,4.5,1256287607\n524,48780,4.5,1256289542\n524,49272,3.5,1256287711\n524,51662,4.0,1256288083\n524,52606,4.0,1256291980\n524,54001,4.5,1256287614\n524,54997,4.5,1256293001\n524,55282,4.5,1256290996\n524,57669,4.5,1256290750\n524,58559,4.0,1256287776\n524,58803,4.5,1256293070\n524,59721,4.0,1256293088\n524,60857,4.0,1256286384\n524,64957,3.5,1256291306\n524,69844,4.5,1256287611\n524,71810,2.0,1256287730\n525,1,2.0,1024928544\n525,2,2.0,1024929394\n525,6,4.0,1024929782\n525,10,3.0,1024930416\n525,21,4.0,1024929782\n525,31,4.0,1024928582\n525,32,3.0,1024928789\n525,110,5.0,1024929678\n525,126,3.0,1024929518\n525,173,3.0,1024929133\n525,185,4.0,1024929098\n525,260,5.0,1024928693\n525,353,2.0,1024930416\n525,356,3.0,1024928599\n525,367,1.0,1024929394\n525,380,5.0,1024930101\n525,405,1.0,1024928996\n525,442,5.0,1024928940\n525,474,5.0,1024929720\n525,480,3.0,1024928636\n525,493,3.0,1024929828\n525,541,3.0,1024928693\n525,589,5.0,1024929222\n525,592,2.0,1024929828\n525,651,1.0,1024928544\n525,673,1.0,1024929488\n525,733,4.0,1024929806\n525,788,3.0,1024929440\n525,810,2.0,1024929506\n525,858,5.0,1024929565\n525,903,4.0,1024929257\n525,924,5.0,1024928693\n525,1019,3.0,1024928912\n525,1036,5.0,1024929278\n525,1097,3.0,1024928738\n525,1101,3.0,1024930101\n525,1127,5.0,1024929806\n525,1196,5.0,1024929565\n525,1200,4.0,1024928771\n525,1210,5.0,1024928771\n525,1214,4.0,1024929257\n525,1221,5.0,1024928483\n525,1222,4.0,1024929678\n525,1240,5.0,1024929615\n525,1270,4.0,1024928738\n525,1291,3.0,1024929615\n525,1301,5.0,1024928771\n525,1320,4.0,1024929070\n525,1334,4.0,1024928964\n525,1356,5.0,1024929720\n525,1372,5.0,1024928964\n525,1374,5.0,1024929631\n525,1375,5.0,1024929030\n525,1552,5.0,1024928582\n525,1573,5.0,1024928811\n525,1580,5.0,1024928835\n525,1608,3.0,1024930416\n525,1610,5.0,1024929678\n525,1721,3.0,1024928448\n525,1722,4.0,1024930416\n525,1912,4.0,1024929631\n525,1917,4.0,1024928996\n525,1918,5.0,1024929782\n525,1920,1.0,1024929440\n525,1954,3.0,1024929720\n525,1967,4.0,1024929350\n525,2000,5.0,1024929741\n525,2005,2.0,1024929378\n525,2006,3.0,1024929806\n525,2011,4.0,1024928981\n525,2012,4.0,1024928981\n525,2023,5.0,1024928582\n525,2105,4.0,1024929048\n525,2115,3.0,1024929741\n525,2143,4.0,1024929440\n525,2167,5.0,1024929741\n525,2193,4.0,1024929378\n525,2194,4.0,1024929697\n525,2253,3.0,1024929488\n525,2273,4.0,1024930431\n525,2353,4.0,1024929782\n525,2407,2.0,1024928892\n525,2490,4.0,1024929848\n525,2526,3.0,1024928636\n525,2527,5.0,1024928964\n525,2529,4.0,1024929697\n525,2533,4.0,1024928771\n525,2571,5.0,1024929222\n525,2628,4.0,1024928892\n525,2640,3.0,1024929782\n525,2656,3.0,1024929098\n525,2699,3.0,1024928940\n525,2722,4.0,1024929048\n525,2762,5.0,1024929205\n525,2808,3.0,1024929116\n525,2916,5.0,1024929741\n525,2947,4.0,1024929678\n525,2948,4.0,1024929720\n525,2949,3.0,1024929782\n525,2968,4.0,1024928738\n525,2985,4.0,1024928912\n525,3033,3.0,1024929030\n525,3147,3.0,1024929278\n525,3175,2.0,1024928811\n525,3386,4.0,1024928599\n525,3438,1.0,1024929419\n525,3439,1.0,1024929458\n525,3440,1.0,1024929506\n525,3489,3.0,1024929458\n525,3578,5.0,1024929697\n525,3635,5.0,1024929782\n525,3697,4.0,1024928849\n525,3698,4.0,1024928892\n525,3699,4.0,1024928867\n525,3702,2.0,1024928849\n525,3703,2.0,1024928738\n525,3704,2.0,1024929098\n525,3729,5.0,1024929828\n525,3745,4.0,1024928892\n525,3793,5.0,1024928789\n525,3826,1.0,1024929146\n525,3889,1.0,1024929488\n525,3986,4.0,1024929098\n525,4085,3.0,1024929697\n525,4213,4.0,1024928940\n525,4306,5.0,1024929336\n525,4443,5.0,1024928964\n525,4480,3.0,1024929161\n525,4572,4.0,1024929806\n525,4643,4.0,1024928964\n525,4855,4.0,1024929848\n525,4874,1.0,1024929378\n525,4896,4.0,1024929336\n525,4911,3.0,1024929419\n525,4993,5.0,1024929336\n525,5049,4.0,1024930416\n525,5349,4.0,1024929652\n525,5378,5.0,1024928940\n526,1,4.0,1428641074\n526,1653,4.0,1436547029\n526,4226,4.0,1428640859\n526,4370,4.5,1436545295\n526,4720,4.0,1428640860\n526,4973,3.5,1436545283\n526,4995,5.0,1436545465\n526,5445,5.0,1436545933\n526,5502,4.5,1436545288\n526,5679,4.0,1428640718\n526,6333,4.0,1428640832\n526,6373,4.0,1428640730\n526,7153,3.5,1428640705\n526,8368,4.0,1436545245\n526,8644,3.5,1428640719\n526,8961,4.0,1428641077\n526,39427,4.5,1428640892\n526,47099,3.5,1436546773\n526,50872,4.5,1428641066\n526,60069,4.5,1436545199\n526,79132,4.0,1428640790\n526,85414,3.0,1436545875\n526,88744,4.0,1428640857\n526,91658,4.0,1428640873\n526,109487,5.0,1443743830\n526,112556,4.0,1436545263\n526,134853,4.5,1436545257\n527,19,1.5,1281233953\n527,25,3.0,1281233879\n527,32,3.5,1281232477\n527,34,1.0,1281234175\n527,36,2.0,1281233906\n527,39,2.5,1281233840\n527,47,3.5,1281233678\n527,50,3.5,1281233179\n527,62,3.5,1281233910\n527,94,4.5,1281233318\n527,110,3.5,1281233623\n527,165,1.0,1281233689\n527,208,3.0,1281233792\n527,231,1.5,1281233716\n527,260,4.0,1281233619\n527,292,2.0,1281233802\n527,293,4.5,1281233360\n527,296,3.0,1281233603\n527,356,3.5,1281233606\n527,367,0.5,1281233720\n527,372,3.5,1281232053\n527,434,1.0,1281233832\n527,480,2.0,1281233614\n527,500,1.0,1281233710\n527,539,2.5,1281233778\n527,541,4.0,1281233017\n527,585,0.5,1281232014\n527,586,1.0,1281233824\n527,587,1.0,1281233760\n527,590,3.5,1281233638\n527,593,3.5,1281233610\n527,597,2.0,1281233713\n527,608,3.5,1281233281\n527,736,0.5,1281233696\n527,778,3.5,1281233941\n527,858,4.5,1281233686\n527,912,4.0,1281233891\n527,924,3.0,1281233900\n527,1036,3.5,1281233814\n527,1073,4.0,1281234227\n527,1080,2.5,1281234031\n527,1089,3.5,1281233882\n527,1097,3.0,1281233733\n527,1101,3.5,1281233996\n527,1136,4.5,1281233768\n527,1196,3.0,1281233658\n527,1197,5.0,1281233751\n527,1198,4.0,1281233667\n527,1206,2.0,1281233255\n527,1208,3.5,1281232990\n527,1210,3.0,1281233635\n527,1220,4.5,1281234057\n527,1222,3.5,1281232889\n527,1225,2.5,1281234016\n527,1235,4.0,1281232106\n527,1240,3.0,1281234236\n527,1247,2.5,1281233068\n527,1258,3.5,1281233965\n527,1259,3.0,1281233163\n527,1263,4.5,1281233046\n527,1265,4.0,1281233766\n527,1266,3.5,1281233174\n527,1276,4.5,1281233037\n527,1291,1.5,1281233787\n527,1293,2.5,1281232009\n527,1307,3.0,1281233937\n527,1371,4.0,1281232033\n527,1387,2.5,1281233962\n527,1513,1.5,1281232084\n527,1517,2.5,1281233919\n527,1580,3.0,1281233729\n527,1610,2.5,1281233972\n527,1682,3.5,1281233947\n527,1704,4.0,1281233851\n527,1721,2.0,1281233736\n527,1918,1.0,1281232047\n527,1923,3.5,1281234241\n527,1960,4.0,1281232115\n527,1962,3.0,1281232089\n527,1968,4.0,1281233967\n527,2012,1.5,1281234013\n527,2028,4.5,1281233701\n527,2073,4.5,1281232624\n527,2115,3.5,1281234049\n527,2160,4.0,1281232118\n527,2174,3.5,1281234010\n527,2248,4.5,1281232056\n527,2329,4.0,1281232982\n527,2355,0.5,1281234001\n527,2396,3.5,1281233874\n527,2427,4.0,1281232066\n527,2502,4.5,1281234284\n527,2571,4.0,1281234205\n527,2628,1.0,1281233756\n527,2710,3.0,1281234040\n527,2852,3.0,1281233160\n527,2858,4.5,1281233214\n527,2871,4.0,1281232070\n527,2915,2.5,1281232073\n527,2916,3.0,1281234025\n527,2918,4.5,1281233976\n527,2959,4.5,1281233742\n527,3210,3.5,1281232099\n527,3347,3.0,1281233110\n527,3578,4.5,1281233781\n527,3703,3.5,1281232077\n527,3996,4.5,1281234172\n527,4027,3.5,1281234268\n527,4103,3.0,1281233272\n527,4306,3.0,1281233784\n527,4438,4.0,1281233245\n527,4688,3.0,1281233008\n527,4886,1.5,1281233993\n527,4993,4.5,1281233747\n527,5349,2.0,1281234004\n527,5747,4.5,1281232725\n527,5810,1.5,1281232544\n527,5952,3.5,1281233795\n527,6377,2.5,1281234180\n527,6502,5.0,1281232517\n527,6539,3.0,1281233985\n527,7027,5.0,1281232595\n527,7153,3.5,1281233869\n527,7980,3.5,1281233026\n527,8208,5.0,1281232707\n527,25788,3.5,1281232951\n527,26649,4.0,1281232734\n527,33660,4.5,1281233250\n527,35836,4.5,1281232530\n527,48516,5.0,1281232878\n527,51662,2.0,1281234250\n527,55267,5.0,1281232639\n527,58293,1.0,1281232448\n527,60069,2.5,1281234273\n527,68358,4.0,1281234223\n528,19,2.5,1141605315\n528,50,4.0,1141605961\n528,52,3.5,1141605978\n528,111,3.5,1141605268\n528,223,3.5,1141605255\n528,236,3.0,1141606001\n528,260,3.5,1141607126\n528,266,3.5,1141605991\n528,296,3.5,1141607098\n528,368,3.0,1141605556\n528,377,2.0,1141605656\n528,441,4.5,1143758352\n528,442,2.5,1141605550\n528,541,3.0,1141605250\n528,592,3.0,1143757704\n528,608,4.0,1141605640\n528,808,3.5,1143758689\n528,858,4.0,1141607120\n528,899,4.5,1141605927\n528,904,4.5,1141605918\n528,908,4.5,1143757746\n528,1059,3.5,1141605900\n528,1136,4.0,1141605862\n528,1196,4.0,1141607085\n528,1197,3.5,1141605869\n528,1198,3.5,1141607081\n528,1199,3.0,1143757759\n528,1206,4.0,1141605876\n528,1213,4.5,1141605283\n528,1219,3.0,1143757741\n528,1221,5.0,1141605262\n528,1257,3.5,1143758320\n528,1259,4.5,1141605821\n528,1278,4.0,1143757754\n528,1307,4.0,1141605298\n528,1380,3.0,1143757710\n528,1407,3.0,1143757723\n528,1500,5.0,1141605813\n528,1517,2.5,1141605312\n528,1527,4.0,1141605285\n528,1639,4.5,1141605831\n528,1687,2.0,1141607036\n528,1730,3.5,1143758654\n528,1772,2.5,1141607043\n528,1777,3.5,1141605845\n528,1784,3.0,1143757715\n528,1805,2.5,1141607031\n528,1845,3.5,1141607023\n528,1923,3.0,1141605295\n528,2072,3.5,1141606999\n528,2115,3.5,1141605735\n528,2169,2.5,1143758664\n528,2178,4.5,1143758649\n528,2188,2.5,1141607006\n528,2278,3.0,1141606996\n528,2282,3.0,1143758279\n528,2289,3.0,1141605726\n528,2329,3.5,1141691490\n528,2353,3.0,1143757708\n528,2427,3.0,1143758251\n528,2431,2.5,1141607003\n528,2474,4.0,1141606957\n528,2496,2.0,1141606970\n528,2541,4.0,1141606962\n528,2542,4.5,1141605720\n528,2571,3.5,1141605713\n528,2580,3.5,1141606950\n528,2598,3.0,1141606974\n528,2686,4.5,1141606953\n528,2700,3.5,1141605732\n528,2716,3.0,1141605259\n528,2762,4.0,1141605691\n528,2788,3.0,1141607112\n528,2836,4.5,1143758574\n528,2959,3.0,1141691493\n528,2966,3.5,1141606878\n528,2997,3.5,1141605245\n528,3052,3.0,1141605636\n528,3173,3.0,1141606236\n528,3298,4.0,1141606226\n528,3317,3.0,1141606213\n528,3328,2.5,1141606218\n528,3361,3.5,1141606162\n528,3424,3.5,1143758242\n528,3499,3.0,1143758240\n528,3503,4.5,1143758542\n528,3513,3.0,1141606182\n528,3698,4.0,1141606189\n528,3755,3.0,1143758215\n528,3785,3.5,1141606196\n528,3793,4.0,1141605560\n528,3825,2.0,1141606199\n528,3948,2.0,1141605674\n528,3949,4.5,1141606076\n528,3977,1.0,1141605645\n528,3987,4.0,1143758519\n528,3994,3.0,1141605696\n528,3996,4.0,1141605319\n528,4007,4.0,1141606132\n528,4223,4.0,1143758139\n528,4226,3.0,1141607107\n528,4299,0.5,1141606141\n528,4643,2.0,1143758228\n528,4993,4.0,1141605292\n528,5349,3.0,1141605682\n528,5401,2.5,1143758497\n528,5673,5.0,1141606034\n528,5785,3.0,1143758493\n528,5810,3.0,1143758145\n528,5952,3.5,1141607114\n528,6104,3.0,1141691500\n528,6281,2.0,1141606043\n528,6378,4.0,1141606039\n528,6711,3.5,1141606022\n528,6867,3.0,1143758477\n528,7153,3.5,1141607118\n528,8366,3.0,1143758486\n528,8636,4.0,1141606018\n528,8966,3.5,1143758480\n528,8981,2.5,1143758489\n528,27773,4.0,1143758347\n528,30707,3.5,1141605985\n528,33794,3.5,1141691482\n528,34153,4.0,1141607095\n528,34405,4.0,1141607101\n528,39183,3.5,1143758356\n528,40819,4.0,1141691496\n529,1,4.0,959965342\n529,17,4.5,1353370957\n529,24,3.0,960264734\n529,25,4.0,1332171560\n529,28,4.0,1387829869\n529,32,4.0,959965822\n529,34,5.0,959964987\n529,36,4.5,1351225218\n529,52,4.0,1086367263\n529,55,4.0,960265403\n529,57,3.0,960264595\n529,58,4.0,1089218266\n529,62,4.0,960264029\n529,68,2.0,959965942\n529,105,4.0,959966328\n529,111,4.0,959964034\n529,141,3.0,959966607\n529,162,2.5,1386031529\n529,164,3.0,960263147\n529,230,4.0,960264406\n529,232,4.5,1385069940\n529,260,4.0,959965370\n529,261,4.0,959964034\n529,265,5.0,959964731\n529,300,4.5,1385069924\n529,306,4.0,1387829807\n529,307,4.0,1387829811\n529,308,4.0,1395773670\n529,318,4.5,1170799498\n529,337,4.0,959965214\n529,339,3.0,960263973\n529,348,5.0,959966045\n529,356,3.0,960264145\n529,357,4.0,959966328\n529,361,3.0,960264770\n529,363,3.5,1359647327\n529,434,2.0,960265249\n529,448,4.0,959964880\n529,471,4.0,965497394\n529,475,5.0,1385070155\n529,492,5.0,960263873\n529,497,4.0,959965517\n529,506,2.0,960087138\n529,508,3.5,1351225413\n529,509,3.0,959965564\n529,515,4.0,1077989099\n529,527,5.0,960086663\n529,534,4.0,959967051\n529,538,3.0,960087161\n529,549,4.5,1083617679\n529,581,3.5,1137685554\n529,586,3.0,960265168\n529,587,2.0,960264081\n529,588,3.0,1357247314\n529,599,5.0,960085638\n529,608,5.0,996352960\n529,616,4.0,960052735\n529,674,1.0,960085850\n529,685,4.0,959964183\n529,719,2.0,960264973\n529,728,4.0,1070400952\n529,750,4.5,1067316865\n529,780,1.0,960265345\n529,838,4.0,1379734034\n529,858,3.0,959964253\n529,898,2.0,959964543\n529,899,5.0,960086408\n529,900,4.0,959965822\n529,902,3.0,960085661\n529,904,4.0,1137637037\n529,908,3.0,985469555\n529,909,2.0,960085581\n529,910,4.5,1353370952\n529,912,5.0,960086204\n529,914,3.0,959965822\n529,916,4.0,959965310\n529,918,5.0,959966157\n529,919,5.0,959964387\n529,920,4.0,960086894\n529,921,5.0,959964763\n529,922,3.5,1123709075\n529,923,4.0,960086078\n529,924,4.0,959965246\n529,926,5.0,960086287\n529,927,5.0,960151763\n529,932,1.0,959975472\n529,935,5.0,960140386\n529,951,5.0,959964792\n529,952,2.0,959965993\n529,953,3.0,959965606\n529,955,5.0,960086769\n529,968,4.0,1353371055\n529,994,5.0,960087034\n529,1012,3.0,959966468\n529,1013,3.0,960085773\n529,1028,4.0,959975028\n529,1029,3.0,960151613\n529,1030,2.0,959975102\n529,1035,2.0,959975028\n529,1041,4.0,1337380967\n529,1066,3.5,1385958119\n529,1073,4.0,959966485\n529,1077,4.0,959965684\n529,1078,4.0,960052803\n529,1080,4.0,959966401\n529,1082,3.0,959965907\n529,1083,3.0,960085773\n529,1084,5.0,959964763\n529,1096,5.0,959965885\n529,1104,3.0,959964705\n529,1124,1.0,960053405\n529,1125,4.0,960052771\n529,1131,4.0,1273115600\n529,1132,4.0,1268767844\n529,1135,3.0,960053606\n529,1136,4.0,960052682\n529,1148,4.0,1370753689\n529,1150,4.0,1357315830\n529,1177,5.0,960087195\n529,1179,5.0,959964543\n529,1183,4.0,959965536\n529,1189,4.0,1359323829\n529,1192,5.0,959965013\n529,1193,2.0,959964346\n529,1196,3.0,960053160\n529,1198,3.0,960053104\n529,1200,2.0,959966533\n529,1201,3.0,960085581\n529,1206,3.0,960052651\n529,1207,3.0,1045451694\n529,1208,4.0,960052682\n529,1212,4.0,1303321963\n529,1213,1.0,959964679\n529,1219,4.0,959964387\n529,1221,2.0,960052558\n529,1225,2.0,960053081\n529,1230,5.0,960052558\n529,1233,5.0,960086327\n529,1234,3.0,959965370\n529,1235,3.0,959964840\n529,1238,4.0,1363754895\n529,1243,0.5,1350871357\n529,1244,4.0,960052606\n529,1247,5.0,959964705\n529,1248,3.0,959964457\n529,1252,5.0,959964208\n529,1256,4.5,1357247150\n529,1264,3.0,959965585\n529,1265,4.0,959965709\n529,1266,4.0,959965061\n529,1269,3.0,959965517\n529,1270,3.0,959963968\n529,1271,5.0,959966181\n529,1272,3.0,959965862\n529,1273,3.0,1357315578\n529,1276,3.0,960085581\n529,1278,4.0,960052606\n529,1280,4.0,1387830294\n529,1282,3.0,959965013\n529,1287,2.0,960086812\n529,1288,4.0,959965684\n529,1293,4.0,959964792\n529,1303,4.0,959964625\n529,1304,2.0,960085546\n529,1333,3.0,959965822\n529,1339,3.0,960264483\n529,1343,5.0,959966115\n529,1350,2.0,960052839\n529,1353,3.0,960264932\n529,1361,4.0,1366600723\n529,1367,3.0,960264675\n529,1371,2.0,960052916\n529,1380,2.0,959975102\n529,1387,1.0,959964643\n529,1393,4.0,1351571342\n529,1408,2.0,959966381\n529,1409,2.0,960264954\n529,1410,4.0,960265270\n529,1416,3.0,960265224\n529,1449,4.0,1349967676\n529,1535,4.0,960086963\n529,1569,3.0,960264053\n529,1584,4.0,960263244\n529,1614,3.0,960264185\n529,1617,3.0,985469516\n529,1619,3.0,960263429\n529,1625,4.0,1351571315\n529,1635,3.5,1351571373\n529,1641,5.0,959966138\n529,1663,3.0,960053466\n529,1674,3.0,959965647\n529,1678,4.0,960086591\n529,1682,4.0,959966115\n529,1704,4.0,959975246\n529,1747,4.0,960263813\n529,1777,3.0,960264386\n529,1784,4.0,959975276\n529,1810,4.0,959966410\n529,1835,3.0,960264483\n529,1885,3.5,1068909828\n529,1936,3.5,1379733828\n529,1947,3.0,959965907\n529,1948,4.0,1090533331\n529,1951,4.0,959967267\n529,1952,4.0,959964543\n529,1953,3.0,960086408\n529,1954,2.0,959966045\n529,1955,4.0,1380166629\n529,1956,4.0,960053230\n529,1957,3.0,959965271\n529,1958,4.0,959975336\n529,1962,4.0,960053349\n529,1963,3.0,960085693\n529,1964,5.0,1385069999\n529,1997,3.0,959966090\n529,2009,2.0,960052839\n529,2013,3.0,960052891\n529,2015,3.0,960085773\n529,2028,5.0,1049503979\n529,2057,4.0,960085773\n529,2065,5.0,960053260\n529,2067,2.0,960085693\n529,2074,4.0,960052576\n529,2077,4.0,959966182\n529,2078,3.0,959967222\n529,2080,4.0,960140431\n529,2085,3.0,959966625\n529,2112,3.0,960263851\n529,2132,3.0,959965038\n529,2136,2.0,960085824\n529,2145,3.0,959963968\n529,2146,3.0,960054593\n529,2160,3.0,959965310\n529,2174,3.0,960053141\n529,2176,3.0,1386877492\n529,2194,3.0,959967301\n529,2208,4.0,1358450701\n529,2236,2.0,960265307\n529,2243,4.0,959966445\n529,2247,4.0,960053466\n529,2268,4.0,960264428\n529,2272,3.0,959975301\n529,2289,3.0,959965038\n529,2291,3.0,959966045\n529,2297,3.0,960264121\n529,2300,5.0,959964387\n529,2302,5.0,960263554\n529,2303,5.0,959964387\n529,2321,5.0,960263606\n529,2324,4.5,1067316874\n529,2331,4.0,959965564\n529,2346,4.0,960052869\n529,2361,1.0,959965974\n529,2367,1.0,960052942\n529,2369,2.0,959966591\n529,2384,3.0,959965370\n529,2396,3.0,960086622\n529,2406,4.0,960053499\n529,2407,3.0,960053548\n529,2418,4.0,960054460\n529,2431,1.0,960265366\n529,2436,4.0,959966138\n529,2463,4.0,959964034\n529,2469,3.0,960053548\n529,2474,3.0,960053568\n529,2493,3.5,1325220288\n529,2520,1.0,960052839\n529,2528,1.0,960052803\n529,2529,3.0,959967267\n529,2535,1.0,960052942\n529,2565,3.0,959966245\n529,2580,4.0,1385958097\n529,2599,4.0,1083617670\n529,2639,1.0,960054717\n529,2640,3.0,1380166213\n529,2641,5.0,960053548\n529,2642,3.0,960054752\n529,2657,2.0,959975102\n529,2662,1.0,959966045\n529,2671,1.0,985469597\n529,2706,1.0,959966502\n529,2716,4.0,960053260\n529,2721,4.0,960263912\n529,2730,2.0,959967301\n529,2732,4.0,959964543\n529,2739,4.0,960053548\n529,2750,5.0,960053301\n529,2752,3.0,960054539\n529,2762,3.0,959964792\n529,2779,3.0,960052771\n529,2791,4.0,960053369\n529,2795,1.0,960053499\n529,2797,4.0,959965907\n529,2803,1.0,960265123\n529,2804,5.0,959964947\n529,2819,3.0,960052682\n529,2858,5.0,960086266\n529,2863,3.0,959964625\n529,2871,5.0,960052711\n529,2877,3.0,959975102\n529,2908,3.0,1000918582\n529,2915,3.0,960053301\n529,2917,4.0,959965497\n529,2918,2.0,959966090\n529,2921,2.0,959965628\n529,2926,4.0,960053179\n529,2929,5.0,960053326\n529,2932,3.0,960052606\n529,2941,2.0,960140513\n529,2942,2.0,960054631\n529,2943,4.0,960263376\n529,2946,3.0,960085599\n529,2950,1.0,960054697\n529,2966,1.0,959965408\n529,2971,4.0,959975102\n529,2973,3.5,1357315725\n529,2996,4.0,959975139\n529,3011,3.0,960085581\n529,3015,3.0,960052839\n529,3032,1.0,960052803\n529,3037,4.0,960052651\n529,3066,2.0,960052839\n529,3069,4.0,959966245\n529,3072,4.0,1066834850\n529,3074,5.0,959967425\n529,3083,2.0,960262803\n529,3088,4.0,960140406\n529,3089,4.5,1370753213\n529,3093,3.0,959965038\n529,3095,4.0,959964457\n529,3098,4.0,960053326\n529,3099,3.0,959965822\n529,3110,3.0,959966428\n529,3129,4.0,1000918608\n529,3148,4.0,960262978\n529,3152,5.0,959964509\n529,3163,4.0,959965214\n529,3167,3.0,959966223\n529,3168,3.0,959964840\n529,3194,3.0,959964922\n529,3200,3.0,959965885\n529,3201,5.0,959964582\n529,3244,3.0,960052771\n529,3247,4.0,959966064\n529,3251,4.0,960053518\n529,3258,4.0,960264616\n529,3260,4.0,959964625\n529,3284,2.0,959965709\n529,3296,3.0,959965664\n529,3304,3.0,959966468\n529,3317,4.0,1343954048\n529,3341,5.0,959964346\n529,3347,4.0,959966090\n529,3357,5.0,959974786\n529,3358,3.0,959966045\n529,3361,4.0,960053060\n529,3362,5.0,960086812\n529,3363,5.0,960052651\n529,3396,4.0,960052651\n529,3418,2.0,959965447\n529,3421,3.0,959965771\n529,3430,1.0,960052916\n529,3435,4.0,1237934245\n529,3445,3.0,959966401\n529,3448,3.0,960053588\n529,3456,3.5,1241460035\n529,3471,3.0,960052651\n529,3481,4.0,1245597558\n529,3498,3.0,960052803\n529,3504,5.0,960052558\n529,3506,3.0,960052870\n529,3507,3.0,959966363\n529,3508,2.0,960052711\n529,3512,3.0,965497364\n529,3526,4.0,960053200\n529,3529,3.0,960054483\n529,3543,4.0,1385958141\n529,3545,4.0,959975102\n529,3546,4.0,960085773\n529,3548,2.0,960086788\n529,3549,3.0,960140489\n529,3551,3.0,959965038\n529,3606,4.0,959964987\n529,3608,4.0,960087119\n529,3635,3.0,959966549\n529,3653,2.0,959964731\n529,3668,3.0,960085722\n529,3671,4.0,959965342\n529,3682,2.0,959965709\n529,3683,4.0,959964560\n529,3685,2.0,960053301\n529,3702,3.0,959964599\n529,3704,3.0,960054460\n529,3712,4.0,959967033\n529,3719,2.0,967605951\n529,3724,4.0,959964947\n529,3730,4.0,1380166274\n529,3733,3.0,959964387\n529,3735,3.0,959964478\n529,3738,3.0,960052651\n529,3739,4.0,1045451532\n529,3741,3.0,959964408\n529,3742,3.0,959964763\n529,3751,4.0,1055428383\n529,3769,3.0,961607063\n529,3788,3.0,963156943\n529,3806,2.0,963157035\n529,3812,4.0,963156966\n529,3814,4.0,963157035\n529,3897,4.0,996352929\n529,3908,2.0,970718996\n529,3911,4.0,1343954023\n529,3967,3.5,1343954017\n529,3983,3.5,1370840182\n529,3996,3.0,1049503905\n529,4014,4.0,978894362\n529,4021,4.0,982340567\n529,4034,4.5,1353370913\n529,4187,2.5,1067316838\n529,4190,3.0,1400777348\n529,4194,4.0,1369868783\n529,4211,3.0,1351225495\n529,4217,4.0,1122326552\n529,4298,3.5,1306082469\n529,4361,4.0,1049504135\n529,4427,4.0,1045451720\n529,4801,4.5,1123271861\n529,4903,4.0,1332171809\n529,4920,5.0,1049503905\n529,4969,3.0,1082067000\n529,4970,3.0,1045451532\n529,4973,4.0,1059411981\n529,5015,4.0,1016378462\n529,5060,4.0,1049504352\n529,5085,3.0,1049504162\n529,5135,5.0,1016405409\n529,5142,4.0,1152140779\n529,5291,3.5,1154956653\n529,5299,3.0,1027479570\n529,5339,4.0,1351225425\n529,5341,4.0,1380166288\n529,5385,4.0,1366600969\n529,5398,4.5,1082066310\n529,5470,5.0,1063149603\n529,5525,4.0,1208831785\n529,5752,2.5,1106970460\n529,5780,3.0,1170799405\n529,5840,4.0,1264720330\n529,5847,2.0,1083179780\n529,5986,3.5,1080685098\n529,5991,5.0,1045451324\n529,5995,4.0,1114965029\n529,6031,3.0,1332171580\n529,6126,4.0,1250799382\n529,6216,4.0,1130284575\n529,6228,3.5,1146438379\n529,6235,3.0,1123709020\n529,6247,4.0,1353370872\n529,6254,4.5,1082067042\n529,6269,3.5,1325907434\n529,6271,4.0,1245597798\n529,6296,3.0,1349967739\n529,6299,4.5,1137685562\n529,6301,3.0,1380166200\n529,6327,4.5,1105155551\n529,6331,4.0,1140705541\n529,6377,4.0,1354309133\n529,6380,4.0,1150570381\n529,6385,4.0,1343954041\n529,6416,3.5,1082067077\n529,6452,3.5,1077989091\n529,6467,4.0,1250799269\n529,6533,3.5,1083179789\n529,6565,2.5,1062033982\n529,6643,3.5,1237345904\n529,6666,3.5,1241459623\n529,6724,4.0,1353371031\n529,6777,4.0,1146438010\n529,6783,4.5,1092338279\n529,6787,3.5,1067316832\n529,6942,3.5,1357581858\n529,6953,4.5,1337381146\n529,6971,3.0,1098223762\n529,6982,3.5,1241459493\n529,6985,4.0,1303321211\n529,6993,4.0,1363754819\n529,7061,3.5,1099195833\n529,7064,3.5,1307204097\n529,7072,4.5,1075763137\n529,7073,3.0,1099195814\n529,7078,3.5,1363310911\n529,7084,3.5,1073271374\n529,7091,4.0,1122326645\n529,7116,4.0,1145318017\n529,7121,4.0,1141748142\n529,7132,3.0,1101151100\n529,7135,3.0,1303321877\n529,7139,4.5,1107902151\n529,7147,3.5,1343954269\n529,7156,3.5,1169130017\n529,7158,4.5,1343954007\n529,7215,3.5,1141748153\n529,7216,3.5,1130284620\n529,7303,3.5,1130284598\n529,7493,3.5,1099195801\n529,7572,3.5,1085876242\n529,7584,3.5,1113523339\n529,7587,3.0,1241459568\n529,7619,4.0,1106970477\n529,7698,4.5,1380166280\n529,7706,4.0,1119235090\n529,7766,4.0,1155335946\n529,7767,4.0,1241459970\n529,7836,4.0,1109102662\n529,7840,3.5,1332171799\n529,7926,4.5,1160009538\n529,7941,3.0,1303322019\n529,7979,3.5,1308090429\n529,8016,2.5,1380166190\n529,8042,3.5,1241459611\n529,8191,4.0,1089815018\n529,8228,4.0,1090533345\n529,8337,2.5,1115560087\n529,8542,3.5,1119235120\n529,8580,5.0,1123708975\n529,8638,4.0,1357581667\n529,8645,3.5,1357582026\n529,8754,3.5,1092338316\n529,8785,3.5,1245597605\n529,8838,4.0,1095536736\n529,8961,4.5,1131573088\n529,8970,4.5,1343954181\n529,8998,3.5,1105801478\n529,25753,3.5,1285543563\n529,25792,3.5,1385958407\n529,25825,3.5,1303321817\n529,25850,2.5,1221614435\n529,25868,4.0,1230676522\n529,25898,3.5,1250799235\n529,26003,3.5,1268768735\n529,26082,4.0,1226454002\n529,26111,3.0,1237934234\n529,26131,4.0,1123709084\n529,26208,4.0,1308090589\n529,26324,3.5,1253235715\n529,26325,4.0,1303320956\n529,26366,4.0,1241459575\n529,26375,2.5,1105155573\n529,26472,4.0,1241459695\n529,26524,4.0,1253235760\n529,26587,4.0,1300547022\n529,26649,2.0,1273115585\n529,26788,3.5,1303321919\n529,27329,4.0,1300547798\n529,27741,4.0,1141748173\n529,27803,4.0,1146438535\n529,27878,4.0,1157753399\n529,30749,4.0,1146438003\n529,31035,2.0,1119911645\n529,31522,4.0,1264719725\n529,31923,4.0,1123271765\n529,32234,4.5,1245597804\n529,32853,3.5,1230676514\n529,33166,2.0,1343954145\n529,34552,4.0,1273116382\n529,36517,4.5,1130284585\n529,38304,4.0,1169129775\n529,39183,4.5,1139520958\n529,39292,4.0,1133832977\n529,40583,3.5,1343954031\n529,40819,3.5,1349967760\n529,41226,4.0,1248300254\n529,44195,4.5,1343954135\n529,44555,4.0,1185835166\n529,46855,3.5,1268768666\n529,46976,4.0,1370840075\n529,48698,4.0,1237934412\n529,52967,4.0,1241460027\n529,53024,4.0,1273116275\n529,53123,4.5,1357247310\n529,55069,4.5,1264720470\n529,55814,4.5,1343954062\n529,56367,4.0,1343954258\n529,59018,4.0,1351957779\n529,60382,3.5,1349967827\n529,63876,4.0,1343954196\n529,66371,4.5,1307204399\n529,78499,4.0,1371270065\n529,79132,3.5,1280939216\n529,81845,4.0,1371270054\n529,86882,4.5,1378442419\n529,88810,4.0,1378442404\n529,89804,4.0,1408296622\n529,90866,3.5,1378442549\n529,91529,3.5,1346080707\n529,93040,4.0,1349967848\n529,95558,4.5,1346947165\n529,96432,2.5,1346987384\n529,97752,4.5,1351957381\n529,97921,4.5,1363352189\n529,109374,4.5,1401291020\n529,111362,3.0,1404142647\n529,112138,3.5,1404693511\n529,112460,1.5,1405996759\n530,1,5.0,879014231\n530,14,4.0,879014515\n530,17,4.0,877749107\n530,36,5.0,879014382\n530,40,3.0,879014515\n530,48,4.0,882388817\n530,62,4.0,879014459\n530,95,5.0,880081389\n530,158,3.0,882388845\n530,185,3.0,880081413\n530,239,4.0,882388817\n530,260,5.0,880081243\n530,261,4.0,880081361\n530,313,2.0,882388845\n530,356,5.0,880081099\n530,364,5.0,880081158\n530,367,3.0,880081254\n530,480,5.0,880081452\n530,527,5.0,888624385\n530,558,2.0,882388845\n530,588,5.0,880081184\n530,594,5.0,882388791\n530,595,5.0,880081204\n530,608,5.0,879061794\n530,609,2.0,879014767\n530,647,4.0,879014936\n530,661,5.0,879014311\n530,673,1.0,882388845\n530,720,5.0,882388791\n530,733,4.0,879014936\n530,736,4.0,879014967\n530,745,5.0,882388791\n530,780,3.0,879014669\n530,783,5.0,880081225\n530,802,4.0,879014967\n530,804,2.0,879014881\n530,832,5.0,879014545\n530,838,4.0,879014729\n530,991,3.0,880081380\n530,1025,4.0,882388817\n530,1029,4.0,882388817\n530,1032,4.0,882388791\n530,1033,4.0,882388817\n530,1042,4.0,879014588\n530,1064,2.0,880081184\n530,1073,4.0,879014545\n530,1148,5.0,882388791\n530,1183,5.0,877748760\n530,1196,5.0,880081264\n530,1210,5.0,880081286\n530,1223,4.0,882388791\n530,1282,5.0,882388791\n530,1353,3.0,882388908\n530,1357,5.0,882388741\n530,1367,4.0,879014729\n530,1391,4.0,879014353\n530,1409,3.0,879014967\n530,1416,4.0,880081400\n530,1438,1.0,877748865\n530,1485,2.0,879014669\n530,1489,5.0,883714860\n530,1544,2.0,880081452\n530,1556,2.0,879014767\n530,1566,5.0,879014231\n530,1569,4.0,879014588\n530,1573,5.0,879014434\n530,1580,5.0,880081141\n530,1584,5.0,880081420\n530,1586,2.0,882388556\n530,1588,3.0,882388556\n530,1597,3.0,882388503\n530,1605,3.0,883714691\n530,1606,1.0,877748960\n530,1676,1.0,882388522\n530,1690,2.0,882388503\n530,1702,2.0,883714838\n530,1704,5.0,889506538\n530,1721,5.0,883714691\n531,1,3.0,1240402247\n531,2,4.0,1243510104\n531,34,3.0,1240402299\n531,48,3.0,1244063107\n531,158,2.5,1244063176\n531,165,0.5,1240402274\n531,316,2.0,1243509916\n531,356,3.5,1243454685\n531,364,4.0,1240402280\n531,410,3.5,1243510166\n531,480,3.0,1243454738\n531,500,3.0,1240402290\n531,541,2.5,1240402381\n531,586,2.5,1240402378\n531,588,4.0,1240402258\n531,590,2.0,1240402243\n531,594,4.0,1243510262\n531,595,3.0,1243509906\n531,596,3.5,1244063156\n531,661,3.5,1244288305\n531,720,4.0,1240401432\n531,745,3.5,1240402455\n531,788,3.0,1243510146\n531,918,1.5,1240401787\n531,919,4.0,1243510077\n531,1013,4.0,1240401589\n531,1015,2.0,1240401652\n531,1028,5.0,1240401959\n531,1035,3.5,1240402211\n531,1036,0.5,1240402328\n531,1073,3.5,1240402181\n531,1088,5.0,1244288293\n531,1097,3.0,1243509936\n531,1099,1.5,1240401745\n531,1148,4.0,1240402461\n531,1183,0.5,1244062924\n531,1198,1.0,1240402972\n531,1223,4.0,1240401503\n531,1258,0.5,1243454822\n531,1262,1.5,1240403015\n531,1370,0.5,1244063037\n531,1380,4.0,1244062975\n531,1407,1.0,1244062932\n531,1580,3.0,1243509954\n531,1653,3.5,1244062948\n531,1676,1.5,1244063052\n531,1682,4.0,1243510127\n531,1721,2.0,1240402303\n531,1848,4.0,1240401853\n531,1997,0.5,1243454868\n531,2054,3.5,1244062939\n531,2081,3.5,1244063097\n531,2083,2.5,1240402878\n531,2088,3.0,1240401636\n531,2162,3.0,1240401757\n531,2291,4.0,1243510236\n531,2300,2.0,1240401527\n531,2321,3.5,1244063113\n531,2355,3.5,1243510155\n531,2379,2.0,1240401662\n531,2392,3.0,1240401829\n531,2424,2.5,1244288279\n531,2567,3.5,1240401608\n531,2571,3.5,1240402264\n531,2622,3.0,1240401629\n531,2683,3.0,1240402403\n531,2692,4.0,1244063012\n531,2701,2.5,1244288269\n531,2706,3.5,1243510089\n531,2762,2.0,1240403146\n531,2791,0.5,1243510282\n531,2797,4.0,1243510226\n531,2942,4.5,1240730966\n531,2959,3.5,1240402309\n531,3114,2.5,1240403076\n531,3198,2.0,1240403070\n531,3448,3.5,1244288235\n531,3751,1.5,1244062988\n531,3791,4.5,1244308218\n531,3793,3.5,1243454713\n531,3798,0.5,1243454803\n531,3948,3.5,1244063082\n531,3977,2.5,1244062995\n531,4022,3.5,1244062965\n531,4246,4.0,1244288249\n531,4306,4.5,1240401990\n531,4308,3.5,1244580497\n531,4886,3.5,1240402473\n531,4896,1.0,1244063125\n531,4963,4.0,1243510270\n531,4973,4.5,1244062793\n531,4993,0.5,1243509988\n531,5349,2.0,1243454661\n531,5418,2.5,1244063060\n531,5952,1.0,1240403132\n531,5989,2.5,1244288158\n531,6218,3.5,1243509660\n531,6377,4.0,1240402471\n531,6539,4.0,1240402560\n531,6711,1.0,1244288191\n531,6863,5.0,1240402799\n531,6942,4.5,1243454925\n531,7361,0.5,1243455132\n531,8360,4.0,1240401993\n531,8533,1.0,1243455153\n531,8961,3.5,1240402991\n531,8965,1.5,1244062845\n531,30793,4.0,1240402176\n531,30816,4.0,1240402813\n531,31410,3.5,1244062803\n531,35836,2.5,1243454583\n531,38038,3.0,1240403002\n531,41997,1.5,1240731069\n531,42197,3.5,1244288095\n531,43376,3.5,1244062822\n531,45720,3.5,1240402587\n531,53121,3.5,1240401996\n531,54272,3.5,1240402020\n531,56941,2.0,1240402765\n531,59421,3.5,1240402421\n531,59725,4.5,1243454997\n531,61132,3.0,1240401858\n531,61361,3.0,1240402775\n531,62113,3.5,1240731051\n531,63082,4.0,1240402431\n531,63131,3.5,1243509628\n531,63992,4.5,1243455082\n531,64249,3.0,1240401999\n531,64285,3.5,1240402539\n531,64957,4.0,1243455045\n531,64969,3.5,1243454540\n531,68073,5.0,1240731004\n532,19,3.5,1076971607\n532,110,3.5,1076971757\n532,163,3.5,1076971388\n532,344,3.5,1076971621\n532,370,3.0,1076971409\n532,380,3.5,1076971872\n532,457,3.5,1076971863\n532,466,4.0,1076971394\n532,480,4.0,1076971859\n532,589,4.0,1076971610\n532,733,4.0,1076971967\n532,1097,4.0,1076971601\n532,1198,4.5,1076971960\n532,1204,4.0,1076971429\n532,1262,4.5,1076971495\n532,1291,4.0,1076971733\n532,1293,4.5,1076971485\n532,1347,3.5,1076971646\n532,1475,3.5,1076971705\n532,1544,3.0,1076971627\n532,1597,3.5,1076971471\n532,2011,4.0,1076971616\n532,2028,3.5,1076971927\n532,2151,4.5,1076971688\n532,2268,3.5,1076971950\n532,2529,2.0,1076971442\n532,2571,4.5,1076971739\n532,2572,3.0,1076971501\n532,2617,3.5,1076971432\n532,2628,4.0,1076971735\n532,2762,4.5,1076971722\n532,2953,3.5,1076971654\n532,3101,3.0,1076971451\n532,3146,3.5,1076971671\n532,3578,4.0,1076971911\n532,3753,3.0,1076971460\n532,3948,3.0,1076971800\n532,3977,3.0,1076971791\n532,3994,3.5,1076971806\n532,4727,3.0,1076971717\n532,4963,3.5,1076971803\n532,4975,2.5,1076971796\n532,4993,4.5,1076971421\n532,5349,4.5,1076971933\n532,5377,2.5,1076971785\n532,5445,3.0,1076971520\n532,5630,4.0,1076971955\n532,5952,4.5,1076971510\n532,6377,4.5,1076971963\n532,6539,3.5,1076971923\n532,7153,5.0,1076971662\n533,25,1.0,965318357\n533,32,4.0,965316504\n533,36,4.0,965316145\n533,79,2.0,965318627\n533,110,3.0,965316446\n533,111,3.0,965316145\n533,150,4.0,965317882\n533,196,2.0,965315328\n533,230,4.0,965318594\n533,253,3.0,965319436\n533,260,5.0,965314715\n533,266,3.0,965319070\n533,281,3.0,965317961\n533,292,4.0,965319538\n533,316,5.0,965315113\n533,318,4.0,965316060\n533,329,4.0,965315177\n533,361,4.0,965318474\n533,379,4.0,965315328\n533,388,2.0,965318456\n533,436,2.0,965319301\n533,480,4.0,965314929\n533,491,3.0,965318146\n533,509,3.0,965316652\n533,516,3.0,965319228\n533,529,4.0,965316627\n533,531,3.0,965316554\n533,534,4.0,965318191\n533,541,4.0,965314747\n533,589,4.0,965314811\n533,590,3.0,965316589\n533,592,3.0,965318032\n533,593,5.0,965316107\n533,608,4.0,965316088\n533,724,2.0,965318627\n533,780,4.0,965315212\n533,788,3.0,965315073\n533,832,3.0,965318456\n533,899,4.0,965314334\n533,923,4.0,965316039\n533,953,5.0,965316060\n533,969,5.0,965314300\n533,1084,3.0,965316167\n533,1095,3.0,965317904\n533,1097,3.0,965316423\n533,1177,4.0,965319171\n533,1183,3.0,965318540\n533,1193,3.0,965316088\n533,1196,5.0,965314811\n533,1198,5.0,965314300\n533,1203,4.0,965316218\n533,1214,2.0,965314811\n533,1225,4.0,965316167\n533,1240,5.0,965314811\n533,1246,3.0,965318128\n533,1259,4.0,965316218\n533,1263,3.0,965316627\n533,1270,5.0,965314811\n533,1271,3.0,965317961\n533,1276,4.0,965316107\n533,1295,1.0,965318277\n533,1302,2.0,965316339\n533,1356,4.0,965315001\n533,1363,3.0,965319969\n533,1371,3.0,965315212\n533,1373,3.0,965315371\n533,1374,5.0,965314952\n533,1375,3.0,965315177\n533,1376,5.0,965314952\n533,1488,2.0,965320104\n533,1527,4.0,965315141\n533,1573,2.0,965315025\n533,1580,3.0,965314867\n533,1584,3.0,965314867\n533,1620,3.0,965318521\n533,1653,4.0,965315001\n533,1676,4.0,965315141\n533,1678,3.0,965318108\n533,1682,4.0,965318191\n533,1721,4.0,965317920\n533,1726,3.0,965319453\n533,1727,3.0,965318627\n533,1784,4.0,965316749\n533,1807,3.0,965319510\n533,1921,4.0,965315113\n533,1945,4.0,965316218\n533,1954,5.0,965315485\n533,1956,4.0,965316589\n533,1961,4.0,965316395\n533,1962,4.0,965317961\n533,2011,3.0,965315141\n533,2028,4.0,965316313\n533,2094,3.0,965315177\n533,2105,4.0,965315212\n533,2240,3.0,965317882\n533,2268,3.0,965318032\n533,2289,3.0,965316218\n533,2322,4.0,965315248\n533,2352,3.0,965316627\n533,2364,2.0,965315328\n533,2377,2.0,965315401\n533,2392,2.0,965320036\n533,2393,4.0,965315371\n533,2407,4.0,965315073\n533,2429,3.0,965319538\n533,2430,3.0,965319335\n533,2431,3.0,965319301\n533,2433,4.0,965318061\n533,2445,3.0,965319932\n533,2454,4.0,965315073\n533,2455,2.0,965315073\n533,2474,3.0,965319070\n533,2527,4.0,965314838\n533,2529,4.0,965314867\n533,2571,5.0,965314838\n533,2628,4.0,965314334\n533,2640,4.0,965315025\n533,2641,2.0,965315212\n533,2642,2.0,965315371\n533,2657,1.0,965315485\n533,2668,2.0,965315328\n533,2672,4.0,965315348\n533,2688,3.0,965319385\n533,2701,2.0,965315448\n533,2858,2.0,965316263\n533,2906,2.0,965320004\n533,2916,3.0,965314929\n533,2968,3.0,965314929\n533,2985,4.0,965315001\n533,3035,4.0,965316339\n533,3060,4.0,965317774\n533,3098,3.0,965318218\n533,3108,3.0,965317938\n533,3148,3.0,965317979\n533,3156,2.0,965315328\n533,3175,4.0,965314838\n533,3194,3.0,965317882\n533,3196,4.0,965316395\n533,3255,4.0,965317838\n533,3259,3.0,965319070\n533,3260,4.0,965316522\n533,3269,3.0,965315270\n533,3308,3.0,965318108\n533,3362,2.0,965316504\n533,3451,4.0,965317774\n533,3471,4.0,965314300\n533,3504,3.0,965316238\n533,3527,3.0,965314929\n533,3528,3.0,965319301\n533,3591,3.0,965319040\n533,3593,1.0,965315448\n533,3699,4.0,965314867\n533,3701,4.0,965315212\n533,3730,4.0,965316466\n533,3733,4.0,965317938\n533,3766,3.0,965314563\n533,3791,3.0,965314520\n533,3793,5.0,965314660\n533,3807,3.0,965314642\n533,3812,1.0,965314490\n533,3826,2.0,967559142\n533,3831,4.0,967559209\n533,3844,3.0,965314642\n534,1,5.0,973376852\n534,2,4.0,973376511\n534,3,2.0,973374764\n534,6,5.0,973375745\n534,11,3.0,973374582\n534,16,4.0,973440399\n534,17,2.0,973374360\n534,21,2.0,973375818\n534,22,4.0,973377415\n534,23,4.0,973440199\n534,25,3.0,973374165\n534,32,4.0,973377778\n534,34,3.0,973377061\n534,36,4.0,973377621\n534,39,2.0,973374324\n534,42,2.0,973376255\n534,47,5.0,973377326\n534,50,2.0,973377299\n534,60,3.0,973376609\n534,61,4.0,973440645\n534,64,3.0,973375343\n534,69,3.0,973377169\n534,70,2.0,973375918\n534,79,3.0,973440592\n534,81,2.0,973377456\n534,86,5.0,973376511\n534,89,4.0,973440359\n534,95,4.0,973376368\n534,105,2.0,973375193\n534,107,4.0,973376684\n534,110,5.0,973375708\n534,150,5.0,973377664\n534,151,3.0,973374324\n534,153,3.0,973376296\n534,158,5.0,973376684\n534,161,5.0,973377686\n534,163,4.0,973375884\n534,164,3.0,973377415\n534,165,4.0,973375956\n534,168,4.0,973375290\n534,170,3.0,973376368\n534,173,2.0,973376324\n534,185,4.0,973440645\n534,195,2.0,973375142\n534,208,4.0,973376493\n534,224,3.0,973374815\n534,225,4.0,973440359\n534,236,3.0,973375142\n534,239,4.0,973374980\n534,257,4.0,973440263\n534,258,2.0,973375597\n534,259,4.0,973377486\n534,266,4.0,973374360\n534,276,2.0,973375343\n534,280,4.0,973440399\n534,287,2.0,973375193\n534,288,3.0,973440592\n534,291,3.0,973440472\n534,292,4.0,973375852\n534,293,3.0,973374165\n534,296,4.0,973377352\n534,303,3.0,973376255\n534,315,4.0,973376368\n534,318,5.0,973377538\n534,319,3.0,973440160\n534,339,3.0,973374557\n534,349,4.0,973375852\n534,353,5.0,973376196\n534,356,4.0,973374023\n534,361,3.0,973374324\n534,364,5.0,973376883\n534,367,3.0,973377437\n534,368,4.0,973376107\n534,374,3.0,973358252\n534,376,4.0,973376030\n534,377,4.0,973375956\n534,378,3.0,973375142\n534,380,4.0,973375852\n534,387,3.0,973376324\n534,391,3.0,973377486\n534,423,4.0,973376075\n534,431,4.0,973377326\n534,434,4.0,973358231\n534,436,4.0,973440541\n534,442,3.0,973376296\n534,454,5.0,973440238\n534,455,4.0,973376746\n534,457,4.0,973375708\n534,463,4.0,973377486\n534,464,3.0,973376368\n534,474,4.0,973375818\n534,479,4.0,973376255\n534,480,3.0,973375745\n534,481,3.0,973440263\n534,490,4.0,973440263\n534,494,4.0,973376196\n534,500,3.0,973377218\n534,507,4.0,973376255\n534,511,3.0,973376075\n534,517,4.0,973376030\n534,539,4.0,973374360\n534,540,4.0,973440714\n534,543,3.0,973374324\n534,547,4.0,973376804\n534,550,2.0,973374670\n534,552,4.0,973376255\n534,586,4.0,973377218\n534,587,3.0,973374472\n534,588,5.0,973376883\n534,589,3.0,973375708\n534,590,5.0,973376433\n534,593,4.0,973440111\n534,597,3.0,973374165\n534,626,2.0,973376985\n534,628,4.0,973377686\n534,631,4.0,973376946\n534,648,4.0,973376030\n534,673,4.0,973376684\n534,688,2.0,973376804\n534,707,4.0,973377486\n534,731,3.0,973440645\n534,733,5.0,973375818\n534,736,5.0,973374815\n534,742,3.0,973440808\n534,780,5.0,973375884\n534,782,4.0,973440732\n534,785,3.0,973377241\n534,786,3.0,973440592\n534,798,4.0,973376609\n534,799,3.0,973377087\n534,802,5.0,973374472\n534,832,5.0,973440238\n534,836,4.0,973376684\n534,839,2.0,973440862\n534,852,4.0,973374815\n534,992,3.0,973440541\n534,996,4.0,973376255\n534,1015,4.0,973376530\n534,1037,3.0,973376296\n534,1049,5.0,973375956\n534,1061,4.0,973377385\n534,1092,4.0,973440359\n534,1100,4.0,973375491\n534,1213,4.0,973377299\n534,1265,3.0,973374165\n534,1339,4.0,973374815\n534,1343,4.0,973440160\n534,1358,4.0,973377639\n534,1370,3.0,973375852\n534,1377,4.0,973376609\n534,1379,3.0,973376296\n534,1393,4.0,973374023\n534,1396,3.0,973377326\n534,1405,5.0,973376907\n534,1407,4.0,973440444\n534,1408,4.0,973374023\n534,1409,3.0,973374472\n534,1422,4.0,973358204\n534,1427,4.0,973440862\n534,1438,5.0,973440694\n534,1457,3.0,973374980\n534,1459,4.0,973440263\n534,1479,4.0,973375491\n534,1485,4.0,973377169\n534,1488,4.0,973376255\n534,1499,5.0,973376804\n534,1515,4.0,973440732\n534,1517,4.0,973377087\n534,1518,3.0,973376075\n534,1527,3.0,973375918\n534,1552,4.0,973376107\n534,1569,2.0,973375193\n534,1573,4.0,973375818\n534,1580,4.0,973375884\n534,1582,4.0,973376493\n534,1584,5.0,973377576\n534,1586,3.0,973376075\n534,1592,3.0,973358138\n534,1597,4.0,973374324\n534,1605,3.0,973376746\n534,1608,4.0,973440238\n534,1610,4.0,973375745\n534,1615,4.0,973376493\n534,1616,4.0,973376163\n534,1620,4.0,973377437\n534,1625,5.0,973440199\n534,1626,3.0,973440763\n534,1627,3.0,973376368\n534,1631,4.0,973440444\n534,1644,4.0,973440808\n534,1645,4.0,973377352\n534,1673,2.0,973377818\n534,1682,3.0,973378518\n534,1687,5.0,973376324\n534,1717,4.0,973440592\n534,1721,5.0,973377778\n534,1732,2.0,973377415\n534,1744,4.0,973376746\n534,1753,2.0,973377189\n534,1754,5.0,973376107\n534,1769,3.0,973440645\n534,1777,3.0,973374582\n534,1792,4.0,973440472\n534,1801,4.0,973374870\n534,1805,4.0,973377415\n534,1833,4.0,973376163\n534,1835,4.0,973374870\n534,1876,4.0,973440399\n534,1888,2.0,973375257\n534,1892,3.0,973440399\n534,1894,4.0,973375257\n534,1895,3.0,973374764\n534,1917,5.0,973376075\n534,1918,4.0,973376368\n534,1923,4.0,973377117\n534,2002,4.0,973377437\n534,2006,3.0,973375918\n534,2028,5.0,973375709\n534,2045,4.0,973376433\n534,2046,4.0,973376493\n534,2058,4.0,973375818\n534,2089,4.0,973376907\n534,2125,3.0,973374472\n534,2126,4.0,973377486\n534,2142,5.0,973376932\n534,2154,2.0,973375343\n534,2170,3.0,973375709\n534,2231,4.0,973377385\n534,2266,2.0,973375415\n534,2268,4.0,973377326\n534,2273,4.0,973440541\n534,2278,4.0,973375852\n534,2279,4.0,973440645\n534,2291,2.0,973374980\n534,2294,4.0,973376907\n534,2302,3.0,973377218\n534,2321,3.0,973377062\n534,2353,4.0,973375745\n534,2355,4.0,973376883\n534,2424,3.0,973374634\n534,2427,4.0,973376030\n534,2429,4.0,973376684\n534,2485,3.0,973375257\n534,2490,4.0,973376075\n534,2501,4.0,973377664\n534,2502,3.0,973374557\n534,2505,4.0,973440763\n534,2539,2.0,973377241\n534,2561,4.0,973440694\n534,2571,4.0,973375709\n534,2581,3.0,973374815\n534,2687,5.0,973376883\n534,2688,4.0,973440541\n534,2706,4.0,973377218\n534,2707,4.0,973440399\n534,2724,2.0,973375142\n534,2762,5.0,973440111\n534,2763,4.0,973375956\n534,2770,3.0,973377218\n534,2803,4.0,973440444\n534,2806,3.0,973440592\n534,2822,4.0,973375567\n534,2826,4.0,973376196\n534,2827,3.0,973440808\n534,2840,4.0,973440592\n534,2841,4.0,973440239\n534,2875,4.0,973374870\n534,2881,5.0,973376296\n534,2890,3.0,973377778\n534,2906,2.0,973375597\n534,2916,3.0,973375745\n534,2944,3.0,973358175\n534,3005,4.0,973440239\n534,3020,3.0,973376296\n534,3044,4.0,973374472\n534,3063,4.0,973440763\n534,3064,4.0,973440111\n534,3081,3.0,973374870\n534,3147,5.0,973377664\n534,3148,2.0,973377754\n534,3176,4.0,973440399\n534,3178,4.0,973375818\n534,3246,4.0,973377799\n534,3249,4.0,973440694\n534,3250,4.0,973377664\n534,3253,4.0,973377189\n534,3255,3.0,973377169\n534,3256,4.0,973375852\n534,3257,5.0,973375290\n534,3259,4.0,973374634\n534,3261,3.0,973374472\n534,3269,4.0,973374764\n534,3274,3.0,973376075\n534,3386,4.0,973377818\n534,3436,2.0,973375193\n534,3438,4.0,973376324\n534,3489,4.0,973376530\n534,3557,3.0,973440472\n534,3614,3.0,973375455\n534,3686,4.0,973440399\n534,3809,3.0,973377241\n534,3835,3.0,973440862\n534,3916,5.0,973373845\n535,2,3.0,838631374\n535,10,3.0,838630568\n535,11,3.0,838631207\n535,19,1.0,838630825\n535,21,3.0,838630824\n535,44,3.0,838631815\n535,47,3.0,838630807\n535,95,3.0,838631510\n535,104,3.0,838640301\n535,110,4.0,838630736\n535,141,3.0,838631510\n535,153,3.0,838630364\n535,160,3.0,838630867\n535,161,4.0,838630544\n535,165,3.0,838630364\n535,172,2.0,838631510\n535,173,3.0,838631168\n535,185,2.0,838630568\n535,204,3.0,838631510\n535,208,4.0,838630568\n535,225,3.0,838630825\n535,231,3.0,838630391\n535,253,3.0,838630568\n535,288,3.0,838630736\n535,292,3.0,838630544\n535,293,4.0,838631433\n535,296,3.0,838630347\n535,300,3.0,838630735\n535,316,2.0,838630391\n535,318,4.0,838630391\n535,329,2.0,838630391\n535,333,3.0,838631826\n535,344,3.0,838630364\n535,349,4.0,838630364\n535,350,3.0,838631207\n535,356,3.0,838630735\n535,357,1.0,838631207\n535,364,3.0,838630807\n535,367,3.0,838630825\n535,380,3.0,838630347\n535,410,2.0,838630735\n535,434,2.0,838630544\n535,440,3.0,838631168\n535,442,3.0,838631432\n535,454,4.0,838630807\n535,457,4.0,838630544\n535,474,3.0,838631826\n535,480,4.0,838630807\n535,500,3.0,838631168\n535,508,3.0,838632442\n535,539,3.0,838631182\n535,551,5.0,838631849\n535,553,2.0,838631207\n535,586,3.0,838631182\n535,587,3.0,838631182\n535,588,3.0,838630364\n535,589,4.0,838630868\n535,590,3.0,838630347\n535,592,5.0,838630347\n535,593,5.0,838630544\n535,595,1.0,838630391\n535,597,1.0,838631207\n535,799,3.0,838640301\n536,19,2.0,829471719\n536,22,5.0,829471720\n536,23,4.0,829471719\n536,34,5.0,829471719\n536,39,5.0,829471720\n536,45,3.0,829471925\n536,47,4.0,829471721\n536,50,5.0,829471722\n536,57,5.0,829471720\n536,60,4.0,829471720\n536,110,5.0,829471719\n536,122,3.0,829471719\n536,132,3.0,829471720\n536,144,5.0,829471719\n536,150,5.0,829471719\n536,153,4.0,829471719\n536,154,2.0,829471719\n536,158,4.0,829471719\n536,159,5.0,829471720\n536,160,3.0,829471720\n536,161,5.0,829471720\n536,163,5.0,829471720\n536,165,5.0,829471720\n536,177,5.0,829471721\n536,178,5.0,829471721\n536,180,4.0,829471721\n536,181,1.0,829471721\n536,185,4.0,829471721\n536,186,3.0,829471721\n536,188,2.0,829471721\n536,193,3.0,829471722\n536,194,4.0,829471722\n536,195,4.0,829471722\n536,196,4.0,829471722\n536,198,5.0,829471722\n536,204,4.0,829471722\n536,206,4.0,829471722\n536,216,3.0,829471719\n536,222,5.0,829471719\n536,223,5.0,829471719\n536,224,5.0,829471720\n536,225,4.0,829471720\n536,230,5.0,829471720\n536,231,4.0,829471720\n536,233,5.0,829471720\n536,234,3.0,829471720\n536,235,5.0,829471720\n536,236,4.0,829471720\n536,237,4.0,829471720\n536,241,5.0,829471720\n536,246,5.0,829471720\n536,248,2.0,829471720\n536,250,4.0,829471720\n536,252,2.0,829471720\n536,253,4.0,829471720\n536,256,2.0,829471720\n536,257,4.0,829471720\n536,259,4.0,829471720\n536,260,5.0,829471720\n536,261,5.0,829471720\n536,266,3.0,829471720\n536,270,4.0,829471721\n536,273,3.0,829471721\n536,276,3.0,829471721\n536,277,5.0,829471721\n536,278,3.0,829471721\n536,281,4.0,829471721\n536,288,2.0,829471721\n536,289,3.0,829471721\n536,291,3.0,829471721\n536,293,4.0,829471721\n536,294,4.0,829471721\n536,295,3.0,829471721\n536,296,5.0,829471721\n536,300,4.0,829471721\n536,303,3.0,829471721\n536,305,3.0,829471721\n536,315,4.0,829471722\n536,316,4.0,829471722\n536,317,4.0,829471721\n536,318,5.0,829471721\n536,319,3.0,829471721\n536,333,4.0,829471722\n536,337,5.0,829471722\n536,339,4.0,829471722\n536,340,3.0,829471722\n536,344,5.0,829471719\n536,349,4.0,829471719\n536,351,4.0,829471720\n536,352,3.0,829471720\n536,380,4.0,829471722\n536,381,4.0,829471722\n536,416,3.0,829471719\n536,420,3.0,829471719\n536,427,4.0,829471719\n536,431,4.0,829471719\n536,432,2.0,829471719\n536,434,4.0,829471720\n536,435,2.0,829471720\n536,444,1.0,829471720\n536,452,5.0,829471722\n536,468,2.0,829471720\n536,553,5.0,829471722\n536,554,3.0,829471722\n536,555,5.0,829471722\n536,588,5.0,829471719\n536,590,5.0,829471720\n536,592,3.0,829471719\n536,595,5.0,829471719\n537,1,5.0,879502465\n537,2,3.0,879521681\n537,7,5.0,879520683\n537,11,3.0,879502984\n537,17,5.0,879502758\n537,21,5.0,879503236\n537,29,5.0,879502683\n537,32,4.0,879502925\n537,36,4.0,879502514\n537,41,5.0,879503236\n537,43,4.0,879502957\n537,50,5.0,879502683\n537,52,3.0,879521002\n537,57,2.0,879507093\n537,58,5.0,879502641\n537,62,4.0,879503194\n537,89,3.0,879521128\n537,95,2.0,879521715\n537,105,4.0,879521206\n537,125,1.0,879507205\n537,141,4.0,879506811\n537,144,3.0,879520566\n537,150,4.0,879502514\n537,151,4.0,879521639\n537,156,3.0,879507044\n537,161,3.0,879503028\n537,163,5.0,879521495\n537,164,4.0,879520842\n537,171,5.0,879503134\n537,176,4.0,879502488\n537,194,4.0,879503053\n537,195,2.0,879521681\n537,205,5.0,879503263\n537,222,4.0,879520585\n537,229,4.0,879520728\n537,230,4.0,879520728\n537,235,3.0,879506774\n537,236,3.0,879521495\n537,237,3.0,879521620\n537,252,3.0,879521370\n537,253,2.0,879521390\n537,260,5.0,879503350\n537,261,4.0,879503350\n537,265,4.0,879502404\n537,266,4.0,879521370\n537,268,4.0,879520881\n537,270,1.0,879521161\n537,272,5.0,879502901\n537,273,3.0,879521657\n537,277,4.0,879506835\n537,280,4.0,879502829\n537,281,4.0,879520881\n537,282,4.0,879520806\n537,296,4.0,879503194\n537,300,4.0,879503164\n537,314,5.0,879503317\n537,318,5.0,879502851\n537,329,5.0,879521461\n537,334,4.0,879502404\n537,337,4.0,879507044\n537,339,4.0,879503289\n537,342,5.0,879507069\n537,345,4.0,879507069\n537,348,4.0,879502583\n537,349,3.0,879507205\n537,350,2.0,879507166\n537,356,4.0,879502683\n537,357,4.0,879503262\n537,368,4.0,879507224\n537,369,4.0,879521206\n537,371,2.0,879503215\n537,372,2.0,879521657\n537,373,5.0,879506811\n537,380,3.0,879521089\n537,412,5.0,879520668\n537,417,3.0,879503164\n537,440,4.0,879521089\n537,452,4.0,879520774\n537,457,4.0,879502957\n537,471,5.0,879502608\n537,474,3.0,879503164\n537,475,5.0,879502925\n537,480,3.0,879503134\n537,492,4.0,879520881\n537,497,5.0,879502926\n537,500,2.0,879507007\n537,507,3.0,879503350\n537,508,5.0,879506753\n537,509,5.0,879502878\n537,515,5.0,879502660\n537,523,1.0,879502709\n537,527,5.0,879502403\n537,529,4.0,879502735\n537,531,3.0,879503350\n537,534,4.0,879520704\n537,535,1.0,879507166\n537,538,4.0,879502901\n537,539,5.0,879520960\n537,541,5.0,879502806\n537,551,2.0,879521110\n537,553,3.0,879506989\n537,562,5.0,879503317\n537,581,4.0,879502537\n537,587,3.0,879521738\n537,590,5.0,879507116\n537,593,4.0,879502403\n537,608,3.0,879502829\n537,627,2.0,879502709\n537,635,5.0,879521068\n537,648,3.0,879521370\n537,661,4.0,879503289\n537,708,4.0,879521090\n537,714,4.0,879521161\n537,719,2.0,879521351\n537,720,5.0,879502583\n537,736,3.0,879520902\n537,745,5.0,879502537\n537,750,5.0,879502537\n537,761,1.0,879521526\n537,780,5.0,879503369\n537,788,4.0,879521542\n537,800,5.0,879502806\n537,801,3.0,879521771\n537,802,4.0,879521254\n537,830,3.0,879521738\n537,875,4.0,879520704\n537,898,5.0,879502786\n537,899,5.0,879503093\n537,900,4.0,879521003\n537,901,5.0,879503164\n537,902,5.0,879503390\n537,904,5.0,879502957\n537,907,5.0,879502514\n537,908,5.0,879502466\n537,909,3.0,879502984\n537,910,4.0,879502660\n537,911,5.0,879502735\n537,912,5.0,879502559\n537,913,4.0,879502878\n537,914,5.0,879503317\n537,915,5.0,879503317\n537,916,5.0,879502984\n537,918,4.0,879507224\n537,919,5.0,879502984\n537,920,5.0,879503112\n537,921,5.0,879520789\n537,922,4.0,879503215\n537,923,4.0,879502445\n537,924,5.0,879502786\n537,926,5.0,879506811\n537,930,5.0,879506937\n537,932,4.0,879521771\n537,933,5.0,879506733\n537,934,4.0,879503390\n537,935,4.0,879506835\n537,936,4.0,879502829\n537,937,5.0,879506753\n537,938,5.0,879506922\n537,940,4.0,879502851\n537,942,4.0,879502829\n537,943,4.0,879503194\n537,945,5.0,879520984\n537,948,4.0,879507044\n537,949,3.0,879503053\n537,951,4.0,879502559\n537,953,4.0,879503289\n537,954,4.0,879502608\n537,955,5.0,879502641\n537,956,4.0,879521738\n537,969,5.0,879502465\n537,971,5.0,879502901\n537,973,4.0,879502957\n537,994,5.0,879507069\n537,1013,3.0,879521390\n537,1022,3.0,879503317\n537,1023,5.0,879520825\n537,1027,2.0,879521110\n537,1028,3.0,879503194\n537,1032,5.0,879503075\n537,1035,5.0,879503194\n537,1042,4.0,879503350\n537,1047,2.0,879503262\n537,1050,5.0,879506774\n537,1051,2.0,879521254\n537,1061,5.0,879506989\n537,1066,5.0,879502488\n537,1073,5.0,879503075\n537,1077,3.0,879503390\n537,1079,3.0,879502641\n537,1080,4.0,879502957\n537,1081,4.0,879507069\n537,1082,3.0,879502514\n537,1084,4.0,879507183\n537,1086,5.0,879507224\n537,1094,3.0,879503164\n537,1095,4.0,879520984\n537,1096,4.0,879507094\n537,1097,4.0,879506885\n537,1099,5.0,879507116\n537,1103,4.0,879503215\n537,1104,5.0,879502709\n537,1124,5.0,879507094\n537,1125,4.0,879521038\n537,1127,5.0,879521299\n537,1136,5.0,879506811\n537,1148,5.0,879502583\n537,1150,5.0,879507134\n537,1171,4.0,879506962\n537,1172,5.0,879502984\n537,1175,5.0,879503236\n537,1177,4.0,879506852\n537,1179,3.0,879503028\n537,1183,5.0,879502153\n537,1184,5.0,879506922\n537,1185,4.0,879503093\n537,1187,4.0,879521681\n537,1188,5.0,879503093\n537,1193,5.0,879502901\n537,1196,5.0,879502641\n537,1197,5.0,879502445\n537,1198,5.0,879502404\n537,1199,5.0,879502559\n537,1200,2.0,879502608\n537,1203,5.0,879502901\n537,1207,5.0,879502423\n537,1210,5.0,879502709\n537,1211,5.0,879503028\n537,1214,3.0,879502957\n537,1219,4.0,879507116\n537,1220,4.0,879502537\n537,1223,5.0,879506811\n537,1224,4.0,879506989\n537,1225,3.0,879502641\n537,1230,4.0,879503112\n537,1231,4.0,879502806\n537,1234,4.0,879502758\n537,1235,5.0,879520825\n537,1238,5.0,879521022\n537,1240,3.0,879502957\n537,1243,5.0,879502786\n537,1244,2.0,879520902\n537,1246,4.0,879520984\n537,1247,5.0,879507024\n537,1249,4.0,879502786\n537,1250,3.0,879502878\n537,1252,4.0,879502829\n537,1253,5.0,879506989\n537,1256,4.0,879506733\n537,1258,3.0,879503317\n537,1259,4.0,879520960\n537,1265,5.0,879521068\n537,1266,3.0,879502786\n537,1267,5.0,879503075\n537,1269,5.0,879503289\n537,1270,4.0,879502957\n537,1271,4.0,879502514\n537,1273,5.0,879502758\n537,1276,5.0,879502488\n537,1278,4.0,879502758\n537,1282,5.0,879502925\n537,1283,4.0,879502735\n537,1284,4.0,879506885\n537,1285,3.0,879520825\n537,1286,4.0,879503369\n537,1288,4.0,879502758\n537,1289,3.0,879520728\n537,1291,4.0,879502735\n537,1292,4.0,879502583\n537,1296,5.0,879503164\n537,1299,5.0,879503164\n537,1300,5.0,879520925\n537,1302,3.0,879502735\n537,1304,4.0,879502445\n537,1305,5.0,879503028\n537,1306,1.0,879503289\n537,1307,4.0,879503028\n537,1321,3.0,879503262\n537,1333,5.0,879503262\n537,1348,2.0,879502683\n537,1350,2.0,879507094\n537,1356,5.0,879503317\n537,1357,3.0,879503053\n537,1358,5.0,879502404\n537,1365,5.0,879502608\n537,1372,5.0,879520984\n537,1374,5.0,879502660\n537,1376,3.0,879506962\n537,1377,1.0,879521681\n537,1380,5.0,879521022\n537,1387,4.0,879503134\n537,1394,5.0,879520600\n537,1399,4.0,879507069\n537,1408,3.0,879520960\n537,1411,4.0,879502786\n537,1414,4.0,879502215\n537,1422,2.0,881749440\n537,1425,1.0,879521715\n537,1441,3.0,879502878\n537,1479,2.0,879502240\n537,1584,5.0,879502153\n537,1590,1.0,879502313\n537,1597,3.0,879502153\n537,1608,4.0,879502256\n537,1610,5.0,879520881\n537,1614,4.0,879502240\n537,1617,3.0,879502175\n537,5060,5.0,879506902\n538,1,5.0,831835670\n538,110,4.0,831835741\n538,111,5.0,831835877\n538,150,4.0,831835552\n538,153,3.0,831835577\n538,163,3.0,831835835\n538,165,3.0,831835647\n538,185,3.0,831835696\n538,207,3.0,831835877\n538,208,3.0,831835696\n538,246,5.0,831835856\n538,253,3.0,831835696\n538,288,3.0,831835741\n538,296,3.0,831835552\n538,300,5.0,831835696\n538,316,2.0,831835647\n538,318,5.0,831835577\n538,319,5.0,831835877\n538,329,2.0,831835647\n538,380,2.0,831835552\n538,509,5.0,831835835\n538,588,4.0,831835577\n538,590,4.0,831835552\n538,592,3.0,831835552\n538,595,3.0,831835647\n539,17,4.0,956159579\n539,46,3.0,951928750\n539,50,4.0,956159510\n539,265,4.0,956858891\n539,296,4.0,956858825\n539,318,4.0,956159456\n539,326,5.0,956159627\n539,527,4.0,951928689\n539,608,4.0,956159610\n539,1066,4.0,956159553\n539,1172,5.0,956858863\n539,1259,5.0,956858891\n539,1270,3.0,951928751\n539,1293,3.0,956858810\n539,1307,3.0,956159595\n539,1358,5.0,951928751\n539,1704,4.0,956858792\n539,2019,3.0,956159456\n539,2352,4.0,956858792\n539,3072,5.0,951928718\n539,3095,4.0,956159510\n539,3142,5.0,956159323\n539,3158,4.0,956159211\n539,3178,4.0,956159265\n539,3418,4.0,956858720\n539,3424,3.0,956858772\n540,318,5.0,1168076342\n540,1125,4.0,1168074085\n540,2643,4.0,1168075053\n540,2803,3.5,1168074137\n540,4226,4.0,1168076332\n540,4369,3.0,1168074098\n540,4558,4.0,1168075163\n540,4973,4.5,1168076276\n540,4975,4.5,1168074045\n540,5218,4.0,1168073989\n540,5309,4.5,1168075355\n540,5943,2.5,1168075282\n540,7293,4.5,1168075132\n540,7373,4.0,1168075070\n540,8783,4.5,1168075121\n540,8866,1.0,1168075646\n540,8917,1.5,1168075138\n540,34048,4.5,1168075097\n540,48516,4.5,1168076298\n540,48774,2.0,1168076287\n541,356,4.0,976829473\n541,785,3.0,976830103\n541,923,3.0,976829555\n541,1093,4.0,976829992\n541,1127,3.0,976829813\n541,1193,4.0,976829587\n541,2396,2.0,976830241\n541,2490,3.0,976830173\n541,2599,3.0,976830014\n541,2628,2.0,976829508\n541,2657,3.0,976829555\n541,2692,4.0,976830210\n541,2693,4.0,976830283\n541,2707,4.0,976829843\n541,2710,2.0,976829924\n541,2712,4.0,976830039\n541,2716,5.0,976830069\n541,2762,5.0,976830241\n541,2840,2.0,976830264\n541,2841,4.0,976830264\n541,2908,3.0,976829956\n541,2959,5.0,976830039\n541,2997,4.0,976829924\n541,3175,3.0,976830069\n541,3219,4.0,976830173\n541,3354,1.0,976830146\n541,3578,3.0,976830069\n541,3593,1.0,976829843\n541,3977,3.0,976829956\n542,1,4.5,1424965705\n542,329,4.0,1424965248\n542,858,5.0,1424965203\n542,941,3.0,1379198203\n542,1073,3.0,1424965570\n542,1221,5.0,1424965208\n542,1682,4.5,1424965672\n542,1704,3.0,1424965242\n542,1907,4.0,1424965699\n542,2384,1.5,1379197453\n542,2662,2.5,1379197476\n542,3646,2.5,1379197908\n542,3751,4.0,1424965707\n542,3945,4.0,1379198608\n542,4241,2.5,1379198504\n542,4306,4.5,1424965323\n542,4366,4.0,1379197913\n542,4886,5.0,1424965335\n542,4896,4.5,1424965530\n542,4973,5.0,1424965333\n542,4993,4.0,1424965323\n542,5218,2.0,1424966053\n542,5444,5.0,1424966052\n542,5445,4.5,1424965331\n542,5480,3.5,1379198275\n542,5796,4.0,1379198299\n542,5816,3.5,1424965542\n542,5952,4.0,1424965323\n542,6377,5.0,1424965714\n542,6539,4.5,1424965329\n542,7064,2.0,1379198242\n542,7153,4.5,1424965326\n542,8368,3.0,1424965555\n542,8961,3.0,1424965710\n542,26693,4.5,1379198698\n542,27706,2.0,1424965534\n542,33681,3.5,1379198860\n542,40815,4.0,1424965587\n542,46578,1.0,1424966216\n542,50872,5.0,1424965697\n542,51662,3.5,1424966220\n542,54001,2.0,1424965559\n542,58559,5.0,1424965212\n542,59315,4.5,1424966213\n542,59501,3.0,1424965565\n542,60069,4.5,1424965648\n542,62376,4.5,1424965590\n542,68954,5.0,1424965642\n542,69844,4.5,1424965553\n542,74530,4.0,1379198627\n542,74789,2.5,1424965538\n542,76093,5.0,1424965646\n542,78499,5.0,1424965701\n542,81834,5.0,1424965527\n542,82169,4.0,1424965567\n542,88125,5.0,1424965552\n542,89745,3.5,1424965642\n542,90531,3.5,1379198724\n542,91529,5.0,1424965642\n542,99149,2.5,1379198642\n542,109374,5.0,1424965254\n542,109487,3.5,1424965261\n542,116797,4.5,1424965256\n543,1,5.0,866931481\n543,3,5.0,866931510\n543,5,3.0,866931510\n543,7,5.0,866931538\n543,107,5.0,866931807\n543,141,5.0,866932242\n543,260,5.0,866931510\n543,376,4.0,866931538\n543,494,5.0,866932243\n543,608,5.0,866931510\n543,609,3.0,866931838\n543,631,3.0,866931854\n543,647,5.0,866931807\n543,648,5.0,866931482\n543,653,5.0,866931538\n543,661,5.0,866931789\n543,663,4.0,866931868\n543,673,4.0,866931807\n543,708,4.0,866931538\n543,719,5.0,866931789\n543,733,5.0,866931510\n543,736,5.0,866931480\n543,761,4.0,866931824\n543,762,5.0,866931772\n543,780,5.0,866931479\n543,783,4.0,866931789\n543,786,4.0,866931510\n543,788,3.0,866931538\n543,801,5.0,866931981\n543,802,4.0,866931538\n543,810,3.0,866931868\n543,837,4.0,866931883\n543,848,5.0,866931969\n543,852,5.0,866931789\n543,880,3.0,866931854\n543,881,4.0,866931981\n543,1073,3.0,866931510\n543,1210,5.0,866931772\n543,1356,5.0,866931538\n543,1363,4.0,866931930\n543,1367,3.0,866931824\n543,1429,4.0,866931957\n543,1460,4.0,866932056\n543,1485,5.0,866931930\n543,1513,5.0,866932056\n543,1562,4.0,866931657\n544,6,4.5,1442495715\n544,16,4.0,1442495597\n544,25,5.0,1442495673\n544,32,4.5,1435786126\n544,47,5.0,1435790584\n544,110,4.0,1442495635\n544,111,4.5,1435785957\n544,150,5.0,1435786826\n544,223,5.0,1442495824\n544,260,4.0,1435785892\n544,293,4.5,1435785947\n544,296,4.5,1435785870\n544,356,4.0,1435787001\n544,480,4.0,1442495639\n544,527,4.5,1435786179\n544,556,4.5,1435788129\n544,589,4.5,1435786213\n544,593,4.0,1435785913\n544,608,5.0,1435786043\n544,714,5.0,1435786318\n544,750,4.5,1435785884\n544,778,5.0,1435785992\n544,780,3.5,1442495645\n544,858,5.0,1435787291\n544,924,5.0,1435786026\n544,1080,5.0,1435786853\n544,1089,4.5,1435785946\n544,1090,4.5,1435787247\n544,1136,5.0,1435786089\n544,1147,4.0,1435787527\n544,1175,4.5,1435786234\n544,1196,4.0,1435785894\n544,1199,4.5,1435786860\n544,1200,5.0,1435786122\n544,1206,5.0,1435785994\n544,1208,5.0,1435785937\n544,1214,5.0,1435786045\n544,1217,4.5,1435786897\n544,1222,5.0,1435787230\n544,1230,5.0,1435787405\n544,1233,5.0,1435785959\n544,1240,4.5,1435786159\n544,1244,4.5,1435786954\n544,1258,4.5,1435786889\n544,1270,4.5,1435786256\n544,1320,4.0,1435790721\n544,1391,5.0,1442495599\n544,1500,4.5,1442495728\n544,1584,5.0,1435788295\n544,1645,4.0,1442495753\n544,1653,4.5,1435786492\n544,1680,4.5,1435790608\n544,1682,4.5,1435786612\n544,1704,4.0,1435786627\n544,1729,4.5,1442495757\n544,1732,5.0,1435786112\n544,1884,4.5,1435786867\n544,1921,4.0,1435788309\n544,1968,5.0,1435787454\n544,2019,5.0,1435785883\n544,2028,4.5,1435785950\n544,2117,5.0,1435788573\n544,2278,4.5,1442495770\n544,2329,4.0,1435785889\n544,2336,4.5,1435790461\n544,2396,4.0,1435790618\n544,2427,5.0,1435790999\n544,2455,4.5,1435788271\n544,2529,4.5,1435786091\n544,2542,5.0,1442495689\n544,2571,4.0,1435785905\n544,2692,4.5,1435786263\n544,2712,4.5,1435790337\n544,2716,4.5,1435786393\n544,2788,5.0,1435787256\n544,2858,4.0,1435785886\n544,2918,5.0,1435787004\n544,2947,5.0,1435787569\n544,2959,4.5,1435785873\n544,2997,4.5,1435786056\n544,3033,4.0,1435786659\n544,3160,4.5,1435790517\n544,3253,4.0,1435786474\n544,3328,5.0,1435790974\n544,3481,4.5,1435790189\n544,3535,4.5,1442496199\n544,3569,4.0,1435790295\n544,3578,4.0,1442496139\n544,3753,4.0,1442496090\n544,3910,4.0,1435790279\n544,3916,4.0,1435786457\n544,3949,4.5,1435786115\n544,3994,3.5,1442496096\n544,4011,4.5,1435786004\n544,4022,4.0,1442496159\n544,4027,4.5,1435787238\n544,4034,4.5,1435790796\n544,4144,4.5,1435786197\n544,4148,4.0,1442496227\n544,4223,4.5,1435790889\n544,4226,5.0,1442496141\n544,4246,4.0,1442496108\n544,4370,4.0,1442496116\n544,4643,4.0,1442496197\n544,4848,4.5,1442496191\n544,4874,4.0,1442496247\n544,4881,4.5,1442496311\n544,4914,5.0,1435786226\n544,4963,4.5,1435790757\n544,4973,3.5,1442496153\n544,4993,4.0,1442496144\n544,4995,4.5,1441130040\n544,5010,5.0,1442496124\n544,5152,4.0,1442496327\n544,5266,4.5,1435790719\n544,5269,5.0,1435789858\n544,5378,3.5,1442496088\n544,5388,4.5,1442496250\n544,5459,4.0,1442496181\n544,5502,4.5,1442496123\n544,5528,4.5,1442496289\n544,5633,4.5,1435790476\n544,5669,3.5,1435786473\n544,5673,5.0,1442496269\n544,5945,5.0,1442496261\n544,5952,4.0,1442496145\n544,5954,4.5,1435789865\n544,5956,4.5,1442496230\n544,6016,4.5,1435785875\n544,6218,4.0,1442496217\n544,6281,4.5,1442496272\n544,6365,3.5,1442496169\n544,6502,4.0,1435788303\n544,6711,4.0,1442496092\n544,6796,4.0,1435786495\n544,6807,5.0,1435786381\n544,6863,4.0,1442496188\n544,6874,4.5,1435787052\n544,6934,3.5,1442496100\n544,6975,5.0,1435786503\n544,6978,5.0,1442495801\n544,6979,4.0,1435786625\n544,7143,4.0,1435786571\n544,7153,4.0,1442496146\n544,7156,5.0,1435787477\n544,7323,5.0,1442496397\n544,7361,3.5,1435787413\n544,7438,4.5,1435786267\n544,7502,5.0,1435787386\n544,7980,4.0,1435786520\n544,8638,4.5,1435790121\n544,8937,5.0,1435786751\n544,8984,4.0,1435791025\n544,27611,4.0,1435786967\n544,30749,4.0,1435787483\n544,31410,5.0,1435787847\n544,31413,5.0,1442496445\n544,33493,4.0,1442495913\n544,33794,4.5,1442495894\n544,33903,4.5,1442496425\n544,34542,5.0,1435788175\n544,36527,4.0,1435790614\n544,37741,4.0,1442495987\n544,39292,4.5,1435790992\n544,40278,4.5,1441130082\n544,40583,4.5,1435790994\n544,40819,4.5,1442495939\n544,41285,5.0,1442495982\n544,41997,4.5,1442495865\n544,43376,4.5,1441130047\n544,44191,4.5,1435786278\n544,44195,4.0,1435786990\n544,44199,4.5,1435786313\n544,44555,5.0,1435787242\n544,45728,4.0,1435786693\n544,45950,4.5,1442496011\n544,46578,4.0,1442495907\n544,46723,4.0,1435786599\n544,48304,5.0,1442496004\n544,48385,5.0,1442495929\n544,48738,4.5,1442495877\n544,48774,4.5,1442495925\n544,49272,4.0,1442495909\n544,51540,4.5,1435790715\n544,51662,4.0,1442495917\n544,52328,4.0,1441129984\n544,53000,4.0,1442495883\n544,53322,4.0,1435790807\n544,53550,4.0,1441129490\n544,54286,4.0,1435787061\n544,55247,4.5,1435790092\n544,55274,4.5,1435790492\n544,55276,4.5,1442495996\n544,55814,4.0,1435790050\n544,55820,4.5,1435787294\n544,56286,4.5,1435790415\n544,56367,5.0,1435786380\n544,56782,4.0,1441128865\n544,56788,4.5,1435790930\n544,58559,4.5,1435787544\n544,58839,4.0,1435791035\n544,59315,4.0,1442495902\n544,60333,5.0,1435788158\n544,61013,5.0,1442496475\n544,61236,5.0,1435788088\n544,61323,5.0,1435786753\n544,63113,3.5,1442495977\n544,64197,5.0,1435789819\n544,64321,4.5,1442496442\n544,64499,5.0,1435790789\n544,64501,5.0,1435790798\n544,64620,5.0,1442496037\n544,64839,4.0,1442495874\n544,67508,4.5,1441129619\n544,68157,4.0,1435787229\n544,68237,5.0,1435787220\n544,69134,5.0,1435790312\n544,69481,5.0,1435786462\n544,70286,4.5,1435786350\n544,71156,4.0,1435791008\n544,75983,4.0,1441129616\n544,77455,4.5,1435787023\n544,77658,4.5,1435785901\n544,77800,5.0,1435786613\n544,79132,4.0,1435786926\n544,80126,4.5,1435790943\n544,80463,4.0,1435790710\n544,81562,5.0,1435786535\n544,81591,4.5,1435786349\n544,82459,4.0,1435787788\n544,85774,4.5,1435787688\n544,86190,4.5,1435790483\n544,86320,5.0,1435790249\n544,86345,5.0,1435787502\n544,86347,5.0,1435787503\n544,86377,5.0,1435787499\n544,88744,4.5,1435788240\n544,89470,5.0,1435790622\n544,89492,5.0,1435787776\n544,89804,4.5,1435790934\n544,90531,5.0,1435789821\n544,91500,4.0,1435786584\n544,91529,4.5,1435786218\n544,92535,5.0,1435787488\n544,94864,5.0,1435786825\n544,97304,4.5,1435787428\n544,97921,4.0,1435786395\n544,98154,4.5,1435790186\n544,98961,4.5,1435786508\n544,102445,4.0,1435788267\n544,103253,4.0,1435786696\n544,104069,5.0,1435787678\n544,104841,5.0,1435786512\n544,104913,5.0,1435789958\n544,105844,5.0,1435789807\n544,106487,4.0,1435786666\n544,106766,4.5,1435790440\n544,106920,4.5,1435788238\n544,108709,5.0,1441129470\n544,108727,4.5,1439664753\n544,108981,4.5,1439664758\n544,111759,3.5,1435787713\n544,112183,4.5,1441129929\n544,112552,5.0,1450635860\n544,115210,4.0,1435786632\n544,121491,4.5,1442496482\n544,126430,5.0,1441129082\n544,134130,5.0,1450635800\n545,34,4.0,938567928\n545,36,5.0,938567835\n545,47,5.0,938568630\n545,110,1.0,938568473\n545,111,5.0,938567835\n545,125,3.0,938568630\n545,262,1.0,938568368\n545,265,5.0,938568473\n545,296,5.0,938568162\n545,300,5.0,938568260\n545,493,3.0,938568558\n545,497,4.0,938568260\n545,515,5.0,938568040\n545,549,5.0,938568558\n545,555,5.0,938568630\n545,589,3.0,938567928\n545,608,5.0,938568162\n545,1059,1.0,938568260\n545,1060,5.0,938568260\n545,1097,5.0,938566176\n545,1172,5.0,938566437\n545,1173,2.0,938566655\n545,1183,3.0,938568473\n545,1186,5.0,938566655\n545,1193,5.0,938565586\n545,1213,3.0,938567835\n545,1225,5.0,938566176\n545,1228,5.0,938566319\n545,1230,5.0,938565974\n545,1244,5.0,938565586\n545,1246,3.0,938566746\n545,1249,5.0,938568368\n545,1259,5.0,938566437\n545,1273,4.0,938566556\n545,1290,5.0,938566847\n545,1293,5.0,938566319\n545,1296,5.0,938566655\n545,1358,5.0,938568773\n545,1406,5.0,938568040\n545,1572,5.0,938567680\n545,1617,4.0,938568773\n545,1667,1.0,938568773\n545,1673,5.0,938568473\n545,1704,4.0,938568260\n545,1719,4.0,938567928\n545,1721,3.0,938568040\n545,1729,3.0,938568473\n545,1834,4.0,938568162\n545,1885,1.0,938568473\n545,1955,5.0,938565672\n545,1956,5.0,938566176\n545,1958,5.0,938566746\n545,1959,5.0,938566941\n545,1960,5.0,938566655\n545,1961,3.0,938566437\n545,1962,4.0,938566941\n545,1968,5.0,938566941\n545,2000,1.0,938566941\n545,2020,5.0,938567095\n545,2065,3.0,938567188\n545,2069,4.0,938566176\n545,2076,5.0,938566176\n545,2114,4.0,938566847\n545,2145,5.0,938567095\n545,2146,2.0,938567095\n545,2194,4.0,938566655\n545,2239,4.0,938565672\n545,2240,1.0,938567095\n545,2243,5.0,938566176\n545,2245,4.0,938566746\n545,2248,5.0,938566556\n545,2262,2.0,938567095\n545,2290,1.0,938567322\n545,2291,5.0,938568368\n545,2302,1.0,938568040\n545,2312,5.0,938566556\n545,2313,5.0,938566437\n545,2333,4.0,938567835\n545,2345,4.0,938567411\n545,2348,4.0,938566176\n545,2352,5.0,938566437\n545,2702,2.0,938565060\n545,2704,5.0,938565137\n545,2706,2.0,938564775\n545,2710,2.0,938564887\n545,2712,2.0,938565060\n545,2738,1.0,938567411\n545,2750,4.0,938567322\n545,2757,5.0,938566319\n545,2762,3.0,938564775\n545,2858,5.0,938564775\n545,2866,4.0,938565754\n546,32,5.0,1300579659\n546,145,3.0,1300579094\n546,216,5.0,1303006754\n546,231,5.0,1303006753\n546,272,5.0,1300579160\n546,318,5.0,1300579410\n546,356,5.0,1300579552\n546,1214,5.0,1300580100\n546,1235,0.5,1300579191\n546,1246,5.0,1300579579\n546,1270,5.0,1301166348\n546,1291,5.0,1303171865\n546,1371,4.5,1300579118\n546,1376,5.0,1300579069\n546,1527,4.0,1300580106\n546,1586,3.0,1300579239\n546,1653,5.0,1300579881\n546,1704,5.0,1300579547\n546,1887,5.0,1303006760\n546,1918,5.0,1300579148\n546,1961,5.0,1300579584\n546,2011,5.0,1301166384\n546,2012,5.0,1301166493\n546,2294,5.0,1300579124\n546,2325,4.5,1303006095\n546,2407,4.5,1301166498\n546,2455,1.0,1300579129\n546,2529,4.5,1300579985\n546,2571,5.0,1300579975\n546,2617,5.0,1301167086\n546,2692,4.5,1300579968\n546,2761,4.0,1300579202\n546,2762,5.0,1300579558\n546,2959,5.0,1300579612\n546,2968,3.5,1300579138\n546,3147,5.0,1300579542\n546,3176,4.5,1300579051\n546,3471,4.0,1300579057\n546,3555,4.0,1300579233\n546,4370,4.0,1300580095\n546,4492,0.5,1301166589\n546,4571,5.0,1301166397\n546,4816,5.0,1303005823\n546,4980,5.0,1301166579\n546,5401,5.0,1303006745\n546,5445,4.0,1300579959\n546,5481,5.0,1303006090\n546,7153,5.0,1303171870\n546,7254,3.0,1300579952\n546,8622,0.5,1300579213\n546,25971,4.0,1300579425\n546,27611,5.0,1303171860\n546,33004,5.0,1301166503\n546,48780,5.0,1300579643\n546,52245,5.0,1303006740\n546,56251,5.0,1301166343\n546,58559,5.0,1303171678\n546,60161,5.0,1301166370\n546,60756,5.0,1303006748\n546,62956,5.0,1301166379\n546,64957,3.0,1300579566\n546,66297,5.0,1301166338\n546,76093,4.0,1303171687\n546,79008,5.0,1303172131\n546,79132,5.0,1300579920\n547,1,3.5,1053173138\n547,6,2.5,1149462857\n547,7,2.0,1021098817\n547,11,3.0,1418149949\n547,14,3.5,1053171195\n547,16,4.0,986694981\n547,17,5.0,974778941\n547,21,4.0,974809441\n547,25,4.5,1053087861\n547,32,4.0,981314489\n547,34,4.0,974780707\n547,36,4.0,1022958803\n547,39,3.0,974778610\n547,45,4.0,1022959385\n547,47,4.0,978953596\n547,50,4.0,981314122\n547,57,4.0,1135940915\n547,85,3.0,974810752\n547,94,3.5,1053172557\n547,111,5.0,974809870\n547,116,4.5,1135940972\n547,123,4.0,974810704\n547,125,5.0,1370674374\n547,141,1.0,1022680628\n547,144,2.0,978953694\n547,150,4.0,1149297271\n547,153,2.0,1076809491\n547,155,2.0,1022680052\n547,156,2.5,1106433953\n547,161,1.0,1021100453\n547,162,3.0,974779556\n547,164,3.0,974779821\n547,165,4.5,1175959303\n547,176,5.0,974780806\n547,180,0.5,1076968440\n547,186,3.0,1076209872\n547,193,3.5,1076810172\n547,194,5.0,986695368\n547,203,1.5,1076810290\n547,206,1.0,974778941\n547,222,2.5,1093859677\n547,223,0.5,1053173817\n547,232,4.0,974778291\n547,233,4.0,1022958885\n547,235,4.0,974780707\n547,237,1.0,1076810035\n547,246,5.0,974779093\n547,247,4.0,1028130173\n547,253,0.5,1053768893\n547,261,4.0,1022959104\n547,265,4.0,974778345\n547,266,4.0,1023200973\n547,272,4.0,981314441\n547,279,0.5,1106433903\n547,281,3.5,1053171818\n547,288,4.0,1074131478\n547,289,1.5,1076968459\n547,296,5.0,981314122\n547,300,4.5,1053087754\n547,307,3.0,981314355\n547,308,3.0,981314291\n547,318,5.0,1149387505\n547,334,1.0,1021099490\n547,337,4.5,1053087647\n547,342,4.0,986695097\n547,344,0.5,1076809463\n547,345,3.0,986695097\n547,346,3.0,1021100453\n547,349,3.5,1093859470\n547,350,3.0,1032907468\n547,356,2.0,986694882\n547,357,4.5,1175959289\n547,361,1.0,1076209353\n547,365,2.5,1076968737\n547,369,3.0,1160092880\n547,370,4.5,1076809759\n547,371,2.0,1076810351\n547,372,2.0,1076810061\n547,373,3.0,981314249\n547,377,2.0,974810837\n547,380,3.0,1313414054\n547,381,3.0,994152921\n547,390,3.5,1199391961\n547,412,3.0,1010571549\n547,428,3.5,1118499551\n547,434,1.5,1076809439\n547,440,3.5,1053171907\n547,441,4.5,1053087986\n547,448,5.0,981314419\n547,451,3.0,974810752\n547,454,2.5,1076809450\n547,457,4.0,1023200826\n547,461,1.0,1053173353\n547,474,4.0,986694437\n547,475,4.0,1022959018\n547,477,4.5,1053087935\n547,480,3.0,978953638\n547,490,2.0,1022680440\n547,492,2.0,1022680236\n547,495,4.0,981312547\n547,496,3.0,974778561\n547,500,4.0,1031663976\n547,508,3.0,986695770\n547,509,1.0,986694295\n547,515,4.5,1053087612\n547,518,0.5,1076209489\n547,523,3.0,986695128\n547,524,1.0,1022680161\n547,527,5.0,974809897\n547,529,3.5,1053171413\n547,535,3.0,1021100281\n547,536,1.0,1076968705\n547,537,3.5,1076810727\n547,538,4.0,1106434260\n547,539,3.0,986695485\n547,541,3.5,1198816303\n547,549,2.5,1053173122\n547,555,4.5,1053087931\n547,556,3.0,974778314\n547,562,0.5,1053173877\n547,574,2.0,1022680283\n547,581,5.0,974779641\n547,586,3.0,1076809577\n547,587,3.0,1022680570\n547,590,3.0,1022958550\n547,592,1.0,981313125\n547,593,5.0,974778314\n547,594,5.0,1053172631\n547,595,3.5,1230811517\n547,596,4.0,1053171222\n547,597,3.5,1076809426\n547,608,5.0,974778259\n547,628,4.0,986695232\n547,671,4.0,1000729661\n547,674,3.0,1022966133\n547,685,1.5,1053173380\n547,708,2.5,1053172507\n547,720,2.0,1022679501\n547,728,3.0,974809302\n547,736,3.0,1076809407\n547,745,2.0,974778219\n547,746,2.0,1076968846\n547,750,5.0,974850245\n547,766,3.0,986695721\n547,778,4.0,986694323\n547,780,3.5,1076209233\n547,781,4.0,1010571681\n547,800,3.0,974810036\n547,803,4.0,974810725\n547,804,2.0,1145756452\n547,805,2.5,1114272607\n547,824,2.0,1076968814\n547,838,3.0,986694546\n547,848,2.0,1051689027\n547,851,3.0,1022680672\n547,858,4.0,1022958954\n547,866,4.5,1135940990\n547,898,5.0,974780201\n547,899,5.0,974777482\n547,900,3.0,1021572842\n547,902,5.0,974810254\n547,903,5.0,974777443\n547,904,5.0,974777410\n547,905,4.0,1150858036\n547,906,4.0,1119670216\n547,908,5.0,974777109\n547,909,5.0,974780397\n547,910,5.0,974777443\n547,911,2.0,974809373\n547,912,5.0,974781004\n547,913,5.0,974779724\n547,915,3.0,1022676611\n547,917,4.0,1022242420\n547,918,4.0,1022242562\n547,919,5.0,974809870\n547,920,5.0,974810010\n547,921,4.0,974780397\n547,922,5.0,974777443\n547,923,5.0,1022242534\n547,924,5.0,974810010\n547,926,5.0,974777482\n547,927,5.0,974780614\n547,928,5.0,974810654\n547,929,3.0,1022242645\n547,930,4.0,974779771\n547,931,4.0,1022242677\n547,932,2.0,1021572980\n547,933,3.0,974777753\n547,938,4.5,1053088166\n547,942,4.5,1053171784\n547,945,4.0,974780111\n547,947,3.0,1076809271\n547,948,3.5,1053171326\n547,949,4.0,974777410\n547,950,4.5,1135941066\n547,951,3.0,1152411351\n547,952,4.0,1039880724\n547,953,5.0,1022242596\n547,954,4.5,1187141614\n547,955,5.0,974780009\n547,968,4.0,1022959171\n547,969,5.0,974777443\n547,970,3.0,1076213090\n547,971,5.0,974777662\n547,988,3.0,1006759535\n547,994,5.0,981314291\n547,999,2.0,1022957825\n547,1012,3.5,1199574887\n547,1013,3.5,1053087599\n547,1014,3.5,1199573539\n547,1015,1.5,1145756434\n547,1017,3.5,1199573543\n547,1018,2.5,1199392360\n547,1022,3.0,1076810154\n547,1023,3.0,1199391635\n547,1028,5.0,974780614\n547,1029,5.0,1011142236\n547,1030,0.5,1199220570\n547,1032,3.5,1093859775\n547,1035,5.0,986725723\n547,1036,5.0,981312935\n547,1041,3.5,1053171646\n547,1042,2.0,1022680594\n547,1043,1.5,1246886466\n547,1050,2.5,1053173031\n547,1051,4.0,1022959385\n547,1059,4.0,986695232\n547,1060,4.0,986694546\n547,1068,3.5,1089886857\n547,1069,4.0,1118102104\n547,1077,4.5,1135941051\n547,1078,4.0,974809373\n547,1079,2.0,974780642\n547,1080,5.0,974780841\n547,1081,3.0,1079831508\n547,1082,4.0,986725564\n547,1084,4.5,1135940980\n547,1086,3.0,974777662\n547,1088,5.0,1384462255\n547,1089,4.5,1106434167\n547,1090,4.0,974810188\n547,1092,4.0,1039880724\n547,1093,3.5,1053171305\n547,1094,4.5,1135941106\n547,1095,3.5,1053171131\n547,1096,4.0,974810188\n547,1097,4.0,981312902\n547,1099,4.0,1028129929\n547,1103,5.0,974777566\n547,1104,5.0,974777410\n547,1120,3.0,986694437\n547,1124,3.0,981313014\n547,1129,3.5,1073443756\n547,1135,3.0,981313482\n547,1147,5.0,974779123\n547,1148,2.0,974778219\n547,1150,2.0,1021196325\n547,1152,3.0,1101005921\n547,1153,3.0,1196550476\n547,1154,1.0,1190927827\n547,1161,4.0,986725512\n547,1162,4.0,1022959270\n547,1171,3.0,974809441\n547,1172,5.0,1373125067\n547,1173,0.5,1053173820\n547,1177,3.0,986694736\n547,1179,4.5,1053172163\n547,1183,4.5,1175959575\n547,1185,3.0,981312986\n547,1186,4.5,1106434179\n547,1187,3.0,981314334\n547,1188,1.5,1072254457\n547,1189,5.0,974779556\n547,1190,0.5,1053173866\n547,1191,3.5,1076209448\n547,1192,2.5,1053172477\n547,1193,4.0,974809940\n547,1194,2.0,981312606\n547,1196,2.5,1053173114\n547,1198,2.0,981312829\n547,1199,4.0,1022958741\n547,1200,3.5,1076809605\n547,1203,4.0,1028129718\n547,1204,5.0,974850245\n547,1206,3.0,978360653\n547,1207,5.0,974809846\n547,1208,5.0,974810204\n547,1210,2.5,1053173111\n547,1212,5.0,1022242596\n547,1213,5.0,974809988\n547,1214,3.5,1053172823\n547,1217,5.0,974809963\n547,1219,5.0,974850245\n547,1220,2.0,981313273\n547,1221,4.0,1022958954\n547,1222,4.5,1053087703\n547,1223,2.0,974779039\n547,1225,3.0,1047719348\n547,1226,2.5,1093141366\n547,1227,1.0,1055074335\n547,1228,4.0,974809988\n547,1230,5.0,974779878\n547,1231,4.5,1135941152\n547,1233,0.5,1053173745\n547,1234,4.5,1053087910\n547,1235,4.0,1199218246\n547,1236,3.0,974779093\n547,1238,4.0,974780397\n547,1244,5.0,974809189\n547,1246,1.0,1022958592\n547,1247,5.0,974781004\n547,1248,5.0,974779724\n547,1249,3.0,978953537\n547,1250,3.5,1199575001\n547,1251,5.0,974809897\n547,1252,5.0,974779724\n547,1253,4.0,1114226269\n547,1254,5.0,1022242534\n547,1256,5.0,974780009\n547,1258,5.0,981312865\n547,1259,2.0,974780367\n547,1261,2.0,981313206\n547,1263,5.0,974810170\n547,1264,5.0,974810676\n547,1265,5.0,974780741\n547,1266,3.0,981314471\n547,1267,5.0,1002724048\n547,1268,3.0,1022680645\n547,1269,5.0,974809441\n547,1270,3.5,1053172545\n547,1271,4.0,1022958921\n547,1276,4.5,1053088143\n547,1278,5.0,974780672\n547,1279,3.5,1053172004\n547,1280,4.5,1072253880\n547,1282,5.0,978953596\n547,1284,4.0,974779821\n547,1285,3.5,1053171538\n547,1286,2.5,1053172626\n547,1288,4.5,1198815508\n547,1289,3.5,1053171164\n547,1290,3.0,1076209295\n547,1292,4.0,974780672\n547,1293,5.0,981312829\n547,1295,5.0,981313323\n547,1296,5.0,974809917\n547,1299,5.0,974809917\n547,1300,3.0,981312775\n547,1302,4.0,981313155\n547,1303,5.0,978360689\n547,1304,5.0,974780302\n547,1305,4.5,1135941143\n547,1307,5.0,974809247\n547,1321,4.0,1028129810\n547,1331,1.0,981312703\n547,1332,1.5,1308399120\n547,1333,5.0,974850335\n547,1334,2.0,1022676820\n547,1337,3.5,1200873422\n547,1340,4.5,1329536401\n547,1343,4.0,1022958349\n547,1344,2.0,1022958349\n547,1345,3.0,1022958350\n547,1346,2.0,1022678769\n547,1347,3.0,981313598\n547,1348,5.0,1022676127\n547,1357,4.0,974810806\n547,1358,4.0,974778610\n547,1361,5.0,974779556\n547,1370,4.0,1000530142\n547,1371,1.0,1022677648\n547,1374,2.0,981313433\n547,1377,2.5,1076809861\n547,1380,3.0,981312334\n547,1387,4.0,1153015696\n547,1391,0.5,1076809696\n547,1392,3.0,974780707\n547,1393,3.5,1053171948\n547,1394,2.0,974780533\n547,1395,4.5,1053087916\n547,1396,2.5,1059943485\n547,1399,3.5,1053171366\n547,1405,4.0,1076209789\n547,1407,4.0,986694854\n547,1411,5.0,974809897\n547,1413,2.0,1075587876\n547,1416,2.5,1053173224\n547,1419,4.5,1199390422\n547,1441,4.0,1000729826\n547,1449,4.0,978186367\n547,1464,4.0,1032907360\n547,1466,4.5,1053171104\n547,1475,4.5,1096608819\n547,1476,3.0,986695097\n547,1484,3.5,1053172346\n547,1487,2.5,1119491588\n547,1498,2.0,987185186\n547,1500,3.5,1053172366\n547,1517,1.5,1053173789\n547,1569,3.5,1053172000\n547,1573,1.0,986695422\n547,1580,2.0,986695422\n547,1584,4.0,1076809653\n547,1587,1.0,1022679046\n547,1589,3.5,1076968428\n547,1594,4.0,986694295\n547,1596,1.0,1022680129\n547,1600,2.0,978953694\n547,1610,2.5,1053171334\n547,1611,4.0,986694736\n547,1614,4.0,1053172209\n547,1617,4.5,1053088024\n547,1625,3.5,1076809981\n547,1633,3.0,986694949\n547,1635,4.5,1053088018\n547,1639,0.5,1053173814\n547,1641,4.0,974780642\n547,1649,3.0,974779641\n547,1652,4.5,1123252473\n547,1660,3.0,1022679737\n547,1673,2.5,1053173189\n547,1674,3.0,981312902\n547,1678,3.5,1053172220\n547,1680,4.0,986695020\n547,1682,4.5,1053088101\n547,1683,3.0,1106432637\n547,1693,4.0,1386245353\n547,1694,4.0,981314271\n547,1702,3.5,1145755746\n547,1704,3.0,974778291\n547,1711,1.0,1076810577\n547,1719,4.0,974810224\n547,1721,4.5,1053087784\n547,1729,5.0,986695295\n547,1732,5.0,986695368\n547,1734,3.5,1342849917\n547,1747,4.0,1022959422\n547,1757,4.0,1416886588\n547,1777,3.0,1022680161\n547,1784,4.0,986694582\n547,1798,2.0,974777150\n547,1805,3.5,1053172511\n547,1810,4.0,986694981\n547,1834,4.5,1053087777\n547,1836,1.0,1000548657\n547,1856,2.5,1053173023\n547,1865,1.0,982553042\n547,1883,3.0,974809349\n547,1885,4.5,1053087582\n547,1897,3.0,974810773\n547,1909,3.0,1022680545\n547,1912,0.5,1053173420\n547,1913,4.5,1135941146\n547,1914,2.0,974780741\n547,1916,4.0,1053087504\n547,1921,2.0,1022680375\n547,1923,4.0,1000729826\n547,1924,4.0,1135940765\n547,1934,3.5,1106429881\n547,1936,4.0,1022242645\n547,1938,4.0,1022242596\n547,1939,5.0,974810036\n547,1940,2.5,1412348227\n547,1943,3.0,1206759247\n547,1944,3.0,974777662\n547,1945,5.0,974777443\n547,1946,5.0,974777482\n547,1947,5.0,974810634\n547,1948,5.0,974780614\n547,1950,5.0,974810080\n547,1951,3.0,1021195882\n547,1952,5.0,974809963\n547,1953,5.0,1007046673\n547,1954,1.5,1053173532\n547,1955,4.0,1022959041\n547,1956,5.0,974809988\n547,1958,3.0,981312935\n547,1960,4.0,1022677914\n547,1961,3.0,981312902\n547,1962,3.5,1053171514\n547,1963,4.0,974780672\n547,1964,4.0,974810080\n547,1965,4.0,981313273\n547,1966,1.0,986695770\n547,1968,2.5,1109395730\n547,1987,3.0,981313848\n547,1994,4.5,1053087745\n547,1997,3.0,978185575\n547,2011,1.0,1022678537\n547,2012,0.5,1076809750\n547,2013,2.0,981312606\n547,2014,1.0,1076968597\n547,2015,3.5,1199392090\n547,2017,3.0,1119491602\n547,2018,5.0,1041496155\n547,2019,5.0,974777410\n547,2020,4.5,1053087974\n547,2021,2.0,981313620\n547,2023,2.0,1010571657\n547,2025,4.0,1022957435\n547,2043,3.5,1199574304\n547,2049,2.5,1199392175\n547,2056,3.5,1199391553\n547,2057,3.5,1199391556\n547,2064,5.0,974779641\n547,2065,3.0,974780367\n547,2066,4.5,1093832403\n547,2067,5.0,974810676\n547,2070,4.0,981312865\n547,2072,2.0,1022957825\n547,2076,5.0,981312865\n547,2078,4.0,1076810225\n547,2080,3.5,1199575375\n547,2085,3.0,1199391583\n547,2087,3.5,1093859822\n547,2088,2.0,981313828\n547,2096,3.5,1199574337\n547,2108,3.5,1053171359\n547,2110,2.0,1022958592\n547,2111,2.0,981313155\n547,2112,2.0,986694509\n547,2125,3.5,1349549437\n547,2130,4.0,974810100\n547,2132,5.0,974809963\n547,2135,1.0,978953720\n547,2144,2.5,1107835294\n547,2145,3.5,1053172380\n547,2146,2.0,1053173082\n547,2150,4.5,1198815501\n547,2155,2.0,1000729750\n547,2160,4.0,974850297\n547,2165,3.5,1053172050\n547,2166,2.5,1076209422\n547,2171,3.5,1106432907\n547,2174,0.5,1053173806\n547,2176,4.0,986725023\n547,2181,4.0,1021195940\n547,2183,4.0,986725023\n547,2184,4.0,1021572958\n547,2186,5.0,974779724\n547,2188,2.0,994874444\n547,2194,2.0,981313014\n547,2203,5.0,974779724\n547,2204,4.0,987185079\n547,2206,4.0,1022242698\n547,2208,4.0,1053087565\n547,2239,2.0,974780841\n547,2243,4.5,1135941202\n547,2245,4.5,1198813548\n547,2247,4.0,981313206\n547,2248,5.0,974780533\n547,2259,0.5,1053173753\n547,2260,2.0,981313886\n547,2262,1.0,1022678597\n547,2268,3.0,986694651\n547,2271,3.5,1076209613\n547,2272,3.5,1053171204\n547,2283,5.0,1000456190\n547,2285,5.0,986725785\n547,2289,5.0,974779093\n547,2290,4.0,981313410\n547,2291,4.0,974810752\n547,2300,5.0,974780367\n547,2302,3.5,1053171386\n547,2303,5.0,974809897\n547,2313,4.0,981312829\n547,2318,1.0,986694949\n547,2321,4.5,1053171226\n547,2324,5.0,978186309\n547,2329,4.0,994606869\n547,2333,4.0,981314441\n547,2336,4.0,981314227\n547,2348,2.0,974810144\n547,2349,4.5,1053087725\n547,2352,4.5,1053171088\n547,2353,3.5,1053171111\n547,2356,0.5,1053173743\n547,2357,5.0,974778610\n547,2360,3.0,1108846695\n547,2362,4.0,1135940780\n547,2363,4.0,1022676793\n547,2364,3.0,1022678263\n547,2366,4.0,1022242443\n547,2369,4.5,1135940791\n547,2384,4.0,1022680440\n547,2391,4.5,1053088081\n547,2395,2.0,974780868\n547,2396,3.0,974778291\n547,2398,5.0,974810144\n547,2406,3.0,981313125\n547,2416,2.0,1022678444\n547,2424,1.0,1076810074\n547,2441,3.0,1021099595\n547,2446,2.0,998474371\n547,2454,3.5,1199574689\n547,2455,4.0,981313365\n547,2463,2.0,981313206\n547,2474,5.0,981313301\n547,2485,2.0,994874696\n547,2501,3.5,1202821449\n547,2502,2.5,1053173037\n547,2511,4.0,1128298270\n547,2520,2.0,981312606\n547,2535,1.0,981312642\n547,2539,3.0,1047719404\n547,2542,1.0,1106432602\n547,2545,3.0,1076209818\n547,2546,2.0,1010667653\n547,2550,3.0,1131845704\n547,2551,3.0,1022958592\n547,2565,3.0,974777662\n547,2570,0.5,1053173684\n547,2571,3.5,1053171807\n547,2572,2.0,1022957825\n547,2580,4.5,1053087543\n547,2583,1.0,1022958483\n547,2590,4.0,1022680129\n547,2598,3.0,997190749\n547,2599,3.5,1053173008\n547,2600,2.0,986695097\n547,2610,4.0,986694704\n547,2612,5.0,974810080\n547,2616,0.5,1076810622\n547,2617,2.0,1076809795\n547,2621,3.0,1021100077\n547,2631,3.0,1135940828\n547,2633,4.0,1022242444\n547,2634,3.0,1134102745\n547,2635,3.0,1022242801\n547,2639,4.0,981313505\n547,2640,2.0,1021195505\n547,2644,5.0,1022242420\n547,2648,5.0,1022242366\n547,2651,4.0,1022242765\n547,2654,4.0,1022242730\n547,2657,4.0,1022959249\n547,2664,4.0,1022676611\n547,2671,2.0,1000530166\n547,2678,3.0,1041175153\n547,2683,1.0,1022958026\n547,2688,1.0,994874556\n547,2689,3.5,1183502386\n547,2690,4.0,1045398398\n547,2692,4.0,974810704\n547,2696,4.0,1022957170\n547,2697,2.0,1000729685\n547,2699,1.5,1108173501\n547,2700,3.0,974780614\n547,2702,2.0,980633666\n547,2707,3.0,1055595377\n547,2710,2.0,994874467\n547,2712,3.5,1053172141\n547,2716,4.0,981313155\n547,2717,2.0,981313744\n547,2724,2.0,994874696\n547,2726,5.0,1003062907\n547,2727,4.0,1157943887\n547,2728,4.5,1199391614\n547,2729,3.5,1199573127\n547,2731,5.0,974777410\n547,2732,5.0,974809963\n547,2738,1.0,981313385\n547,2739,4.0,981312902\n547,2745,4.0,1022959138\n547,2750,3.0,986725277\n547,2755,2.0,981313642\n547,2757,3.0,994874556\n547,2759,3.5,1053173005\n547,2762,4.0,981314171\n547,2763,4.0,1022680730\n547,2764,4.0,1199391855\n547,2770,4.0,1039881071\n547,2779,3.0,981312334\n547,2780,3.5,1199559991\n547,2782,3.5,1199391598\n547,2788,4.0,1053087483\n547,2791,5.0,974780533\n547,2792,4.0,1028129718\n547,2795,3.5,1432359536\n547,2797,5.0,974809415\n547,2802,2.5,1053172622\n547,2804,3.0,974809897\n547,2809,2.0,1010814504\n547,2819,3.0,978360730\n547,2840,1.5,1053173557\n547,2852,3.0,981313085\n547,2856,3.0,1199391541\n547,2858,5.0,974778291\n547,2859,4.0,1198815522\n547,2863,5.0,1371914224\n547,2866,3.0,981312455\n547,2870,2.0,1199392080\n547,2871,4.5,1053172362\n547,2875,2.0,1145755905\n547,2877,0.5,1053173696\n547,2878,1.0,1022678681\n547,2883,3.0,1022679847\n547,2890,5.0,981314335\n547,2908,4.0,1028129879\n547,2915,2.0,981312935\n547,2916,3.5,1053171447\n547,2917,4.5,1053088432\n547,2918,3.5,1251535667\n547,2919,4.0,974810170\n547,2925,5.0,974810144\n547,2926,4.0,974809441\n547,2928,3.0,981313457\n547,2929,4.0,981312986\n547,2932,3.0,978360689\n547,2935,4.0,1022242562\n547,2937,3.5,1150862708\n547,2939,3.0,1022676711\n547,2940,3.0,974779821\n547,2941,5.0,974777988\n547,2942,4.0,981313684\n547,2946,5.0,974809487\n547,2947,2.5,1053173230\n547,2956,3.0,981313524\n547,2959,3.5,1053171724\n547,2966,3.0,974779039\n547,2967,3.0,974777988\n547,2970,2.0,974810224\n547,2971,5.0,978360689\n547,2973,3.0,974780201\n547,2976,3.5,1053171501\n547,2987,3.5,1053172048\n547,2988,4.0,981312935\n547,2993,3.5,1199391865\n547,2997,5.0,974779039\n547,3005,3.5,1076810524\n547,3006,4.0,974778314\n547,3007,4.5,1148929176\n547,3011,4.0,974850335\n547,3019,4.5,1053088153\n547,3020,2.5,1093859953\n547,3022,4.5,1196123015\n547,3028,3.0,1053171438\n547,3037,4.5,1199390407\n547,3038,5.0,974777753\n547,3039,3.0,981313231\n547,3044,2.0,974810837\n547,3045,2.0,1022680751\n547,3051,3.0,994874444\n547,3052,2.0,986694918\n547,3060,5.0,974809282\n547,3061,2.0,1022242730\n547,3068,3.0,974810254\n547,3069,3.0,981312419\n547,3072,3.5,1053171813\n547,3075,4.0,1199559026\n547,3077,4.5,1148929145\n547,3088,5.0,974777753\n547,3090,2.0,981312829\n547,3093,2.0,981312522\n547,3094,2.0,1022677941\n547,3095,3.5,1053087552\n547,3096,3.0,1126235904\n547,3097,3.0,974779878\n547,3098,2.0,981313046\n547,3099,3.0,974780741\n547,3100,4.5,1135941252\n547,3101,5.0,981313323\n547,3102,3.5,1053171944\n547,3104,5.0,981312902\n547,3105,4.0,986694487\n547,3108,5.0,986695020\n547,3115,2.0,994874556\n547,3118,3.0,1000729110\n547,3121,3.5,1090114983\n547,3125,3.0,986695020\n547,3128,2.0,1010814554\n547,3130,2.0,1076968530\n547,3135,3.5,1053171740\n547,3138,2.0,1022678681\n547,3142,4.0,1021196501\n547,3144,2.0,1021196137\n547,3147,4.0,1000141619\n547,3148,3.0,1022958419\n547,3152,5.0,974809988\n547,3160,4.0,974778541\n547,3167,5.0,978360689\n547,3168,5.0,974850393\n547,3169,3.0,974810119\n547,3174,3.0,1076810388\n547,3175,4.0,1000729773\n547,3176,4.5,1053087630\n547,3182,3.5,1192671757\n547,3183,2.0,1076209698\n547,3186,2.0,1022680413\n547,3188,3.0,1118499520\n547,3194,3.5,1067207663\n547,3199,2.0,1189650561\n547,3200,4.0,981312334\n547,3201,3.0,974777109\n547,3203,4.0,1022958803\n547,3206,3.0,1047719315\n547,3210,2.0,1030464587\n547,3211,4.0,981313457\n547,3219,3.0,994874643\n547,3244,3.5,1053172155\n547,3247,1.0,1076810655\n547,3253,5.0,986694295\n547,3254,4.0,1022959422\n547,3255,3.0,986695368\n547,3260,5.0,974778541\n547,3261,3.0,1022680129\n547,3262,0.5,1109437677\n547,3263,4.0,1076209727\n547,3269,0.5,1076968288\n547,3271,3.5,1053171393\n547,3274,3.0,1022680497\n547,3285,2.0,997190885\n547,3292,3.5,1422800034\n547,3296,4.0,986725674\n547,3301,2.0,998490344\n547,3307,5.0,974779878\n547,3310,5.0,1328537281\n547,3317,4.0,1022966086\n547,3328,4.0,974810355\n547,3330,3.5,1199573433\n547,3334,3.0,974779771\n547,3340,3.5,1199575367\n547,3341,3.0,974777482\n547,3343,1.0,1022957955\n547,3347,3.5,1053171599\n547,3350,3.5,1199391603\n547,3358,1.0,974780868\n547,3359,4.0,974810036\n547,3360,2.5,1111809502\n547,3361,5.0,974780707\n547,3362,5.0,974780201\n547,3363,3.0,974780201\n547,3364,4.0,1109437962\n547,3365,3.0,1127078797\n547,3377,3.5,1186274522\n547,3379,2.0,1135979254\n547,3380,2.5,1089856364\n547,3385,2.0,981313828\n547,3386,5.0,986694736\n547,3395,1.0,981313744\n547,3405,3.0,1336324528\n547,3408,3.0,1131635584\n547,3418,5.0,981314419\n547,3420,1.0,981312606\n547,3422,3.5,1053172254\n547,3424,5.0,974780642\n547,3426,3.0,1053171770\n547,3430,0.5,1053173832\n547,3435,4.0,974779724\n547,3445,3.5,1053171526\n547,3448,2.0,981313482\n547,3450,0.5,1053173838\n547,3451,2.5,1199391817\n547,3457,3.0,1032906047\n547,3461,4.0,974850335\n547,3462,5.0,974779878\n547,3467,4.5,1086010787\n547,3468,5.0,974810010\n547,3469,4.0,1199573572\n547,3471,4.0,978360730\n547,3475,4.5,1053171830\n547,3476,3.5,1053171564\n547,3478,4.0,981313301\n547,3481,4.5,1053171156\n547,3489,1.5,1093859879\n547,3494,3.0,1022677114\n547,3499,3.0,981314355\n547,3504,5.0,974780201\n547,3505,4.0,1022959171\n547,3507,5.0,978953566\n547,3508,3.0,986725564\n547,3512,1.0,1131636082\n547,3516,2.5,1053172977\n547,3521,3.0,974809247\n547,3524,4.0,981313345\n547,3526,2.0,974809466\n547,3528,3.0,1010571613\n547,3536,4.5,1131635466\n547,3537,2.0,986693890\n547,3540,2.0,1010814604\n547,3543,3.0,974780302\n547,3545,4.5,1073215458\n547,3546,5.0,986725757\n547,3551,2.5,1199220228\n547,3565,2.0,974779241\n547,3571,2.5,1145756074\n547,3578,3.0,1053171122\n547,3604,4.0,1022677046\n547,3606,3.0,1022242645\n547,3613,2.0,981313125\n547,3614,0.5,1145755874\n547,3622,4.0,974809373\n547,3649,2.0,981313180\n547,3653,4.0,1021195916\n547,3668,4.0,974810654\n547,3675,1.0,974777988\n547,3676,1.0,1152401476\n547,3682,1.0,1021195577\n547,3683,4.0,1022958185\n547,3684,5.0,981313231\n547,3685,1.0,974780642\n547,3699,4.0,981312986\n547,3700,4.0,1039881097\n547,3706,2.0,974779821\n547,3707,2.5,1053172471\n547,3712,3.5,1053172270\n547,3713,2.0,986694400\n547,3724,5.0,978360689\n547,3728,3.0,974779093\n547,3730,5.0,974809870\n547,3731,4.0,981313180\n547,3734,3.0,981313547\n547,3735,3.5,1053171651\n547,3736,4.0,1189814634\n547,3741,5.0,974810100\n547,3751,2.5,1131635755\n547,3752,1.5,1182395350\n547,3763,4.0,981313125\n547,3788,2.0,974850393\n547,3798,2.0,1076810695\n547,3801,4.0,1022676574\n547,3809,4.5,1182394619\n547,3812,4.5,1106443915\n547,3813,2.0,981312481\n547,3814,4.0,1022959105\n547,3825,1.0,1022958484\n547,3826,0.5,1131636063\n547,3833,3.5,1199573055\n547,3834,1.0,1022678312\n547,3844,3.5,1053172021\n547,3852,2.5,1053172499\n547,3868,5.0,981313085\n547,3869,4.5,1329536356\n547,3871,3.5,1199576012\n547,3872,5.0,974777566\n547,3873,4.0,974780741\n547,3886,3.5,1053171261\n547,3893,2.0,986693508\n547,3897,4.5,1053171486\n547,3911,3.5,1053172684\n547,3916,3.0,1041175023\n547,3925,4.0,1198815601\n547,3927,3.0,986725757\n547,3928,2.5,1157944138\n547,3929,4.0,1022958694\n547,3930,3.0,1022958484\n547,3932,4.0,1022959018\n547,3948,4.0,1010342592\n547,3949,3.5,1078713460\n547,3952,4.0,1022958484\n547,3957,2.0,1022958185\n547,3963,0.5,1182395119\n547,3965,4.0,1189137495\n547,3966,4.5,1094983548\n547,3967,2.5,1131635750\n547,3969,2.5,1053173042\n547,3977,2.0,1022958388\n547,3983,4.0,1022966086\n547,3989,4.5,1183860154\n547,3994,2.0,1027702155\n547,3996,4.0,1131635315\n547,3998,3.0,1010342559\n547,4002,2.5,1053173048\n547,4008,2.0,1022958254\n547,4009,4.0,978953566\n547,4011,0.5,1182395132\n547,4014,4.0,1009855484\n547,4020,3.0,1145756348\n547,4021,4.0,1093141336\n547,4022,4.0,1133584723\n547,4023,1.0,1182395078\n547,4024,3.0,1053768465\n547,4027,5.0,1010451729\n547,4029,3.5,1053171418\n547,4034,4.5,1131635350\n547,4036,2.5,1131635813\n547,4037,5.0,978953537\n547,4041,3.0,1053171604\n547,4043,4.0,978953537\n547,4054,3.0,1001166045\n547,4055,3.5,1053171823\n547,4056,3.5,1053172767\n547,4061,2.0,1021100232\n547,4062,3.5,1053171188\n547,4063,3.0,980609789\n547,4066,4.0,986724989\n547,4067,1.0,1030464418\n547,4080,2.0,1022958026\n547,4085,4.0,1028129848\n547,4086,4.0,1028129848\n547,4098,3.0,980609709\n547,4108,4.0,980609692\n547,4116,4.0,980609672\n547,4121,3.0,980609646\n547,4123,3.0,980609646\n547,4144,4.0,1005922068\n547,4161,2.0,1000653100\n547,4174,3.0,1047719533\n547,4175,3.0,1053171148\n547,4183,3.0,986694020\n547,4185,4.0,1106443092\n547,4187,3.5,1053171574\n547,4188,4.0,1021572916\n547,4190,3.0,986724989\n547,4191,4.0,1028129718\n547,4194,3.0,986724961\n547,4205,2.0,1076968513\n547,4210,3.0,987185079\n547,4211,4.0,986694070\n547,4216,3.5,1053171793\n547,4217,3.5,1181782959\n547,4218,4.5,1053087897\n547,4226,4.5,1053172227\n547,4228,2.0,995799623\n547,4231,1.0,1050243723\n547,4235,4.5,1180756579\n547,4236,3.0,1076889998\n547,4239,3.0,1044093938\n547,4246,2.0,1050243493\n547,4263,4.5,1199572948\n547,4270,2.5,1131635789\n547,4276,2.0,1022678059\n547,4279,2.0,1021196325\n547,4280,4.0,1021196478\n547,4281,3.0,1022958314\n547,4290,4.0,1439310412\n547,4291,1.0,1022957861\n547,4292,4.0,1021195429\n547,4296,2.0,1021195650\n547,4306,3.0,1072634099\n547,4308,4.0,1131635303\n547,4310,0.5,1076810741\n547,4318,1.0,1000729801\n547,4321,2.5,1076810689\n547,4322,3.0,1021196353\n547,4332,2.0,1021196411\n547,4333,2.0,1022678312\n547,4343,3.0,1020287381\n547,4344,3.5,1133584738\n547,4345,4.5,1053171692\n547,4349,4.5,1199390375\n547,4356,4.0,1028130120\n547,4357,2.0,1022676761\n547,4359,3.0,1021572916\n547,4361,4.5,1053087922\n547,4367,1.5,1076968354\n547,4370,3.0,1022957861\n547,4392,2.0,1047719315\n547,4403,3.0,1021196098\n547,4409,1.0,1463811130\n547,4410,5.0,1021196381\n547,4414,3.5,1199560029\n547,4422,5.0,1021195429\n547,4424,3.5,1053171733\n547,4426,4.0,1157849352\n547,4428,5.0,1000530123\n547,4432,5.0,994153145\n547,4433,3.5,1199575110\n547,4447,2.0,1030719427\n547,4448,4.0,1131635628\n547,4464,3.0,1021196523\n547,4465,4.0,1021196447\n547,4474,2.0,1022678648\n547,4487,1.0,1022678838\n547,4489,3.0,1022678488\n547,4495,2.0,1030464554\n547,4496,1.0,1022678597\n547,4499,1.0,1011142290\n547,4503,2.0,995816709\n547,4508,3.0,1022678403\n547,4515,3.0,1342849666\n547,4523,3.0,1021196478\n547,4529,3.0,997543955\n547,4537,4.0,1021196249\n547,4546,4.0,1041430708\n547,4555,2.0,1022677967\n547,4557,1.0,1021196447\n547,4564,2.0,1198813077\n547,4571,1.0,1010571613\n547,4585,4.0,1022678337\n547,4587,1.0,1022678444\n547,4590,3.5,1053171522\n547,4606,2.0,994874368\n547,4621,1.5,1053173391\n547,4623,3.5,1053171583\n547,4627,2.0,1021196759\n547,4628,3.0,1021196585\n547,4639,1.0,1022957922\n547,4641,3.5,1084237789\n547,4654,1.0,1022678878\n547,4659,4.0,1021196759\n547,4661,5.0,1022678016\n547,4667,2.0,1022679016\n547,4674,1.0,1021196759\n547,4679,3.0,1022678444\n547,4684,0.5,1053173682\n547,4690,1.0,1000530218\n547,4692,3.0,1000530270\n547,4699,3.0,998871279\n547,4703,3.5,1076968525\n547,4704,3.0,1021196137\n547,4705,2.0,1022958314\n547,4716,1.0,1022678134\n547,4720,3.0,1041766708\n547,4757,2.0,1046652412\n547,4765,2.0,1075587835\n547,4776,4.5,1131635483\n547,4784,3.0,1002725250\n547,4787,3.0,1000530192\n547,4799,4.0,1003331787\n547,4801,4.5,1117286623\n547,4803,3.0,1145736718\n547,4809,5.0,1021196411\n547,4810,4.0,1002725401\n547,4814,2.5,1053172709\n547,4816,4.0,1131635646\n547,4821,4.5,1131635455\n547,4823,2.0,1053173071\n547,4831,3.0,1022679116\n547,4832,3.0,1082214663\n547,4835,4.0,1028129929\n547,4840,2.0,1021196353\n547,4844,4.0,1394125039\n547,4848,4.0,1017859526\n547,4855,1.0,1002725300\n547,4859,1.0,1022679404\n547,4873,3.0,1174815141\n547,4874,2.5,1053172899\n547,4878,2.5,1081819211\n547,4880,3.5,1053171569\n547,4881,3.5,1053907106\n547,4889,3.0,1072634143\n547,4890,0.5,1053173709\n547,4901,3.0,1025968088\n547,4903,4.0,1041603738\n547,4912,4.5,1199391512\n547,4914,2.0,1021572576\n547,4920,3.5,1134272598\n547,4921,2.0,1011142205\n547,4927,4.5,1053171780\n547,4936,4.0,1021196553\n547,4948,1.5,1186527898\n547,4954,2.5,1106443327\n547,4963,4.5,1053087733\n547,4965,4.5,1131635280\n547,4969,5.0,1021770672\n547,4970,3.0,1022676254\n547,4973,4.5,1133584658\n547,4975,4.0,1030202688\n547,4976,3.0,1030278675\n547,4978,2.5,1053173385\n547,4979,3.5,1053171407\n547,4992,0.5,1131636059\n547,4993,2.5,1053173397\n547,4995,4.0,1010342667\n547,4999,4.0,1137554687\n547,5004,3.0,1021195940\n547,5008,4.0,1199574925\n547,5009,2.5,1053173311\n547,5012,1.5,1198816120\n547,5013,3.5,1053171137\n547,5015,3.0,1039012334\n547,5017,5.0,1094983691\n547,5033,2.0,1022678312\n547,5034,3.0,1022679737\n547,5049,3.0,1022966086\n547,5056,2.0,1022677274\n547,5060,4.5,1053171373\n547,5061,1.5,1053173258\n547,5087,3.0,1022677483\n547,5088,4.5,1199390393\n547,5097,3.0,1022242480\n547,5098,3.0,1022242480\n547,5099,3.0,1022242480\n547,5105,4.0,1021195481\n547,5114,4.0,1199576130\n547,5119,4.0,1199391390\n547,5120,3.0,1021097761\n547,5121,4.0,1072254158\n547,5135,4.0,1120515248\n547,5177,3.0,1021770672\n547,5186,3.0,1022678992\n547,5193,3.0,1022679270\n547,5199,3.0,1022677990\n547,5225,4.0,1110167373\n547,5238,5.0,1021196478\n547,5242,1.5,1113965431\n547,5250,3.5,1053171655\n547,5265,3.0,1017858665\n547,5288,4.0,1021196585\n547,5291,4.0,1150496559\n547,5293,4.0,1040051287\n547,5299,2.5,1131635873\n547,5303,1.0,1021098817\n547,5308,2.0,1053173133\n547,5339,3.5,1175979044\n547,5341,5.0,1021195481\n547,5349,3.0,1054944644\n547,5359,2.0,1022680264\n547,5360,2.0,1198816109\n547,5364,3.5,1053172646\n547,5367,4.0,1053087575\n547,5377,4.0,1031664102\n547,5380,4.0,1045460001\n547,5384,4.0,1082214761\n547,5385,5.0,1053907745\n547,5388,2.5,1085872365\n547,5391,3.5,1076040142\n547,5418,4.0,1190600897\n547,5434,3.5,1094983607\n547,5445,3.0,1045381682\n547,5447,2.5,1088222332\n547,5450,2.5,1146608848\n547,5475,5.0,1032906921\n547,5483,4.0,1061008644\n547,5489,3.0,1471437743\n547,5502,4.0,1031387742\n547,5505,2.0,1052159293\n547,5521,0.5,1198814202\n547,5528,3.5,1131635547\n547,5544,2.0,1031663976\n547,5617,0.5,1131636026\n547,5638,3.0,1199392166\n547,5641,4.0,1106442619\n547,5644,2.0,1115581971\n547,5646,3.0,1032906201\n547,5650,4.0,1106442549\n547,5651,3.5,1199559677\n547,5666,2.5,1131635896\n547,5668,3.5,1067183931\n547,5669,4.0,1112482439\n547,5673,2.5,1131635889\n547,5679,4.0,1131635619\n547,5680,4.0,1041220966\n547,5693,4.5,1135940878\n547,5694,0.5,1119491650\n547,5707,2.5,1106442469\n547,5729,2.0,1357544051\n547,5772,4.5,1053171182\n547,5777,4.0,1119491513\n547,5792,0.5,1131636056\n547,5795,3.5,1182557389\n547,5801,4.0,1106443248\n547,5810,3.0,1415444349\n547,5812,4.0,1080965513\n547,5820,3.0,1106369796\n547,5847,2.0,1038929978\n547,5875,3.0,1074561641\n547,5876,4.0,1138841464\n547,5893,4.0,1038929872\n547,5902,5.0,1050320992\n547,5932,3.0,1038929777\n547,5936,3.0,1038929777\n547,5938,2.0,1038929799\n547,5940,2.5,1106442438\n547,5943,1.5,1182395376\n547,5945,4.0,1131635343\n547,5954,2.5,1053172816\n547,5957,2.0,1051689343\n547,5963,3.5,1124933987\n547,5966,2.5,1158263487\n547,5986,3.0,1039526770\n547,5989,4.0,1044792253\n547,5991,3.0,1048001909\n547,5992,4.5,1133584649\n547,5995,4.0,1131635296\n547,6001,5.0,1043682389\n547,6003,3.5,1131635842\n547,6016,4.0,1472045865\n547,6021,5.0,1043682448\n547,6027,3.0,1043682389\n547,6031,3.5,1114127514\n547,6047,3.5,1191118021\n547,6051,3.0,1053423552\n547,6062,3.5,1079841149\n547,6064,3.5,1176002456\n547,6100,2.5,1198816537\n547,6101,4.5,1053423344\n547,6105,3.0,1082214622\n547,6109,0.5,1076210112\n547,6115,2.5,1053423436\n547,6127,0.5,1053423090\n547,6133,4.5,1125060861\n547,6170,4.0,1106442731\n547,6178,4.0,1137987776\n547,6188,3.5,1085100036\n547,6215,3.5,1079240411\n547,6218,4.0,1089518106\n547,6230,3.5,1053422948\n547,6232,4.0,1053422986\n547,6238,2.0,1053422970\n547,6247,4.0,1053422931\n547,6252,0.5,1131636075\n547,6254,3.5,1136761772\n547,6269,3.0,1107033756\n547,6271,4.5,1053422924\n547,6273,4.5,1084754824\n547,6281,3.5,1081483786\n547,6296,4.0,1081819340\n547,6308,1.5,1053422776\n547,6323,3.0,1131635692\n547,6327,3.5,1124933862\n547,6331,4.0,1074481995\n547,6341,3.0,1131635727\n547,6345,3.0,1053422661\n547,6357,2.5,1119491422\n547,6358,3.5,1089003829\n547,6367,2.5,1135966393\n547,6373,2.0,1099968187\n547,6378,3.5,1334161487\n547,6380,4.0,1131635324\n547,6385,4.0,1061177444\n547,6400,3.0,1198771324\n547,6410,3.0,1055595720\n547,6413,2.0,1055595711\n547,6419,4.0,1055595688\n547,6422,3.0,1199391721\n547,6436,3.0,1089494707\n547,6440,2.0,1055595700\n547,6452,4.0,1055595478\n547,6466,2.5,1055595486\n547,6477,3.5,1055595541\n547,6480,2.5,1106443332\n547,6525,3.0,1198814182\n547,6528,3.5,1059943277\n547,6530,4.5,1059943409\n547,6533,4.0,1059943345\n547,6538,4.5,1062374974\n547,6539,3.0,1060913082\n547,6552,4.5,1062375017\n547,6584,2.5,1200868443\n547,6592,2.5,1131635899\n547,6596,1.5,1319862529\n547,6603,3.0,1088396296\n547,6612,4.0,1059943316\n547,6620,2.5,1099106625\n547,6629,3.5,1064696946\n547,6638,3.0,1064974792\n547,6639,4.5,1064696950\n547,6646,4.0,1064697022\n547,6650,4.0,1062886594\n547,6658,1.5,1064696874\n547,6662,5.0,1064696846\n547,6663,4.0,1106442831\n547,6666,4.0,1200107349\n547,6671,0.5,1064696851\n547,6676,3.0,1064696908\n547,6684,2.5,1064696865\n547,6708,4.0,1071567179\n547,6711,4.0,1073190625\n547,6724,4.5,1199390748\n547,6728,2.5,1064974728\n547,6731,2.0,1064974666\n547,6735,3.0,1063578424\n547,6773,4.5,1076040045\n547,6777,4.5,1064696661\n547,6786,4.0,1064696712\n547,6787,4.5,1064696666\n547,6788,2.5,1064974612\n547,6796,4.0,1064696705\n547,6797,1.0,1064696725\n547,6810,1.0,1064974592\n547,6813,1.5,1199392160\n547,6851,3.5,1064974498\n547,6852,4.5,1089946393\n547,6856,4.0,1066411252\n547,6858,4.0,1120449245\n547,6867,4.0,1144877938\n547,6868,3.5,1095060648\n547,6870,4.0,1104705558\n547,6873,3.0,1131635682\n547,6881,3.5,1108949748\n547,6890,4.0,1146358514\n547,6906,2.5,1071596186\n547,6932,3.0,1131635730\n547,6935,3.5,1071972236\n547,6942,4.0,1131635698\n547,6945,4.0,1109472290\n547,6953,3.0,1168388821\n547,6954,3.5,1181445001\n547,6957,3.5,1072563883\n547,6964,3.5,1071596152\n547,6970,2.5,1071596117\n547,6974,3.5,1175978605\n547,6977,3.5,1071596142\n547,6979,3.0,1071596104\n547,6987,4.5,1434383445\n547,6992,3.0,1071596131\n547,6993,1.5,1071596088\n547,7001,4.0,1071596111\n547,7008,4.5,1199390728\n547,7009,3.0,1071596029\n547,7010,4.0,1071595964\n547,7013,4.5,1071595973\n547,7018,3.0,1072254241\n547,7020,4.0,1071596005\n547,7023,3.0,1071595992\n547,7027,3.5,1071596009\n547,7038,3.5,1071596070\n547,7040,3.0,1071595982\n547,7042,2.0,1072254130\n547,7044,3.0,1071596017\n547,7045,3.5,1106442289\n547,7046,0.5,1071596051\n547,7060,3.5,1071595919\n547,7061,3.5,1188017785\n547,7062,4.0,1071595905\n547,7063,2.0,1199220474\n547,7067,3.0,1071595929\n547,7068,3.0,1071595934\n547,7069,4.0,1313911051\n547,7071,2.5,1072634251\n547,7073,4.5,1071595873\n547,7075,4.5,1072634234\n547,7078,3.0,1131845674\n547,7079,3.0,1082214840\n547,7080,3.0,1082214855\n547,7083,2.5,1076636546\n547,7084,4.5,1071595876\n547,7087,5.0,1071595899\n547,7088,4.5,1071595864\n547,7089,4.5,1071595868\n547,7091,4.5,1071595888\n547,7102,1.5,1072634260\n547,7107,3.0,1199220734\n547,7111,4.5,1076636450\n547,7116,5.0,1071595779\n547,7122,4.0,1072254027\n547,7125,3.5,1174742869\n547,7126,4.5,1343952218\n547,7130,4.0,1199559015\n547,7131,3.5,1199574323\n547,7132,5.0,1071595774\n547,7136,4.0,1199391412\n547,7139,4.5,1111372599\n547,7142,2.0,1080966374\n547,7147,4.0,1118102127\n547,7149,3.0,1131635565\n547,7150,3.0,1102138407\n547,7154,1.5,1378997750\n547,7156,4.0,1140326254\n547,7158,3.0,1106829456\n547,7160,4.0,1073176028\n547,7162,4.5,1133584636\n547,7165,3.0,1284821543\n547,7171,3.5,1105227723\n547,7180,4.0,1125060825\n547,7182,3.0,1192841830\n547,7190,4.0,1106443055\n547,7215,4.5,1076635361\n547,7216,3.5,1114382192\n547,7217,4.0,1153190403\n547,7219,4.0,1084237819\n547,7222,3.0,1076635421\n547,7223,3.0,1126661108\n547,7247,1.5,1073443719\n547,7248,3.0,1076635573\n547,7255,2.5,1106429806\n547,7265,4.0,1111977270\n547,7266,3.5,1078625723\n547,7285,3.5,1097536620\n547,7300,4.5,1199390790\n547,7325,0.5,1131635064\n547,7327,4.0,1079109582\n547,7334,3.0,1079109566\n547,7348,2.5,1109447587\n547,7354,3.0,1078716985\n547,7357,3.5,1199574900\n547,7358,2.5,1129943979\n547,7360,4.5,1080523956\n547,7361,4.5,1114369050\n547,7386,3.5,1206276821\n547,7387,3.0,1081819498\n547,7394,3.0,1199391989\n547,7396,4.0,1342849277\n547,7415,2.5,1115582105\n547,7419,5.0,1084413978\n547,7451,2.5,1133059156\n547,7478,4.5,1084413933\n547,7484,3.5,1084413926\n547,7487,4.5,1084413917\n547,7493,4.0,1199574922\n547,7566,4.5,1148929138\n547,7571,4.0,1165452927\n547,7577,0.5,1084413880\n547,7583,3.5,1142666867\n547,7585,2.0,1120515363\n547,7613,3.0,1084413863\n547,7614,4.0,1084413859\n547,7615,3.5,1106442537\n547,7619,4.0,1084413848\n547,7620,4.0,1084413843\n547,7636,1.0,1084413833\n547,7669,5.0,1246886349\n547,7698,4.5,1084413820\n547,7701,1.0,1084413806\n547,7706,3.5,1096856619\n547,7713,2.5,1084413791\n547,7714,4.0,1084413786\n547,7728,3.0,1084413771\n547,7766,4.0,1295079741\n547,7767,4.0,1184283074\n547,7791,2.0,1084413436\n547,7815,1.5,1084413396\n547,7831,3.0,1085447304\n547,7833,3.0,1096856677\n547,7834,3.5,1085447293\n547,7835,3.5,1085447297\n547,7836,5.0,1084413332\n547,7872,2.5,1084413273\n547,7881,3.5,1085800791\n547,7883,3.0,1101086849\n547,7921,3.0,1199219728\n547,7922,2.5,1084413200\n547,7934,3.5,1084413183\n547,7935,4.0,1199390666\n547,7943,4.5,1084413168\n547,7944,4.0,1127644571\n547,7946,1.5,1182305168\n547,7948,4.0,1257568687\n547,7958,3.5,1180619662\n547,7959,3.5,1199509033\n547,7979,4.0,1199392007\n547,7981,4.0,1173500912\n547,7983,2.0,1085447198\n547,7995,3.0,1179020566\n547,8003,2.0,1201323229\n547,8011,4.0,1279902185\n547,8016,2.0,1292767785\n547,8033,3.0,1085447156\n547,8042,4.5,1085447146\n547,8044,4.0,1177216869\n547,8056,2.5,1179447996\n547,8123,5.0,1085447123\n547,8125,4.0,1199221262\n547,8137,3.5,1349826122\n547,8147,3.0,1117156817\n547,8158,2.5,1085447092\n547,8183,4.0,1085447085\n547,8188,4.0,1114222819\n547,8191,3.5,1096856982\n547,8194,3.0,1085447076\n547,8196,3.0,1199217972\n547,8197,1.5,1085447067\n547,8261,5.0,1085447033\n547,8264,5.0,1085447015\n547,8266,2.5,1085447007\n547,8331,3.5,1195924922\n547,8337,4.0,1087766725\n547,8360,3.5,1252767700\n547,8364,4.0,1127531112\n547,8366,3.0,1165014251\n547,8373,2.5,1096586145\n547,8388,4.0,1199392325\n547,8392,2.0,1088487737\n547,8410,4.0,1087766669\n547,8420,4.0,1268554665\n547,8422,3.0,1087766662\n547,8459,4.0,1119305876\n547,8462,2.5,1138494345\n547,8464,4.5,1131634969\n547,8465,2.5,1190590946\n547,8477,4.0,1189018966\n547,8487,2.5,1199392319\n547,8491,4.5,1094783748\n547,8492,4.5,1199576393\n547,8499,1.5,1087766595\n547,8507,4.0,1434029572\n547,8522,2.5,1136441189\n547,8525,1.5,1199392371\n547,8528,3.5,1432359375\n547,8529,3.0,1119305825\n547,8530,2.0,1146356536\n547,8533,3.5,1132463501\n547,8535,2.0,1087766498\n547,8542,4.5,1087766484\n547,8571,2.5,1199392113\n547,8572,4.5,1087766470\n547,8583,2.5,1088487637\n547,8610,2.5,1088487611\n547,8612,3.5,1195185239\n547,8617,3.0,1088487602\n547,8618,4.0,1191981006\n547,8622,3.5,1131634898\n547,8623,2.5,1094520159\n547,8625,3.0,1131635713\n547,8636,3.5,1096586036\n547,8641,3.5,1432359351\n547,8650,3.5,1199391435\n547,8661,3.5,1199391743\n547,8665,3.5,1190926261\n547,8667,3.5,1126660297\n547,8712,3.5,1444015123\n547,8724,3.5,1199391653\n547,8725,2.5,1199392066\n547,8727,1.5,1199219845\n547,8752,4.0,1189643388\n547,8761,3.5,1199559726\n547,8763,1.5,1093815542\n547,8768,3.5,1090114993\n547,8772,4.0,1106443137\n547,8781,4.0,1131634907\n547,8784,4.0,1125283934\n547,8798,3.0,1104369597\n547,8813,2.5,1149469145\n547,8828,3.0,1118548833\n547,8838,4.0,1093815450\n547,8851,2.0,1093815434\n547,8853,2.5,1093815421\n547,8874,2.5,1149464426\n547,8882,3.5,1094983476\n547,8903,3.5,1199559995\n547,8907,2.5,1103292804\n547,8917,3.5,1147648867\n547,8923,4.0,1097536498\n547,8933,4.0,1097536481\n547,8948,3.5,1145756234\n547,8949,5.0,1131634913\n547,8958,4.5,1131634966\n547,8966,4.0,1136761751\n547,8970,3.5,1104462298\n547,8979,4.5,1105066583\n547,8981,4.0,1131634992\n547,8984,2.5,1132463559\n547,8987,3.0,1132463517\n547,8998,3.0,1101590194\n547,9012,4.0,1199576106\n547,25769,4.0,1434383585\n547,25773,4.0,1140468195\n547,25777,3.5,1126235776\n547,25788,3.0,1187478886\n547,25795,4.0,1117156797\n547,25825,4.0,1149823672\n547,25828,4.0,1132973381\n547,25841,2.5,1117156760\n547,25842,3.5,1247498072\n547,25850,4.0,1161398828\n547,25856,4.0,1124783105\n547,25865,4.0,1128200083\n547,25874,3.0,1273878058\n547,25882,4.5,1277997096\n547,25886,4.0,1128298184\n547,25900,3.5,1226705509\n547,25904,3.5,1116802147\n547,25906,2.5,1149305852\n547,25920,3.5,1268306443\n547,25929,4.0,1189476353\n547,25930,3.5,1196633401\n547,25937,2.5,1118499401\n547,25940,2.5,1143942023\n547,25941,4.0,1222176511\n547,25945,4.5,1169870000\n547,25947,3.5,1200088853\n547,25952,4.0,1126235756\n547,25965,2.0,1262672385\n547,25972,4.0,1231861006\n547,25996,4.5,1199575718\n547,25999,4.5,1131165770\n547,26010,3.0,1255191958\n547,26013,2.5,1307714451\n547,26079,4.0,1225036203\n547,26084,4.5,1119491366\n547,26086,4.0,1368640146\n547,26093,3.5,1276696945\n547,26116,2.5,1125541503\n547,26117,3.5,1163598449\n547,26147,4.5,1223568456\n547,26157,0.5,1303479124\n547,26163,4.0,1196044391\n547,26178,4.5,1142843082\n547,26180,3.5,1291555400\n547,26198,2.5,1159995201\n547,26199,4.0,1196449864\n547,26229,3.5,1276010261\n547,26242,4.0,1134529434\n547,26251,4.0,1215813277\n547,26258,1.5,1156627954\n547,26271,4.0,1167962981\n547,26303,3.0,1163474370\n547,26313,3.5,1341668821\n547,26323,4.5,1223996383\n547,26338,3.0,1266063106\n547,26346,3.0,1252767602\n547,26349,3.5,1138566609\n547,26350,4.5,1141435263\n547,26371,2.5,1181745612\n547,26391,1.5,1182395328\n547,26404,2.5,1104180718\n547,26430,1.0,1244930358\n547,26435,2.5,1248610420\n547,26467,1.0,1247839032\n547,26472,2.5,1167962995\n547,26485,0.5,1129916588\n547,26487,2.0,1198816100\n547,26501,5.0,1249033347\n547,26505,4.5,1261380494\n547,26524,4.0,1222044923\n547,26528,4.0,1265116758\n547,26562,4.0,1193465893\n547,26564,4.0,1173477942\n547,26581,2.0,1268902196\n547,26622,3.5,1245467080\n547,26649,4.0,1230809007\n547,26680,3.0,1119491493\n547,26689,2.0,1246886436\n547,26694,4.0,1168305022\n547,26712,4.0,1232379524\n547,26729,4.5,1165014203\n547,26731,4.0,1242992741\n547,26737,4.0,1248780657\n547,26775,1.5,1231860985\n547,26782,3.0,1127100262\n547,26784,3.0,1234577354\n547,26797,5.0,1265820849\n547,26835,3.5,1354966721\n547,26838,3.5,1163598459\n547,27020,3.0,1156627930\n547,27329,4.0,1360422687\n547,27373,4.0,1274650819\n547,27802,4.0,1252940402\n547,27812,4.5,1154874171\n547,27821,3.5,1148696924\n547,27878,4.0,1137366685\n547,27904,4.0,1154647909\n547,30707,5.0,1109536165\n547,30712,4.5,1192150916\n547,30749,4.5,1176003361\n547,30810,1.5,1147018952\n547,30812,3.5,1280728735\n547,30820,2.5,1175917020\n547,30898,3.5,1140291695\n547,31104,3.0,1103859761\n547,31109,3.0,1183773013\n547,31522,1.5,1161398836\n547,31696,0.5,1131635074\n547,31737,3.5,1206148844\n547,31747,0.5,1111809585\n547,31963,3.5,1248097694\n547,32022,3.0,1132463534\n547,32203,4.0,1325674404\n547,32234,4.0,1195596983\n547,32349,3.0,1115581897\n547,32369,4.0,1117337172\n547,32371,4.0,1191022455\n547,32444,2.5,1227738093\n547,32582,4.0,1183767376\n547,32598,4.0,1182568109\n547,32728,3.5,1238428633\n547,32882,2.5,1170962228\n547,32898,5.0,1434384871\n547,32943,4.0,1257441601\n547,33154,4.0,1186803062\n547,33166,4.0,1175824127\n547,33171,3.5,1187485053\n547,33358,4.0,1140316623\n547,33587,4.0,1254935059\n547,33615,3.5,1175824291\n547,33639,3.0,1168305106\n547,33660,3.5,1143517064\n547,33679,0.5,1143517032\n547,33836,0.5,1182394981\n547,33880,2.5,1132463546\n547,33912,4.0,1244930326\n547,33917,4.0,1281472201\n547,34002,2.5,1170962239\n547,34018,3.0,1170962247\n547,34048,3.5,1132463506\n547,34162,3.0,1165019624\n547,34338,4.5,1131634924\n547,34359,3.5,1357056564\n547,34364,3.0,1256679020\n547,34437,3.0,1132463513\n547,34542,3.0,1139101153\n547,34608,3.0,1122972398\n547,35836,3.5,1181617188\n547,36152,3.0,1181745585\n547,36517,4.0,1143516997\n547,37211,2.5,1170962234\n547,37240,2.5,1198771214\n547,37277,1.0,1286739987\n547,37733,4.0,1167742468\n547,37741,4.5,1131243371\n547,37855,3.0,1183666379\n547,38061,2.5,1167271148\n547,38304,4.5,1159995218\n547,38499,4.5,1223996377\n547,38798,3.5,1168388840\n547,38886,2.5,1198771230\n547,38994,2.0,1207194517\n547,39183,5.0,1334343456\n547,39292,4.0,1143516841\n547,39307,2.5,1148929080\n547,39381,3.5,1197170460\n547,39414,4.0,1200089517\n547,39419,2.5,1187754938\n547,39779,3.5,1234601659\n547,39941,4.0,1252767615\n547,40583,4.0,1213604530\n547,40614,2.5,1198369563\n547,40629,4.5,1164901520\n547,40817,2.5,1164625413\n547,40819,4.5,1132463343\n547,40826,3.5,1135726847\n547,41226,4.0,1246459435\n547,41566,4.0,1136156648\n547,41714,3.5,1281022516\n547,41863,4.0,1175863681\n547,42740,2.5,1179019671\n547,43333,4.0,1148870576\n547,43351,3.0,1234797807\n547,43635,4.0,1245858761\n547,43708,3.5,1149388431\n547,43910,4.0,1196556205\n547,43917,3.0,1168042230\n547,44073,2.0,1167963010\n547,44195,3.5,1145151438\n547,44199,4.0,1145486192\n547,44204,4.0,1180304622\n547,44421,4.0,1314537310\n547,44555,5.0,1198810564\n547,44633,3.0,1199066297\n547,44665,3.0,1156906514\n547,44694,1.5,1200082789\n547,44709,3.5,1199402494\n547,44759,1.5,1186712554\n547,44761,1.5,1199314831\n547,44788,3.5,1175720567\n547,44864,2.5,1175824283\n547,44911,2.0,1230808981\n547,45028,4.0,1149993661\n547,45062,2.5,1156363072\n547,45179,3.5,1277386054\n547,45186,1.5,1156907034\n547,45208,1.0,1156363153\n547,45210,4.5,1198810341\n547,45382,3.0,1175916626\n547,45501,1.0,1213732445\n547,45679,4.0,1200793326\n547,45720,3.0,1152006693\n547,45722,3.5,1154217036\n547,45837,1.5,1244103063\n547,45880,2.5,1174233338\n547,45942,4.0,1248097636\n547,45950,3.5,1168042216\n547,45987,4.0,1285323206\n547,46561,3.0,1256226481\n547,46578,4.5,1197165877\n547,46723,4.0,1163375676\n547,46850,3.5,1194912990\n547,46965,3.0,1169062380\n547,46976,3.0,1174233365\n547,47092,4.5,1251526606\n547,47099,4.0,1199325810\n547,47196,1.5,1248610436\n547,47202,4.0,1209166025\n547,47261,3.0,1190590191\n547,47330,1.0,1226407102\n547,47423,4.0,1202185054\n547,47493,3.0,1476587644\n547,47606,3.0,1354223902\n547,47610,3.0,1170002908\n547,47629,4.5,1170962261\n547,47721,3.0,1224173648\n547,47894,2.0,1203388427\n547,47950,3.5,1198368748\n547,47978,4.0,1195596996\n547,48262,3.5,1204185628\n547,48268,4.0,1313376453\n547,48385,3.5,1175459015\n547,48516,5.0,1198810579\n547,48560,3.0,1191258244\n547,48696,4.5,1197165873\n547,48738,4.0,1206848889\n547,48741,4.0,1201869357\n547,48774,4.5,1196305802\n547,48780,3.0,1168042121\n547,49132,4.0,1173795746\n547,49220,3.5,1195353038\n547,49286,2.0,1214927078\n547,49530,3.5,1168042240\n547,49772,3.5,1301765556\n547,49822,3.0,1167188876\n547,49824,4.5,1168918389\n547,49910,2.5,1270485230\n547,49961,3.5,1198799453\n547,50245,4.5,1242683178\n547,50658,4.0,1221732736\n547,50685,3.0,1270485214\n547,51080,3.5,1197088933\n547,51540,4.0,1192372083\n547,51662,3.0,1191974550\n547,51773,3.0,1245858771\n547,51884,3.0,1253383987\n547,52241,4.0,1202179805\n547,52378,2.5,1269513656\n547,52435,4.0,1227339334\n547,52722,2.5,1197166732\n547,52767,4.5,1224705134\n547,52913,4.0,1251302236\n547,52967,4.0,1294418692\n547,52973,3.0,1322848335\n547,52975,3.5,1194817581\n547,53000,4.0,1199326204\n547,53024,4.5,1402153882\n547,53123,4.0,1181438556\n547,53133,2.5,1179447948\n547,53322,3.0,1194915472\n547,53887,5.0,1201361739\n547,53972,3.5,1185672148\n547,54220,4.0,1265820836\n547,54272,4.5,1194915458\n547,54372,4.0,1309704691\n547,54513,4.0,1197088917\n547,54881,4.0,1277568772\n547,55052,4.5,1199051356\n547,55063,5.0,1222362642\n547,55078,4.0,1268554564\n547,55118,4.0,1337445283\n547,55156,4.0,1270485020\n547,55247,5.0,1376840465\n547,55253,4.5,1472569839\n547,55267,3.0,1270485153\n547,55269,4.0,1319862502\n547,55276,5.0,1260618835\n547,55290,3.5,1257441647\n547,55757,2.5,1341408769\n547,55765,3.0,1270485127\n547,55805,3.5,1238950903\n547,55820,4.5,1198888970\n547,55851,3.5,1248621813\n547,55895,3.5,1228302399\n547,56152,4.0,1198643704\n547,56286,3.5,1314978195\n547,56333,3.5,1270485098\n547,56367,4.5,1202609200\n547,56607,4.5,1201915663\n547,56782,5.0,1206148913\n547,56788,4.0,1201665430\n547,56805,4.5,1202180481\n547,56949,1.5,1209754849\n547,57243,3.5,1208478835\n547,57368,4.0,1312645398\n547,57418,3.5,1248610393\n547,57430,3.5,1297948719\n547,57669,5.0,1407749506\n547,58365,4.0,1246886279\n547,58559,2.5,1217953600\n547,58649,5.0,1235048025\n547,58879,4.5,1230869313\n547,58904,3.5,1244711760\n547,58998,3.5,1300551997\n547,59018,4.0,1310221638\n547,59118,3.5,1230985787\n547,59180,4.0,1242992797\n547,59315,3.5,1236959785\n547,59369,1.0,1345375310\n547,59669,3.0,1345734454\n547,59725,3.5,1215180258\n547,60069,5.0,1372603935\n547,60072,2.0,1215782209\n547,60135,4.0,1263057384\n547,60343,2.5,1231517371\n547,60382,4.0,1321636458\n547,60756,4.0,1312645436\n547,60766,4.0,1372603828\n547,60943,3.0,1335711834\n547,61024,4.0,1259388007\n547,61132,3.5,1224854433\n547,61323,3.5,1270485059\n547,61357,4.5,1222269604\n547,61634,3.5,1221569733\n547,61729,3.0,1307717390\n547,62344,3.0,1270485197\n547,62511,2.5,1325351571\n547,63082,4.5,1236699456\n547,63113,3.0,1226407135\n547,63239,3.5,1226705481\n547,63629,4.0,1248780644\n547,63808,3.5,1242514314\n547,63876,4.0,1236959781\n547,63992,3.5,1236959790\n547,64229,3.5,1303491202\n547,64338,2.5,1229189824\n547,64575,3.0,1270485162\n547,64614,4.0,1250440586\n547,64620,3.5,1273326572\n547,64622,4.0,1251562781\n547,64839,4.5,1236954998\n547,64990,3.0,1230809044\n547,65130,3.5,1234626994\n547,65188,4.0,1439913415\n547,65230,1.5,1241050506\n547,65418,2.5,1333852027\n547,65465,2.0,1262146303\n547,65585,0.5,1242541413\n547,66200,2.5,1273415209\n547,66509,2.5,1407749608\n547,66665,4.0,1255191989\n547,66686,3.5,1236954759\n547,66934,3.0,1260618718\n547,67087,4.0,1274366699\n547,67193,3.5,1291481406\n547,67197,2.5,1238932619\n547,67255,4.0,1280588312\n547,67429,4.0,1240926919\n547,67734,4.0,1309011951\n547,67788,0.5,1242518448\n547,67957,3.0,1240147045\n547,68157,4.0,1253017809\n547,68536,4.0,1242514129\n547,68614,2.5,1242992839\n547,68838,4.5,1402062783\n547,68848,3.5,1291563022\n547,68901,3.5,1260618703\n547,69122,3.5,1262284513\n547,69458,2.5,1295016068\n547,69481,4.5,1309012009\n547,69559,4.0,1249033088\n547,69654,4.0,1331912577\n547,69712,2.0,1270485275\n547,69757,3.5,1298043334\n547,69821,1.5,1247839017\n547,69908,4.0,1248097662\n547,70188,2.5,1249553216\n547,70201,3.5,1249646500\n547,70286,4.5,1255099984\n547,70293,4.0,1260619107\n547,70418,3.0,1257694038\n547,70751,2.5,1344834076\n547,71108,4.0,1373818604\n547,71156,2.5,1407749677\n547,71211,3.0,1270399177\n547,71404,4.0,1254313633\n547,71464,3.5,1294934409\n547,71535,3.0,1467990118\n547,71579,3.5,1270485401\n547,71804,2.5,1256226461\n547,72011,4.0,1267280607\n547,72131,4.0,1260619072\n547,72169,3.0,1418392322\n547,72226,4.0,1443402294\n547,72367,4.5,1388506454\n547,72395,4.0,1270310625\n547,72641,4.0,1342850452\n547,72720,4.5,1323707231\n547,72998,4.0,1263562026\n547,73023,4.0,1284825706\n547,73323,3.5,1373205323\n547,73469,3.0,1268313851\n547,73854,3.5,1264083246\n547,74089,5.0,1265116371\n547,74282,4.0,1277094857\n547,74458,4.0,1301062731\n547,74510,3.5,1304098672\n547,74545,4.0,1276424052\n547,74630,3.0,1267416854\n547,74795,3.5,1296916834\n547,74916,2.0,1407749693\n547,75813,2.5,1312689922\n547,75990,4.5,1271343054\n547,76293,3.5,1285807709\n547,76763,3.0,1351004332\n547,77421,3.5,1290309344\n547,77561,3.0,1273415148\n547,77808,2.5,1273877945\n547,78039,4.5,1299940993\n547,78111,2.0,1275603801\n547,78116,3.5,1285807685\n547,78499,4.5,1350747728\n547,78517,3.0,1410534101\n547,78574,4.0,1289659891\n547,78653,3.5,1292068151\n547,78729,2.5,1278144477\n547,78967,4.0,1278607403\n547,79132,4.0,1279982532\n547,79134,1.5,1288466612\n547,79242,4.5,1299855138\n547,79592,4.0,1470925962\n547,79702,2.5,1354342124\n547,79720,3.0,1372951705\n547,80346,3.5,1284542249\n547,80463,4.0,1287199623\n547,80489,4.5,1322200246\n547,80862,3.5,1321575328\n547,80969,3.5,1304786653\n547,81512,3.5,1357407766\n547,81562,4.0,1300890090\n547,81591,4.0,1298726091\n547,81641,3.5,1305481034\n547,81784,3.0,1307725996\n547,81845,4.0,1296916797\n547,81898,0.5,1414252378\n547,81932,5.0,1322201208\n547,82378,3.0,1446821278\n547,82459,4.5,1299258214\n547,82463,4.0,1400430320\n547,83332,4.0,1349928823\n547,84098,3.5,1296603094\n547,84392,3.0,1366821786\n547,84847,4.0,1299258123\n547,85016,3.5,1418563061\n547,85414,3.5,1371222273\n547,85881,3.5,1332000450\n547,86320,4.5,1344642796\n547,86487,5.0,1351010563\n547,86833,4.0,1316873749\n547,86864,4.0,1305892000\n547,86911,2.0,1340372360\n547,86982,2.0,1307379574\n547,87218,3.5,1307379550\n547,87298,1.5,1322809333\n547,87304,4.5,1319862609\n547,87306,4.0,1308272387\n547,87383,3.0,1307540573\n547,87598,3.0,1308669056\n547,88024,2.5,1309881616\n547,88129,4.0,1345308382\n547,88163,3.0,1322809262\n547,88235,4.0,1320317017\n547,88405,3.5,1319862584\n547,88682,4.0,1312466401\n547,88810,4.0,1322894449\n547,89203,4.0,1333810386\n547,89260,4.0,1319862554\n547,89321,2.0,1333027103\n547,89408,3.0,1315887827\n547,89470,4.0,1322809192\n547,89492,4.0,1328012439\n547,89678,3.5,1375083912\n547,89745,2.0,1446907683\n547,89804,4.5,1331982032\n547,89864,3.5,1331912449\n547,89881,4.0,1318091715\n547,89904,3.5,1331392020\n547,90057,4.0,1398961745\n547,90266,3.0,1340461933\n547,90374,3.5,1340467955\n547,90376,4.0,1351959906\n547,90428,3.0,1446392720\n547,90439,4.0,1345910493\n547,90469,2.5,1347630631\n547,90531,4.0,1339860510\n547,90717,3.0,1321670573\n547,90866,4.5,1330529015\n547,91077,4.5,1329492087\n547,91134,3.0,1420810499\n547,91286,4.0,1322355697\n547,91500,3.5,1386503048\n547,91582,2.5,1323494283\n547,91610,2.0,1323606101\n547,91658,4.5,1372000086\n547,91890,3.5,1374667766\n547,92756,2.5,1342874546\n547,93432,3.0,1341074250\n547,93510,4.0,1403280331\n547,93512,3.0,1348198644\n547,93700,4.0,1338679331\n547,94266,3.0,1347631053\n547,94931,4.5,1361110441\n547,94959,3.5,1356273954\n547,95135,4.5,1374855073\n547,95307,3.5,1364662561\n547,95441,3.0,1362231479\n547,95449,4.0,1356967547\n547,95558,4.0,1348198508\n547,95583,3.0,1368864969\n547,95873,4.0,1439269870\n547,96075,5.0,1344149635\n547,96079,4.0,1403436346\n547,96110,3.5,1381668461\n547,96314,3.5,1388752810\n547,96467,3.5,1369491980\n547,96488,4.0,1373637366\n547,96563,4.0,1361888116\n547,96565,1.5,1346949557\n547,96588,4.0,1372429516\n547,96728,4.0,1356693968\n547,96792,3.5,1348198456\n547,96811,4.0,1388590778\n547,96849,3.0,1374849218\n547,96901,4.0,1348779092\n547,97254,3.5,1349928538\n547,97304,4.0,1364714630\n547,97306,2.5,1371824723\n547,97395,4.0,1417236553\n547,97639,3.5,1387285945\n547,97673,4.5,1375453610\n547,97752,4.0,1356876787\n547,97817,4.0,1351546780\n547,97866,4.0,1405084453\n547,97921,4.0,1364662436\n547,97923,4.5,1362756280\n547,97936,3.0,1375102511\n547,97938,4.5,1356788549\n547,97994,3.5,1354379031\n547,98154,4.5,1367068301\n547,98441,4.0,1354223972\n547,98458,2.0,1354223950\n547,98473,3.5,1354223934\n547,98611,3.0,1354966677\n547,98795,4.0,1355494864\n547,98803,3.0,1355494850\n547,98961,4.5,1359631684\n547,99085,2.5,1356000065\n547,99089,4.0,1356000054\n547,99114,4.0,1371308075\n547,99145,4.5,1457792914\n547,99149,4.0,1359132287\n547,99220,3.0,1396672336\n547,99270,2.5,1356469707\n547,99273,2.5,1356469703\n547,99276,2.5,1356469699\n547,99741,3.5,1371290032\n547,99839,4.0,1408199060\n547,100383,4.0,1363359098\n547,100581,3.0,1446652638\n547,101088,2.0,1384245408\n547,101106,3.0,1411565311\n547,101525,4.0,1368282894\n547,101531,1.5,1369486225\n547,101850,5.0,1366208866\n547,101895,4.5,1375546685\n547,101904,3.5,1366208811\n547,102123,4.5,1386945696\n547,102194,4.0,1384649888\n547,102396,3.5,1386516853\n547,102588,4.0,1380982611\n547,102800,3.5,1396624583\n547,102819,4.0,1409327179\n547,102903,3.5,1373036729\n547,102993,2.5,1384396192\n547,103107,4.0,1396627367\n547,103372,4.0,1383625799\n547,103444,4.0,1373036695\n547,103539,3.5,1441520591\n547,103624,4.0,1400251385\n547,103671,2.5,1374335400\n547,104119,5.0,1376492326\n547,104321,2.5,1441629771\n547,104339,4.0,1397836823\n547,104374,3.5,1403356029\n547,104595,4.0,1383015043\n547,104597,3.5,1378132231\n547,104757,4.0,1444015145\n547,104841,3.5,1383358247\n547,104879,2.0,1401038658\n547,104913,3.0,1449412071\n547,105197,4.5,1409415966\n547,105211,3.5,1400417212\n547,105213,3.5,1390580778\n547,105355,4.5,1409415700\n547,105504,5.0,1383712422\n547,105731,3.5,1382579254\n547,106004,3.5,1383315377\n547,106100,3.5,1395577939\n547,106332,3.5,1432654396\n547,106397,2.5,1396672383\n547,106438,3.5,1402842414\n547,106452,3.5,1421593879\n547,106696,4.0,1417527089\n547,106766,4.0,1389965073\n547,106782,3.5,1397928493\n547,106916,5.0,1388421030\n547,106920,5.0,1392654475\n547,107042,4.0,1415383777\n547,107141,4.5,1393613055\n547,107348,3.0,1417458035\n547,107382,3.0,1415383801\n547,107771,3.5,1469368379\n547,108076,2.0,1396605893\n547,108190,3.5,1410067035\n547,109161,4.0,1392562044\n547,109205,4.0,1392653890\n547,109374,4.5,1402760203\n547,109487,3.0,1443402344\n547,109740,3.0,1428239322\n547,109848,2.0,1441524304\n547,110194,4.0,1444845625\n547,110453,3.0,1407749418\n547,110752,4.5,1399683876\n547,110858,1.5,1398810847\n547,110882,3.5,1409237347\n547,111113,3.0,1417458013\n547,111384,3.5,1404576471\n547,111443,3.0,1423194801\n547,111529,2.5,1426607056\n547,111622,4.0,1420131595\n547,111759,2.0,1411906350\n547,111795,3.5,1415383725\n547,111921,4.0,1411228864\n547,112183,5.0,1416281762\n547,112290,4.5,1416281923\n547,112334,3.5,1431096341\n547,112399,4.5,1444845701\n547,112450,2.0,1414247909\n547,112552,4.0,1425779840\n547,112556,4.0,1415120063\n547,112577,5.0,1404823924\n547,112582,4.0,1409416746\n547,112653,4.0,1471004668\n547,112735,4.5,1405681485\n547,112850,2.5,1457109567\n547,112852,4.0,1407510458\n547,112921,4.0,1409416787\n547,112940,3.0,1420910990\n547,113207,4.0,1420810536\n547,113220,3.0,1441520451\n547,113705,3.5,1426607007\n547,113829,3.0,1418385958\n547,113938,3.5,1444845681\n547,114074,3.5,1428249472\n547,114082,4.0,1410966722\n547,114122,3.5,1410966695\n547,114342,4.0,1422112754\n547,114464,5.0,1411828562\n547,114601,3.5,1428849900\n547,114662,4.0,1423131195\n547,115231,3.5,1417322003\n547,115569,4.5,1431187319\n547,115713,4.5,1454000885\n547,116012,4.0,1415383673\n547,116136,2.5,1416224512\n547,116161,4.0,1421073514\n547,116797,3.5,1426347912\n547,116799,3.5,1428155178\n547,117176,4.0,1423838127\n547,117456,3.5,1430495025\n547,118898,4.0,1474704767\n547,118900,4.0,1433002673\n547,118924,2.5,1432908634\n547,118985,3.0,1433082876\n547,118997,2.5,1471611408\n547,120821,4.5,1420455375\n547,121231,3.5,1446907379\n547,127114,4.0,1454253806\n547,127136,3.0,1443402328\n547,127152,4.5,1429529138\n547,127158,3.5,1453043449\n547,127164,4.5,1473002696\n547,127178,3.5,1467465197\n547,127202,3.0,1444896562\n547,128360,4.5,1468681977\n547,128606,4.5,1468592897\n547,129364,2.0,1468761045\n547,130351,4.0,1428155546\n547,130452,4.0,1443432861\n547,131724,4.0,1440416558\n547,132074,4.0,1433520838\n547,132496,3.5,1443433340\n547,132888,3.5,1430317147\n547,133419,1.5,1443402415\n547,133645,4.0,1468161130\n547,134025,3.0,1432654721\n547,134130,4.5,1446210919\n547,134368,3.0,1434211190\n547,134393,4.0,1447418992\n547,134853,4.0,1443402380\n547,134881,4.0,1452436724\n547,135508,3.5,1435161154\n547,136018,3.5,1444267768\n547,137337,4.0,1441376008\n547,137857,4.0,1473522674\n547,138258,3.0,1457712128\n547,139385,3.5,1455195063\n547,139644,2.5,1464465390\n547,140174,4.0,1457179687\n547,140247,4.0,1457109377\n547,140816,3.5,1472045752\n547,140928,1.5,1457091102\n547,141749,4.0,1468077724\n547,142192,3.5,1442199101\n547,142258,1.5,1466252637\n547,142488,4.0,1452944320\n547,143377,3.5,1449333344\n547,143385,3.5,1446812004\n547,143657,2.0,1471257899\n547,146656,4.0,1458652849\n547,146682,3.5,1452405988\n547,147845,3.5,1458992579\n547,148238,3.0,1457795387\n547,148626,4.5,1454163886\n547,149354,3.5,1463150376\n547,150856,5.0,1454432582\n547,151307,4.5,1472400501\n547,152077,3.5,1466174375\n547,156387,4.0,1467946613\n547,157296,3.0,1466948434\n547,160656,3.5,1471168466\n547,160718,4.0,1469713151\n547,161084,2.5,1468248331\n547,163949,5.0,1476419239\n548,1,4.0,857405395\n548,2,3.0,857406875\n548,3,4.0,857405447\n548,5,3.0,857405447\n548,6,3.0,857405447\n548,10,4.0,857407492\n548,11,3.0,857406576\n548,19,3.0,857407365\n548,21,3.0,857405918\n548,22,3.0,857406991\n548,23,3.0,857407170\n548,32,3.0,857405395\n548,36,3.0,857405447\n548,39,3.0,857405981\n548,44,3.0,857407170\n548,45,3.0,857407272\n548,47,3.0,857407799\n548,50,4.0,857405918\n548,52,4.0,857405496\n548,58,5.0,857405496\n548,62,3.0,857405395\n548,65,3.0,857405620\n548,69,4.0,857406991\n548,76,3.0,857405676\n548,88,3.0,857405723\n548,95,3.0,857405395\n548,105,4.0,857407872\n548,110,5.0,857405917\n548,112,3.0,857405496\n548,141,4.0,857405395\n548,150,3.0,857406114\n548,161,3.0,857405981\n548,162,4.0,857406875\n548,168,3.0,857407661\n548,223,3.0,857405917\n548,225,3.0,857406302\n548,230,3.0,857406875\n548,231,4.0,857406576\n548,234,3.0,857406991\n548,235,3.0,857407720\n548,236,3.0,857407365\n548,246,4.0,857406724\n548,253,3.0,857406114\n548,260,5.0,857405496\n548,265,2.0,857405981\n548,276,3.0,857407365\n548,288,3.0,857407562\n548,292,3.0,857407562\n548,293,4.0,857405981\n548,296,4.0,857405917\n548,300,3.0,857406991\n548,306,3.0,857407098\n548,307,3.0,857407420\n548,308,3.0,857407365\n548,315,3.0,857406082\n548,316,3.0,857406644\n548,318,5.0,857406014\n548,329,3.0,857406302\n548,333,3.0,857406114\n548,337,3.0,857406801\n548,340,3.0,857407799\n548,344,3.0,857405981\n548,345,4.0,857406114\n548,348,4.0,857406644\n548,349,4.0,857405981\n548,350,3.0,857406875\n548,353,3.0,857407217\n548,356,4.0,857405981\n548,357,3.0,857405981\n548,362,3.0,857407492\n548,364,3.0,857406499\n548,368,3.0,857407799\n548,370,3.0,857407170\n548,371,3.0,857407562\n548,372,3.0,857407272\n548,376,3.0,857405496\n548,380,3.0,857407661\n548,383,3.0,857407170\n548,410,3.0,857406945\n548,427,3.0,857406991\n548,434,3.0,857406875\n548,435,3.0,857406499\n548,440,4.0,857406499\n548,442,4.0,857407799\n548,445,3.0,857407562\n548,454,3.0,857406302\n548,457,5.0,857406014\n548,466,3.0,857407961\n548,468,3.0,857407872\n548,471,4.0,857407799\n548,474,4.0,857406082\n548,480,4.0,857406499\n548,481,4.0,857406800\n548,493,3.0,857407720\n548,494,3.0,857405447\n548,497,3.0,857406302\n548,500,3.0,857406724\n548,509,3.0,857405981\n548,514,3.0,857407217\n548,538,3.0,857406644\n548,541,5.0,857406800\n548,542,3.0,857407170\n548,543,3.0,857407365\n548,544,3.0,857407872\n548,552,3.0,857407799\n548,553,4.0,857406014\n548,555,4.0,857406015\n548,586,3.0,857406800\n548,588,3.0,857407562\n548,590,3.0,857406945\n548,593,4.0,857405918\n548,595,3.0,857407060\n548,597,3.0,857406576\n548,608,5.0,857405447\n548,628,4.0,857405542\n548,647,3.0,857406801\n548,648,3.0,857405395\n548,671,4.0,857405676\n548,708,3.0,857405496\n548,719,3.0,857405620\n548,733,4.0,857405447\n548,741,3.0,857407420\n548,778,5.0,857405620\n548,780,4.0,857405395\n548,784,3.0,857405496\n548,785,3.0,857405724\n548,786,3.0,857405447\n548,788,3.0,857405496\n548,802,3.0,857405542\n548,1035,3.0,857407059\n548,1036,4.0,857406576\n548,1073,3.0,857405447\n548,1079,5.0,857406302\n548,1080,4.0,857406991\n548,1084,4.0,857406575\n548,1086,4.0,857407661\n548,1103,3.0,857407799\n548,1356,4.0,857405542\n549,18,1.0,1268782856\n549,50,4.5,1268783169\n549,267,2.0,1268782908\n549,318,3.5,1268783173\n549,671,5.0,1268782761\n549,743,2.0,1268782799\n549,750,5.0,1268783177\n549,858,5.0,1268783180\n549,1095,4.0,1268782836\n549,1221,5.0,1268783183\n549,1245,3.5,1268782842\n549,1680,1.0,1268782806\n549,2716,3.5,1268783189\n549,2795,4.0,1268782830\n549,3019,2.5,1268782915\n549,3087,2.5,1268782862\n549,3396,3.0,1268782808\n549,3555,1.0,1268782810\n549,3698,3.5,1268782824\n549,3740,2.0,1268782880\n549,3798,2.0,1268782833\n549,4019,2.5,1268782847\n550,10,4.0,943372548\n550,11,4.0,943373959\n550,16,5.0,942669563\n550,32,4.0,942668664\n550,34,4.0,943373414\n550,41,5.0,943372388\n550,47,3.0,942669480\n550,110,3.0,943372349\n550,145,4.0,959487219\n550,153,1.0,943372786\n550,161,4.0,942669719\n550,172,2.0,942668764\n550,208,3.0,943372786\n550,293,3.0,943374214\n550,296,5.0,943373825\n550,338,4.0,942669183\n550,353,4.0,959487237\n550,356,4.0,943372349\n550,377,5.0,942669824\n550,380,4.0,943372597\n550,440,3.0,943373616\n550,442,2.0,942669148\n550,457,3.0,942669521\n550,474,4.0,959487071\n550,480,4.0,942669034\n550,494,3.0,942669930\n550,517,3.0,943374568\n550,527,5.0,943372349\n550,588,4.0,943373505\n550,589,4.0,942668665\n550,590,5.0,943372549\n550,593,4.0,942669479\n550,608,5.0,942669521\n550,647,4.0,943372388\n550,648,3.0,943372625\n550,665,5.0,959486824\n550,733,4.0,942669719\n550,736,3.0,943372786\n550,748,5.0,942669183\n550,780,3.0,943372422\n550,788,3.0,959486932\n550,798,3.0,959487179\n550,832,2.0,942669619\n550,861,3.0,942669965\n550,904,5.0,943375474\n550,1036,4.0,943374879\n550,1101,2.0,943375066\n550,1127,4.0,943374728\n550,1183,4.0,943372388\n550,1196,5.0,943374728\n550,1198,5.0,943374979\n550,1200,4.0,943374728\n550,1210,4.0,943374728\n550,1219,4.0,943375684\n550,1240,4.0,943374728\n550,1242,4.0,943375022\n550,1274,4.0,943374763\n550,1291,4.0,943374979\n550,1372,4.0,959486957\n550,1377,2.0,943372719\n550,1391,3.0,943372450\n550,1393,4.0,943373996\n550,1422,3.0,942670431\n550,1427,3.0,942670538\n550,1480,4.0,942670234\n550,1499,2.0,943372819\n550,1515,3.0,942670470\n550,1552,3.0,942670055\n550,1573,4.0,959486906\n550,1580,4.0,942669034\n550,1589,3.0,943373169\n550,1590,1.0,942669224\n550,1601,4.0,943373252\n550,1603,3.0,942669183\n550,1608,3.0,942669782\n550,1610,4.0,942669563\n550,1616,3.0,942670191\n550,1617,5.0,942669563\n550,1620,3.0,942669965\n550,1625,3.0,942669563\n550,1645,2.0,942669619\n550,1653,5.0,942668764\n550,1676,4.0,942669100\n550,1683,5.0,942670470\n550,1704,5.0,943373825\n550,1721,2.0,943373882\n550,1722,3.0,959487134\n550,1744,1.0,943372719\n550,1747,3.0,943374345\n550,1748,5.0,959486882\n550,1769,3.0,942670318\n550,1784,4.0,943373486\n550,1792,3.0,942670191\n550,1833,2.0,942670318\n550,1876,3.0,942668764\n550,1883,4.0,943373616\n550,1917,3.0,942669270\n550,1918,2.0,943373045\n550,1920,2.0,943372476\n550,1921,5.0,959486882\n550,1923,5.0,943373486\n550,2000,4.0,943375022\n550,2002,2.0,943373045\n550,2028,3.0,943372349\n550,2058,4.0,942669848\n550,2115,4.0,943375096\n550,2118,5.0,943374909\n550,2126,4.0,943373200\n550,2167,3.0,943372597\n550,2252,4.0,943373543\n550,2278,4.0,943373068\n550,2302,4.0,943373448\n550,2334,3.0,942669931\n550,2353,3.0,942669674\n550,2391,4.0,942669674\n550,2405,2.0,943375066\n550,2406,4.0,943374979\n550,2542,5.0,942669480\n550,2549,1.0,942669342\n550,2571,5.0,959486882\n550,2580,4.0,943373101\n550,2616,3.0,959487179\n550,2628,2.0,959486957\n550,2707,4.0,948681508\n550,2762,5.0,942669479\n550,2763,4.0,959487096\n550,2822,3.0,943372842\n550,2858,5.0,959486746\n550,2912,3.0,959487048\n550,2987,4.0,943375170\n550,3020,4.0,959487179\n550,3044,5.0,942669479\n550,3052,3.0,942668149\n550,3082,2.0,959487134\n550,3101,4.0,943374909\n551,7,4.0,843274557\n551,12,3.0,843274928\n551,45,3.0,843274426\n551,105,3.0,843274391\n551,126,2.0,843274947\n551,135,3.0,843275050\n551,150,4.0,843273952\n551,191,3.0,843275008\n551,196,3.0,843274220\n551,253,3.0,843274054\n551,273,4.0,843274425\n551,277,3.0,843274321\n551,316,4.0,843274034\n551,328,3.0,843274714\n551,329,3.0,843274005\n551,330,3.0,843275050\n551,332,3.0,843275050\n551,336,3.0,843275128\n551,344,4.0,843273967\n551,364,3.0,843274095\n551,367,4.0,843274095\n551,368,3.0,843274286\n551,370,3.0,843274391\n551,410,3.0,843274114\n551,416,3.0,843274971\n551,419,4.0,843274619\n551,420,4.0,843274136\n551,421,4.0,843274822\n551,426,3.0,843274666\n551,457,4.0,843274005\n551,474,4.0,843274245\n551,480,3.0,843274054\n551,484,3.0,843276128\n551,519,3.0,843274714\n551,520,4.0,843274339\n551,548,3.0,843274694\n551,553,3.0,843274199\n551,575,4.0,843275068\n551,586,4.0,843274136\n551,587,4.0,843274154\n551,589,4.0,843274095\n551,590,3.0,843273952\n551,593,3.0,843274005\n551,594,4.0,843274339\n551,595,3.0,843274005\n551,616,3.0,843274587\n551,637,4.0,843274837\n551,640,3.0,843275977\n551,648,4.0,843274301\n551,667,4.0,843275977\n551,783,5.0,843274990\n551,788,4.0,843274822\n551,835,4.0,843275176\n551,849,3.0,843276068\n551,880,4.0,843275206\n551,997,3.0,843275944\n551,1007,3.0,843275440\n551,1008,4.0,843275652\n551,1009,3.0,843275347\n551,1010,3.0,843275265\n551,1011,3.0,843275347\n551,1012,4.0,843275249\n551,1013,2.0,843275249\n551,1015,5.0,843275347\n551,1016,4.0,843275378\n551,1017,3.0,843275318\n551,1018,3.0,843275551\n551,1019,5.0,843275156\n551,1022,3.0,843275099\n551,1025,4.0,843275176\n551,1027,3.0,843276181\n551,1028,3.0,843276102\n551,1029,4.0,843275099\n551,1031,3.0,843275265\n551,1032,3.0,843275156\n551,1033,4.0,843275285\n551,1035,3.0,843276102\n551,1036,4.0,843274876\n551,1079,3.0,843275249\n551,1081,3.0,843275604\n551,1083,3.0,843275806\n551,1084,4.0,843275634\n551,1085,1.0,843275862\n551,1086,4.0,843275677\n551,1087,3.0,843275944\n552,10,3.0,843322577\n552,97,4.0,843325101\n552,145,3.0,843323102\n552,153,2.0,843322530\n552,155,3.0,843325702\n552,165,3.0,843322530\n552,172,3.0,843322966\n552,185,2.0,843322577\n552,196,3.0,843322943\n552,198,4.0,843323248\n552,296,5.0,843322508\n552,305,2.0,843324474\n552,319,4.0,843323278\n552,355,1.0,843323061\n552,356,1.0,843322561\n552,357,3.0,843322664\n552,365,3.0,843323654\n552,367,2.0,843322607\n552,377,1.0,843322618\n552,466,3.0,843323027\n552,480,2.0,843322577\n552,508,3.0,846647020\n552,527,3.0,843322663\n552,546,1.0,843323390\n552,551,4.0,843322966\n552,586,1.0,843322909\n552,588,3.0,843322530\n552,589,2.0,843322607\n552,590,3.0,846646988\n552,592,3.0,843322507\n552,593,4.0,843322545\n552,597,2.0,843322643\n552,616,4.0,843323230\n552,718,2.0,843325980\n552,1028,3.0,843325882\n552,1036,2.0,843323654\n552,1037,3.0,843323904\n552,1079,3.0,843324065\n553,1,4.0,1423011192\n553,110,5.0,1423009741\n553,260,5.0,1423009619\n553,293,4.0,1423009682\n553,318,5.0,1423010524\n553,457,3.0,1423010013\n553,555,2.5,1423010283\n553,589,2.5,1423009703\n553,736,3.0,1423009927\n553,858,3.5,1423010522\n553,1036,3.0,1423009686\n553,1136,5.0,1423010498\n553,1196,5.0,1423009626\n553,1197,3.0,1423010531\n553,1198,5.0,1423009623\n553,1200,2.5,1423009670\n553,1201,4.0,1423010736\n553,1207,2.0,1423009877\n553,1208,2.5,1423010774\n553,1210,5.0,1423009636\n553,1240,2.5,1423009734\n553,1242,3.5,1423011312\n553,1262,3.5,1423011711\n553,1278,4.0,1423011079\n553,1291,5.0,1423009630\n553,1304,4.0,1423010992\n553,1377,3.0,1423011888\n553,1682,1.5,1423010253\n553,1704,4.0,1423011822\n553,1722,4.0,1423011221\n553,2005,5.0,1423011679\n553,2028,5.0,1423009746\n553,2115,5.0,1423011203\n553,2502,4.0,1423011027\n553,2571,3.5,1423009795\n553,2948,4.5,1423012089\n553,2949,4.5,1423012088\n553,2959,5.0,1423009752\n553,2989,4.5,1423011853\n553,3578,5.0,1423009810\n553,3623,3.5,1423011583\n553,3671,3.5,1423010113\n553,3753,5.0,1423011003\n553,3793,4.0,1423010788\n553,3916,4.0,1423010342\n553,3948,3.5,1423011596\n553,4011,4.0,1423011579\n553,4022,3.5,1423011572\n553,4223,4.5,1423010812\n553,4262,3.0,1423011155\n553,4306,4.0,1423011557\n553,4878,3.5,1423009920\n553,4886,3.5,1423011560\n553,4896,4.5,1423009791\n553,4958,4.0,1423010937\n553,4963,3.5,1423010547\n553,4993,5.0,1423009657\n553,4995,4.5,1423010729\n553,5010,4.0,1423011622\n553,5152,5.0,1423010875\n553,5218,4.0,1423011614\n553,5349,4.0,1423011033\n553,5378,5.0,1423011588\n553,5418,4.0,1423009808\n553,5459,3.5,1423011627\n553,5464,3.5,1423010760\n553,5816,4.5,1423011145\n553,5903,4.5,1423010505\n553,5952,5.0,1423009659\n553,6016,4.0,1423009835\n553,6213,4.0,1423010923\n553,6333,4.0,1423009865\n553,6365,4.0,1423010387\n553,6377,4.5,1423010551\n553,6378,4.0,1423011640\n553,6539,4.0,1423011561\n553,6874,3.5,1423011565\n553,6947,3.0,1423011740\n553,7143,5.0,1423010732\n553,7153,5.0,1423009639\n553,7373,4.5,1423009881\n553,7438,3.5,1423011576\n553,7502,5.0,1423009661\n553,8360,4.0,1423009804\n553,8368,4.0,1423010684\n553,8636,4.0,1423010864\n553,8644,4.0,1423011629\n553,8665,4.0,1423009841\n553,8874,4.0,1423011603\n553,8961,3.5,1423011568\n553,27611,3.5,1423009939\n553,30707,2.5,1423010136\n553,33493,5.0,1423011780\n553,33679,3.5,1423010189\n553,33794,5.0,1423009713\n553,34405,4.0,1423010610\n553,35836,4.0,1423010653\n553,38061,4.5,1423010161\n553,40815,4.5,1423009793\n553,41566,4.5,1423011346\n553,44191,4.0,1423011695\n553,45722,4.0,1423011124\n553,47099,2.5,1423010660\n553,47610,4.0,1423010592\n553,48516,4.5,1423012257\n553,48780,4.5,1423010515\n553,49272,4.0,1423010649\n553,49530,4.0,1423009787\n553,51255,4.0,1423010096\n553,51662,5.0,1423009798\n553,51935,5.0,1423010074\n553,52458,4.0,1423010932\n553,52973,4.0,1423011341\n553,53125,4.0,1423010001\n553,53972,3.5,1423011060\n553,53996,4.0,1423010105\n553,54001,4.0,1423010601\n553,54286,4.0,1423009716\n553,55820,4.5,1423011632\n553,56367,2.0,1423011618\n553,58559,5.0,1423009633\n553,59315,5.0,1423009744\n553,59369,3.0,1423010662\n553,60040,4.0,1423009831\n553,60069,3.5,1423009857\n553,60072,3.0,1423010291\n553,60684,3.5,1423011664\n553,61024,5.0,1423011846\n553,61160,3.0,1423011861\n553,63082,3.5,1423010397\n553,63113,3.5,1423010047\n553,65514,4.0,1423010039\n553,66171,3.5,1423009971\n553,67087,4.0,1423010891\n553,68319,4.5,1423010305\n553,68358,5.0,1423009748\n553,68791,3.0,1423009989\n553,68954,3.5,1423009761\n553,69122,4.5,1423010541\n553,69481,4.0,1423010220\n553,69844,4.5,1423009871\n553,70286,3.5,1423009901\n553,71535,5.0,1423011745\n553,72998,4.0,1423009851\n553,73017,5.0,1423010642\n553,74458,3.5,1423010838\n553,74789,2.0,1423011882\n553,76251,4.5,1423011863\n553,77561,5.0,1423009802\n553,77866,4.0,1423010831\n553,78469,3.0,1423010987\n553,79132,4.0,1423009700\n553,79553,4.0,1423010394\n553,81782,3.0,1423010916\n553,81834,4.0,1423010508\n553,82459,3.0,1423010121\n553,84152,3.5,1423011158\n553,85414,2.5,1423009947\n553,85774,3.0,1423011038\n553,86332,4.5,1423011865\n553,87232,3.5,1423010682\n553,88125,4.0,1423010553\n553,88129,5.0,1423010106\n553,88140,4.5,1423011117\n553,89745,5.0,1423011654\n553,89774,5.0,1423011326\n553,91500,3.5,1423010199\n553,91529,5.0,1423010517\n553,91542,5.0,1423011973\n553,91658,3.0,1423010080\n553,93510,4.0,1423012085\n553,94777,4.0,1423010956\n553,95510,3.5,1423010089\n553,96079,4.5,1423012295\n553,97938,3.5,1423010640\n553,98809,5.0,1423010862\n553,99007,2.5,1423011836\n553,99114,4.0,1423010668\n553,102123,4.5,1423011755\n553,102125,5.0,1423010793\n553,102445,5.0,1423011660\n553,103341,4.0,1423011733\n553,104841,2.5,1423010713\n553,104913,5.0,1423011329\n553,106002,3.0,1423010818\n553,106072,4.5,1423011120\n553,106487,4.0,1423010925\n553,106489,5.0,1423011674\n553,106782,4.0,1423010248\n553,107348,3.5,1423011707\n553,109578,3.0,1423011704\n553,110102,4.5,1423011684\n553,111362,4.5,1423011668\n553,111759,4.0,1423011776\n553,112138,4.0,1423011670\n553,112852,5.0,1423010098\n553,113453,3.5,1423011827\n553,114662,4.0,1423011441\n553,118105,4.0,1423011525\n553,118696,5.0,1423011457\n553,119141,5.0,1423011435\n554,17,5.0,1012750606\n554,495,4.0,1012751170\n554,500,3.0,1012753651\n554,527,5.0,1012750278\n554,541,4.0,1012753390\n554,593,4.0,1012752577\n554,784,1.0,1012750904\n554,858,5.0,1012750465\n554,1096,4.0,1012750728\n554,1136,3.0,1012751434\n554,1193,5.0,1012750517\n554,1196,4.0,1012750499\n554,1200,4.0,1012753261\n554,1228,5.0,1012752226\n554,1230,4.0,1012752624\n554,1240,4.0,1012753112\n554,1320,2.0,1012752274\n554,1333,4.0,1012753453\n554,1344,4.0,1012753664\n554,1556,1.0,1012753636\n554,1610,3.0,1012753349\n554,1676,3.0,1012750278\n554,1734,4.0,1012753154\n554,1959,4.0,1012752997\n554,1968,3.0,1012750439\n554,1974,3.0,1012753758\n554,1975,3.0,1012753261\n554,1977,1.0,1012750606\n554,1996,1.0,1012751093\n554,2012,2.0,1012753028\n554,2029,4.0,1012750499\n554,2114,4.0,1012752908\n554,2243,5.0,1012751296\n554,2324,4.0,1012753566\n554,2355,4.0,1012750634\n554,2384,4.0,1012753418\n554,2396,4.0,1012753540\n554,2411,1.0,1012752492\n554,2431,3.0,1012753173\n554,2470,2.0,1012753190\n554,2471,1.0,1012752256\n554,2521,2.0,1012750606\n554,2522,2.0,1012751122\n554,2568,1.0,1012752639\n554,2713,2.0,1012753283\n554,2762,5.0,1012751351\n554,2918,4.0,1012751138\n554,2942,3.0,1012753718\n554,2971,4.0,1012753507\n554,2997,4.0,1012751122\n554,3068,4.0,1012753059\n554,3252,4.0,1012750984\n554,3309,4.0,1012753566\n554,3361,4.0,1012752150\n554,3450,2.0,1012750278\n554,3551,5.0,1012750499\n554,3649,3.0,1012753155\n554,4025,2.0,1012750465\n554,4103,4.0,1012753333\n554,4179,4.0,1012752793\n554,4447,3.0,1012753173\n554,4489,3.0,1012752997\n554,4521,4.0,1012750517\n554,4993,4.0,1012752624\n555,10,3.0,842288289\n555,17,3.0,842284353\n555,34,4.0,842284498\n555,41,3.0,842283609\n555,45,3.0,832091435\n555,50,4.0,832091086\n555,82,3.0,863625433\n555,95,1.0,857380156\n555,105,2.0,842284753\n555,110,3.0,863626004\n555,114,3.0,857379668\n555,144,4.0,842284740\n555,150,3.0,842288304\n555,151,3.0,832091115\n555,154,4.0,832096969\n555,194,5.0,842283609\n555,196,3.0,832091132\n555,208,3.0,857380017\n555,225,3.0,832091059\n555,232,3.0,832097072\n555,246,3.0,857379970\n555,247,3.0,832091461\n555,249,2.0,832091461\n555,253,3.0,832091040\n555,260,5.0,857379934\n555,272,4.0,832091194\n555,273,3.0,842284661\n555,296,4.0,832090964\n555,300,3.0,832091040\n555,305,3.0,857379970\n555,306,5.0,842288184\n555,307,4.0,832097396\n555,308,5.0,832097395\n555,316,3.0,857379989\n555,318,5.0,832091005\n555,329,3.0,832097219\n555,337,2.0,832091115\n555,342,3.0,842284740\n555,344,3.0,832090980\n555,348,3.0,832091194\n555,357,4.0,842283857\n555,367,3.0,842288224\n555,377,3.0,842284619\n555,380,3.0,832090964\n555,412,3.0,842284725\n555,457,3.0,842284588\n555,480,3.0,842284599\n555,497,3.0,842283909\n555,509,4.0,832091435\n555,515,4.0,832097049\n555,527,4.0,842283755\n555,535,4.0,842283411\n555,537,3.0,842283375\n555,539,2.0,857380017\n555,582,4.0,857380394\n555,587,1.0,842284763\n555,589,4.0,842284579\n555,590,3.0,832090964\n555,592,3.0,832090964\n555,593,3.0,832091247\n555,608,4.0,842283037\n555,648,3.0,857380091\n555,718,3.0,845555757\n555,719,1.0,857380499\n555,780,3.0,857380156\n555,786,3.0,857380190\n555,802,1.0,857380223\n555,852,2.0,857380264\n555,1036,3.0,842284619\n555,1037,2.0,842284674\n555,1041,5.0,857379617\n555,1113,1.0,857379775\n555,1183,4.0,863626054\n555,1210,3.0,863626081\n555,1233,4.0,863626054\n556,50,3.0,842019987\n556,150,5.0,842019335\n556,161,5.0,842019723\n556,165,5.0,842019369\n556,208,4.0,842019988\n556,231,3.0,842019459\n556,292,5.0,842019723\n556,296,3.0,842019987\n556,316,5.0,842019459\n556,318,5.0,842019723\n556,329,5.0,842019723\n556,344,4.0,842019369\n556,349,5.0,842019369\n556,364,4.0,842019864\n556,380,4.0,842019335\n556,434,4.0,842019723\n556,454,5.0,842019988\n556,457,5.0,842019459\n556,474,5.0,842019987\n556,480,5.0,842019864\n556,500,4.0,842019864\n556,586,4.0,842019864\n556,590,5.0,842019335\n556,592,3.0,842019335\n556,593,5.0,842019459\n557,34,2.0,1285963072\n557,239,3.0,1285960614\n557,344,3.0,1285961617\n557,410,2.5,1285961682\n557,588,2.5,1285961987\n557,616,2.5,1285962753\n557,631,2.0,1285960710\n557,934,3.5,1285960493\n557,940,3.0,1285961768\n557,1021,2.0,1285962508\n557,1030,1.0,1285960607\n557,1064,2.5,1285961996\n557,1099,0.5,1285960779\n557,1367,2.5,1285961128\n557,1381,4.0,1285960548\n557,1517,3.5,1285962977\n557,1592,3.5,1285961944\n557,1688,3.0,1285962435\n557,1713,3.0,1285960726\n557,1735,0.5,1285960635\n557,2018,2.0,1285960341\n557,2085,1.5,1285961136\n557,2123,2.0,1285962128\n557,2124,2.5,1285961688\n557,2137,2.5,1285960415\n557,2141,1.0,1285962368\n557,2142,1.0,1285962371\n557,2152,3.5,1285961948\n557,2294,1.5,1285962621\n557,2346,4.0,1285960757\n557,2572,4.0,1285961098\n557,2683,3.5,1285962983\n557,2706,4.0,1285962325\n557,2720,0.5,1285960536\n557,2886,2.0,1285961723\n557,3159,2.0,1285960524\n557,3271,1.5,1285960574\n557,3991,2.0,1285961168\n557,4039,3.5,1285962576\n557,4366,2.0,1285962917\n557,4386,3.5,1285960833\n557,4718,4.0,1285962328\n557,5481,4.0,1285962970\n557,6287,3.0,1285962515\n557,6383,0.5,1285961234\n557,6586,4.0,1285962383\n557,6624,2.0,1285961915\n557,7293,3.5,1285961435\n557,7541,3.5,1285961114\n557,27075,2.5,1285961674\n557,31422,3.0,1285962727\n557,35836,2.0,1285961390\n557,39715,4.0,1285962337\n557,44709,3.5,1285961979\n557,47124,2.5,1285962604\n557,47518,3.5,1285961597\n557,50189,4.0,1285962343\n557,51372,3.0,1285961066\n557,56176,3.5,1285962210\n557,56949,4.5,1285961318\n557,59429,4.0,1285962340\n557,67734,0.5,1285961707\n557,73042,3.0,1285962214\n557,73106,4.0,1285962347\n557,74789,2.0,1285962087\n557,80748,4.5,1285962079\n558,111,5.0,965485573\n558,121,4.0,965485415\n558,290,4.0,965485792\n558,327,1.0,965433767\n558,593,5.0,965485844\n558,608,4.0,965485792\n558,615,4.0,965485844\n558,648,4.0,976042500\n558,678,5.0,965485844\n558,806,4.0,965433767\n558,846,4.0,965485954\n558,858,5.0,965485233\n558,903,4.0,965485415\n558,904,5.0,965485358\n558,908,5.0,965485358\n558,912,5.0,965485358\n558,920,5.0,965485639\n558,924,5.0,965434027\n558,949,4.0,965485747\n558,969,5.0,965485844\n558,999,4.0,965434027\n558,1019,5.0,965434027\n558,1034,4.0,965485200\n558,1056,5.0,965485320\n558,1080,4.0,965433767\n558,1084,5.0,965486018\n558,1089,5.0,965485990\n558,1090,5.0,965485927\n558,1094,5.0,965485901\n558,1097,5.0,965433821\n558,1131,5.0,965485927\n558,1193,5.0,965433767\n558,1203,5.0,965433965\n558,1206,5.0,965485672\n558,1212,5.0,965485457\n558,1213,5.0,965485844\n558,1219,5.0,965485505\n558,1221,5.0,965485257\n558,1230,5.0,965485505\n558,1231,5.0,965485990\n558,1233,5.0,965485868\n558,1247,5.0,965485703\n558,1249,4.0,965485320\n558,1250,5.0,965486019\n558,1254,5.0,965485573\n558,1256,4.0,965485545\n558,1267,5.0,965485610\n558,1282,5.0,965485545\n558,1299,5.0,965485610\n558,1413,5.0,965485792\n558,1446,4.0,965485844\n558,1503,3.0,965434122\n558,1516,4.0,965485545\n558,1594,3.0,965485610\n558,1609,3.0,965434027\n558,1699,4.0,965485505\n558,1945,5.0,965485990\n558,1946,5.0,965485672\n558,1952,5.0,965485505\n558,2015,3.0,965434122\n558,2019,5.0,965485415\n558,2085,4.0,965433965\n558,2132,5.0,965485901\n558,2300,4.0,965485703\n558,2311,3.0,965434027\n558,2357,5.0,965485358\n558,2475,4.0,965434075\n558,2492,2.0,965434027\n558,2504,4.0,965434027\n558,2505,4.0,965434122\n558,2599,5.0,965485747\n558,2648,5.0,965485928\n558,2662,4.0,965486019\n558,2664,5.0,965485990\n558,2692,5.0,965485200\n558,2858,5.0,965861667\n558,2889,4.0,965861707\n558,2908,4.0,965485457\n558,2944,4.0,965433821\n558,2966,5.0,965861667\n558,2976,3.0,965861782\n558,2998,4.0,966518787\n558,3018,4.0,965485792\n558,3055,3.0,965861707\n558,3077,4.0,965434075\n558,3078,4.0,965861667\n558,3079,4.0,965861667\n558,3081,4.0,965861749\n558,3082,4.0,965861749\n558,3083,5.0,965485415\n558,3089,5.0,965485639\n558,3095,5.0,965485703\n558,3112,5.0,965433965\n558,3116,4.0,965861749\n558,3117,3.0,966518787\n558,3128,4.0,965485233\n558,3129,4.0,965861749\n558,3147,5.0,965861667\n558,3148,4.0,970409446\n558,3150,4.0,970409446\n558,3159,3.0,976042422\n558,3160,4.0,970409446\n558,3163,5.0,965861707\n558,3173,3.0,976042500\n558,3174,4.0,965861707\n558,3176,4.0,965861707\n558,3183,4.0,965861667\n558,3185,4.0,965861782\n558,3186,4.0,965861749\n558,3196,5.0,965485505\n558,3201,5.0,965485990\n558,3298,4.0,970409485\n558,3300,5.0,976042461\n558,3301,3.0,965861782\n558,3317,5.0,987266889\n558,3328,5.0,970409485\n558,3363,5.0,965485747\n558,3408,5.0,970409446\n558,3420,4.0,965433965\n558,3457,4.0,976042559\n558,3467,4.0,965485610\n558,3468,5.0,965485672\n558,3470,3.0,965485142\n558,3481,5.0,970409446\n558,3509,4.0,976042559\n558,3510,3.0,976042422\n558,3512,5.0,976042559\n558,3534,4.0,976042500\n558,3578,5.0,976042422\n558,3624,4.0,976042461\n558,3683,5.0,965485901\n558,3728,5.0,965485415\n558,3735,5.0,965485573\n558,3741,4.0,965485415\n558,3747,5.0,976042500\n558,3751,5.0,976042422\n558,3753,4.0,976042422\n558,3760,3.0,965572784\n558,3763,5.0,965572711\n558,3788,5.0,965572644\n558,3789,5.0,965572848\n558,3791,4.0,965572741\n558,3792,5.0,965572711\n558,3798,4.0,987266918\n558,3801,5.0,967385405\n558,3802,3.0,965572741\n558,3809,4.0,967385373\n558,3811,4.0,965485792\n558,3813,5.0,967385373\n558,3816,3.0,965485142\n558,3834,4.0,967385235\n558,3844,4.0,967385207\n558,3852,5.0,992358451\n558,3855,4.0,987266889\n558,3863,3.0,967385167\n558,3865,2.0,987266889\n558,3868,4.0,967385167\n558,3869,3.0,967385125\n558,3871,5.0,967385125\n558,3872,4.0,967385125\n558,3873,5.0,967385125\n558,3886,4.0,967385082\n558,3893,5.0,987266889\n558,3897,5.0,987266889\n558,3903,3.0,992358451\n558,3911,5.0,992358451\n558,3949,5.0,992358425\n558,3952,5.0,987266918\n558,3967,5.0,992358425\n558,3983,5.0,994686701\n558,3994,5.0,994686726\n558,3996,5.0,993912887\n558,4014,4.0,1000133359\n558,4017,5.0,1002808994\n558,4018,3.0,994686726\n558,4021,5.0,992358425\n558,4022,4.0,993912887\n558,4023,4.0,998058305\n558,4024,4.0,992788160\n558,4027,4.0,993912887\n558,4029,5.0,993912887\n558,4034,5.0,992358425\n558,4056,4.0,1000133389\n558,4131,4.0,986655167\n558,4132,3.0,986655167\n558,4148,5.0,1000133389\n558,4153,3.0,996160338\n558,4174,5.0,986655083\n558,4178,4.0,986655083\n558,4186,3.0,986655058\n558,4187,5.0,986655058\n558,4190,5.0,986655058\n558,4191,5.0,986655032\n558,4201,5.0,986655015\n558,4210,4.0,986655015\n558,4211,3.0,986654994\n558,4220,5.0,986654994\n558,4226,5.0,1000653692\n558,4234,4.0,1000653736\n558,4239,4.0,1000653714\n558,4246,5.0,1005058642\n558,4306,5.0,1005750198\n558,4345,4.0,1019744771\n558,4370,5.0,1019744816\n558,4378,4.0,1019744792\n558,4641,5.0,1019744771\n558,4720,3.0,1026053698\n558,4743,3.0,1019744792\n558,4844,5.0,1019744816\n558,4848,5.0,1019744731\n558,4881,3.0,1026053672\n558,4889,4.0,1019744816\n558,4995,5.0,1026053672\n558,5015,4.0,1026053672\n558,6184,5.0,967385374\n559,1,4.0,903143238\n559,3,3.0,883675744\n559,17,4.0,903144535\n559,34,4.0,883676604\n559,79,4.0,883676273\n559,95,4.0,883675795\n559,104,4.0,903143278\n559,110,5.0,903143929\n559,135,3.0,883676143\n559,150,5.0,903143360\n559,260,5.0,883675417\n559,300,4.0,903144943\n559,316,5.0,903144987\n559,318,5.0,883676743\n559,349,5.0,903144323\n559,356,5.0,903144451\n559,364,4.0,903144894\n559,376,4.0,883675716\n559,380,5.0,903143885\n559,457,5.0,883676807\n559,474,5.0,903144114\n559,494,4.0,903144987\n559,497,5.0,917732299\n559,527,5.0,883676893\n559,541,5.0,903144572\n559,588,5.0,903144600\n559,589,5.0,903144248\n559,590,5.0,903144248\n559,593,5.0,903143793\n559,608,5.0,883676893\n559,637,3.0,883676321\n559,648,4.0,883675771\n559,671,4.0,883675605\n559,673,3.0,883676351\n559,719,4.0,883675991\n559,733,4.0,883675824\n559,765,3.0,903143360\n559,780,4.0,883675744\n559,785,2.0,903143562\n559,788,4.0,883675992\n559,802,4.0,903143562\n559,805,5.0,883675535\n559,830,3.0,883676303\n559,852,4.0,903143645\n559,858,5.0,903143929\n559,903,5.0,903143985\n559,904,5.0,903144080\n559,913,5.0,903143929\n559,919,3.0,903220452\n559,926,5.0,903144451\n559,953,5.0,903143418\n559,986,5.0,895844564\n559,991,5.0,883676893\n559,1028,4.0,903143515\n559,1036,4.0,903143515\n559,1042,4.0,883675565\n559,1086,5.0,903144858\n559,1193,5.0,903143757\n559,1196,5.0,903143793\n559,1197,5.0,883676720\n559,1198,5.0,903144323\n559,1204,5.0,903144393\n559,1210,5.0,883675664\n559,1214,4.0,903144080\n559,1220,3.0,903144858\n559,1221,5.0,903143958\n559,1228,5.0,903144894\n559,1231,5.0,903144451\n559,1234,5.0,903143360\n559,1240,5.0,903143610\n559,1247,5.0,903144248\n559,1250,5.0,883676958\n559,1252,5.0,903144894\n559,1262,5.0,903143929\n559,1266,5.0,903144692\n559,1270,5.0,903143360\n559,1272,5.0,903144080\n559,1276,5.0,903144248\n559,1286,5.0,903145090\n559,1287,5.0,903145235\n559,1291,5.0,903144048\n559,1292,5.0,903144572\n559,1304,4.0,903144114\n559,1307,5.0,903144572\n559,1356,4.0,903143238\n559,1393,5.0,903143418\n559,1409,4.0,903143611\n559,1414,4.0,883674941\n559,1453,3.0,903143360\n559,1479,4.0,883674941\n559,1485,4.0,883674859\n559,1500,4.0,903143238\n559,1517,2.0,903143278\n559,1518,4.0,903143238\n559,1527,3.0,883675535\n559,1544,3.0,903143681\n559,1569,3.0,903145235\n559,1573,4.0,903143562\n559,1580,5.0,883676893\n559,1584,5.0,883676893\n559,1610,5.0,903144393\n559,1617,5.0,903144248\n559,1653,4.0,903145196\n559,1667,4.0,903145090\n559,1674,5.0,903144452\n559,1682,4.0,903144201\n559,1721,5.0,903143885\n559,1784,5.0,903144048\n559,1876,4.0,903142945\n559,1931,5.0,903143885\n559,1952,5.0,903145196\n559,1961,5.0,903144014\n559,1962,5.0,903144201\n559,1997,5.0,903144894\n559,2018,5.0,903145235\n559,2019,5.0,903144630\n559,2028,5.0,903142945\n559,2078,4.0,903143831\n559,2080,4.0,903144750\n559,2081,4.0,903144481\n559,2194,4.0,917732091\n559,2268,5.0,917732299\n559,2294,3.0,917730910\n559,2353,5.0,917730876\n559,2355,5.0,917730876\n559,2423,4.0,917732299\n559,2424,4.0,917730910\n559,2431,4.0,917730929\n559,2433,4.0,917730876\n560,1,4.5,1452849340\n560,10,4.0,1452848962\n560,19,3.5,1452849471\n560,34,3.5,1452849376\n560,150,4.5,1452849346\n560,165,4.0,1452848918\n560,231,3.5,1452852280\n560,296,4.0,1452848799\n560,318,5.0,1452848501\n560,344,3.5,1452849362\n560,356,4.0,1452848616\n560,364,4.0,1452851226\n560,455,3.5,1452849944\n560,480,4.0,1452849333\n560,519,3.0,1452850276\n560,527,4.5,1452849283\n560,586,4.0,1452848698\n560,589,4.0,1452848389\n560,593,3.5,1452848804\n560,596,4.0,1452851243\n560,597,3.5,1452852760\n560,648,4.0,1452848916\n560,778,3.5,1452849438\n560,780,4.0,1452848439\n560,858,4.0,1452851203\n560,1033,3.5,1452850443\n560,1036,4.0,1452849388\n560,1059,4.0,1452852346\n560,1200,4.0,1452849409\n560,1214,4.0,1452849382\n560,1222,4.0,1452849465\n560,1240,4.0,1452848655\n560,1258,3.5,1452849431\n560,1270,5.0,1452848729\n560,1320,4.5,1452849616\n560,1339,3.0,1452849763\n560,1370,4.0,1452849568\n560,1407,4.0,1452850825\n560,1515,4.5,1452850473\n560,1544,4.0,1452849594\n560,1566,4.0,1452850254\n560,1573,4.5,1452849092\n560,1580,3.0,1452850789\n560,1608,4.0,1452849591\n560,1665,4.0,1452851869\n560,1676,4.0,1452849563\n560,1690,4.0,1452849699\n560,1702,4.5,1452850891\n560,1717,4.0,1452850051\n560,1722,3.5,1452848668\n560,1882,4.0,1452850005\n560,1917,4.5,1452848397\n560,2011,5.0,1452849491\n560,2012,5.0,1452849483\n560,2085,3.5,1452850009\n560,2294,4.0,1452852260\n560,2329,4.0,1452852071\n560,2335,3.0,1452850147\n560,2355,4.0,1452849475\n560,2384,3.5,1452850218\n560,2394,4.0,1452850085\n560,2420,3.5,1452849963\n560,2421,3.0,1452850130\n560,2422,3.0,1452850590\n560,2455,4.0,1452851582\n560,2456,3.5,1452851583\n560,2470,4.0,1452850916\n560,2471,3.5,1452850917\n560,2513,4.0,1452851841\n560,2514,3.5,1452851843\n560,2571,3.5,1452849335\n560,2687,4.0,1452850214\n560,2761,4.0,1452849940\n560,2797,5.0,1452849068\n560,2858,4.0,1452848879\n560,2947,4.0,1452849696\n560,2953,4.0,1452848642\n560,2959,5.0,1452848895\n560,2985,3.5,1452849601\n560,2986,3.5,1452850272\n560,2990,4.0,1452850427\n560,3034,3.5,1452850362\n560,3082,4.0,1452848679\n560,3114,4.0,1452849440\n560,3147,5.0,1452849039\n560,3157,3.5,1452850282\n560,3273,4.0,1452850099\n560,3527,4.0,1452852824\n560,3535,4.5,1452851095\n560,3623,4.0,1452848476\n560,3697,4.0,1452850227\n560,3752,3.5,1452849955\n560,3785,4.0,1452849805\n560,3793,3.5,1452852179\n560,3826,4.0,1452850038\n560,3882,3.0,1452850356\n560,3949,3.5,1452849128\n560,4022,5.0,1452849066\n560,4254,3.0,1452850920\n560,116977,3.0,1452852281\n561,1,3.0,1172695347\n561,2,3.0,1172766441\n561,10,3.5,1172696467\n561,32,3.5,1172695179\n561,39,2.5,1172696829\n561,48,3.0,1172735128\n561,62,4.0,1172696487\n561,104,4.0,1172696470\n561,141,4.0,1172734877\n561,150,4.0,1172696363\n561,153,3.0,1172734836\n561,160,2.5,1172766203\n561,163,4.0,1172735075\n561,173,1.0,1172766335\n561,180,4.5,1172696115\n561,208,2.5,1172696710\n561,216,3.0,1172696508\n561,223,5.0,1172696101\n561,231,3.0,1172734849\n561,235,5.0,1172695438\n561,236,3.5,1172735137\n561,260,4.5,1172695175\n561,293,4.0,1172696171\n561,296,4.5,1172694828\n561,317,3.0,1172734981\n561,327,2.5,1172694648\n561,329,3.0,1172695285\n561,355,1.5,1172694579\n561,356,3.5,1172696276\n561,364,4.0,1172696434\n561,367,3.5,1172734851\n561,368,4.0,1172766139\n561,370,3.5,1172735044\n561,377,3.0,1172696473\n561,380,3.0,1172696464\n561,410,3.0,1172734918\n561,466,4.0,1172735067\n561,480,4.0,1172695258\n561,500,3.0,1172734846\n561,527,4.0,1172734820\n561,551,4.0,1172734973\n561,552,4.0,1172735183\n561,586,3.0,1172696521\n561,588,3.5,1172696432\n561,592,4.0,1172696301\n561,593,4.5,1172695985\n561,594,2.0,1172766005\n561,595,3.5,1172696436\n561,596,1.5,1172694531\n561,648,3.5,1172734825\n561,733,4.0,1172695602\n561,780,3.0,1172695279\n561,783,3.0,1172694552\n561,802,3.0,1172735152\n561,832,2.0,1172766452\n561,908,3.5,1172735036\n561,919,3.0,1172734905\n561,923,4.0,1172696205\n561,924,3.5,1172695223\n561,1020,3.5,1172696514\n561,1022,1.0,1172694602\n561,1028,3.5,1172735241\n561,1031,2.0,1172696505\n561,1035,2.5,1172696454\n561,1042,3.5,1172696494\n561,1059,3.5,1172766557\n561,1073,4.0,1172696380\n561,1079,3.5,1172734939\n561,1084,5.0,1172766480\n561,1089,5.0,1172694831\n561,1097,3.0,1172695251\n561,1101,4.0,1172696448\n561,1136,4.5,1172696178\n561,1196,5.0,1172695167\n561,1197,4.5,1172696180\n561,1198,4.0,1172695997\n561,1200,4.0,1172695189\n561,1207,3.5,1172766196\n561,1210,4.5,1172695197\n561,1214,4.5,1172695186\n561,1215,4.0,1172694545\n561,1247,4.5,1172696220\n561,1265,3.5,1172695336\n561,1270,4.0,1172695218\n561,1274,3.5,1172734409\n561,1275,4.0,1172734462\n561,1278,4.5,1172735063\n561,1282,3.0,1172694549\n561,1285,4.0,1172696817\n561,1288,3.0,1172766172\n561,1291,4.5,1172696005\n561,1302,4.5,1172696365\n561,1307,4.0,1172696372\n561,1345,3.0,1172696827\n561,1377,3.0,1172766491\n561,1380,3.0,1172696834\n561,1391,3.0,1172696559\n561,1517,4.0,1172696400\n561,1527,3.0,1172695229\n561,1552,3.5,1172695608\n561,1562,2.5,1172694877\n561,1573,4.0,1172695575\n561,1580,3.0,1172695262\n561,1608,3.0,1172735144\n561,1610,4.0,1172696231\n561,1617,4.0,1172734871\n561,1639,4.0,1172696117\n561,1645,3.5,1172696764\n561,1653,4.0,1172694870\n561,1676,3.5,1172735107\n561,1682,4.5,1172696336\n561,1722,3.0,1172766467\n561,1747,3.5,1172696410\n561,1777,3.5,1172696416\n561,1784,4.0,1172696371\n561,1835,3.5,1172695572\n561,1917,3.0,1172695820\n561,1968,4.0,1172695785\n561,2006,3.0,1172735249\n561,2012,3.5,1172695372\n561,2028,3.5,1172696746\n561,2054,4.0,1172696555\n561,2081,2.5,1172735147\n561,2105,4.5,1172694596\n561,2115,4.0,1172734985\n561,2174,4.0,1172734969\n561,2273,3.5,1172766420\n561,2291,5.0,1172695436\n561,2294,2.5,1172695424\n561,2324,3.5,1172735070\n561,2353,3.5,1172696450\n561,2355,3.5,1172695421\n561,2396,3.5,1172695696\n561,2502,4.0,1172766249\n561,2571,4.5,1172695054\n561,2605,3.0,1172694616\n561,2617,3.0,1172696722\n561,2628,3.5,1172695305\n561,2657,4.0,1172735172\n561,2683,3.5,1172696500\n561,2692,4.0,1172695331\n561,2700,3.0,1172696296\n561,2701,3.5,1172766135\n561,2706,3.0,1172695723\n561,2710,2.0,1172696885\n561,2716,4.5,1172696903\n561,2746,3.5,1172766597\n561,2770,3.0,1172766232\n561,2791,3.0,1172766216\n561,2797,4.0,1172696442\n561,2804,3.0,1172766088\n561,2916,3.0,1172766029\n561,2918,4.0,1172696801\n561,2947,4.0,1172694582\n561,2953,2.5,1172696571\n561,2959,4.5,1172695028\n561,2971,4.0,1172736431\n561,2993,4.0,1172734452\n561,2997,4.0,1172696187\n561,3000,4.5,1172734348\n561,3033,5.0,1172766409\n561,3034,4.5,1172696345\n561,3052,4.0,1172696119\n561,3081,4.0,1172695444\n561,3107,2.0,1172694630\n561,3114,3.0,1172695416\n561,3175,3.0,1172694522\n561,3275,4.5,1172695142\n561,3301,3.0,1172695763\n561,3361,3.5,1172694634\n561,3438,4.5,1172696566\n561,3439,4.5,1172696568\n561,3552,4.0,1172736400\n561,3578,3.5,1172696218\n561,3623,3.0,1172696694\n561,3671,4.5,1172734423\n561,3686,5.0,1173150744\n561,3717,3.0,1172695577\n561,3793,4.0,1172695232\n561,3911,3.5,1172696268\n561,3948,3.0,1172696677\n561,3977,3.0,1172696549\n561,3994,1.5,1172694561\n561,3996,4.5,1172696201\n561,4018,3.5,1172766183\n561,4025,3.0,1172766108\n561,4226,3.0,1172696679\n561,4270,3.0,1172766258\n561,4306,3.5,1172696334\n561,4308,4.0,1172696315\n561,4367,3.5,1172766294\n561,4446,1.0,1172766285\n561,4545,3.5,1172696540\n561,4643,2.5,1172766051\n561,4734,3.0,1172696121\n561,4844,4.5,1172695799\n561,4878,4.5,1172695328\n561,4896,4.0,1172696890\n561,4963,5.0,1172735102\n561,4973,3.5,1172696175\n561,4974,3.0,1172696843\n561,4993,5.0,1172736311\n561,5066,3.0,1172696839\n561,5218,3.0,1172766387\n561,5299,3.0,1172696492\n561,5349,4.0,1172696349\n561,5378,3.0,1172695290\n561,5418,3.5,1172734414\n561,5502,2.0,1172766239\n561,5528,3.5,1172736425\n561,5617,2.5,1172696248\n561,5618,4.0,1172695042\n561,5630,4.0,1172766362\n561,5785,3.0,1172696525\n561,5816,4.0,1172696376\n561,5872,3.0,1172766277\n561,5952,5.0,1172736312\n561,5956,4.0,1172766102\n561,5971,4.0,1172734541\n561,5991,4.5,1172766072\n561,6157,2.5,1172696127\n561,6333,3.5,1172695200\n561,6365,3.0,1172696692\n561,6373,3.5,1172696511\n561,6502,4.0,1172696873\n561,6503,3.0,1172696551\n561,6539,4.5,1172695413\n561,6541,3.5,1172766373\n561,6709,4.0,1172695501\n561,6711,2.0,1172696239\n561,6857,3.5,1172734407\n561,6863,4.0,1172695246\n561,6874,4.5,1172694555\n561,6934,2.5,1172696767\n561,6942,4.0,1172695670\n561,6979,3.0,1172766327\n561,7022,4.5,1172734381\n561,7090,4.0,1172734378\n561,7099,5.0,1172695213\n561,7153,5.0,1172695107\n561,7254,3.0,1172695353\n561,7324,4.0,1172736335\n561,7361,4.0,1172695171\n561,7366,3.5,1172696123\n561,7373,4.0,1172766495\n561,7438,4.5,1172694833\n561,7451,4.0,1172696419\n561,7458,3.5,1172766244\n561,8368,4.0,1172695342\n561,8376,2.0,1172696822\n561,8464,3.5,1172696252\n561,8528,4.0,1172696459\n561,8622,1.0,1172696308\n561,8636,3.5,1172696328\n561,8641,4.0,1172696395\n561,8784,3.5,1172696697\n561,8874,4.0,1172734393\n561,8961,4.5,1172695405\n561,8972,4.0,1172695569\n561,8984,4.0,1172766397\n561,27660,4.0,1172766562\n561,27801,3.5,1172734420\n561,30707,3.0,1172696742\n561,30793,3.5,1172696683\n561,31878,4.0,1172734402\n561,32587,3.5,1172695135\n561,33004,3.5,1172695268\n561,33493,3.5,1172695238\n561,33679,4.0,1172766064\n561,33794,4.5,1172696018\n561,34405,4.5,1172695192\n561,35836,4.5,1172695676\n561,37386,4.0,1172695297\n561,37729,3.5,1172766413\n561,37733,4.5,1172736346\n561,39292,4.0,1172766019\n561,41566,4.0,1172696687\n561,43928,2.5,1172695310\n561,44191,4.0,1172695184\n561,44195,4.0,1172766180\n561,44665,4.5,1172695119\n561,45431,3.5,1172695788\n561,45499,4.0,1172695254\n561,45722,4.5,1172695487\n561,45728,4.5,1172696103\n561,46530,3.5,1172696383\n561,46965,2.5,1172696050\n561,46972,4.0,1172694996\n561,48385,2.0,1172696738\n561,48516,4.0,1172694895\n561,49272,4.5,1172696024\n561,49396,4.0,1172694907\n561,49651,4.0,1172694791\n561,51077,4.0,1172695581\n561,51662,4.5,1173621733\n561,52245,4.0,1177213836\n562,1,4.5,1167426662\n562,5,3.5,1167429218\n562,6,4.0,1167428869\n562,11,4.0,1167428952\n562,16,3.5,1167429084\n562,19,3.0,1167428979\n562,21,4.0,1167428843\n562,32,4.0,1167428738\n562,34,4.0,1167428772\n562,36,4.0,1167428880\n562,39,3.5,1167428851\n562,47,4.5,1167428764\n562,50,5.0,1167428236\n562,95,3.5,1167428859\n562,110,4.0,1167426634\n562,141,4.0,1167428848\n562,150,4.5,1167428713\n562,163,4.0,1167429222\n562,165,3.5,1167428752\n562,180,4.0,1167428442\n562,185,3.5,1167428832\n562,186,3.5,1167429316\n562,208,3.0,1167428828\n562,223,5.0,1167428926\n562,235,4.0,1167429082\n562,253,4.5,1167428824\n562,260,5.0,1167426712\n562,282,3.0,1167429320\n562,288,4.0,1167428886\n562,292,4.0,1167428802\n562,293,4.5,1167428946\n562,296,5.0,1167426694\n562,300,4.0,1167428894\n562,317,3.0,1167429068\n562,318,5.0,1167428239\n562,339,3.5,1167428854\n562,344,3.0,1167428749\n562,353,4.5,1167429104\n562,356,4.0,1167428696\n562,357,4.0,1167428810\n562,364,4.5,1167428432\n562,367,3.0,1167428792\n562,377,4.0,1167428743\n562,380,4.0,1167428721\n562,410,3.5,1167428959\n562,420,3.5,1167429109\n562,457,4.0,1167428707\n562,480,5.0,1167426630\n562,485,3.0,1167429343\n562,500,3.5,1167428780\n562,527,4.0,1167428732\n562,539,4.0,1167428807\n562,541,4.0,1167428281\n562,553,4.0,1167429112\n562,555,4.0,1167429211\n562,586,3.5,1167428873\n562,589,5.0,1167426657\n562,590,4.0,1167428716\n562,592,4.5,1167428526\n562,593,5.0,1167426702\n562,597,4.5,1167428775\n562,608,4.5,1167428740\n562,678,3.5,1167429832\n562,733,4.0,1167428488\n562,736,3.5,1167428767\n562,778,4.0,1167429026\n562,780,4.0,1167426626\n562,784,3.0,1167429166\n562,786,3.5,1167429007\n562,858,4.0,1167428653\n562,1036,4.5,1167428310\n562,1073,4.5,1167428813\n562,1089,5.0,1167428965\n562,1092,4.0,1167429422\n562,1097,4.5,1167428796\n562,1101,4.0,1167429010\n562,1196,5.0,1167428244\n562,1197,5.0,1167428254\n562,1198,5.0,1167428242\n562,1208,4.0,1167429012\n562,1210,5.0,1167426710\n562,1213,4.5,1167428942\n562,1215,5.0,1167428438\n562,1220,3.5,1167429020\n562,1221,4.0,1167428911\n562,1240,4.0,1167428346\n562,1246,4.5,1167429075\n562,1261,4.0,1167428399\n562,1265,4.0,1167428846\n562,1266,4.0,1167429308\n562,1270,3.5,1167426685\n562,1291,5.0,1167428257\n562,1307,4.0,1167428937\n562,1339,3.5,1167429524\n562,1358,3.5,1167429845\n562,1370,3.5,1167429230\n562,1391,3.5,1167429137\n562,1393,4.0,1167428939\n562,1407,4.0,1167428562\n562,1500,4.0,1167429173\n562,1517,5.0,1167426681\n562,1573,3.5,1167429092\n562,1580,4.0,1167426647\n562,1584,4.0,1167428991\n562,1610,4.5,1167428374\n562,1617,4.0,1167428840\n562,1639,4.5,1167429244\n562,1673,4.0,1167429286\n562,1676,4.0,1167429239\n562,1682,3.5,1167429066\n562,1704,4.5,1167428303\n562,1721,4.0,1167426660\n562,1729,4.0,1167429468\n562,1777,4.0,1167429329\n562,1784,3.0,1167428963\n562,1909,4.5,1167429399\n562,1917,3.5,1167426677\n562,1923,4.0,1167426718\n562,2001,4.0,1167429297\n562,2011,3.5,1167429096\n562,2012,3.0,1167429060\n562,2023,3.5,1167429456\n562,2028,5.0,1167428298\n562,2058,4.5,1167429564\n562,2115,4.5,1167428505\n562,2194,4.5,1167429195\n562,2268,4.5,1167429197\n562,2291,4.0,1167429099\n562,2294,4.0,1167429519\n562,2302,4.0,1167429237\n562,2355,4.0,1167429015\n562,2395,3.5,1167429334\n562,2396,4.0,1167428889\n562,2406,4.0,1167429182\n562,2502,4.5,1167429151\n562,2571,5.0,1167426644\n562,2599,4.0,1167429205\n562,2617,3.5,1167429185\n562,2628,5.0,1167426651\n562,2671,4.0,1167429387\n562,2683,4.5,1167428922\n562,2700,4.5,1167429131\n562,2706,4.5,1167428998\n562,2710,3.5,1167429045\n562,2716,5.0,1167428407\n562,2762,3.0,1167426705\n562,2791,4.0,1167429094\n562,2797,4.0,1167429047\n562,2804,5.0,1167429360\n562,2858,4.0,1167426675\n562,2890,4.0,1167429407\n562,2916,4.0,1167429032\n562,2918,4.5,1167429050\n562,2959,4.5,1167428248\n562,2985,4.5,1167429348\n562,2987,3.5,1167428981\n562,2997,4.0,1167428909\n562,3052,4.5,1167429260\n562,3098,3.5,1167428368\n562,3114,4.0,1167428326\n562,3147,4.0,1167429853\n562,3255,4.0,1167429500\n562,3408,3.5,1167429201\n562,3481,4.0,1167427386\n562,3578,4.0,1167426622\n562,3751,4.0,1167427757\n562,3755,3.0,1167429549\n562,3793,5.0,1167426720\n562,3948,4.0,1167427809\n562,3949,3.0,1167427210\n562,3994,3.5,1167429412\n562,3996,4.0,1167426616\n562,4014,4.0,1167427500\n562,4022,3.5,1167427706\n562,4027,4.5,1167427347\n562,4034,4.0,1167427367\n562,4085,4.5,1167428492\n562,4105,4.0,1167428454\n562,4226,4.5,1167427033\n562,4246,4.0,1167427909\n562,4262,4.0,1167428323\n562,4306,4.0,1167426649\n562,4308,3.5,1167429497\n562,4370,2.5,1167429576\n562,4499,4.0,1167428513\n562,4720,3.5,1167427352\n562,4734,4.5,1167428017\n562,4874,2.5,1167428033\n562,4886,4.0,1167427063\n562,4896,4.5,1167427515\n562,4963,5.0,1167427256\n562,4973,4.0,1167427042\n562,4993,5.0,1167426638\n562,5349,5.0,1167426707\n562,5378,5.0,1167427847\n562,5418,4.0,1167428353\n562,5445,4.0,1167426690\n562,5502,3.5,1167427842\n562,5816,4.5,1167427568\n562,5952,5.0,1167426640\n562,5956,4.0,1167427940\n562,5989,4.0,1167427195\n562,5991,4.0,1167427788\n562,6188,4.0,1167427767\n562,6333,4.5,1167427075\n562,6365,4.0,1167427826\n562,6377,4.0,1167427053\n562,6539,4.5,1167426700\n562,6711,3.5,1167427587\n562,6863,4.0,1167427740\n562,6874,3.5,1167427135\n562,6947,4.0,1167427525\n562,7143,3.0,1167427203\n562,7147,4.0,1167427186\n562,7153,5.0,1167426687\n562,7158,3.5,1167427580\n562,7254,3.0,1167427559\n562,7361,3.5,1167427084\n562,7458,4.0,1167427972\n562,8360,4.0,1167427298\n562,8368,4.5,1167427244\n562,8528,4.0,1167427993\n562,8529,4.0,1167427852\n562,8636,4.5,1167427112\n562,8641,4.5,1167428068\n562,8644,4.0,1167427721\n562,8784,3.5,1167427155\n562,8949,3.5,1167427537\n562,8961,4.5,1167427021\n562,8983,4.0,1167427286\n562,27660,3.5,1167427309\n562,30793,4.0,1167427674\n562,31420,3.5,1167428086\n562,32587,4.0,1167427145\n562,33004,4.0,1167428013\n562,33154,2.5,1167427277\n562,33162,4.0,1167427953\n562,33493,5.0,1167427358\n562,33679,4.0,1167428000\n562,33794,4.5,1167427011\n562,34072,4.0,1167427338\n562,34162,4.0,1167427609\n562,34338,3.0,1167428079\n562,35836,4.5,1167427489\n562,40815,4.5,1167427242\n562,40819,4.0,1167427119\n562,41566,4.0,1167427470\n562,41997,3.5,1167427166\n562,44191,4.0,1167427095\n562,45499,4.0,1167427746\n562,45722,4.5,1167427735\n562,49013,1.0,1167426941\n562,49649,2.5,1167426953\n563,111,4.5,1410035958\n563,150,2.5,1380354913\n563,267,3.0,1378589734\n563,293,4.0,1415559572\n563,296,5.0,1378623670\n563,356,4.5,1380229120\n563,364,3.0,1400968161\n563,442,3.5,1400872840\n563,527,3.0,1400967753\n563,541,4.0,1378623698\n563,608,4.0,1400967714\n563,741,4.5,1380301036\n563,750,5.0,1382202174\n563,778,4.5,1403101722\n563,924,5.0,1438026839\n563,1036,4.0,1401210443\n563,1080,4.5,1401210453\n563,1136,4.5,1378623628\n563,1196,3.5,1378623553\n563,1206,4.5,1400967640\n563,1208,4.5,1378623764\n563,1213,5.0,1397077128\n563,1214,3.5,1408297778\n563,1222,5.0,1380229178\n563,1232,4.0,1400968387\n563,1274,3.5,1402915744\n563,1527,4.0,1379438988\n563,1704,4.0,1405772331\n563,2028,4.0,1378623852\n563,2542,4.0,1380228682\n563,2571,4.5,1378623596\n563,2762,4.0,1401012292\n563,2944,4.0,1401210370\n563,2959,5.0,1378623522\n563,3000,4.5,1400968082\n563,3105,4.0,1408538856\n563,3593,2.0,1378589724\n563,3677,2.5,1378590165\n563,4011,4.0,1380300872\n563,4223,4.5,1380354479\n563,4226,3.5,1378623620\n563,4306,5.0,1380354258\n563,4734,4.0,1400872890\n563,4901,3.5,1378589658\n563,4973,2.5,1380301081\n563,5010,4.5,1400967823\n563,5445,4.0,1415559316\n563,5618,4.5,1415559689\n563,5952,3.5,1400967841\n563,6059,3.0,1400873303\n563,6283,4.0,1402998955\n563,6350,4.0,1400872634\n563,7022,4.0,1380353921\n563,7099,4.5,1415559688\n563,7143,4.0,1400967811\n563,8874,3.5,1401012132\n563,8916,2.5,1401012354\n563,27156,5.0,1400872477\n563,27611,4.5,1380229402\n563,27793,1.5,1378591354\n563,31410,3.5,1380228649\n563,31658,4.5,1415559547\n563,32596,4.0,1401012302\n563,33166,4.5,1401012020\n563,33794,4.0,1380302577\n563,36529,3.5,1400882107\n563,38061,4.0,1401012063\n563,44191,4.0,1400968604\n563,44199,4.0,1400967784\n563,44665,4.0,1380302531\n563,48394,4.0,1400968203\n563,48774,3.5,1400968266\n563,51255,4.0,1380302636\n563,51662,3.5,1380354380\n563,53996,3.0,1400873236\n563,54259,4.0,1401303527\n563,57669,4.5,1380354238\n563,58306,3.0,1378590980\n563,58559,4.0,1378623491\n563,59315,4.5,1403101719\n563,59369,3.5,1400967763\n563,60069,4.0,1378623955\n563,60684,2.5,1397077190\n563,61132,4.0,1380228997\n563,62331,4.5,1438373715\n563,68157,4.5,1380354087\n563,68954,4.0,1378623913\n563,69122,4.0,1404158293\n563,70286,4.0,1403260316\n563,70533,4.0,1403260308\n563,71535,4.5,1380354507\n563,72226,4.5,1417295090\n563,72998,3.0,1380354402\n563,73017,4.0,1400967891\n563,74458,4.0,1438374877\n563,77561,3.5,1380354825\n563,79132,4.0,1378623610\n563,79702,4.0,1400968283\n563,80463,3.5,1401012123\n563,80906,4.0,1380354253\n563,84187,4.0,1401051415\n563,88129,4.5,1380353954\n563,88744,4.0,1404158031\n563,88932,1.0,1410035473\n563,89492,4.0,1400968336\n563,89840,3.5,1378591475\n563,91529,4.0,1380354607\n563,92210,5.0,1404364412\n563,92259,4.0,1378623534\n563,92954,3.0,1419798719\n563,93838,4.5,1438026818\n563,94959,4.5,1401012146\n563,95441,3.5,1378590713\n563,95510,3.0,1378590217\n563,95558,3.5,1391161318\n563,96079,4.5,1400968177\n563,96610,4.5,1380354126\n563,96821,4.5,1405772395\n563,97304,4.0,1380354188\n563,97306,5.0,1378591012\n563,97752,3.5,1378590584\n563,97860,4.0,1380315202\n563,97921,3.5,1380354324\n563,97923,4.0,1401210634\n563,97938,3.5,1378590370\n563,98491,4.0,1438374656\n563,99114,4.5,1378623664\n563,100383,4.5,1380389665\n563,101864,2.0,1380228836\n563,103048,3.0,1391161225\n563,104841,3.5,1382201685\n563,104913,4.5,1438374417\n563,104925,4.0,1397077150\n563,105504,4.5,1401012023\n563,105755,1.5,1397076951\n563,105844,3.5,1400873135\n563,106489,4.0,1391161064\n563,106766,4.0,1402246478\n563,106782,4.0,1391160938\n563,106873,3.5,1401121610\n563,106916,4.5,1391161163\n563,107069,4.0,1408298557\n563,107314,4.0,1397076879\n563,108190,1.5,1400872426\n563,108928,2.5,1397077064\n563,108979,5.0,1438374671\n563,109374,3.5,1402856376\n563,109487,5.0,1415559249\n563,109578,3.5,1407336954\n563,109742,4.5,1400872682\n563,110873,5.0,1408743990\n563,111759,4.0,1402214608\n563,112552,4.0,1438374590\n563,112911,3.5,1406562760\n563,115210,4.0,1438375150\n563,115713,3.5,1438376118\n563,116797,5.0,1438373164\n563,122882,4.5,1438375869\n564,1,4.0,974712079\n564,2,4.0,974839862\n564,3,3.0,974838162\n564,5,3.0,974837992\n564,6,1.0,974838752\n564,7,3.0,974837728\n564,10,3.0,974838889\n564,11,3.0,974833372\n564,12,1.0,974709821\n564,13,4.0,974790534\n564,15,1.0,974839652\n564,16,4.0,974841269\n564,17,3.0,974841452\n564,18,2.0,974715602\n564,19,3.0,974838427\n564,21,4.0,974832987\n564,22,5.0,974715698\n564,25,5.0,974712574\n564,30,5.0,974840718\n564,32,4.0,974712401\n564,34,3.0,974711349\n564,35,2.0,974843294\n564,36,5.0,974711403\n564,39,5.0,974714239\n564,41,3.0,974713477\n564,42,3.0,974839143\n564,43,4.0,974715515\n564,44,2.0,974839306\n564,45,5.0,974713644\n564,46,5.0,974843382\n564,47,4.0,974844454\n564,48,1.0,974839955\n564,49,5.0,974712958\n564,50,5.0,974710590\n564,52,5.0,974714756\n564,55,4.0,974842510\n564,57,4.0,974842470\n564,60,1.0,974839888\n564,61,3.0,974843382\n564,62,1.0,974842721\n564,66,1.0,974844872\n564,68,4.0,974713920\n564,70,2.0,974708918\n564,71,2.0,974839391\n564,73,2.0,974841398\n564,74,3.0,974842967\n564,76,4.0,974715792\n564,77,4.0,974715861\n564,78,4.0,974842547\n564,81,3.0,974716258\n564,85,4.0,974842470\n564,86,4.0,974843206\n564,87,1.0,974838063\n564,88,2.0,974838134\n564,89,3.0,974715602\n564,92,5.0,974842216\n564,93,2.0,974838350\n564,94,4.0,974842510\n564,95,3.0,974839108\n564,99,4.0,974712184\n564,102,4.0,974838601\n564,103,5.0,974844826\n564,104,2.0,974833057\n564,105,4.0,974716299\n564,107,4.0,974837418\n564,108,4.0,974713920\n564,110,1.0,974711555\n564,111,3.0,974840746\n564,112,3.0,974714526\n564,113,4.0,974841992\n564,116,5.0,974714920\n564,118,4.0,974838315\n564,121,4.0,974832475\n564,122,4.0,974837051\n564,125,5.0,974832624\n564,126,1.0,974839930\n564,131,2.0,974842775\n564,132,4.0,974844767\n564,137,1.0,974840424\n564,141,4.0,974832931\n564,145,2.0,974838971\n564,147,2.0,974842510\n564,149,5.0,974842655\n564,150,3.0,974712574\n564,151,5.0,974713031\n564,152,4.0,974712704\n564,153,3.0,974838189\n564,155,2.0,974842015\n564,156,5.0,974833716\n564,157,3.0,974837992\n564,158,3.0,974839862\n564,160,1.0,974839511\n564,161,4.0,974714878\n564,162,5.0,974712107\n564,165,4.0,974839108\n564,166,4.0,974838288\n564,169,1.0,974842687\n564,170,4.0,974839269\n564,171,4.0,974714778\n564,172,1.0,974839453\n564,173,4.0,974839620\n564,174,1.0,974838063\n564,175,1.0,974841802\n564,176,4.0,974832646\n564,177,2.0,974709466\n564,180,4.0,974713614\n564,181,1.0,974839680\n564,183,5.0,974715995\n564,184,5.0,974715756\n564,185,4.0,974844826\n564,186,3.0,974838315\n564,188,5.0,974709135\n564,189,4.0,974838288\n564,193,5.0,974843549\n564,194,4.0,974714337\n564,196,4.0,974709821\n564,198,4.0,974715454\n564,202,1.0,974843463\n564,203,4.0,974838026\n564,205,3.0,974716383\n564,206,5.0,974840462\n564,207,3.0,974842775\n564,208,1.0,974839481\n564,211,3.0,974715515\n564,216,1.0,974791643\n564,217,3.0,974842918\n564,218,3.0,974837728\n564,219,4.0,974843485\n564,220,2.0,974709519\n564,222,4.0,974716363\n564,223,5.0,974710675\n564,225,4.0,974843009\n564,229,5.0,974715293\n564,230,5.0,974715996\n564,231,5.0,974715698\n564,233,5.0,974842687\n564,234,4.0,974837728\n564,235,5.0,974711243\n564,236,3.0,974837325\n564,237,2.0,974837697\n564,239,5.0,974790987\n564,240,5.0,974844797\n564,241,5.0,974840300\n564,244,3.0,974790987\n564,247,5.0,974711049\n564,248,5.0,974716363\n564,250,1.0,974837788\n564,252,3.0,974837728\n564,253,5.0,974708959\n564,255,2.0,974838456\n564,256,4.0,974838097\n564,257,2.0,974843964\n564,260,2.0,974710704\n564,261,4.0,974842510\n564,265,1.0,974844006\n564,266,2.0,974842687\n564,267,2.0,974838218\n564,271,5.0,974843064\n564,273,4.0,974709734\n564,277,3.0,974843527\n564,278,5.0,974837231\n564,282,4.0,974843182\n564,287,4.0,974837615\n564,288,3.0,974839143\n564,291,2.0,974844797\n564,292,1.0,974839204\n564,295,4.0,974837543\n564,296,5.0,974711078\n564,299,5.0,974841420\n564,302,4.0,974841654\n564,303,3.0,974839108\n564,304,2.0,974838641\n564,312,5.0,974837788\n564,313,1.0,974839888\n564,314,2.0,974711555\n564,315,1.0,974839511\n564,317,3.0,974837509\n564,319,5.0,974713563\n564,320,3.0,974844545\n564,324,3.0,974837128\n564,325,3.0,974838134\n564,326,5.0,974710334\n564,327,5.0,974838315\n564,328,4.0,974709294\n564,329,3.0,974839108\n564,330,4.0,974709577\n564,332,4.0,974709734\n564,333,3.0,974715727\n564,335,3.0,974714599\n564,337,3.0,974841162\n564,338,2.0,974844797\n564,339,4.0,974837080\n564,341,5.0,974712958\n564,342,5.0,974833372\n564,344,3.0,974716258\n564,345,4.0,974711197\n564,347,4.0,974714264\n564,348,4.0,974712445\n564,349,4.0,974716125\n564,350,5.0,974842721\n564,351,2.0,974715952\n564,352,3.0,974836927\n564,353,4.0,974715003\n564,355,4.0,974838189\n564,356,3.0,974713872\n564,357,3.0,974835183\n564,360,1.0,974838491\n564,361,3.0,974843009\n564,362,3.0,974715825\n564,363,5.0,974840424\n564,364,4.0,974790436\n564,365,3.0,974843009\n564,366,5.0,974716031\n564,367,4.0,974715454\n564,368,4.0,974833752\n564,369,3.0,974842655\n564,371,3.0,974837418\n564,372,4.0,974715792\n564,373,5.0,974713644\n564,374,1.0,974838134\n564,375,4.0,974843091\n564,376,4.0,974708506\n564,377,2.0,974714838\n564,378,1.0,974838218\n564,379,4.0,974839391\n564,380,5.0,974715727\n564,381,4.0,974841601\n564,382,2.0,974842838\n564,384,5.0,974839204\n564,387,4.0,974716383\n564,388,4.0,974713786\n564,390,4.0,974714838\n564,391,3.0,974715224\n564,392,2.0,974711164\n564,405,1.0,974839652\n564,407,4.0,974709294\n564,410,5.0,974715792\n564,413,4.0,974837418\n564,415,3.0,974837959\n564,416,5.0,974845025\n564,417,3.0,974835342\n564,419,2.0,974838491\n564,420,3.0,974838097\n564,421,5.0,974840300\n564,422,5.0,974844711\n564,423,5.0,974839235\n564,425,4.0,974841162\n564,426,5.0,974709423\n564,427,2.0,974843964\n564,429,3.0,974837753\n564,431,2.0,974714165\n564,432,3.0,974838350\n564,434,4.0,974839204\n564,435,2.0,974837960\n564,436,1.0,974843041\n564,437,3.0,974838189\n564,440,2.0,974833104\n564,441,3.0,974714756\n564,442,3.0,974839143\n564,443,2.0,974840555\n564,444,2.0,974837450\n564,445,3.0,974715861\n564,446,4.0,974844064\n564,447,4.0,974837361\n564,448,4.0,974710392\n564,450,3.0,974837361\n564,451,4.0,974716220\n564,452,4.0,974714878\n564,454,4.0,974715727\n564,455,1.0,974839955\n564,457,4.0,974713196\n564,461,4.0,974842308\n564,465,3.0,974839307\n564,468,2.0,974837201\n564,469,3.0,974842605\n564,472,3.0,974843382\n564,473,1.0,974837960\n564,475,2.0,974712704\n564,477,4.0,974713310\n564,480,5.0,974838889\n564,481,4.0,974842216\n564,485,4.0,974837886\n564,488,3.0,974842887\n564,489,3.0,974838026\n564,490,3.0,974844604\n564,491,3.0,974842887\n564,492,5.0,974833104\n564,493,1.0,974715293\n564,495,4.0,974711674\n564,497,3.0,974832897\n564,500,5.0,974716189\n564,501,5.0,974713196\n564,502,1.0,974839652\n564,505,3.0,974838491\n564,506,3.0,974842721\n564,507,4.0,974838921\n564,508,3.0,974713872\n564,509,5.0,974715488\n564,512,3.0,974709378\n564,513,4.0,974832815\n564,514,5.0,974832897\n564,517,2.0,974843964\n564,518,2.0,974837728\n564,519,2.0,974844889\n564,521,5.0,974844684\n564,523,5.0,974716403\n564,526,1.0,974843320\n564,527,4.0,974711125\n564,529,5.0,974712989\n564,532,5.0,974709177\n564,533,4.0,974839071\n564,534,4.0,974715348\n564,535,4.0,974712294\n564,536,1.0,974842369\n564,537,4.0,974842547\n564,538,5.0,974841338\n564,539,5.0,974716220\n564,540,4.0,974844847\n564,541,4.0,974711049\n564,542,4.0,974837886\n564,543,4.0,974715952\n564,544,1.0,974839453\n564,547,3.0,974839511\n564,548,2.0,974839235\n564,550,5.0,974837661\n564,551,5.0,974790116\n564,552,4.0,974837325\n564,553,1.0,974844985\n564,555,5.0,974838921\n564,556,4.0,974714208\n564,558,4.0,974790913\n564,561,3.0,974712445\n564,562,3.0,974713136\n564,565,4.0,974715792\n564,567,5.0,974843463\n564,571,4.0,974714165\n564,574,3.0,974715454\n564,575,2.0,974838259\n564,577,1.0,974839862\n564,580,4.0,974841420\n564,581,5.0,974711282\n564,585,4.0,974715488\n564,586,1.0,974837450\n564,587,1.0,974716318\n564,588,4.0,974713412\n564,589,5.0,974838752\n564,590,2.0,974715570\n564,592,4.0,974712727\n564,593,5.0,974711049\n564,594,4.0,974712361\n564,595,4.0,974713031\n564,596,4.0,974790392\n564,597,4.0,974837167\n564,606,4.0,974709466\n564,608,5.0,974840657\n564,610,4.0,974709336\n564,611,1.0,974709917\n564,612,4.0,974838456\n564,614,2.0,974842721\n564,616,4.0,974715003\n564,621,5.0,974712896\n564,627,4.0,974713375\n564,628,5.0,974841904\n564,631,2.0,974790987\n564,633,4.0,974833716\n564,637,1.0,974838427\n564,639,4.0,974837231\n564,640,4.0,974843463\n564,648,2.0,974839071\n564,653,4.0,974839108\n564,661,4.0,974790436\n564,662,1.0,974844627\n564,663,3.0,974714461\n564,664,4.0,974711403\n564,670,1.0,974840633\n564,671,4.0,974713166\n564,673,1.0,974838259\n564,674,4.0,974716031\n564,678,4.0,974710675\n564,680,4.0,974715570\n564,691,4.0,974837853\n564,695,4.0,974791183\n564,697,2.0,974842918\n564,705,2.0,974715602\n564,707,5.0,974843722\n564,708,4.0,974715756\n564,709,3.0,974715425\n564,719,2.0,974837361\n564,720,4.0,974790351\n564,722,4.0,974710704\n564,724,5.0,974709091\n564,728,5.0,974837167\n564,731,2.0,974843945\n564,733,4.0,974838889\n564,735,4.0,974708665\n564,736,5.0,974839235\n564,737,2.0,974839511\n564,741,4.0,974790392\n564,743,3.0,974838218\n564,745,4.0,974790351\n564,748,4.0,974839071\n564,750,5.0,974710675\n564,753,4.0,974842510\n564,754,4.0,974839911\n564,765,2.0,974837886\n564,766,5.0,974842308\n564,775,2.0,974708813\n564,778,4.0,974711893\n564,779,3.0,974843613\n564,780,2.0,974839108\n564,782,4.0,974844847\n564,783,3.0,974790436\n564,784,3.0,974837018\n564,785,4.0,974833434\n564,786,4.0,974839143\n564,788,4.0,974843646\n564,798,4.0,974839307\n564,799,4.0,974709091\n564,800,5.0,974843874\n564,801,4.0,974837450\n564,802,4.0,974716125\n564,804,4.0,974715792\n564,806,3.0,974842369\n564,810,1.0,974838491\n564,818,4.0,974838390\n564,830,4.0,974837418\n564,831,4.0,974841398\n564,835,2.0,974843253\n564,836,2.0,974844826\n564,838,3.0,974715861\n564,840,4.0,974837992\n564,841,4.0,974708761\n564,842,3.0,974709519\n564,846,4.0,974714461\n564,849,5.0,974839365\n564,851,3.0,974842216\n564,858,2.0,974708446\n564,861,3.0,974714410\n564,864,3.0,974834896\n564,866,5.0,974712609\n564,875,4.0,974840798\n564,879,5.0,974709644\n564,880,4.0,974844847\n564,881,2.0,974837853\n564,882,2.0,974843182\n564,888,3.0,974790987\n564,891,3.0,974709577\n564,892,3.0,974833434\n564,893,5.0,974715379\n564,896,4.0,974712924\n564,901,4.0,974714165\n564,903,5.0,974711439\n564,904,5.0,974710779\n564,905,4.0,974710422\n564,908,5.0,974710848\n564,910,5.0,974710675\n564,912,4.0,974711125\n564,914,3.0,974713988\n564,919,3.0,974711517\n564,920,5.0,974712545\n564,921,5.0,974832595\n564,922,5.0,974710675\n564,923,3.0,974840633\n564,924,3.0,974840746\n564,926,5.0,974711317\n564,928,4.0,974711756\n564,930,4.0,974711481\n564,931,4.0,974713279\n564,934,4.0,974715003\n564,942,4.0,974843691\n564,949,3.0,974841162\n564,953,5.0,974712478\n564,955,5.0,974832744\n564,968,5.0,974708813\n564,971,3.0,974841162\n564,980,1.0,974839143\n564,988,5.0,974837661\n564,991,3.0,974842279\n564,997,2.0,974841370\n564,998,3.0,974839175\n564,1003,4.0,974842547\n564,1004,2.0,974839620\n564,1005,1.0,974839862\n564,1007,4.0,974837418\n564,1009,3.0,974716258\n564,1010,4.0,974836927\n564,1011,4.0,974837584\n564,1012,5.0,974713310\n564,1013,3.0,974716156\n564,1014,3.0,974837293\n564,1015,3.0,974716091\n564,1016,4.0,974837386\n564,1017,4.0,974839803\n564,1018,4.0,974837231\n564,1019,4.0,974714756\n564,1020,3.0,974837201\n564,1021,1.0,974838427\n564,1022,4.0,974790392\n564,1023,4.0,974713920\n564,1024,4.0,974790534\n564,1025,4.0,974714374\n564,1028,4.0,974833372\n564,1029,5.0,974790392\n564,1030,4.0,974790762\n564,1031,5.0,974839830\n564,1032,4.0,974790436\n564,1033,4.0,974790534\n564,1034,5.0,974711403\n564,1035,3.0,974843786\n564,1036,4.0,974713031\n564,1037,4.0,974839204\n564,1041,3.0,974711517\n564,1043,2.0,974843527\n564,1046,4.0,974712668\n564,1047,5.0,974839071\n564,1049,3.0,974716189\n564,1051,3.0,974841318\n564,1053,2.0,974715825\n564,1055,1.0,974844872\n564,1057,4.0,974837418\n564,1060,3.0,974711674\n564,1063,4.0,974843527\n564,1064,2.0,974790534\n564,1073,5.0,974712868\n564,1077,5.0,974712635\n564,1078,3.0,974713673\n564,1079,5.0,974711197\n564,1080,5.0,974832624\n564,1081,5.0,974714807\n564,1082,4.0,974713252\n564,1084,3.0,974712044\n564,1086,5.0,974712763\n564,1087,4.0,974843823\n564,1088,2.0,974844186\n564,1089,5.0,974710822\n564,1091,4.0,974837293\n564,1092,5.0,974843945\n564,1093,4.0,974715348\n564,1094,5.0,974712896\n564,1095,3.0,974840851\n564,1096,5.0,974712184\n564,1097,4.0,974712668\n564,1100,1.0,974839511\n564,1104,4.0,974840851\n564,1111,3.0,974712545\n564,1120,5.0,974713988\n564,1125,5.0,974832931\n564,1126,3.0,974837992\n564,1127,4.0,974713342\n564,1128,5.0,974709044\n564,1129,4.0,974713673\n564,1130,5.0,974708857\n564,1135,5.0,974837450\n564,1136,4.0,974710521\n564,1148,4.0,974790351\n564,1151,4.0,974790351\n564,1161,4.0,974712924\n564,1168,3.0,974709577\n564,1171,4.0,974712609\n564,1173,2.0,974714165\n564,1175,5.0,974711197\n564,1177,5.0,974842918\n564,1179,5.0,974841137\n564,1183,3.0,974714291\n564,1185,3.0,974710334\n564,1186,5.0,974712764\n564,1187,5.0,974712107\n564,1188,3.0,974832570\n564,1189,4.0,974710779\n564,1190,4.0,974714685\n564,1191,5.0,974840462\n564,1192,5.0,974840401\n564,1193,5.0,974710779\n564,1194,4.0,974836927\n564,1196,5.0,974711078\n564,1197,4.0,974832595\n564,1198,5.0,974710616\n564,1199,4.0,974711349\n564,1200,4.0,974711756\n564,1206,4.0,974711555\n564,1207,4.0,974711125\n564,1208,4.0,974708506\n564,1210,3.0,974712401\n564,1211,3.0,974715666\n564,1213,3.0,974840684\n564,1214,5.0,974708713\n564,1215,3.0,974708996\n564,1219,5.0,974708713\n564,1220,4.0,974835183\n564,1221,2.0,974710496\n564,1222,4.0,974838704\n564,1223,4.0,974832646\n564,1225,3.0,974711164\n564,1228,5.0,974711197\n564,1230,5.0,974711439\n564,1231,2.0,974711756\n564,1233,4.0,974711555\n564,1234,5.0,974712016\n564,1235,5.0,974711243\n564,1236,5.0,974716189\n564,1237,4.0,974710455\n564,1238,3.0,974711318\n564,1240,5.0,974712223\n564,1243,3.0,974832679\n564,1244,5.0,974712401\n564,1246,3.0,974712401\n564,1247,4.0,974840798\n564,1248,4.0,974843691\n564,1249,4.0,974711517\n564,1251,4.0,974710590\n564,1252,5.0,974843691\n564,1255,4.0,974708918\n564,1256,4.0,974711893\n564,1257,3.0,974713920\n564,1258,5.0,974708713\n564,1259,5.0,974712223\n564,1260,4.0,974710849\n564,1261,4.0,974790116\n564,1263,4.0,974713166\n564,1264,4.0,974711318\n564,1266,5.0,974844953\n564,1268,4.0,974714374\n564,1270,3.0,974832715\n564,1271,5.0,974713786\n564,1272,4.0,974712401\n564,1273,2.0,974713707\n564,1274,5.0,974712478\n564,1275,1.0,974838752\n564,1278,5.0,974708761\n564,1279,5.0,974715602\n564,1280,4.0,974712727\n564,1282,4.0,974790392\n564,1284,4.0,974710822\n564,1285,5.0,974712609\n564,1286,4.0,974842576\n564,1288,4.0,974711481\n564,1289,4.0,974840424\n564,1290,4.0,974842605\n564,1291,4.0,974838725\n564,1292,5.0,974711644\n564,1293,4.0,974712668\n564,1295,1.0,974715698\n564,1297,4.0,974833015\n564,1298,4.0,974713786\n564,1299,5.0,974711580\n564,1300,4.0,974711756\n564,1301,4.0,974713252\n564,1302,5.0,974714731\n564,1304,5.0,974834981\n564,1305,5.0,974841318\n564,1306,3.0,974715639\n564,1312,5.0,974841726\n564,1320,4.0,974709423\n564,1321,5.0,974708918\n564,1322,3.0,974710228\n564,1323,3.0,974710228\n564,1325,1.0,974710177\n564,1326,5.0,974710177\n564,1329,3.0,974709135\n564,1330,4.0,974709044\n564,1331,3.0,974709378\n564,1332,5.0,974709177\n564,1333,5.0,974708761\n564,1334,4.0,974716125\n564,1335,4.0,974710127\n564,1336,4.0,974709779\n564,1337,3.0,974709044\n564,1339,3.0,974709044\n564,1341,5.0,974709423\n564,1342,5.0,974709177\n564,1343,4.0,974844528\n564,1345,5.0,974708813\n564,1347,4.0,974708857\n564,1348,5.0,974708665\n564,1349,4.0,974709972\n564,1350,3.0,974708813\n564,1351,4.0,974713512\n564,1352,3.0,974844684\n564,1353,5.0,974838427\n564,1354,5.0,974713412\n564,1355,1.0,974844684\n564,1356,4.0,974714461\n564,1357,3.0,974712016\n564,1358,3.0,974840851\n564,1361,5.0,974791060\n564,1366,4.0,974715318\n564,1367,3.0,974837509\n564,1369,2.0,974844566\n564,1370,4.0,974714731\n564,1371,4.0,974839269\n564,1372,4.0,974714599\n564,1373,3.0,974839453\n564,1374,5.0,974714563\n564,1375,4.0,974715996\n564,1376,4.0,974714165\n564,1377,4.0,974838971\n564,1378,1.0,974838999\n564,1379,1.0,974837931\n564,1380,4.0,974836231\n564,1381,4.0,974838512\n564,1387,5.0,974708761\n564,1388,4.0,974709779\n564,1389,3.0,974710177\n564,1390,4.0,974837931\n564,1391,4.0,974837231\n564,1392,5.0,974832766\n564,1394,4.0,974711243\n564,1396,4.0,974713477\n564,1399,3.0,974715996\n564,1405,4.0,974716363\n564,1406,4.0,974840609\n564,1407,4.0,974708857\n564,1408,3.0,974713786\n564,1409,3.0,974844218\n564,1410,3.0,974838288\n564,1411,4.0,974711783\n564,1414,4.0,974713512\n564,1415,4.0,974710334\n564,1416,3.0,974843041\n564,1419,4.0,974711845\n564,1425,3.0,974716220\n564,1438,1.0,974839481\n564,1442,2.0,974840657\n564,1445,1.0,974838427\n564,1458,3.0,974843990\n564,1459,2.0,974843945\n564,1460,4.0,974837167\n564,1461,3.0,974838063\n564,1463,5.0,974837293\n564,1464,5.0,974713614\n564,1465,4.0,974842216\n564,1466,4.0,974841269\n564,1474,2.0,974838288\n564,1475,4.0,974844342\n564,1476,4.0,974833057\n564,1479,3.0,974839391\n564,1480,5.0,974713920\n564,1482,3.0,974713375\n564,1483,5.0,974843294\n564,1485,2.0,974715224\n564,1487,3.0,974842401\n564,1488,2.0,974838921\n564,1493,4.0,974844094\n564,1495,1.0,974839652\n564,1498,3.0,974842838\n564,1499,2.0,974839341\n564,1500,5.0,974832744\n564,1503,2.0,974838390\n564,1504,4.0,974842887\n564,1508,2.0,974842401\n564,1513,5.0,974837509\n564,1515,3.0,974842948\n564,1516,5.0,974715184\n564,1517,2.0,974832744\n564,1518,4.0,974714563\n564,1526,3.0,974837853\n564,1527,5.0,974838799\n564,1529,4.0,974843182\n564,1531,5.0,974843382\n564,1535,4.0,974712838\n564,1541,4.0,974844238\n564,1543,5.0,974841778\n564,1544,2.0,974839365\n564,1546,1.0,974712764\n564,1549,2.0,974715756\n564,1550,3.0,974838259\n564,1552,4.0,974838971\n564,1554,5.0,974840825\n564,1562,3.0,974839551\n564,1566,3.0,974715861\n564,1569,5.0,974716032\n564,1572,3.0,974842216\n564,1573,4.0,974715379\n564,1580,4.0,974714491\n564,1581,4.0,974838545\n564,1582,3.0,974840300\n564,1583,1.0,974840300\n564,1587,4.0,974716060\n564,1588,4.0,974837615\n564,1590,5.0,974839620\n564,1591,3.0,974839422\n564,1592,1.0,974837992\n564,1595,1.0,974843382\n564,1597,1.0,974844164\n564,1598,3.0,974842948\n564,1600,2.0,974844295\n564,1602,1.0,974715293\n564,1603,4.0,974844684\n564,1605,1.0,974844295\n564,1606,3.0,974839620\n564,1608,2.0,974839071\n564,1610,4.0,974838833\n564,1611,4.0,974842443\n564,1612,4.0,974833716\n564,1614,5.0,974835622\n564,1615,5.0,974715488\n564,1616,3.0,974839108\n564,1617,5.0,974711001\n564,1619,3.0,974715003\n564,1620,3.0,974715293\n564,1623,2.0,974709779\n564,1625,4.0,974713412\n564,1627,2.0,974715318\n564,1629,5.0,974835760\n564,1633,3.0,974713136\n564,1635,4.0,974711197\n564,1639,5.0,974713066\n564,1640,1.0,974791150\n564,1641,5.0,974832795\n564,1642,4.0,974715897\n564,1643,4.0,974841942\n564,1644,4.0,974709821\n564,1645,4.0,974709177\n564,1648,4.0,974833372\n564,1649,5.0,974711049\n564,1653,2.0,974714685\n564,1655,5.0,974709336\n564,1657,3.0,974716125\n564,1661,3.0,974844649\n564,1663,5.0,974832897\n564,1667,3.0,974715515\n564,1668,1.0,974843041\n564,1673,4.0,974841212\n564,1674,4.0,974841117\n564,1676,1.0,974838971\n564,1678,5.0,974713583\n564,1681,2.0,974839236\n564,1682,3.0,974712184\n564,1688,4.0,974790534\n564,1690,4.0,974709378\n564,1693,2.0,974842308\n564,1696,2.0,974841758\n564,1699,3.0,974840633\n564,1701,5.0,974837361\n564,1702,2.0,974838390\n564,1703,3.0,974837931\n564,1704,2.0,974841137\n564,1707,1.0,974838512\n564,1711,5.0,974715488\n564,1713,4.0,974837260\n564,1715,3.0,974713786\n564,1717,4.0,974716220\n564,1719,3.0,974713443\n564,1721,4.0,974715602\n564,1722,4.0,974715454\n564,1726,1.0,974843527\n564,1728,4.0,974842967\n564,1729,3.0,974712798\n564,1730,4.0,974711517\n564,1731,1.0,974838456\n564,1732,5.0,974832864\n564,1746,1.0,974837260\n564,1747,3.0,974714563\n564,1748,4.0,974712821\n564,1753,3.0,974715727\n564,1754,5.0,974715756\n564,1762,3.0,974708506\n564,1771,5.0,974709378\n564,1772,3.0,974838390\n564,1777,4.0,974715103\n564,1779,4.0,974844767\n564,1783,1.0,974843708\n564,1784,4.0,974714491\n564,1791,4.0,974842775\n564,1794,3.0,974833400\n564,1798,2.0,974844767\n564,1801,1.0,974839341\n564,1805,5.0,974714026\n564,1812,3.0,974832548\n564,1816,3.0,974837615\n564,1822,3.0,974837788\n564,1831,1.0,974839365\n564,1833,4.0,974839108\n564,1834,2.0,974712361\n564,1837,2.0,974838545\n564,1841,3.0,974842443\n564,1844,4.0,974712924\n564,1845,4.0,974713644\n564,1848,1.0,974839862\n564,1855,2.0,974838390\n564,1856,2.0,974840462\n564,1863,1.0,974838134\n564,1865,3.0,974712361\n564,1873,3.0,974713707\n564,1875,5.0,974832931\n564,1876,3.0,974843253\n564,1881,4.0,974790913\n564,1882,2.0,974839453\n564,1883,4.0,974713066\n564,1884,3.0,974716156\n564,1885,5.0,974832987\n564,1888,3.0,974836101\n564,1889,2.0,974844473\n564,1891,2.0,974710228\n564,1892,3.0,974716032\n564,1894,3.0,974838063\n564,1895,2.0,974833642\n564,1897,3.0,974715224\n564,1904,5.0,974714061\n564,1907,3.0,974715103\n564,1911,4.0,974837080\n564,1912,5.0,974712016\n564,1914,4.0,974712294\n564,1916,2.0,974716403\n564,1917,1.0,974839341\n564,1918,3.0,974716363\n564,1920,5.0,974790762\n564,1921,4.0,974712079\n564,1923,4.0,974832679\n564,1924,3.0,974709294\n564,1947,4.0,974712868\n564,1952,4.0,974712223\n564,1953,4.0,974838704\n564,1954,4.0,974838773\n564,1956,5.0,974714599\n564,1957,1.0,974841137\n564,1958,4.0,974715897\n564,1959,5.0,974844218\n564,1961,3.0,974712635\n564,1962,4.0,974713707\n564,1963,4.0,974832624\n564,1965,3.0,974714208\n564,1967,3.0,974714208\n564,1968,4.0,974711783\n564,1969,4.0,974709734\n564,1970,3.0,974709577\n564,1971,2.0,974709779\n564,1972,4.0,974710019\n564,1973,2.0,974709294\n564,1974,4.0,974709091\n564,1975,3.0,974709466\n564,1976,4.0,974709821\n564,1977,3.0,974709644\n564,1978,4.0,974709972\n564,1979,3.0,974710019\n564,1980,3.0,974710019\n564,1981,3.0,974710071\n564,1982,5.0,974708813\n564,1983,5.0,974709378\n564,1984,4.0,974710177\n564,1985,4.0,974709779\n564,1986,4.0,974709917\n564,1987,1.0,974709577\n564,1988,3.0,974709821\n564,1989,2.0,974710127\n564,1990,3.0,974710071\n564,1991,5.0,974709336\n564,1993,3.0,974710071\n564,1994,5.0,974708918\n564,1995,3.0,974709519\n564,1996,1.0,974710177\n564,1997,4.0,974708761\n564,1998,4.0,974710228\n564,1999,2.0,974709245\n564,2000,3.0,974712635\n564,2001,2.0,974714374\n564,2002,2.0,974837051\n564,2003,4.0,974708959\n564,2004,3.0,974709336\n564,2005,4.0,974839778\n564,2009,4.0,974714807\n564,2011,3.0,974833400\n564,2012,3.0,974837051\n564,2013,4.0,974839039\n564,2014,4.0,974839862\n564,2015,4.0,974837293\n564,2016,3.0,974838259\n564,2018,5.0,974711555\n564,2019,4.0,974838704\n564,2020,5.0,974840876\n564,2021,3.0,974715258\n564,2023,3.0,974716258\n564,2024,5.0,974841529\n564,2026,2.0,974709577\n564,2027,2.0,974837697\n564,2028,5.0,974711893\n564,2029,4.0,974837697\n564,2031,3.0,974838218\n564,2033,3.0,974790534\n564,2037,4.0,974837992\n564,2038,4.0,974837584\n564,2040,3.0,974837260\n564,2041,4.0,974838350\n564,2042,1.0,974837931\n564,2043,4.0,974843646\n564,2044,2.0,974837201\n564,2047,4.0,974839862\n564,2048,4.0,974790436\n564,2050,4.0,974838259\n564,2051,4.0,974838134\n564,2052,4.0,974837450\n564,2053,3.0,974838189\n564,2054,4.0,974837260\n564,2055,4.0,974838427\n564,2059,1.0,974839862\n564,2060,4.0,974837960\n564,2064,4.0,974832715\n564,2068,3.0,974842443\n564,2069,3.0,974842055\n564,2070,4.0,974712868\n564,2071,1.0,974841293\n564,2072,3.0,974837080\n564,2076,4.0,974711893\n564,2077,4.0,974713342\n564,2078,3.0,974712924\n564,2080,4.0,974713673\n564,2081,5.0,974713988\n564,2082,1.0,974837509\n564,2083,4.0,974839803\n564,2084,1.0,974843838\n564,2085,5.0,974790436\n564,2087,4.0,974714337\n564,2088,3.0,974843823\n564,2089,4.0,974715293\n564,2090,4.0,974790534\n564,2091,4.0,974839977\n564,2092,3.0,974790987\n564,2093,5.0,974715038\n564,2095,4.0,974837543\n564,2096,4.0,974713739\n564,2097,4.0,974715515\n564,2098,3.0,974837584\n564,2099,4.0,974714026\n564,2100,4.0,974714644\n564,2104,3.0,974841370\n564,2105,4.0,974716363\n564,2106,2.0,974843416\n564,2107,5.0,974710019\n564,2108,5.0,974714526\n564,2109,5.0,974715379\n564,2110,4.0,974714618\n564,2111,5.0,974836980\n564,2113,4.0,974709860\n564,2114,3.0,974715698\n564,2115,4.0,974838833\n564,2116,4.0,974715861\n564,2117,4.0,974841529\n564,2118,4.0,974708857\n564,2119,4.0,974710177\n564,2120,4.0,974709577\n564,2121,4.0,974709644\n564,2122,4.0,974709821\n564,2123,4.0,974790762\n564,2124,4.0,974713988\n564,2125,4.0,974714644\n564,2126,5.0,974839365\n564,2130,5.0,974712446\n564,2131,5.0,974841452\n564,2132,5.0,974713166\n564,2133,4.0,974837167\n564,2134,4.0,974836897\n564,2135,3.0,974843801\n564,2136,4.0,974716091\n564,2137,5.0,974713988\n564,2138,5.0,974790351\n564,2139,5.0,974712545\n564,2140,4.0,974713872\n564,2141,4.0,974790534\n564,2142,4.0,974837661\n564,2143,4.0,974843646\n564,2144,5.0,974714461\n564,2145,4.0,974715952\n564,2146,4.0,974843253\n564,2148,4.0,974709423\n564,2149,1.0,974709860\n564,2150,3.0,974713988\n564,2151,2.0,974836897\n564,2152,1.0,974837931\n564,2153,1.0,974839652\n564,2154,4.0,974843416\n564,2159,2.0,974708713\n564,2160,5.0,974708857\n564,2161,4.0,974716299\n564,2162,2.0,974839977\n564,2163,3.0,974837615\n564,2165,5.0,974715515\n564,2166,5.0,974841529\n564,2167,4.0,974709044\n564,2170,3.0,974839269\n564,2174,4.0,974712446\n564,2176,4.0,974712401\n564,2177,5.0,974716318\n564,2178,2.0,974844528\n564,2181,3.0,974715425\n564,2184,4.0,974843920\n564,2186,3.0,974711001\n564,2187,4.0,974715996\n564,2188,3.0,974843416\n564,2189,4.0,974715184\n564,2193,4.0,974716189\n564,2194,3.0,974713375\n564,2195,2.0,974835687\n564,2203,5.0,974711164\n564,2215,4.0,974844313\n564,2232,5.0,974714526\n564,2236,2.0,974842655\n564,2240,4.0,974715897\n564,2241,3.0,974837509\n564,2245,5.0,974837080\n564,2247,4.0,974836231\n564,2248,4.0,974712574\n564,2249,4.0,974837325\n564,2250,4.0,974843226\n564,2252,2.0,974843041\n564,2255,4.0,974838026\n564,2256,4.0,974709135\n564,2257,4.0,974837386\n564,2259,4.0,974838026\n564,2260,2.0,974839481\n564,2261,4.0,974833434\n564,2262,4.0,974837128\n564,2263,4.0,974844767\n564,2266,4.0,974837661\n564,2267,5.0,974843945\n564,2268,3.0,974712838\n564,2269,3.0,974843382\n564,2271,5.0,974715258\n564,2272,4.0,974715379\n564,2279,5.0,974709294\n564,2282,3.0,974712704\n564,2283,3.0,974716032\n564,2286,3.0,974838063\n564,2287,4.0,974844566\n564,2288,5.0,974708761\n564,2289,4.0,974711125\n564,2290,5.0,974837543\n564,2291,3.0,974790116\n564,2294,4.0,974715318\n564,2295,4.0,974837450\n564,2297,2.0,974843206\n564,2300,4.0,974711197\n564,2301,4.0,974833057\n564,2302,4.0,974714165\n564,2303,4.0,974711125\n564,2304,4.0,974715224\n564,2313,5.0,974713583\n564,2315,5.0,974709044\n564,2316,4.0,974842888\n564,2318,5.0,974832715\n564,2320,3.0,974715425\n564,2321,4.0,974832766\n564,2322,2.0,974839453\n564,2325,3.0,974837361\n564,2327,5.0,974709519\n564,2328,2.0,974709423\n564,2333,4.0,974712258\n564,2335,4.0,974837128\n564,2336,3.0,974711481\n564,2337,5.0,974715952\n564,2338,3.0,974710071\n564,2344,4.0,974838833\n564,2346,5.0,974716156\n564,2347,4.0,974716363\n564,2348,5.0,974712609\n564,2349,5.0,974714599\n564,2350,3.0,974837886\n564,2351,3.0,974713563\n564,2353,4.0,974715103\n564,2355,4.0,974713786\n564,2359,3.0,974713136\n564,2361,5.0,974710392\n564,2362,2.0,974843159\n564,2363,4.0,974713563\n564,2364,4.0,974839341\n564,2365,5.0,974839204\n564,2366,4.0,974708713\n564,2367,5.0,974709177\n564,2368,3.0,974710019\n564,2369,4.0,974716156\n564,2370,2.0,974839176\n564,2373,3.0,974839551\n564,2374,4.0,974837853\n564,2375,4.0,974838134\n564,2376,4.0,974839071\n564,2377,3.0,974708959\n564,2378,4.0,974837128\n564,2379,2.0,974838189\n564,2380,1.0,974838390\n564,2381,1.0,974838315\n564,2382,1.0,974838601\n564,2383,1.0,974838545\n564,2384,5.0,974712798\n564,2385,3.0,974844359\n564,2386,3.0,974843613\n564,2387,3.0,974836231\n564,2389,2.0,974709779\n564,2390,3.0,974713279\n564,2391,3.0,974844473\n564,2392,1.0,974838491\n564,2393,3.0,974839071\n564,2395,4.0,974708446\n564,2396,3.0,974710822\n564,2397,4.0,974841704\n564,2398,5.0,974841550\n564,2402,2.0,974839176\n564,2404,1.0,974839551\n564,2405,4.0,974837260\n564,2406,4.0,974715038\n564,2407,3.0,974833752\n564,2408,3.0,974838390\n564,2409,3.0,974839236\n564,2410,2.0,974839236\n564,2411,1.0,974839453\n564,2412,1.0,974839680\n564,2413,4.0,974838162\n564,2414,3.0,974716403\n564,2415,4.0,974843091\n564,2416,3.0,974836980\n564,2417,3.0,974837853\n564,2418,4.0,974837128\n564,2419,5.0,974843294\n564,2420,1.0,974842547\n564,2421,1.0,974839422\n564,2422,1.0,974839680\n564,2423,4.0,974714563\n564,2424,4.0,974716299\n564,2428,3.0,974709135\n564,2429,2.0,974839830\n564,2430,4.0,974715003\n564,2431,1.0,974842605\n564,2439,3.0,974713443\n564,2440,4.0,974841601\n564,2442,5.0,974714756\n564,2446,1.0,974844826\n564,2448,3.0,974710071\n564,2449,1.0,974839955\n564,2450,2.0,974840213\n564,2451,4.0,974709644\n564,2455,5.0,974708918\n564,2456,1.0,974709644\n564,2457,3.0,974716091\n564,2458,3.0,974838350\n564,2459,5.0,974708959\n564,2460,4.0,974709577\n564,2462,1.0,974709917\n564,2463,5.0,974832864\n564,2464,2.0,974709917\n564,2465,5.0,974709917\n564,2467,5.0,974712635\n564,2468,5.0,974838350\n564,2469,5.0,974837167\n564,2470,3.0,974837051\n564,2471,1.0,974837992\n564,2472,4.0,974837293\n564,2473,1.0,974838218\n564,2475,5.0,974838858\n564,2478,3.0,974715996\n564,2479,2.0,974842279\n564,2483,5.0,974709779\n564,2491,3.0,974837325\n564,2495,5.0,974714807\n564,2496,4.0,974714685\n564,2499,3.0,974832864\n564,2500,1.0,974837231\n564,2504,4.0,974837788\n564,2505,2.0,974844797\n564,2513,5.0,974709466\n564,2514,1.0,974709860\n564,2515,2.0,974710071\n564,2516,1.0,974710228\n564,2517,5.0,974709378\n564,2518,4.0,974836231\n564,2519,2.0,974708665\n564,2520,3.0,974843294\n564,2521,4.0,974843527\n564,2522,3.0,974843463\n564,2523,3.0,974843416\n564,2524,5.0,974839341\n564,2525,3.0,974709245\n564,2527,4.0,974714756\n564,2528,4.0,974716032\n564,2529,4.0,974711674\n564,2530,4.0,974839143\n564,2531,4.0,974839269\n564,2532,4.0,974715258\n564,2533,4.0,974714807\n564,2534,3.0,974715184\n564,2535,5.0,974838889\n564,2536,4.0,974843549\n564,2539,4.0,974714838\n564,2541,4.0,974842687\n564,2545,5.0,974838390\n564,2548,2.0,974710177\n564,2550,5.0,974708918\n564,2551,4.0,974713533\n564,2553,5.0,974708996\n564,2555,1.0,974838134\n564,2560,5.0,974842655\n564,2561,4.0,974716258\n564,2567,4.0,974715952\n564,2571,3.0,974712259\n564,2574,4.0,974837584\n564,2577,3.0,974841370\n564,2580,4.0,974711243\n564,2583,4.0,974843921\n564,2586,4.0,974836980\n564,2594,5.0,974841452\n564,2596,4.0,974713166\n564,2597,2.0,974836897\n564,2599,4.0,974711439\n564,2600,5.0,974838999\n564,2606,5.0,974709245\n564,2607,3.0,974840609\n564,2611,3.0,974841370\n564,2612,5.0,974712327\n564,2613,5.0,974709135\n564,2616,4.0,974839236\n564,2617,4.0,974709245\n564,2622,4.0,974837231\n564,2626,4.0,974834922\n564,2628,2.0,974708506\n564,2633,3.0,974716258\n564,2634,3.0,974709091\n564,2639,4.0,974843041\n564,2640,4.0,974715258\n564,2641,4.0,974716220\n564,2642,2.0,974839453\n564,2643,1.0,974839706\n564,2644,4.0,974708665\n564,2648,5.0,974711481\n564,2654,4.0,974708959\n564,2655,3.0,974709972\n564,2656,4.0,974710071\n564,2657,5.0,974709135\n564,2659,4.0,974833079\n564,2662,5.0,974714337\n564,2664,5.0,974708713\n564,2668,5.0,974709734\n564,2672,1.0,974842838\n564,2682,5.0,974715258\n564,2683,4.0,974837167\n564,2687,3.0,974714264\n564,2689,4.0,974712989\n564,2690,3.0,974712798\n564,2692,5.0,974838725\n564,2693,5.0,974715639\n564,2694,2.0,974837361\n564,2696,5.0,974832795\n564,2699,5.0,974715570\n564,2700,5.0,974711243\n564,2701,1.0,974839551\n564,2702,2.0,974842547\n564,2706,3.0,974832987\n564,2710,5.0,974709091\n564,2712,5.0,974714461\n564,2713,1.0,974709294\n564,2715,4.0,974713614\n564,2716,3.0,974708761\n564,2717,3.0,974709644\n564,2718,3.0,974714026\n564,2719,3.0,974709644\n564,2720,2.0,974838545\n564,2721,5.0,974844147\n564,2722,3.0,974839422\n564,2725,5.0,974711581\n564,2730,2.0,974713166\n564,2733,4.0,974838601\n564,2734,4.0,974842241\n564,2735,4.0,974837584\n564,2736,4.0,974716189\n564,2738,5.0,974837128\n564,2739,5.0,974715454\n564,2741,3.0,974839422\n564,2745,3.0,974714644\n564,2746,5.0,974709294\n564,2747,2.0,974708918\n564,2748,2.0,974839706\n564,2749,4.0,974842471\n564,2750,4.0,974714685\n564,2751,3.0,974837753\n564,2752,5.0,974837080\n564,2753,4.0,974844604\n564,2754,3.0,974710071\n564,2755,5.0,974843463\n564,2757,4.0,974715348\n564,2759,5.0,974712016\n564,2761,4.0,974711921\n564,2762,5.0,974710822\n564,2766,4.0,974833716\n564,2767,2.0,974832987\n564,2772,4.0,974716060\n564,2774,4.0,974832795\n564,2779,4.0,974837018\n564,2781,3.0,974709519\n564,2786,3.0,974838026\n564,2787,3.0,974709519\n564,2788,4.0,974834922\n564,2789,3.0,974709378\n564,2790,3.0,974709860\n564,2791,5.0,974790116\n564,2792,4.0,974837418\n564,2793,1.0,974709135\n564,2794,4.0,974837886\n564,2795,5.0,974715038\n564,2796,4.0,974837018\n564,2797,3.0,974713478\n564,2798,1.0,974838491\n564,2799,1.0,974838641\n564,2800,3.0,974839911\n564,2801,3.0,974716060\n564,2802,4.0,974839039\n564,2803,4.0,974844711\n564,2804,3.0,974832595\n564,2806,1.0,974837728\n564,2808,2.0,974839620\n564,2826,1.0,974709423\n564,2827,2.0,974844797\n564,2829,2.0,974837661\n564,2840,1.0,974844797\n564,2841,3.0,974844545\n564,2844,2.0,974842308\n564,2850,2.0,974842443\n564,2851,4.0,974844767\n564,2853,4.0,974715952\n564,2855,4.0,974710228\n564,2857,4.0,974713988\n564,2858,5.0,974710822\n564,2860,4.0,974837509\n564,2862,4.0,974843382\n564,2863,3.0,974712609\n564,2866,4.0,974715756\n564,2867,5.0,974708813\n564,2868,2.0,974709972\n564,2870,4.0,974714165\n564,2871,4.0,974844528\n564,2872,4.0,974712446\n564,2875,4.0,974843009\n564,2876,2.0,974714026\n564,2877,3.0,974842838\n564,2878,3.0,974710127\n564,2881,3.0,974839176\n564,2890,4.0,974713066\n564,2898,4.0,974709336\n564,2899,4.0,974790392\n564,2900,3.0,974709336\n564,2901,5.0,974709044\n564,2902,5.0,974709466\n564,2903,1.0,974710127\n564,2907,4.0,974833434\n564,2908,5.0,974712958\n564,2912,5.0,974712079\n564,2915,4.0,974833015\n564,2916,2.0,974838799\n564,2917,4.0,974713252\n564,2918,4.0,974832864\n564,2919,5.0,974712184\n564,2926,5.0,974712574\n564,2928,4.0,974843009\n564,2929,4.0,974713563\n564,2942,4.0,974843320\n564,2945,5.0,974843898\n564,2946,3.0,974713563\n564,2947,4.0,974838725\n564,2948,4.0,974838752\n564,2949,4.0,974838773\n564,2950,3.0,974843416\n564,2952,3.0,974844505\n564,2953,1.0,974838350\n564,2956,4.0,974839269\n564,2959,5.0,974712327\n564,2961,3.0,974837661\n564,2966,5.0,974840718\n564,2967,3.0,974842401\n564,2968,3.0,974712764\n564,2971,5.0,974843768\n564,2973,5.0,974832679\n564,2974,1.0,974710177\n564,2976,5.0,974709519\n564,2982,5.0,974709821\n564,2985,4.0,974714374\n564,2986,2.0,974839620\n564,2987,5.0,974712327\n564,2988,5.0,974714208\n564,2989,5.0,974838921\n564,2990,2.0,974714061\n564,2991,3.0,974838858\n564,2992,4.0,974709972\n564,2995,3.0,974709734\n564,2997,4.0,974710734\n564,3005,4.0,974844684\n564,3006,2.0,974840746\n564,3013,3.0,974709336\n564,3015,5.0,974844604\n564,3016,5.0,974709177\n564,3018,5.0,974708665\n564,3019,4.0,974712764\n564,3020,3.0,974839039\n564,3021,5.0,974709972\n564,3024,5.0,974709821\n564,3028,4.0,974712505\n564,3029,4.0,974714026\n564,3033,4.0,974837167\n564,3034,4.0,974790436\n564,3036,5.0,974716189\n564,3039,5.0,974832897\n564,3040,4.0,974713443\n564,3041,3.0,974838601\n564,3042,3.0,974838601\n564,3044,4.0,974843898\n564,3045,4.0,974837853\n564,3048,4.0,974838189\n564,3051,3.0,974708506\n564,3052,5.0,974711581\n564,3060,4.0,974833079\n564,3063,4.0,974844649\n564,3064,1.0,974844585\n564,3067,5.0,974832570\n564,3068,5.0,974711243\n564,3070,2.0,974715861\n564,3072,5.0,974713136\n564,3075,3.0,974711808\n564,3081,4.0,974709044\n564,3082,4.0,974716125\n564,3083,5.0,974710590\n564,3086,4.0,974714291\n564,3087,3.0,974715258\n564,3089,3.0,974840798\n564,3094,3.0,974841475\n564,3098,2.0,974712147\n564,3101,5.0,974715640\n564,3102,5.0,974715003\n564,3103,4.0,974844218\n564,3105,4.0,974712727\n564,3106,4.0,974842605\n564,3107,2.0,974838921\n564,3108,4.0,974713412\n564,3111,3.0,974841452\n564,3112,5.0,974710675\n564,3113,1.0,974839269\n564,3115,5.0,974711845\n564,3125,5.0,974842443\n564,3128,3.0,974840851\n564,3130,4.0,974838162\n564,3135,5.0,974713310\n564,3141,4.0,974843041\n564,3145,4.0,974842838\n564,3146,1.0,974837728\n564,3147,5.0,974712259\n564,3152,5.0,974713310\n564,3153,5.0,974838858\n564,3156,3.0,974843064\n564,3157,3.0,974713412\n564,3160,5.0,974712478\n564,3167,5.0,974713786\n564,3169,4.0,974714127\n564,3174,2.0,974713279\n564,3175,5.0,974714165\n564,3176,2.0,974842216\n564,3178,3.0,974714061\n564,3179,3.0,974840798\n564,3183,4.0,974840825\n564,3185,3.0,974841802\n564,3186,4.0,974714967\n564,3190,1.0,974839740\n564,3194,5.0,974840876\n564,3197,4.0,974715425\n564,3198,5.0,974715488\n564,3200,5.0,974833434\n564,3203,4.0,974713279\n564,3204,4.0,974712609\n564,3210,5.0,974832795\n564,3211,4.0,974841654\n564,3213,5.0,974713512\n564,3218,3.0,974711349\n564,3223,3.0,974842626\n564,3239,4.0,974838641\n564,3243,4.0,974837931\n564,3244,5.0,974714618\n564,3246,3.0,974713166\n564,3247,4.0,974836980\n564,3248,3.0,974838427\n564,3249,4.0,974844649\n564,3250,3.0,974714239\n564,3251,4.0,974842369\n564,3252,4.0,974716220\n564,3253,3.0,974714526\n564,3254,3.0,974836927\n564,3255,3.0,974714264\n564,3256,4.0,974714685\n564,3257,1.0,974839551\n564,3258,5.0,974837476\n564,3259,3.0,974842860\n564,3261,4.0,974837293\n564,3262,4.0,974715825\n564,3263,3.0,974837201\n564,3264,1.0,974709378\n564,3266,3.0,974710822\n564,3268,3.0,974838545\n564,3269,3.0,974844186\n564,3270,3.0,974842279\n564,3271,4.0,974712147\n564,3272,5.0,974842775\n564,3273,4.0,974709466\n564,3274,5.0,974839039\n564,3281,5.0,974840462\n564,3282,4.0,974712446\n564,3304,4.0,974842576\n564,3313,4.0,974837886\n564,3324,1.0,974837661\n564,3325,4.0,974838545\n564,3331,4.0,974843502\n564,3339,3.0,974713342\n564,3341,4.0,974710822\n564,3342,5.0,974712259\n564,3343,4.0,974837386\n564,3351,3.0,974709336\n564,3355,4.0,974844711\n564,3358,5.0,974713988\n564,3359,5.0,974840684\n564,3360,3.0,974713196\n564,3361,5.0,974712044\n564,3362,4.0,974711921\n564,3363,5.0,974835075\n564,3386,4.0,974841338\n564,3387,4.0,974837697\n564,3388,3.0,974837584\n564,3391,5.0,974838641\n564,3392,4.0,974838026\n564,3394,4.0,974837992\n564,3396,4.0,974712924\n564,3397,4.0,974833434\n564,3398,3.0,974715570\n564,3402,4.0,974715602\n564,3404,3.0,974839039\n564,3409,4.0,974713196\n564,3412,4.0,974714337\n564,3418,5.0,974713673\n564,3420,5.0,974844585\n564,3421,4.0,974711756\n564,3422,3.0,974833400\n564,3424,3.0,974832715\n564,3428,1.0,974843587\n564,3429,4.0,974790351\n564,3430,4.0,974838889\n564,3431,3.0,974839579\n564,3435,4.0,974710521\n564,3436,2.0,974843348\n564,3438,2.0,974839307\n564,3439,1.0,974839579\n564,3440,1.0,974839652\n564,3442,3.0,974839551\n564,3445,3.0,974843921\n564,3448,5.0,974716220\n564,3449,4.0,974843416\n564,3450,4.0,974836927\n564,3457,5.0,974843570\n564,3459,4.0,974709466\n564,3461,4.0,974713920\n564,3465,4.0,974843348\n564,3466,4.0,974837361\n564,3471,5.0,974711921\n564,3476,5.0,974708813\n564,3478,1.0,974842443\n564,3479,2.0,974715293\n564,3480,4.0,974715666\n564,3481,4.0,974712446\n564,3489,2.0,974843646\n564,3490,5.0,974791150\n564,3491,4.0,974791183\n564,3494,3.0,974716189\n564,3495,4.0,974838641\n564,3496,4.0,974841704\n564,3497,4.0,974836927\n564,3498,4.0,974713786\n564,3499,5.0,974713093\n564,3500,2.0,974837697\n564,3501,4.0,974715003\n564,3503,2.0,974711581\n564,3504,4.0,974711001\n564,3505,4.0,974714291\n564,3506,4.0,974833716\n564,3507,4.0,974714778\n564,3508,4.0,974844968\n564,3510,4.0,974715666\n564,3516,4.0,974716060\n564,3518,2.0,974841529\n564,3521,4.0,974712764\n564,3524,5.0,974837128\n564,3525,4.0,974837231\n564,3526,4.0,974713478\n564,3527,4.0,974714061\n564,3528,4.0,974843206\n564,3529,5.0,974844711\n564,3534,4.0,974833752\n564,3535,4.0,974708918\n564,3543,4.0,974711517\n564,3544,3.0,974837018\n564,3545,5.0,974843752\n564,3546,5.0,974713512\n564,3547,5.0,974840876\n564,3548,3.0,974713786\n564,3551,3.0,974711125\n564,3552,4.0,974713311\n564,3557,5.0,974844737\n564,3564,2.0,974838545\n564,3565,3.0,974837128\n564,3572,2.0,974709519\n564,3573,4.0,974710127\n564,3574,1.0,974710252\n564,3576,5.0,974708761\n564,3577,4.0,974843549\n564,3584,4.0,974839551\n564,3587,4.0,974708959\n564,3590,4.0,974837853\n564,3591,4.0,974837051\n564,3604,4.0,974843786\n564,3605,1.0,974843320\n564,3608,5.0,974832897\n564,3614,4.0,974715792\n564,3619,3.0,974714778\n564,3623,1.0,974708506\n564,3627,4.0,974713031\n564,3633,4.0,974838833\n564,3635,5.0,974713614\n564,3638,5.0,974716299\n564,3639,3.0,974713872\n564,3649,4.0,974842687\n564,3658,4.0,974711845\n564,3659,3.0,974844473\n564,3660,3.0,974709294\n564,3661,3.0,974709779\n564,3662,3.0,974709734\n564,3663,3.0,974710019\n564,3664,3.0,974710019\n564,3665,4.0,974710019\n564,3671,5.0,974712545\n564,3672,5.0,974839862\n564,3673,3.0,974840213\n564,3674,3.0,974840213\n564,3676,4.0,974708665\n564,3677,3.0,974715640\n564,3679,5.0,974714061\n564,3680,3.0,974712327\n564,3683,5.0,974710704\n564,3684,4.0,974842308\n564,3685,5.0,974713136\n564,3688,4.0,974837584\n564,3689,3.0,974838350\n564,3690,2.0,974838456\n564,3691,3.0,974838315\n564,3692,4.0,974710127\n564,3693,4.0,974708996\n564,3694,3.0,974709423\n564,3695,3.0,974709577\n564,3696,4.0,974709091\n564,3697,2.0,974839391\n564,3698,3.0,974839204\n564,3699,3.0,974714685\n564,3701,4.0,974841992\n564,3702,3.0,974712401\n564,3703,2.0,974712016\n564,3704,2.0,974838921\n564,3705,4.0,974839680\n564,3706,4.0,974713872\n564,3707,4.0,974843226\n564,3708,4.0,974709466\n564,3709,4.0,974709779\n564,3712,5.0,974837293\n564,3713,4.0,974713739\n564,3714,2.0,974842918\n564,3715,4.0,974837960\n564,3716,4.0,974839579\n564,3723,4.0,974842055\n564,3724,5.0,974714239\n564,3725,5.0,974790534\n564,3727,4.0,974832864\n564,3728,5.0,974713252\n564,3729,4.0,974839071\n564,3730,5.0,974710334\n564,3731,4.0,974842655\n564,3732,3.0,974709177\n564,3733,4.0,974713644\n564,3734,5.0,974714208\n564,3738,5.0,974716156\n564,3740,3.0,974713920\n564,3742,3.0,974711164\n564,3745,4.0,974790436\n564,3753,1.0,974844914\n564,3754,2.0,974840213\n564,3755,5.0,974838971\n564,3757,5.0,974708857\n564,3758,4.0,974842576\n564,3759,4.0,974790534\n564,3760,5.0,974714374\n564,3763,4.0,974715698\n564,3764,1.0,974839307\n564,3769,3.0,974838799\n564,3770,5.0,974844627\n564,3771,4.0,974713375\n564,3773,1.0,974837661\n564,3774,1.0,974838601\n564,3777,1.0,974709245\n564,3785,3.0,974708959\n564,3786,3.0,974714599\n564,3788,4.0,974714491\n564,3791,4.0,974842401\n564,3798,4.0,974716156\n564,3802,2.0,974839511\n564,3804,5.0,974838456\n564,3805,4.0,974839621\n564,3807,5.0,974714374\n564,3809,4.0,974714685\n564,3810,4.0,974842838\n564,3811,4.0,974840798\n564,3812,4.0,974833015\n564,3813,5.0,974715038\n564,3814,5.0,974711644\n564,3820,1.0,974839888\n564,3826,4.0,974709821\n564,3832,3.0,974713944\n564,3833,5.0,974709973\n564,3834,3.0,974843348\n564,3835,3.0,974844737\n564,3837,5.0,974709644\n564,3838,2.0,974709860\n564,3839,1.0,974709860\n564,3840,5.0,974709860\n564,3841,5.0,974837853\n564,3844,4.0,974842721\n564,3851,5.0,974712668\n564,3857,1.0,974844889\n564,3863,4.0,974844425\n564,3865,1.0,974713412\n564,3868,4.0,974712821\n564,3869,4.0,974837018\n564,3877,2.0,974839621\n564,3889,1.0,974716125\n564,3908,5.0,974709917\n564,3917,5.0,974708996\n564,3918,3.0,974708813\n564,3919,3.0,974709734\n564,3920,2.0,974712223\n564,3921,2.0,976224804\n564,3923,4.0,974709519\n564,3925,3.0,974715602\n564,3927,4.0,974713375\n564,3928,4.0,974709245\n564,3930,4.0,974709091\n564,3932,3.0,974708761\n564,3936,4.0,974714208\n564,3937,2.0,974844797\n564,3938,4.0,974710127\n564,3939,3.0,974710127\n564,3940,3.0,974708446\n564,3941,4.0,974710177\n564,3942,3.0,974710071\n564,3946,4.0,974839579\n564,3948,4.0,974713196\n564,3956,3.0,974709520\n564,3957,2.0,974843206\n564,3959,3.0,974712958\n564,3960,3.0,976224747\n564,3961,3.0,974709779\n564,3962,2.0,974709917\n564,3968,4.0,974837615\n564,3970,4.0,974709973\n564,3971,4.0,974711403\n564,3973,5.0,974791435\n564,3984,4.0,974714685\n564,4002,3.0,976224647\n564,4003,3.0,976224647\n564,4005,3.0,976224647\n564,4006,2.0,976224647\n564,4008,4.0,976224647\n564,4009,5.0,976224647\n564,4010,1.0,976224647\n564,5060,4.0,974711674\n564,5649,3.0,974708665\n565,150,3.0,954602761\n565,300,3.0,954602795\n565,337,2.0,954602576\n565,480,4.0,954601950\n565,589,4.0,954602676\n565,608,5.0,954602419\n565,994,2.0,954602516\n565,1196,3.0,954601868\n565,1213,3.0,954602576\n565,1233,3.0,954602464\n565,1266,2.0,954602647\n565,1358,3.0,954602647\n565,1537,4.0,954602846\n565,1721,4.0,954601826\n565,1748,4.0,954602647\n565,2324,5.0,954602795\n565,2359,5.0,954602535\n565,2396,5.0,954602516\n565,2571,5.0,954602535\n565,2779,3.0,954601950\n565,2826,2.0,954602761\n565,2858,4.0,954602516\n565,2916,5.0,954601911\n565,3072,5.0,954601911\n565,3100,3.0,954602761\n565,3148,4.0,954603056\n565,3186,5.0,954602398\n566,318,5.0,1386910312\n566,1792,4.0,1386909786\n566,2296,3.5,1386909949\n566,3177,3.5,1386910089\n566,4255,3.5,1386910019\n566,6156,5.0,1386909909\n566,6541,4.0,1386910296\n566,6754,5.0,1386909822\n566,8937,4.0,1386910058\n566,26614,5.0,1386909885\n566,31420,5.0,1386910136\n566,47640,3.0,1386910200\n566,54286,5.0,1386910314\n566,55282,3.5,1386910069\n566,58559,5.0,1386910355\n566,59315,5.0,1386910292\n566,60756,5.0,1386910076\n566,61024,4.0,1386909927\n566,89745,4.5,1386910327\n566,97304,4.5,1386910037\n566,102125,5.0,1386910166\n566,102445,5.0,1386910321\n567,50,3.0,1436823334\n567,260,3.5,1436823318\n567,318,5.0,1436823311\n567,356,4.0,1436823505\n567,589,5.0,1436823417\n567,593,4.0,1436823369\n567,750,4.0,1436823395\n567,858,5.0,1436823288\n567,924,4.0,1436823531\n567,1089,5.0,1436823378\n567,1136,3.0,1436823361\n567,1175,4.0,1436823436\n567,1193,3.0,1436823549\n567,1198,4.0,1436823323\n567,1206,5.0,1436823456\n567,1208,3.0,1436823513\n567,1213,4.5,1436823374\n567,1221,5.0,1436823524\n567,1258,5.0,1436823420\n567,1265,5.0,1436823450\n567,1732,5.0,1436823520\n567,2502,5.0,1436823281\n567,2858,5.0,1436823508\n567,2959,5.0,1436823313\n567,4011,5.0,1436823499\n567,4262,3.5,1436823537\n567,4878,2.5,1436828875\n567,7153,3.5,1436823350\n567,44191,4.5,1436823453\n567,44555,5.0,1436823567\n567,48516,5.0,1436823553\n567,89759,5.0,1436823459\n567,122882,5.0,1436823589\n567,134853,3.5,1436823594\n568,1,3.0,835002305\n568,10,4.0,835002274\n568,47,5.0,835002428\n568,150,3.0,835002195\n568,153,5.0,835002219\n568,161,4.0,835002275\n568,165,4.0,835002219\n568,231,3.0,835002248\n568,253,3.0,835002305\n568,288,4.0,835002326\n568,292,4.0,835002274\n568,293,4.0,835002428\n568,296,4.0,835002195\n568,300,4.0,835002326\n568,316,5.0,835002248\n568,318,5.0,835002248\n568,329,5.0,835002248\n568,344,3.0,835002219\n568,349,5.0,835002219\n568,353,4.0,835002462\n568,356,1.0,835002400\n568,377,5.0,835002363\n568,380,5.0,835002195\n568,410,3.0,835002326\n568,434,5.0,835002275\n568,442,5.0,835002462\n568,457,5.0,835002326\n568,474,5.0,835002428\n568,480,5.0,835002400\n568,588,4.0,835002219\n568,589,5.0,835002363\n568,590,2.0,835002195\n568,592,5.0,835002194\n568,593,5.0,835002305\n568,595,4.0,835002248\n568,733,4.0,835002363\n568,736,4.0,835002363\n569,11,5.0,965068407\n569,39,4.0,965068081\n569,110,3.0,965070746\n569,151,4.0,965070759\n569,164,4.0,965080902\n569,318,5.0,965070662\n569,349,5.0,965070900\n569,356,5.0,965068229\n569,377,4.0,965068186\n569,440,4.0,965068229\n569,474,5.0,965070825\n569,593,4.0,965070678\n569,800,2.0,965071191\n569,858,5.0,965070650\n569,899,5.0,965068067\n569,902,3.0,965067745\n569,903,5.0,965071054\n569,904,5.0,965071054\n569,905,5.0,965070015\n569,908,5.0,965070604\n569,909,5.0,965069244\n569,910,5.0,965080412\n569,911,5.0,965069187\n569,912,5.0,965067984\n569,913,3.0,965067745\n569,914,5.0,965069372\n569,915,4.0,965068186\n569,916,5.0,965068027\n569,919,5.0,965070061\n569,920,5.0,965068067\n569,922,5.0,965070547\n569,924,2.0,965071191\n569,928,5.0,965068002\n569,931,4.0,965068027\n569,932,3.0,965069413\n569,933,4.0,965068229\n569,942,4.0,965071191\n569,943,5.0,965069973\n569,969,5.0,965068002\n569,1035,5.0,965070490\n569,1193,3.0,965144227\n569,1198,5.0,965068700\n569,1207,5.0,965070662\n569,1225,4.0,965068700\n569,1247,4.0,965068027\n569,1278,1.0,965080429\n569,1307,4.0,965068094\n569,1357,4.0,965070791\n569,1358,5.0,965143871\n569,1393,4.0,965068186\n569,1608,4.0,965070810\n569,1617,5.0,965070566\n569,1674,4.0,965068081\n569,1721,4.0,965068128\n569,1873,4.0,965070778\n569,1918,3.0,965071013\n569,1944,3.0,965068027\n569,1946,4.0,965069413\n569,1947,3.0,965069372\n569,1956,3.0,965068700\n569,2000,4.0,965071013\n569,2001,4.0,965071013\n569,2002,3.0,965071013\n569,2006,4.0,965068186\n569,2028,5.0,965067636\n569,2109,3.0,965067672\n569,2324,4.0,965144282\n569,2359,5.0,965144265\n569,2396,4.0,965068027\n569,2770,3.0,965070839\n569,2791,3.0,965067745\n569,2804,5.0,965068455\n569,2858,5.0,965067900\n569,2919,3.0,965068067\n569,3082,3.0,965067928\n569,3095,5.0,965070678\n569,3147,5.0,965067900\n569,3176,2.0,965067900\n569,3196,5.0,965070531\n569,3210,3.0,965069104\n569,3256,4.0,965070991\n569,3414,4.0,965069422\n569,3512,4.0,965144249\n569,3654,5.0,965070531\n569,3801,2.0,965071191\n570,1,1.5,1475783711\n570,36,4.0,1475784355\n570,104,3.5,1475806221\n570,110,3.0,1475783266\n570,150,3.5,1475783700\n570,165,5.0,1475783692\n570,260,2.0,1475783233\n570,296,5.0,1475783781\n570,356,5.0,1475783279\n570,457,4.0,1475783286\n570,474,4.0,1475783718\n570,508,5.0,1475783671\n570,527,2.5,1475783261\n570,589,1.5,1475783263\n570,593,5.0,1475783864\n570,608,4.0,1475784300\n570,648,5.0,1475783787\n570,733,4.5,1475783698\n570,780,4.0,1475783835\n570,1027,4.0,1475784352\n570,1036,5.0,1475783259\n570,1047,3.0,1475784384\n570,1196,2.0,1475783047\n570,1198,4.0,1475783030\n570,1210,1.5,1475783247\n570,1213,2.0,1475784311\n570,1258,5.0,1475784306\n570,1291,4.0,1475783038\n570,1370,5.0,1475783716\n570,1544,3.0,1475783815\n570,1584,2.0,1475784351\n570,1608,4.5,1475783707\n570,1625,4.5,1475784302\n570,1704,5.0,1475783687\n570,1882,1.5,1475783741\n570,1917,4.0,1475783809\n570,1997,4.5,1475806206\n570,2000,4.0,1475783744\n570,2028,2.5,1475783269\n570,2115,5.0,1475783793\n570,2268,2.5,1475784363\n570,2403,4.0,1475784326\n570,2404,5.0,1475783760\n570,2411,3.0,1475784369\n570,2571,3.0,1475783033\n570,2617,1.5,1475783850\n570,2916,2.5,1475783739\n570,2959,3.0,1475783757\n570,2990,2.5,1475784375\n570,3623,5.0,1475783736\n570,3624,3.0,1475783848\n570,3916,4.0,1475784345\n570,3977,2.5,1475783775\n570,4306,1.5,1475783783\n570,4369,3.0,1475783817\n570,4701,4.0,1475783762\n570,4896,4.0,1475806371\n570,4901,4.0,1475784409\n570,4993,5.0,1475783252\n570,5064,4.0,1475784417\n570,5218,3.0,1475783676\n570,5254,4.0,1475783811\n570,5378,2.0,1475806378\n570,5445,5.0,1475783680\n570,5449,4.5,1475783779\n570,5621,4.0,1475783863\n570,5952,5.0,1475783236\n570,6156,3.5,1475783800\n570,6333,2.5,1475783685\n570,6365,2.5,1475783790\n570,6378,4.5,1475783724\n570,6539,4.0,1475783674\n570,6664,3.0,1475784370\n570,6874,4.0,1475783669\n570,7143,3.5,1475783679\n570,7153,5.0,1475783036\n570,7438,3.5,1475783668\n570,7445,4.0,1475784344\n570,8368,4.5,1475783753\n570,8533,3.5,1475806361\n570,8644,3.5,1475783867\n570,8961,2.0,1475783710\n570,32029,4.0,1475784376\n570,33794,2.0,1475783271\n570,34534,3.5,1475806226\n570,36519,5.0,1475783803\n570,37727,2.5,1475784380\n570,40815,4.5,1475783754\n570,41566,3.5,1475783720\n570,44199,4.0,1475784330\n570,45186,5.0,1475786244\n570,47099,5.0,1475784304\n570,48516,3.5,1475783853\n570,48774,4.0,1475786239\n570,49272,5.0,1475783813\n570,53972,5.0,1475783842\n570,54286,5.0,1475783284\n570,55765,3.5,1475784365\n570,57528,4.5,1475784313\n570,58559,1.5,1475783249\n570,59315,3.0,1475783273\n570,59501,3.5,1475783807\n570,60072,3.0,1475783690\n570,64716,4.0,1475806356\n570,64957,4.5,1475806239\n570,68358,1.5,1475783281\n570,72641,4.0,1475806209\n570,73017,5.0,1475783857\n570,78469,2.0,1475783858\n570,79185,4.5,1475786238\n570,79293,5.0,1475783831\n570,80363,4.0,1475786242\n570,81229,4.5,1475783845\n570,81834,4.5,1475783785\n570,84392,4.0,1475806215\n570,91630,5.0,1475783832\n570,95167,3.5,1475783821\n570,97304,4.0,1475783714\n570,98809,4.0,1475783796\n570,103141,1.5,1475783819\n570,105504,4.0,1475784360\n570,106489,4.0,1475783702\n570,112171,2.0,1475784309\n570,112852,1.5,1475783289\n570,116797,5.0,1475784320\n570,122886,2.0,1475783291\n570,142488,4.0,1475806253\n570,148626,4.0,1475806416\n571,18,5.0,1334342436\n571,32,4.5,1334342690\n571,88,3.5,1334342448\n571,150,4.0,1334343718\n571,413,4.0,1334342410\n571,546,2.5,1334342420\n571,1208,3.5,1334343715\n571,1347,3.0,1334342371\n571,1517,2.5,1334344224\n571,1608,3.5,1334343175\n571,1917,4.0,1334343789\n571,2094,2.0,1334342384\n571,2124,4.0,1334343027\n571,2329,4.0,1334343457\n571,2572,3.5,1334342657\n571,2683,3.0,1334344226\n571,2706,3.5,1334343473\n571,2858,4.0,1334343413\n571,3273,2.5,1334342405\n571,3354,4.0,1334342394\n571,3535,4.5,1334343490\n571,3745,3.5,1334342433\n571,3981,3.5,1334342533\n571,4159,4.5,1334342819\n571,4238,3.5,1334343353\n571,4343,4.5,1334342491\n571,4718,2.5,1334343476\n571,4792,3.5,1334342710\n571,4865,4.0,1334342502\n571,4973,4.5,1334343394\n571,5015,3.0,1334342453\n571,5400,3.5,1334342539\n571,5481,2.5,1334344220\n571,5872,3.5,1334342465\n571,6287,3.0,1334343605\n571,6502,3.5,1334342776\n571,7173,2.0,1334343358\n571,7293,2.5,1334342864\n571,8641,4.0,1334343546\n571,8977,4.0,1334343221\n571,27251,3.0,1334342676\n571,27660,4.0,1334343643\n571,34338,4.5,1334343776\n571,39715,3.5,1334343478\n571,45440,4.0,1334343817\n571,47518,3.5,1334342967\n571,50923,3.0,1334343924\n571,51662,4.0,1334342810\n571,52462,4.0,1334343745\n571,52973,4.5,1334342495\n571,53953,4.5,1334342721\n571,54997,4.0,1334342828\n571,55363,3.5,1334343895\n571,55765,4.5,1334343427\n571,68554,4.0,1334343585\n571,72378,4.0,1334342752\n571,74789,4.0,1334343259\n571,84954,4.0,1334343045\n571,88812,4.5,1334342806\n572,50,4.0,1436465509\n572,145,4.5,1436885174\n572,163,2.5,1436885100\n572,296,4.0,1436465836\n572,318,4.5,1436465513\n572,337,4.0,1436885117\n572,356,4.0,1436466692\n572,381,3.0,1436936149\n572,527,4.0,1436465512\n572,593,3.5,1436465703\n572,858,4.0,1436465503\n572,912,4.0,1436465688\n572,1203,4.5,1436465476\n572,1213,3.5,1436465983\n572,1704,4.5,1436465993\n572,2028,4.5,1436466597\n572,2268,5.0,1436885095\n572,2329,4.0,1436465690\n572,2571,4.0,1436465485\n572,2858,4.0,1436465717\n572,2959,4.5,1436465710\n572,3147,4.0,1436466628\n572,3252,4.0,1436885248\n572,4993,4.5,1436465642\n572,5066,4.0,1436465358\n572,5219,3.5,1436465076\n572,5459,3.5,1436464849\n572,5464,4.0,1436464884\n572,5507,3.5,1436465083\n572,5574,3.0,1436465183\n572,5679,3.0,1436464861\n572,5872,3.5,1436464944\n572,5952,4.5,1436465663\n572,6281,3.5,1436464954\n572,6378,4.0,1436464859\n572,6564,3.0,1436465215\n572,6586,3.0,1436465263\n572,6754,3.0,1436465100\n572,6934,3.0,1436464814\n572,7143,3.5,1436464852\n572,7153,4.0,1436465655\n572,7162,3.0,1436465161\n572,7163,3.5,1436465256\n572,7293,3.5,1436464926\n572,7346,3.5,1436465278\n572,7454,4.0,1436465124\n572,8533,3.0,1436465103\n572,8644,3.0,1436464846\n572,8798,4.0,1436464890\n572,30707,3.0,1436464873\n572,31685,3.0,1436465097\n572,31696,3.5,1436465089\n572,33162,3.5,1436779905\n572,33615,4.0,1436465147\n572,34048,3.5,1436464919\n572,34150,3.0,1436465120\n572,34435,4.5,1436466688\n572,36519,3.0,1436465367\n572,38061,3.5,1436464956\n572,40815,3.5,1436464842\n572,41566,3.0,1436464908\n572,42723,3.0,1436780041\n572,42738,4.0,1436779961\n572,44022,4.0,1436779896\n572,44195,3.5,1436464897\n572,45186,4.0,1436779852\n572,45668,4.0,1436780116\n572,45672,3.0,1436779923\n572,47099,4.0,1436779820\n572,48516,4.5,1436465765\n572,48780,4.5,1436466014\n572,48997,4.0,1436780025\n572,49286,3.5,1436779990\n572,51077,2.5,1436780007\n572,52458,3.5,1436780064\n572,52722,3.5,1436779789\n572,53322,4.0,1436779815\n572,55232,3.5,1436780055\n572,55276,3.5,1436779862\n572,55908,4.0,1436779994\n572,56775,3.5,1436779950\n572,56941,3.5,1436780130\n572,56949,3.5,1436779939\n572,57640,2.5,1436779919\n572,58295,3.5,1436779976\n572,58559,5.0,1436465480\n572,58803,3.5,1436779929\n572,59501,3.5,1436780017\n572,59784,3.5,1436779769\n572,59900,2.5,1436780120\n572,60069,3.0,1436466435\n572,60072,3.0,1436779892\n572,61024,4.0,1436779885\n572,62999,4.0,1436780164\n572,63992,3.5,1436779913\n572,64716,4.0,1436780035\n572,64957,3.5,1436779780\n572,65514,3.0,1436780109\n572,68954,4.5,1436466030\n572,71379,3.5,1436780145\n572,73881,3.5,1436466607\n572,81845,3.5,1436465743\n572,99114,4.0,1436465847\n572,104913,4.5,1436466508\n572,109487,4.5,1436466015\n572,132952,4.0,1436466718\n573,36,5.0,946616367\n573,80,4.0,946616810\n573,105,2.0,946616709\n573,260,3.0,946616209\n573,480,3.0,946616709\n573,527,5.0,946616781\n573,538,4.0,946616709\n573,595,4.0,946616177\n573,596,4.0,946616412\n573,1080,3.0,946616441\n573,1094,5.0,946616885\n573,1097,2.0,946616900\n573,1197,3.0,946616177\n573,1256,3.0,946616745\n573,1280,4.0,946616679\n573,1367,3.0,946616177\n573,1408,4.0,946616441\n573,1485,3.0,946616596\n573,1617,3.0,946616764\n573,1641,4.0,946616487\n573,1907,4.0,946616472\n573,2003,2.0,946616709\n573,2028,5.0,946616396\n573,2080,4.0,946616542\n573,2081,4.0,946616558\n573,2087,4.0,946616527\n573,2095,1.0,946616209\n573,2324,5.0,946616527\n573,2355,4.0,946616472\n573,2390,3.0,946616840\n573,2797,2.0,946616412\n573,2871,4.0,946616472\n573,2947,3.0,946616504\n573,2969,3.0,946616854\n573,2987,4.0,946616573\n573,2991,3.0,946616573\n573,2997,5.0,946616641\n573,3100,3.0,946616472\n574,1,4.0,1232811316\n574,3,3.5,1232815004\n574,6,5.0,1232810973\n574,10,3.0,1232810621\n574,16,4.5,1232821065\n574,19,3.0,1232810913\n574,25,4.5,1232810542\n574,32,4.5,1232810098\n574,47,4.5,1232810186\n574,50,5.0,1232810368\n574,70,4.0,1232815545\n574,104,3.0,1232810986\n574,111,5.0,1232810609\n574,141,4.0,1232810831\n574,145,3.5,1232914790\n574,150,3.0,1232810662\n574,153,2.0,1232810237\n574,163,3.5,1232815235\n574,165,3.5,1232810241\n574,173,2.5,1232915065\n574,193,1.0,1232809285\n574,196,3.0,1232815475\n574,208,2.0,1232810525\n574,215,4.5,1232820704\n574,223,4.0,1232914651\n574,231,2.5,1232915082\n574,260,4.0,1232914577\n574,293,5.0,1232810780\n574,296,5.0,1232811585\n574,316,2.5,1232811359\n574,318,5.0,1232914580\n574,329,2.5,1232810443\n574,344,2.5,1232811339\n574,356,4.5,1232821038\n574,357,2.5,1232810572\n574,364,3.5,1232811355\n574,367,3.0,1232810271\n574,370,2.5,1232815435\n574,374,2.0,1232809349\n574,377,3.0,1232914840\n574,420,3.0,1232811079\n574,435,3.0,1232815348\n574,442,3.5,1232811659\n574,466,2.5,1232915070\n574,471,3.5,1232817270\n574,480,3.5,1232810183\n574,500,3.0,1232914882\n574,517,4.0,1232907142\n574,539,3.0,1232811376\n574,541,4.0,1232810489\n574,586,3.0,1232914930\n574,589,4.0,1232810207\n574,592,3.0,1232811311\n574,597,3.0,1232810362\n574,608,5.0,1232810285\n574,648,3.0,1232810389\n574,673,2.5,1232915027\n574,733,3.0,1232810378\n574,736,3.0,1232915017\n574,762,0.5,1232809235\n574,780,3.5,1232810115\n574,858,5.0,1232810023\n574,1036,4.5,1232810365\n574,1088,3.0,1232817137\n574,1089,4.5,1232914545\n574,1092,3.5,1232817134\n574,1097,4.0,1232811619\n574,1196,4.0,1232810140\n574,1198,3.5,1232815950\n574,1201,4.5,1232813246\n574,1208,4.0,1232810791\n574,1210,3.5,1232810095\n574,1212,4.0,1232815721\n574,1213,4.5,1232810580\n574,1221,4.5,1232810479\n574,1222,3.0,1232914936\n574,1227,4.0,1232815840\n574,1234,4.5,1232812690\n574,1240,3.5,1232810563\n574,1245,4.5,1232812093\n574,1247,4.5,1232811017\n574,1265,4.5,1232810429\n574,1270,4.5,1232914533\n574,1291,4.0,1232810454\n574,1370,3.0,1232914950\n574,1371,3.0,1232809252\n574,1373,1.0,1232809279\n574,1374,4.0,1232811037\n574,1375,3.5,1232817066\n574,1391,3.5,1232810806\n574,1407,4.0,1232810879\n574,1517,2.0,1232810465\n574,1527,2.5,1232810510\n574,1556,2.5,1232915025\n574,1562,3.0,1232817341\n574,1573,3.5,1232810558\n574,1580,3.5,1232810305\n574,1589,4.5,1232809334\n574,1617,4.5,1232810179\n574,1639,4.5,1232811111\n574,1676,3.0,1232914822\n574,1682,3.5,1232914692\n574,1687,4.0,1232819185\n574,1704,4.0,1232914627\n574,1717,3.0,1232914846\n574,1721,3.0,1232810148\n574,1722,3.0,1232815366\n574,1729,4.5,1232812223\n574,1732,4.5,1232914537\n574,1805,4.0,1232817468\n574,1909,2.5,1232915007\n574,1911,2.5,1232915085\n574,1917,3.0,1232810434\n574,1918,4.0,1232817410\n574,1923,3.5,1232914700\n574,1953,4.0,1245603895\n574,1968,4.0,1232811800\n574,2000,4.5,1232810759\n574,2001,4.0,1232811113\n574,2011,3.5,1232914794\n574,2012,3.5,1232914792\n574,2082,3.0,1232915123\n574,2115,3.0,1232810478\n574,2167,3.0,1232815226\n574,2174,3.5,1232810512\n574,2194,4.0,1232810750\n574,2232,3.0,1232818623\n574,2278,4.5,1232812237\n574,2324,4.0,1232815780\n574,2338,3.0,1232820235\n574,2340,3.5,1232818758\n574,2353,3.5,1232810860\n574,2378,3.0,1232914872\n574,2380,1.0,1232809462\n574,2381,2.0,1232907256\n574,2382,0.5,1232809493\n574,2383,0.5,1232809499\n574,2395,3.5,1232810904\n574,2411,3.0,1232818909\n574,2423,3.5,1232818546\n574,2539,3.0,1232914990\n574,2541,4.5,1232817395\n574,2542,4.0,1232810965\n574,2571,3.5,1232810265\n574,2617,3.0,1244102603\n574,2628,3.0,1232810080\n574,2683,2.5,1232810522\n574,2706,3.0,1232810341\n574,2716,4.0,1232810355\n574,2717,4.0,1232817428\n574,2762,2.5,1232915030\n574,2806,3.5,1232809526\n574,2858,5.0,1232810317\n574,2918,4.5,1232810514\n574,2953,3.0,1232914928\n574,2959,4.5,1232811378\n574,3000,3.0,1232914867\n574,3052,3.5,1232810604\n574,3082,2.5,1232915008\n574,3114,3.5,1232914696\n574,3176,4.0,1232914570\n574,3257,3.0,1232914970\n574,3273,2.5,1232915039\n574,3452,3.0,1232914859\n574,3489,4.0,1232817141\n574,3617,3.0,1232914861\n574,3623,3.5,1232810463\n574,3683,4.5,1232812121\n574,3697,3.5,1232817836\n574,3698,2.5,1232809313\n574,3745,3.0,1232914816\n574,3785,3.0,1232914851\n574,3793,3.0,1232810109\n574,3825,3.5,1232819007\n574,3863,2.5,1232815503\n574,3948,4.0,1232812254\n574,4011,4.0,1232810642\n574,4015,3.0,1232818510\n574,4022,3.5,1232810274\n574,4027,3.5,1232810428\n574,4034,4.5,1232810294\n574,4084,3.0,1232914974\n574,4085,4.0,1232811005\n574,4226,3.5,1232810170\n574,4306,3.0,1232914843\n574,4369,3.0,1232817099\n574,4388,2.5,1232915043\n574,4448,3.5,1232812243\n574,4643,3.0,1232811059\n574,4701,2.5,1232915046\n574,4734,3.0,1232914914\n574,4816,3.5,1232817095\n574,4881,3.5,1232812107\n574,4886,4.0,1232815868\n574,4963,3.5,1232810219\n574,4979,4.0,1232810546\n574,4993,4.0,1232810530\n574,5151,3.0,1232820594\n574,5218,3.5,1232810761\n574,5254,3.0,1232914972\n574,5349,3.0,1232914839\n574,5378,3.0,1232810303\n574,5400,2.5,1232809413\n574,5418,4.0,1232810314\n574,5419,2.5,1232915040\n574,5459,3.0,1232811068\n574,5481,2.0,1232811082\n574,5507,3.0,1232914809\n574,5541,3.0,1232914926\n574,5618,3.0,1232914837\n574,5872,3.0,1232817121\n574,5944,3.5,1232818572\n574,5952,3.5,1232815826\n574,5956,3.5,1232915077\n574,6016,4.5,1232809901\n574,6157,3.0,1232914956\n574,6333,3.0,1232810227\n574,6365,2.5,1232810174\n574,6373,3.0,1232810891\n574,6377,4.0,1232810495\n574,6378,3.5,1232810644\n574,6440,3.5,1232812095\n574,6537,3.0,1232810765\n574,6539,3.5,1232810203\n574,6548,3.0,1232914987\n574,6586,3.0,1232819109\n574,6595,3.0,1232914853\n574,6711,4.5,1232811825\n574,6870,4.5,1232810882\n574,6874,4.0,1232812322\n574,6881,4.0,1244102558\n574,6888,2.5,1232915041\n574,7090,3.5,1232810917\n574,7137,4.0,1232820496\n574,7153,3.5,1232815953\n574,7173,3.0,1232819201\n574,7293,3.5,1232914803\n574,7317,3.0,1232820803\n574,7346,3.5,1232820521\n574,7361,3.5,1232810205\n574,7373,4.0,1232815355\n574,7438,4.0,1232810215\n574,7444,3.0,1232914991\n574,7451,3.5,1232914725\n574,8360,2.5,1232915036\n574,8528,3.5,1232815386\n574,8529,3.5,1232815415\n574,8533,4.5,1245604448\n574,8636,2.5,1232810167\n574,8638,4.0,1232809973\n574,8644,3.0,1232914921\n574,8665,4.0,1232810348\n574,8784,4.5,1232812507\n574,8798,4.5,1232810919\n574,8807,4.0,1232817972\n574,8874,3.5,1232810632\n574,8961,3.5,1232810156\n574,8981,4.5,1232812509\n574,8983,3.5,1232817281\n574,8984,3.0,1232914878\n574,27611,4.0,1232915239\n574,30707,4.0,1244102568\n574,30825,3.5,1232812255\n574,31878,3.0,1232914910\n574,32587,4.0,1232810320\n574,33166,4.0,1232810489\n574,33493,3.5,1232810221\n574,33615,3.5,1234564083\n574,33679,3.5,1232810989\n574,33794,3.5,1232810312\n574,34162,3.5,1245604068\n574,36529,4.5,1232815222\n574,38061,4.0,1232815448\n574,38499,4.5,1232813518\n574,40583,4.0,1232914574\n574,40819,4.5,1232815801\n574,41285,4.0,1246141621\n574,44022,3.0,1232818439\n574,44191,4.0,1232810150\n574,44665,3.0,1232809430\n574,45186,4.0,1232817344\n574,45499,2.5,1232914998\n574,45517,4.0,1232815444\n574,45728,3.5,1232817903\n574,46337,2.0,1232811564\n574,46578,4.5,1232810243\n574,47044,3.5,1232812776\n574,47200,3.5,1232914765\n574,48516,4.5,1232810136\n574,48774,3.5,1232914771\n574,48780,3.5,1232810421\n574,49272,4.0,1232810087\n574,49530,4.0,1232810927\n574,50872,4.0,1232810812\n574,51255,3.5,1232810517\n574,51540,4.0,1232815408\n574,52281,3.0,1232812305\n574,52328,3.5,1232818415\n574,52722,2.5,1232811063\n574,53322,3.0,1232812049\n574,53996,3.0,1232914815\n574,54259,3.5,1232812410\n574,54286,4.0,1232914664\n574,54503,4.0,1232915180\n574,54997,4.0,1232811058\n574,55052,4.0,1232817312\n574,55118,4.0,1232813436\n574,55247,4.5,1232813444\n574,55269,3.5,1232817524\n574,55276,4.0,1232914589\n574,55290,4.0,1232813362\n574,55765,4.0,1232811019\n574,55805,4.0,1232819217\n574,55820,4.5,1232810402\n574,56152,3.5,1232809638\n574,56367,4.5,1232914522\n574,56782,4.5,1232810855\n574,56788,4.0,1232914660\n574,56921,3.5,1232809970\n574,57640,4.0,1232813685\n574,57669,4.5,1232813441\n574,58295,3.5,1232914785\n574,58559,4.0,1232809909\n574,58998,4.0,1232914635\n574,59315,4.0,1233441492\n574,59369,4.0,1233586784\n574,59784,4.0,1232914491\n574,60069,4.0,1232810370\n574,60072,3.5,1232816438\n574,60074,3.5,1232813694\n574,60950,3.5,1232877553\n574,61024,4.0,1232811573\n574,61132,3.5,1232915338\n574,61323,3.5,1232811577\n574,62344,4.0,1242077078\n574,62434,4.0,1232812882\n574,62999,3.5,1234564085\n574,63082,4.0,1241984052\n574,63113,3.0,1232914865\n574,63131,3.5,1241983855\n574,64614,4.0,1247347819\n574,68358,4.0,1244102540\n575,1,3.0,1012595781\n575,2,4.0,1012598088\n575,7,4.0,1012593981\n575,11,3.0,1012593826\n575,17,5.0,1012593374\n575,28,5.0,1012593423\n575,34,5.0,1012595891\n575,36,3.0,1012604566\n575,39,3.0,1012596049\n575,48,2.0,1012594230\n575,57,3.0,1012606184\n575,62,3.0,1012605059\n575,107,4.0,1012594949\n575,112,4.0,1012598425\n575,148,4.0,1012605106\n575,153,4.0,1012609130\n575,185,2.0,1012607558\n575,207,4.0,1012594088\n575,224,4.0,1018056908\n575,236,3.0,1012593961\n575,237,2.0,1012596984\n575,252,3.0,1012593961\n575,260,5.0,1018057899\n575,261,4.0,1012605465\n575,276,3.0,1018057457\n575,282,3.0,1012606205\n575,303,3.0,1018057676\n575,316,2.0,1018057899\n575,317,3.0,1012596653\n575,318,4.0,1012598899\n575,329,5.0,1018057867\n575,337,3.0,1012604674\n575,339,5.0,1012593894\n575,349,3.0,1012597737\n575,350,3.0,1012606053\n575,351,3.0,1018056791\n575,355,1.0,1018057025\n575,356,2.0,1012596248\n575,357,2.0,1012593616\n575,361,4.0,1012605731\n575,364,3.0,1012594819\n575,377,4.0,1018057832\n575,423,3.0,1012598440\n575,432,2.0,1018056749\n575,440,4.0,1012596375\n575,457,5.0,1018057072\n575,468,4.0,1018056955\n575,490,4.0,1012592163\n575,491,4.0,1012605972\n575,494,4.0,1012598425\n575,497,5.0,1012593579\n575,500,4.0,1012596768\n575,509,3.0,1012593497\n575,515,5.0,1012605299\n575,516,3.0,1012606112\n575,539,3.0,1012593690\n575,541,4.0,1018059066\n575,543,2.0,1018059818\n575,587,2.0,1012596868\n575,588,4.0,1012594819\n575,590,3.0,1012594600\n575,592,3.0,1012597667\n575,594,3.0,1012594748\n575,595,5.0,1012594766\n575,596,4.0,1012606799\n575,608,4.0,1018056990\n575,613,4.0,1012594056\n575,700,4.0,1018056523\n575,708,2.0,1012593894\n575,750,5.0,1018056909\n575,765,2.0,1012606437\n575,830,3.0,1012597024\n575,838,5.0,1018056955\n575,848,4.0,1012605150\n575,861,4.0,1012607272\n575,898,5.0,1012593423\n575,899,5.0,1012593307\n575,900,5.0,1012594766\n575,901,4.0,1012594925\n575,902,3.0,1012593334\n575,905,4.0,1012595762\n575,907,4.0,1012593754\n575,908,4.0,1012592127\n575,909,3.0,1018059066\n575,910,5.0,1012595721\n575,911,4.0,1012593636\n575,912,5.0,1012593307\n575,913,5.0,1012593062\n575,914,4.0,1012593423\n575,915,4.0,1018059588\n575,916,5.0,1012593307\n575,918,4.0,1012594748\n575,919,4.0,1012594748\n575,920,4.0,1012592163\n575,921,3.0,1012596017\n575,924,2.0,1018060119\n575,928,4.0,1018057676\n575,930,4.0,1012593424\n575,932,5.0,1018059772\n575,933,4.0,1012593497\n575,935,3.0,1012594876\n575,937,3.0,1012593961\n575,938,3.0,1012594794\n575,940,5.0,1018060271\n575,941,4.0,1012597684\n575,942,4.0,1012595064\n575,943,3.0,1018057102\n575,945,5.0,1012593334\n575,947,3.0,1012595781\n575,948,3.0,1012604878\n575,952,3.0,1012597648\n575,953,5.0,1012598971\n575,954,4.0,1012604449\n575,963,3.0,1012594925\n575,964,3.0,1012594627\n575,969,5.0,1012593519\n575,971,4.0,1018059392\n575,991,4.0,1012605797\n575,994,5.0,1012599066\n575,1007,1.0,1018056552\n575,1009,3.0,1012598076\n575,1014,2.0,1018057638\n575,1022,4.0,1012594848\n575,1027,3.0,1012606184\n575,1028,2.0,1012594819\n575,1029,4.0,1018056909\n575,1031,3.0,1018056629\n575,1032,4.0,1012606819\n575,1035,2.0,1012594794\n575,1036,4.0,1012598183\n575,1042,3.0,1012596357\n575,1049,4.0,1012597810\n575,1066,5.0,1012593616\n575,1073,4.0,1012595850\n575,1077,4.0,1018057794\n575,1079,3.0,1012595941\n575,1080,4.0,1012595827\n575,1081,2.0,1018058033\n575,1082,3.0,1012604762\n575,1083,3.0,1012594900\n575,1084,2.0,1012598699\n575,1088,3.0,1012594149\n575,1090,3.0,1012604530\n575,1095,3.0,1012604566\n575,1113,3.0,1012597024\n575,1124,3.0,1012605465\n575,1127,3.0,1012592859\n575,1135,2.0,1018057638\n575,1136,5.0,1018059066\n575,1171,4.0,1012595850\n575,1193,3.0,1012604329\n575,1196,4.0,1012597606\n575,1197,5.0,1012593446\n575,1198,5.0,1012597606\n575,1201,5.0,1012594455\n575,1203,4.0,1012604509\n575,1207,5.0,1012604297\n575,1210,4.0,1012592188\n575,1220,5.0,1012594794\n575,1225,3.0,1012598956\n575,1226,4.0,1012595762\n575,1230,4.0,1012593307\n575,1231,3.0,1012604762\n575,1234,4.0,1012595736\n575,1235,5.0,1012595705\n575,1237,4.0,1012604546\n575,1244,4.0,1012604566\n575,1246,3.0,1012605042\n575,1250,3.0,1012599046\n575,1252,4.0,1012595064\n575,1254,5.0,1012597623\n575,1256,5.0,1012595762\n575,1262,4.0,1012597606\n575,1265,2.0,1012593334\n575,1269,4.0,1012595493\n575,1270,3.0,1012595891\n575,1271,5.0,1012605331\n575,1272,3.0,1012604464\n575,1276,5.0,1018056791\n575,1277,4.0,1012593446\n575,1278,4.0,1012595869\n575,1282,5.0,1012594819\n575,1284,4.0,1012595493\n575,1286,4.0,1012593938\n575,1287,3.0,1018056629\n575,1291,3.0,1012598207\n575,1293,4.0,1012604686\n575,1302,5.0,1018056990\n575,1304,4.0,1012594537\n575,1307,2.0,1018058059\n575,1339,4.0,1012594057\n575,1353,3.0,1012594057\n575,1356,5.0,1018057867\n575,1357,4.0,1012593519\n575,1367,2.0,1012596919\n575,1371,1.0,1018057867\n575,1374,4.0,1018057867\n575,1380,3.0,1012594900\n575,1387,4.0,1012598152\n575,1391,1.0,1012597049\n575,1395,1.0,1018057964\n575,1401,3.0,1012605629\n575,1408,3.0,1012593719\n575,1409,2.0,1012594106\n575,1411,5.0,1012604741\n575,1429,4.0,1012598455\n575,1441,4.0,1012596494\n575,1459,5.0,1012595616\n575,1479,2.0,1012594286\n575,1480,2.0,1012605645\n575,1500,5.0,1012595941\n575,1555,4.0,1012598916\n575,1569,2.0,1012593894\n575,1580,1.0,1012596248\n575,1584,2.0,1012604971\n575,1597,4.0,1012594028\n575,1614,5.0,1012596768\n575,1617,3.0,1018057321\n575,1619,3.0,1012605372\n575,1621,3.0,1012606151\n575,1626,1.0,1018056990\n575,1633,4.0,1012604993\n575,1641,3.0,1012596082\n575,1663,4.0,1012596068\n575,1674,5.0,1012593636\n575,1688,3.0,1012595000\n575,1704,3.0,1012604937\n575,1711,3.0,1012595616\n575,1713,3.0,1012596512\n575,1721,1.0,1018057964\n575,1784,5.0,1012596357\n575,1835,2.0,1018056749\n575,1848,2.0,1012596801\n575,1894,3.0,1012594125\n575,1907,3.0,1012606819\n575,1923,1.0,1012596215\n575,1928,3.0,1012594455\n575,1937,3.0,1012596314\n575,1943,3.0,1012606205\n575,1945,4.0,1012598665\n575,1947,3.0,1012593374\n575,1948,5.0,1012596168\n575,1949,3.0,1012599026\n575,1950,4.0,1012604530\n575,1951,3.0,1018060716\n575,1952,2.0,1012598956\n575,1954,3.0,1012598207\n575,1955,3.0,1012604914\n575,1956,4.0,1012604864\n575,1957,5.0,1012604786\n575,1959,3.0,1012593099\n575,1961,4.0,1012604509\n575,1968,3.0,1012596017\n575,2015,3.0,1012596601\n575,2017,2.0,1012595000\n575,2018,3.0,1012606799\n575,2040,3.0,1012597161\n575,2043,3.0,1012597831\n575,2069,5.0,1012605207\n575,2078,4.0,1012595998\n575,2080,5.0,1012593579\n575,2081,3.0,1012593754\n575,2082,2.0,1012597061\n575,2083,5.0,1012594925\n575,2085,4.0,1012606837\n575,2087,3.0,1018060716\n575,2088,4.0,1018057639\n575,2096,4.0,1012594848\n575,2099,3.0,1012594848\n575,2100,3.0,1012593675\n575,2105,4.0,1012597811\n575,2114,3.0,1012605260\n575,2115,2.0,1012598274\n575,2118,2.0,1012607321\n575,2120,3.0,1012605761\n575,2132,2.0,1018059152\n575,2136,3.0,1012596478\n575,2146,3.0,1012594057\n575,2150,4.0,1012596332\n575,2174,2.0,1012596332\n575,2176,2.0,1012607201\n575,2184,2.0,1018058000\n575,2193,5.0,1012597751\n575,2245,4.0,1012596389\n575,2247,2.0,1012596527\n575,2253,4.0,1012598101\n575,2273,4.0,1012607378\n575,2278,2.0,1012598312\n575,2287,1.0,1018057933\n575,2291,4.0,1012593579\n575,2300,5.0,1012595912\n575,2303,3.0,1018060690\n575,2322,2.0,1012597953\n575,2333,3.0,1018058460\n575,2352,4.0,1012595941\n575,2355,4.0,1012592927\n575,2359,5.0,1012595998\n575,2371,3.0,1012596446\n575,2392,1.0,1018057262\n575,2398,4.0,1012598993\n575,2400,2.0,1018057639\n575,2406,4.0,1012593690\n575,2413,1.0,1012596734\n575,2431,2.0,1012597383\n575,2467,2.0,1018060146\n575,2470,3.0,1012592163\n575,2471,2.0,1012597275\n575,2478,3.0,1012594648\n575,2496,4.0,1012594006\n575,2520,3.0,1012606027\n575,2521,2.0,1012606578\n575,2524,2.0,1018057964\n575,2528,3.0,1012597763\n575,2529,3.0,1012598251\n575,2539,3.0,1012596479\n575,2565,3.0,1012594848\n575,2612,2.0,1018058939\n575,2616,3.0,1012598494\n575,2617,2.0,1012597850\n575,2640,4.0,1012598274\n575,2641,4.0,1012597737\n575,2670,4.0,1012593146\n575,2690,5.0,1018058482\n575,2701,2.0,1018058688\n575,2713,3.0,1018058497\n575,2716,5.0,1012593003\n575,2724,4.0,1012593146\n575,2728,3.0,1012604429\n575,2746,3.0,1018060733\n575,2749,4.0,1018060206\n575,2762,4.0,1018057794\n575,2779,5.0,1012596257\n575,2797,4.0,1012595964\n575,2802,2.0,1012594028\n575,2804,5.0,1012595705\n575,2819,3.0,1012607105\n575,2857,3.0,1012594876\n575,2863,3.0,1018057201\n575,2875,3.0,1012594165\n575,2882,4.0,1012593044\n575,2889,4.0,1012596701\n575,2918,4.0,1012595964\n575,2919,3.0,1012593540\n575,2921,3.0,1012594573\n575,2940,2.0,1012608144\n575,2941,4.0,1012594876\n575,2944,3.0,1012598251\n575,2946,3.0,1018060733\n575,2968,5.0,1012597696\n575,2973,5.0,1012595912\n575,2987,5.0,1012593226\n575,3011,2.0,1018058846\n575,3025,3.0,1018060067\n575,3033,2.0,1012596801\n575,3035,5.0,1012596017\n575,3037,4.0,1012594573\n575,3039,1.0,1018058000\n575,3044,5.0,1012595534\n575,3045,3.0,1012596668\n575,3052,3.0,1012596299\n575,3061,4.0,1012596460\n575,3071,4.0,1012604705\n575,3072,4.0,1012596129\n575,3074,3.0,1012594627\n575,3087,4.0,1012596446\n575,3088,5.0,1018057201\n575,3093,2.0,1012594600\n575,3095,4.0,1012599066\n575,3098,5.0,1012604479\n575,3108,5.0,1012593520\n575,3111,5.0,1018057605\n575,3114,5.0,1012593212\n575,3156,2.0,1012606417\n575,3157,5.0,1012593193\n575,3175,5.0,1018057072\n575,3196,4.0,1012604409\n575,3244,4.0,1012596068\n575,3247,2.0,1012596938\n575,3255,5.0,1012596375\n575,3256,3.0,1012598324\n575,3260,5.0,1012604817\n575,3269,2.0,1018057025\n575,3284,5.0,1012593616\n575,3330,3.0,1012604971\n575,3334,4.0,1012598699\n575,3341,4.0,1018059499\n575,3359,5.0,1012604719\n575,3360,4.0,1012604705\n575,3361,3.0,1012595869\n575,3363,4.0,1012605027\n575,3365,5.0,1012594455\n575,3368,5.0,1012593867\n575,3379,4.0,1012604660\n575,3405,3.0,1012605182\n575,3417,3.0,1012597648\n575,3418,3.0,1012598251\n575,3421,3.0,1012595812\n575,3427,2.0,1012598790\n575,3430,1.0,1018056865\n575,3445,2.0,1012595581\n575,3448,3.0,1012596168\n575,3451,4.0,1012596112\n575,3469,4.0,1012604546\n575,3479,2.0,1012593754\n575,3487,3.0,1012594627\n575,3489,2.0,1012597904\n575,3494,2.0,1018058000\n575,3504,2.0,1012598942\n575,3507,4.0,1012595891\n575,3510,4.0,1012593003\n575,3516,3.0,1018056630\n575,3519,4.0,1012607953\n575,3524,3.0,1012593908\n575,3545,2.0,1012607870\n575,3546,2.0,1012605602\n575,3548,3.0,1012595941\n575,3549,4.0,1012594766\n575,3552,4.0,1012596098\n575,3591,4.0,1012596701\n575,3599,4.0,1012594876\n575,3600,4.0,1012595000\n575,3602,2.0,1018057072\n575,3604,3.0,1012594949\n575,3605,2.0,1018060774\n575,3606,5.0,1012593099\n575,3638,2.0,1012598521\n575,3654,3.0,1018057161\n575,3671,4.0,1012594537\n575,3675,5.0,1012594925\n575,3682,2.0,1018057402\n575,3684,5.0,1012605027\n575,3699,3.0,1012593675\n575,3701,3.0,1012598826\n575,3724,4.0,1012605220\n575,3735,3.0,1012604606\n575,3740,3.0,1012598337\n575,3742,3.0,1012605150\n575,3754,1.0,1012592859\n575,3769,3.0,1012598351\n575,3793,1.0,1018058696\n575,3801,3.0,1012595508\n575,3806,3.0,1012594700\n575,3827,3.0,1012598494\n575,3836,5.0,1012596068\n575,3844,3.0,1012605713\n575,3870,3.0,1012605559\n575,3871,4.0,1012594573\n575,3873,4.0,1012594600\n575,3957,1.0,1012606302\n575,3959,3.0,1018060432\n575,3963,3.0,1012594976\n575,3969,4.0,1012605988\n575,3985,3.0,1012606028\n575,3996,3.0,1018059092\n575,4010,2.0,1012596938\n575,4019,4.0,1012604834\n575,4039,3.0,1012594976\n575,4042,2.0,1012605559\n575,4046,5.0,1012604449\n575,4062,3.0,1012593754\n575,4080,3.0,1012596984\n575,4085,2.0,1018060318\n575,4178,4.0,1012605075\n575,4184,3.0,1012596215\n575,4186,4.0,1012593616\n575,4187,4.0,1012604509\n575,4188,3.0,1012594848\n575,4189,4.0,1012605242\n575,4212,3.0,1012598813\n575,4220,3.0,1012595998\n575,4263,4.0,1012604530\n575,4274,2.0,1012606205\n575,4291,4.0,1012596653\n575,4292,3.0,1012604971\n575,4296,2.0,1012606302\n575,4306,5.0,1012598043\n575,4319,3.0,1018060044\n575,4324,3.0,1012594700\n575,4326,3.0,1012604660\n575,4329,3.0,1012594537\n575,4337,3.0,1012593923\n575,4356,4.0,1012593867\n575,4357,4.0,1012596146\n575,4360,3.0,1018060716\n575,4361,5.0,1018057965\n575,4394,1.0,1018056584\n575,4401,4.0,1012596653\n575,4406,4.0,1012594455\n575,4411,3.0,1012594648\n575,4495,3.0,1012593497\n575,4506,3.0,1012595600\n575,4557,3.0,1018058033\n575,4572,2.0,1012598584\n575,4603,3.0,1018057201\n575,4610,3.0,1012595600\n575,4623,3.0,1012596168\n575,4639,2.0,1018056493\n575,4654,1.0,1012606331\n575,4664,3.0,1012595977\n575,4700,3.0,1012597255\n575,4704,4.0,1012592188\n575,4709,4.0,1012594573\n575,4710,3.0,1012594456\n575,4787,4.0,1012605106\n575,4795,4.0,1012595941\n575,4798,4.0,1012593497\n575,4799,5.0,1012596129\n575,4802,5.0,1012592163\n575,4803,2.0,1012607241\n575,4804,3.0,1012596229\n575,4835,4.0,1012605331\n575,4836,3.0,1012593579\n575,4854,2.0,1018060810\n575,4855,2.0,1012598183\n575,4857,3.0,1018060690\n575,4896,5.0,1012597648\n575,4912,3.0,1012605645\n575,4925,1.0,1012596749\n575,4936,4.0,1012594900\n575,4969,3.0,1012595064\n575,4993,5.0,1012597606\n575,5008,4.0,1012595493\n575,5021,3.0,1018060177\n575,5034,5.0,1012593616\n575,5039,2.0,1012598312\n575,5048,3.0,1018061705\n575,5049,2.0,1012592408\n575,5057,2.0,1018060067\n575,5060,3.0,1012607870\n575,5063,2.0,1018060044\n575,5079,3.0,1012592355\n575,5167,4.0,1018059066\n575,5168,4.0,1018059651\n575,5187,4.0,1018059111\n575,5214,4.0,1018058300\n575,5227,1.0,1018058280\n575,5230,4.0,1018058280\n575,5231,4.0,1018058280\n575,5232,4.0,1018058258\n575,5233,4.0,1018058258\n575,5234,4.0,1018058258\n575,5247,1.0,1018058240\n575,5250,3.0,1018058240\n575,5292,3.0,1018058158\n575,5301,5.0,1018058158\n575,5303,2.0,1018058137\n575,5308,3.0,1018058137\n576,260,4.0,1005451404\n576,435,1.0,1005426349\n576,480,4.0,1005451445\n576,541,4.0,1005449771\n576,552,3.0,1005426498\n576,924,4.0,1005450435\n576,1036,3.0,1005450706\n576,1175,4.0,1005451464\n576,1196,4.0,1005426383\n576,1199,3.0,1005451429\n576,1206,4.0,1005426731\n576,1210,4.0,1005426321\n576,1249,4.0,1005450706\n576,1270,4.0,1005426519\n576,1289,4.0,1005450536\n576,1293,5.0,1005426731\n576,1537,5.0,1005451650\n576,1580,4.0,1005451480\n576,1797,4.0,1005426654\n576,1900,4.0,1005450919\n576,1960,4.0,1005426383\n576,2006,4.0,1005426749\n576,2336,4.0,1005451001\n576,2357,4.0,1005450890\n576,2571,4.0,1005450668\n576,2677,5.0,1005450567\n576,2739,4.0,1005426448\n576,2858,5.0,1005450819\n576,2985,3.0,1005426820\n576,3101,2.0,1005426349\n576,3386,5.0,1005450452\n576,3471,4.0,1005451429\n576,3545,5.0,1005426349\n576,3996,4.0,1005426698\n576,4034,2.0,1005449880\n576,4445,3.0,1005426654\n576,4453,3.0,1005426654\n576,4643,3.0,1005426448\n577,1,5.0,1111475159\n577,6,4.0,1111475446\n577,10,3.5,1111475285\n577,17,5.0,1111475431\n577,22,3.0,1111474816\n577,29,5.0,1111476835\n577,32,4.5,1111475206\n577,34,5.0,1111475261\n577,47,4.0,1111475257\n577,48,3.5,1111474754\n577,95,3.5,1111475421\n577,110,4.5,1111475136\n577,111,5.0,1111475492\n577,150,4.5,1111475130\n577,158,1.5,1111474812\n577,161,4.5,1111475331\n577,165,4.5,1111475226\n577,173,4.0,1112854685\n577,208,2.5,1111475419\n577,231,3.5,1111475287\n577,236,4.0,1112854641\n577,247,4.5,1111475786\n577,260,4.5,1111475138\n577,296,5.0,1111475105\n577,316,3.5,1111475236\n577,318,4.5,1111475134\n577,329,4.0,1111475269\n577,342,4.0,1111474751\n577,349,3.5,1111475214\n577,356,4.0,1111475114\n577,357,4.5,1111475347\n577,364,4.0,1111475259\n577,367,3.0,1111475315\n577,368,4.0,1111551385\n577,377,3.5,1111475211\n577,380,4.5,1111475142\n577,434,3.5,1111475327\n577,440,4.0,1111475488\n577,454,3.5,1111475346\n577,457,4.5,1111475122\n577,480,4.0,1111475117\n577,497,5.0,1111550558\n577,500,3.5,1111475291\n577,520,2.5,1111474830\n577,541,5.0,1111475487\n577,585,4.0,1111550561\n577,586,3.5,1111550572\n577,587,3.0,1111475320\n577,588,4.0,1111475203\n577,589,4.5,1111475145\n577,590,3.5,1111475129\n577,593,4.0,1111475109\n577,595,4.5,1111475230\n577,596,4.0,1111474825\n577,597,3.0,1111475282\n577,648,3.5,1111475220\n577,736,3.0,1111475256\n577,780,3.5,1111475148\n577,786,4.0,1112853847\n577,849,3.5,1111550904\n577,858,5.0,1111475278\n577,902,5.0,1111550908\n577,912,5.0,1111550563\n577,919,4.5,1111476558\n577,953,5.0,1111476452\n577,1029,4.5,1111551075\n577,1036,5.0,1111477126\n577,1073,4.0,1111475348\n577,1079,5.0,1111551518\n577,1090,3.5,1111474706\n577,1097,5.0,1111475317\n577,1126,3.5,1111475819\n577,1127,4.0,1111476748\n577,1131,5.0,1111550861\n577,1132,5.0,1111550870\n577,1136,5.0,1111475494\n577,1148,5.0,1111474870\n577,1179,4.0,1111475576\n577,1188,5.0,1111551099\n577,1196,5.0,1111475239\n577,1197,5.0,1111475427\n577,1198,5.0,1111475263\n577,1199,5.0,1111551470\n577,1200,5.0,1112853860\n577,1203,5.0,1111476456\n577,1204,5.0,1111474821\n577,1210,4.5,1111475201\n577,1213,4.5,1111550502\n577,1215,5.0,1111476822\n577,1222,5.0,1111551128\n577,1223,5.0,1111550866\n577,1234,4.5,1111476482\n577,1240,5.0,1111475442\n577,1242,5.0,1111477138\n577,1259,5.0,1111476702\n577,1262,5.0,1111476318\n577,1263,5.0,1111550856\n577,1265,4.5,1111475470\n577,1266,4.0,1111474763\n577,1270,5.0,1111475271\n577,1274,5.0,1111476819\n577,1275,5.0,1111476749\n577,1282,5.0,1111476598\n577,1287,5.0,1111476684\n577,1290,4.5,1111550876\n577,1291,5.0,1111475489\n577,1302,4.0,1111551125\n577,1307,4.5,1127368620\n577,1350,4.0,1127368614\n577,1356,4.5,1111551108\n577,1370,4.5,1111550518\n577,1374,5.0,1111476732\n577,1378,4.0,1111550815\n577,1380,4.0,1112853777\n577,1408,3.0,1111474848\n577,1425,4.0,1111551525\n577,1485,4.0,1111551149\n577,1527,5.0,1111551437\n577,1588,4.0,1111551529\n577,1597,4.0,1111551141\n577,1610,5.0,1111550506\n577,1641,4.5,1127368635\n577,1674,5.0,1111476440\n577,1676,4.0,1111551152\n577,1682,5.0,1111550522\n577,1702,3.5,1111475874\n577,1704,5.0,1111551157\n577,1707,1.5,1111551899\n577,1721,3.5,1111475437\n577,1748,5.0,1111475520\n577,1907,4.5,1127368655\n577,1920,4.0,1111475915\n577,1954,5.0,1111551182\n577,1955,4.5,1127368642\n577,1957,5.0,1111550817\n577,1960,4.5,1127368648\n577,1967,5.0,1111475776\n577,2000,4.5,1127368650\n577,2001,3.5,1111474851\n577,2005,4.5,1111475721\n577,2021,4.0,1111475980\n577,2028,4.5,1111475323\n577,2053,2.5,1111551972\n577,2054,3.5,1111474818\n577,2078,5.0,1111550822\n577,2081,4.5,1111474854\n577,2087,4.5,1111475705\n577,2105,4.0,1111475982\n577,2116,4.0,1111550776\n577,2137,4.5,1111476604\n577,2138,4.5,1111475711\n577,2140,4.5,1111475760\n577,2161,4.5,1111550782\n577,2174,4.5,1111475757\n577,2194,4.5,1127368660\n577,2253,3.5,1111475871\n577,2288,5.0,1111550770\n577,2353,3.5,1111474840\n577,2355,4.5,1127368675\n577,2380,1.5,1111551946\n577,2382,0.5,1111551906\n577,2396,4.5,1111475477\n577,2405,4.0,1111550797\n577,2470,4.0,1111550512\n577,2571,4.5,1111475335\n577,2617,4.0,1111550493\n577,2628,4.0,1111475472\n577,2692,5.0,1111550489\n577,2716,4.5,1111475496\n577,2728,5.0,1111476399\n577,2762,5.0,1111475439\n577,2788,5.0,1111476460\n577,2797,4.5,1111475686\n577,2858,5.0,1111475276\n577,2872,5.0,1111475708\n577,2918,5.0,1111476325\n577,2942,4.0,1111550730\n577,2947,5.0,1111550743\n577,2968,5.0,1111475660\n577,2987,4.5,1111475566\n577,2991,4.5,1111550734\n577,3000,5.0,1111476720\n577,3034,5.0,1111476546\n577,3062,5.0,1111550723\n577,3101,4.0,1111550497\n577,3105,4.5,1111550679\n577,3108,5.0,1111550701\n577,3114,5.0,1111476316\n577,3174,4.5,1111551313\n577,3175,5.0,1111476814\n577,3247,4.5,1111550675\n577,3252,4.5,1111550663\n577,3396,4.5,1111476555\n577,3479,4.5,1111475721\n577,3489,2.0,1111475939\n577,3505,5.0,1111550685\n577,3526,5.0,1111550662\n577,3552,5.0,1111550628\n577,3654,5.0,1111476391\n577,3686,4.5,1111550640\n577,3698,4.0,1111550646\n577,3702,5.0,1111551371\n577,3723,4.5,1111551379\n577,3751,5.0,1111476592\n577,3977,4.0,1111550499\n577,3996,5.0,1111476682\n577,3997,3.0,1111475817\n577,4016,5.0,1111550650\n577,4027,5.0,1111476748\n577,4275,4.0,1111475955\n577,4299,4.0,1111550630\n577,4306,5.0,1111475674\n577,4467,5.0,1111475779\n577,4571,4.0,1111475772\n577,4673,3.0,1111551024\n577,4776,4.0,1111551033\n577,4886,5.0,1111477112\n577,4896,4.5,1111475690\n577,4911,4.0,1111551486\n577,4915,3.5,1111475908\n577,4941,4.0,1111475950\n577,4963,4.5,1111550525\n577,4981,4.5,1111551522\n577,4993,5.0,1111475671\n577,5040,4.0,1111475906\n577,5146,4.5,1111475753\n577,5152,5.0,1111551377\n577,5182,3.5,1111475926\n577,5218,4.5,1118023303\n577,5349,4.5,1111476691\n577,5378,4.5,1111550593\n577,5444,5.0,1111476589\n577,5502,4.0,1111551392\n577,5540,4.5,1111475979\n577,5597,1.0,1111551889\n577,5618,5.0,1111475644\n577,5705,2.0,1111475890\n577,5816,4.5,1111475687\n577,5952,5.0,1111474857\n577,5971,5.0,1111475652\n577,6104,5.0,1111551833\n577,6333,4.5,1111476707\n577,6350,5.0,1111475647\n577,6373,4.5,1111551309\n577,6377,5.0,1111476533\n577,6405,5.0,1111476736\n577,6539,5.0,1111476327\n577,6743,5.0,1111475699\n577,6807,5.0,1111551469\n577,6936,4.5,1111475750\n577,6947,5.0,1111476730\n577,6951,2.5,1111551247\n577,7007,4.0,1111551448\n577,7045,4.5,1111475748\n577,7153,5.0,1111475667\n577,7247,4.0,1111475945\n577,7256,5.0,1111551681\n577,7355,5.0,1111551552\n577,7361,5.0,1111476454\n577,7386,5.0,1111476699\n577,7454,4.0,1111475902\n577,7569,5.0,1111476697\n577,7720,5.0,1111476320\n577,8360,5.0,1111476539\n577,8368,4.5,1111475640\n577,8387,1.0,1111551856\n577,8622,3.5,1111551742\n577,8665,5.0,1111476692\n577,8783,4.0,1111551415\n577,8949,5.0,1111476687\n577,8961,5.0,1111476312\n577,8970,5.0,1111476333\n577,26555,4.5,1112854747\n577,27721,5.0,1127368993\n577,27790,5.0,1127368939\n577,30812,4.5,1111476706\n577,32596,4.0,1120088726\n577,33004,5.0,1120088585\n577,33493,5.0,1117863966\n578,17,3.0,1418984606\n578,50,0.5,1418984412\n578,318,3.0,1418984381\n578,356,2.0,1418984486\n578,381,2.5,1418984960\n578,527,3.0,1418984384\n578,593,4.0,1418984464\n578,858,4.0,1418984467\n578,1028,4.0,1418984779\n578,1196,0.5,1418984415\n578,1198,1.0,1418984393\n578,1246,3.0,1418984521\n578,1259,4.0,1418984474\n578,1262,0.5,1418984409\n578,2028,0.5,1418984418\n578,2324,4.0,1418984387\n578,2959,3.5,1418984545\n578,3545,1.5,1418984662\n578,3949,2.5,1418984571\n578,5014,3.0,1418984950\n578,6377,4.0,1418984966\n578,6870,3.0,1418984676\n578,7154,3.0,1418984891\n578,8533,3.0,1418984717\n578,30707,2.5,1418984549\n578,33660,3.0,1418984529\n578,63082,5.0,1418984551\n578,63876,2.5,1418984658\n578,74458,5.0,1418984633\n578,79132,2.0,1418984505\n578,89388,0.5,1418985038\n578,90376,2.0,1418985032\n578,91500,3.0,1418985052\n578,92259,4.0,1418984470\n579,65,0.5,1325550979\n579,88,0.5,1325550977\n579,1013,2.0,1325551011\n579,1687,0.5,1325550995\n579,1892,0.5,1325551013\n579,2082,0.5,1325550999\n579,2139,0.5,1325551004\n579,2141,0.5,1325551002\n579,2193,0.5,1325550911\n579,2402,0.5,1325550987\n579,2571,3.0,1325551184\n579,2664,0.5,1325551015\n579,2694,2.0,1325550929\n579,3298,0.5,1325551007\n579,3827,0.5,1325550972\n579,3991,2.5,1325551081\n579,4016,0.5,1325550974\n579,4226,3.5,1325551191\n579,5015,0.5,1325550976\n579,55250,3.5,1325551085\n579,91104,4.5,1325551251\n580,1,4.0,1155616380\n580,2,3.5,1165900696\n580,6,3.5,1156473327\n580,12,3.0,1276095731\n580,16,3.5,1167158213\n580,19,1.5,1167157922\n580,21,3.0,1167157502\n580,22,1.5,1167161268\n580,24,2.5,1167162836\n580,29,4.0,1155618177\n580,32,4.5,1155616561\n580,39,4.0,1155875901\n580,44,2.0,1167162169\n580,47,4.0,1155616730\n580,48,2.5,1167159829\n580,50,4.0,1155616536\n580,52,2.5,1167161304\n580,60,3.0,1167163380\n580,69,3.5,1273518992\n580,70,2.5,1165292373\n580,85,4.0,1155485539\n580,101,4.0,1165900819\n580,104,3.0,1165900726\n580,110,4.5,1155485834\n580,111,4.5,1155485961\n580,112,3.5,1155484637\n580,141,2.5,1165899805\n580,145,2.0,1167161239\n580,147,4.5,1156127875\n580,152,3.5,1165292250\n580,153,2.0,1165899265\n580,159,4.0,1156128494\n580,160,1.5,1155484508\n580,162,3.0,1167163237\n580,164,3.0,1156127872\n580,172,2.5,1247074413\n580,173,2.5,1155484586\n580,175,3.5,1273518810\n580,180,3.0,1156127390\n580,186,1.0,1167160136\n580,193,1.5,1167163050\n580,196,3.0,1156127374\n580,203,2.0,1167163468\n580,208,2.0,1165899846\n580,216,2.5,1167162881\n580,223,2.5,1155616451\n580,231,3.0,1164328548\n580,235,3.5,1167158336\n580,249,3.5,1167163527\n580,253,3.0,1165291982\n580,260,4.0,1220561536\n580,282,2.5,1167160158\n580,288,4.5,1165900133\n580,292,3.0,1165899527\n580,293,3.0,1165900495\n580,296,4.5,1155616328\n580,316,2.5,1165899218\n580,317,1.5,1167162476\n580,318,4.0,1155616320\n580,329,2.0,1248183692\n580,337,4.0,1156128975\n580,342,3.0,1167160191\n580,344,3.0,1164328494\n580,345,2.0,1167161595\n580,353,4.0,1155484518\n580,356,3.5,1220561614\n580,357,3.5,1167157127\n580,364,3.5,1164328528\n580,367,2.5,1155484801\n580,368,1.5,1167158317\n580,370,2.5,1156128966\n580,372,4.0,1217951351\n580,377,2.5,1155616938\n580,380,2.5,1165899479\n580,407,2.0,1165292442\n580,410,2.5,1165900566\n580,412,3.5,1156127831\n580,434,2.0,1245423895\n580,435,2.5,1167158760\n580,441,4.0,1167163149\n580,442,3.5,1269895001\n580,444,3.5,1156128478\n580,454,3.0,1167157098\n580,466,3.0,1167162508\n580,480,3.0,1155616549\n580,500,3.5,1164328541\n580,502,1.5,1168658737\n580,508,2.0,1165900665\n580,520,1.5,1167159629\n580,527,4.0,1155485728\n580,538,3.0,1167163496\n580,539,1.5,1165899681\n580,540,1.5,1167163583\n580,541,4.0,1155616398\n580,551,4.0,1156127349\n580,553,4.0,1156127346\n580,555,3.5,1167159391\n580,585,3.0,1167164575\n580,587,2.5,1165899633\n580,588,2.5,1164328485\n580,589,4.5,1155616775\n580,590,4.0,1155485871\n580,592,3.5,1164328460\n580,593,4.0,1155485714\n580,594,4.0,1165900718\n580,595,3.0,1156127222\n580,596,3.5,1246469356\n580,597,3.0,1164328536\n580,608,4.5,1155616640\n580,610,3.5,1165292379\n580,616,3.5,1165291186\n580,648,2.5,1244827122\n580,653,2.0,1155484561\n580,661,4.0,1165291053\n580,671,4.0,1156127811\n580,673,1.0,1167162720\n580,674,3.5,1217951064\n580,704,2.0,1168658729\n580,708,2.5,1156128944\n580,725,2.5,1155616618\n580,733,2.5,1155616903\n580,735,3.0,1165292010\n580,736,2.0,1164328519\n580,741,3.5,1155617895\n580,750,4.5,1155616283\n580,762,1.0,1167161140\n580,778,4.5,1155485120\n580,780,3.0,1155616407\n580,785,3.5,1167160783\n580,788,3.0,1155485044\n580,802,2.0,1155485029\n580,832,2.5,1167158112\n580,849,1.5,1167163030\n580,858,5.0,1155485717\n580,861,3.0,1217951422\n580,866,2.5,1155485150\n580,880,2.5,1167163510\n580,899,4.0,1167162203\n580,902,2.5,1167161939\n580,903,3.5,1245426611\n580,905,4.0,1217950312\n580,908,4.0,1202071687\n580,912,4.0,1155485764\n580,913,3.5,1245159255\n580,919,4.0,1165899963\n580,920,2.5,1155484536\n580,923,3.0,1155484522\n580,924,3.0,1165900014\n580,940,3.0,1156127777\n580,953,3.5,1165900802\n580,968,3.0,1165291901\n580,969,3.5,1167160946\n580,1022,3.5,1167162871\n580,1025,3.5,1156127762\n580,1027,2.5,1156127756\n580,1028,3.5,1167159336\n580,1032,4.0,1165291033\n580,1033,3.5,1156127751\n580,1034,4.5,1250522647\n580,1035,3.0,1155485887\n580,1036,3.0,1165899710\n580,1059,3.5,1167161452\n580,1060,4.5,1155617960\n580,1073,3.5,1155484793\n580,1077,2.5,1167163119\n580,1079,3.5,1155616304\n580,1080,3.5,1155616736\n580,1084,3.5,1167160970\n580,1088,3.0,1167161194\n580,1089,4.0,1155616496\n580,1090,4.0,1167158352\n580,1091,3.0,1156127745\n580,1092,3.5,1155485673\n580,1093,3.5,1167163169\n580,1094,2.5,1155616876\n580,1097,4.0,1165899201\n580,1101,3.0,1165900368\n580,1120,3.5,1155485018\n580,1127,3.5,1165900541\n580,1129,2.0,1167162787\n580,1130,3.0,1165292407\n580,1136,4.0,1155616657\n580,1172,4.0,1167162822\n580,1175,4.0,1155617337\n580,1183,4.0,1155485903\n580,1186,2.5,1167163228\n580,1190,3.0,1156128413\n580,1193,4.0,1155484788\n580,1194,3.0,1156128393\n580,1196,4.0,1220561546\n580,1197,4.0,1155616622\n580,1198,3.5,1244826940\n580,1199,4.5,1155616882\n580,1200,3.5,1155616949\n580,1204,4.0,1167159343\n580,1206,4.5,1155616739\n580,1207,3.5,1167158831\n580,1208,4.5,1155616352\n580,1210,3.5,1220561547\n580,1213,3.5,1165899864\n580,1214,4.0,1155616566\n580,1215,4.5,1165291920\n580,1217,4.5,1155618021\n580,1219,3.0,1165291724\n580,1220,4.0,1155485004\n580,1221,4.0,1155485722\n580,1222,4.5,1155616241\n580,1225,3.5,1155485742\n580,1228,3.5,1155616747\n580,1230,4.0,1155484573\n580,1234,3.5,1167158363\n580,1235,3.0,1167163097\n580,1240,3.5,1155616334\n580,1241,3.0,1165292093\n580,1242,3.5,1167159816\n580,1246,3.5,1165900324\n580,1247,4.0,1155485000\n580,1249,4.0,1155618433\n580,1250,4.0,1167158815\n580,1252,4.0,1155616461\n580,1257,4.0,1155618153\n580,1258,3.5,1165900292\n580,1259,4.5,1155616832\n580,1261,4.0,1165291857\n580,1265,3.5,1155616344\n580,1266,2.5,1155484988\n580,1268,4.0,1155485402\n580,1270,3.0,1155616690\n580,1271,2.0,1167162794\n580,1272,4.0,1155485751\n580,1273,2.0,1156128371\n580,1274,4.0,1155618314\n580,1275,3.0,1155616494\n580,1281,4.0,1220646568\n580,1282,3.5,1167160410\n580,1284,4.0,1155618084\n580,1285,4.0,1167160481\n580,1288,4.0,1165900779\n580,1291,3.5,1244826932\n580,1296,4.0,1167163216\n580,1300,4.0,1199492033\n580,1304,3.0,1165900480\n580,1307,3.0,1167157198\n580,1320,3.5,1165292674\n580,1321,3.5,1165292156\n580,1333,4.0,1165291888\n580,1339,3.0,1167162076\n580,1342,3.0,1165292827\n580,1343,3.5,1155484991\n580,1347,3.0,1273517678\n580,1348,4.0,1165291739\n580,1356,2.5,1273517190\n580,1358,4.0,1167158244\n580,1367,3.0,1167162893\n580,1370,2.0,1167162521\n580,1371,2.5,1247147420\n580,1372,3.0,1245426686\n580,1373,3.0,1245158072\n580,1374,3.5,1244826709\n580,1375,3.0,1244826711\n580,1376,3.5,1245158069\n580,1377,3.5,1167159316\n580,1378,3.5,1273517822\n580,1380,3.5,1156127284\n580,1387,3.5,1155616411\n580,1391,2.5,1155616478\n580,1393,3.5,1155616356\n580,1394,4.0,1155616517\n580,1396,2.5,1167158389\n580,1405,1.5,1167162249\n580,1407,2.5,1167157850\n580,1408,3.5,1245426601\n580,1441,3.0,1167163606\n580,1464,3.0,1155485458\n580,1476,3.5,1155485385\n580,1485,3.5,1155484596\n580,1500,3.0,1167157885\n580,1513,3.0,1167161951\n580,1517,3.5,1165899664\n580,1527,3.5,1155616836\n580,1541,2.0,1156128355\n580,1544,2.5,1165900672\n580,1562,1.5,1167161829\n580,1569,2.0,1167160045\n580,1573,2.5,1155616633\n580,1580,2.5,1155616422\n580,1587,3.5,1167163489\n580,1617,4.5,1155616665\n580,1619,3.5,1273518804\n580,1625,4.0,1167162544\n580,1635,4.0,1155875971\n580,1639,3.5,1155616705\n580,1641,3.0,1165900143\n580,1645,3.0,1155484976\n580,1653,3.0,1155484591\n580,1663,3.0,1155485128\n580,1673,4.0,1155485154\n580,1674,3.5,1156128890\n580,1676,3.5,1155484971\n580,1680,1.5,1167163368\n580,1682,4.5,1155616465\n580,1690,3.5,1155484966\n580,1701,3.0,1156127718\n580,1704,3.5,1155616457\n580,1721,3.5,1155485661\n580,1729,3.0,1155484960\n580,1732,4.0,1155616693\n580,1748,1.5,1167159980\n580,1777,4.0,1167158019\n580,1784,4.5,1155616253\n580,1801,2.0,1273518177\n580,1805,2.5,1167164389\n580,1809,3.5,1168658352\n580,1831,1.5,1167163195\n580,1876,3.0,1167158282\n580,1882,1.5,1167163244\n580,1884,3.5,1273517935\n580,1907,3.0,1167163202\n580,1909,4.0,1165291405\n580,1911,1.5,1167163348\n580,1912,2.5,1220647154\n580,1917,3.0,1165899614\n580,1920,1.0,1156127706\n580,1923,4.0,1155616931\n580,1945,4.0,1155485768\n580,1952,4.0,1155616867\n580,1954,4.5,1155485841\n580,1961,4.0,1155485772\n580,1965,4.0,1167163330\n580,1967,3.5,1167163137\n580,1968,4.0,1165900843\n580,1994,2.5,1167160770\n580,1997,3.5,1155484956\n580,2001,3.5,1245424504\n580,2003,3.0,1165292365\n580,2004,2.5,1156127689\n580,2005,2.5,1269895353\n580,2006,1.5,1167158414\n580,2010,4.0,1165900757\n580,2011,2.5,1165899836\n580,2012,1.5,1167162463\n580,2018,3.5,1165291121\n580,2019,4.5,1155484937\n580,2021,3.0,1167160865\n580,2023,3.5,1167159549\n580,2027,2.0,1156128270\n580,2028,4.0,1155616237\n580,2033,3.0,1165291197\n580,2054,2.0,1167157701\n580,2064,4.0,1217951579\n580,2076,4.0,1155485280\n580,2078,3.5,1269895517\n580,2080,3.5,1155484949\n580,2081,3.5,1155484931\n580,2085,3.5,1165291304\n580,2089,3.0,1156128261\n580,2094,2.5,1167163265\n580,2100,3.0,1165900676\n580,2105,4.0,1167160214\n580,2108,4.0,1167161278\n580,2109,4.0,1167163354\n580,2115,2.0,1244826935\n580,2116,4.0,1165291278\n580,2119,3.0,1156128256\n580,2124,3.0,1165292247\n580,2134,3.5,1273518162\n580,2138,3.5,1165291022\n580,2139,3.5,1156127678\n580,2140,3.5,1156127672\n580,2141,3.5,1273518901\n580,2144,4.0,1167161399\n580,2145,3.5,1217950576\n580,2150,3.5,1167160981\n580,2161,4.0,1167160082\n580,2167,3.0,1156128872\n580,2174,3.5,1155484914\n580,2193,3.5,1167160343\n580,2194,4.0,1155616723\n580,2195,2.0,1156128233\n580,2248,4.5,1155617271\n580,2273,3.5,1167160376\n580,2275,4.0,1244826643\n580,2287,3.0,1156128214\n580,2289,4.0,1167162771\n580,2291,4.0,1155484912\n580,2294,3.0,1165291170\n580,2297,3.5,1156127666\n580,2302,3.5,1156127255\n580,2324,4.0,1155484909\n580,2329,4.5,1155617431\n580,2335,3.0,1273518145\n580,2352,4.0,1167161729\n580,2355,3.5,1165291126\n580,2363,3.0,1217951014\n580,2366,4.0,1165291877\n580,2371,3.5,1273517868\n580,2373,3.0,1156128197\n580,2378,2.5,1273518129\n580,2394,2.5,1273517919\n580,2395,4.0,1165900586\n580,2396,3.5,1155485203\n580,2405,3.0,1167163455\n580,2406,3.5,1155484631\n580,2420,3.0,1167163160\n580,2421,2.5,1156127658\n580,2422,1.5,1168658732\n580,2467,4.0,1155485192\n580,2470,3.0,1155484901\n580,2478,3.5,1273517882\n580,2502,4.5,1155616917\n580,2529,3.0,1165900550\n580,2540,2.5,1156128165\n580,2541,1.5,1167161511\n580,2542,4.0,1165900980\n580,2571,4.5,1220561591\n580,2572,2.0,1167159571\n580,2580,1.0,1155616848\n580,2582,3.0,1156128848\n580,2596,3.0,1217950812\n580,2599,4.0,1165900078\n580,2600,1.5,1273518537\n580,2609,4.0,1168658443\n580,2617,1.5,1165900206\n580,2628,2.0,1165899163\n580,2640,3.0,1167157348\n580,2641,3.0,1167161359\n580,2657,3.0,1165292571\n580,2662,4.0,1165292204\n580,2683,3.0,1165899727\n580,2687,2.0,1273518662\n580,2693,3.5,1248118078\n580,2694,3.5,1167160424\n580,2699,3.0,1165292693\n580,2700,4.0,1165291037\n580,2701,2.5,1156127238\n580,2706,3.5,1155485649\n580,2710,2.0,1165292714\n580,2716,3.5,1155616539\n580,2717,2.0,1167162116\n580,2720,2.0,1273519233\n580,2722,2.5,1269895650\n580,2723,3.0,1167162916\n580,2762,4.0,1155616829\n580,2770,3.5,1155484890\n580,2787,3.0,1165292856\n580,2789,2.0,1165292887\n580,2791,3.0,1155616543\n580,2793,2.0,1168657891\n580,2797,3.5,1155616231\n580,2804,4.0,1155617750\n580,2826,3.5,1165292654\n580,2858,4.5,1155485102\n580,2862,4.0,1156128825\n580,2872,3.5,1167163408\n580,2890,4.0,1155484884\n580,2905,4.0,1155617834\n580,2916,4.0,1244827901\n580,2918,4.0,1155616686\n580,2924,4.5,1168658537\n580,2947,3.5,1155618092\n580,2959,5.0,1155616676\n580,2968,3.0,1155484878\n580,2976,4.5,1156127613\n580,2985,3.5,1155484872\n580,2986,3.0,1273518679\n580,2987,3.0,1155616490\n580,2997,2.5,1155484868\n580,3000,4.0,1155617735\n580,3005,2.0,1167163458\n580,3016,3.0,1165292312\n580,3018,3.0,1155485289\n580,3019,4.0,1273519272\n580,3020,3.0,1167163594\n580,3022,4.0,1164328870\n580,3030,4.5,1155617490\n580,3033,3.5,1167158607\n580,3039,3.5,1167159895\n580,3052,3.5,1165900331\n580,3071,3.0,1220647175\n580,3081,3.0,1167158160\n580,3087,3.5,1156127597\n580,3091,4.0,1156128814\n580,3107,3.5,1167161709\n580,3108,4.5,1167160755\n580,3113,3.0,1273518562\n580,3114,4.0,1155484863\n580,3134,4.0,1156128147\n580,3168,3.5,1155617383\n580,3175,3.0,1250522843\n580,3210,3.5,1155485111\n580,3253,3.0,1155616387\n580,3254,3.0,1156127585\n580,3256,3.0,1167159367\n580,3257,1.5,1167163600\n580,3263,4.0,1273518138\n580,3267,4.0,1273519042\n580,3275,3.5,1273517965\n580,3300,3.5,1249399202\n580,3307,3.5,1156128119\n580,3310,4.0,1168658398\n580,3317,4.0,1220647079\n580,3328,4.5,1244826684\n580,3340,3.5,1165292811\n580,3355,3.0,1156127576\n580,3396,4.0,1220647149\n580,3408,2.5,1165899841\n580,3421,3.5,1155484853\n580,3424,3.5,1165900785\n580,3448,4.0,1156128762\n580,3462,4.0,1155617947\n580,3471,3.5,1269895172\n580,3476,4.0,1155617381\n580,3479,3.0,1273519210\n580,3481,4.5,1155616671\n580,3489,3.0,1167160453\n580,3499,3.0,1156127229\n580,3521,3.0,1156128100\n580,3527,3.5,1155616662\n580,3535,4.0,1269895633\n580,3550,3.0,1165292434\n580,3552,3.5,1167159596\n580,3578,4.0,1155485851\n580,3593,1.0,1273519247\n580,3615,3.0,1165291208\n580,3624,3.5,1167160548\n580,3671,4.0,1155617921\n580,3676,3.5,1165292097\n580,3686,3.0,1165292342\n580,3692,3.0,1168657941\n580,3698,3.0,1167162043\n580,3703,3.5,1167159416\n580,3740,3.5,1273518844\n580,3745,2.0,1273518578\n580,3751,3.5,1165291025\n580,3793,4.0,1155616907\n580,3809,3.0,1167162058\n580,3826,2.0,1167160639\n580,3863,3.0,1167159645\n580,3868,3.5,1167160320\n580,3897,4.0,1155485097\n580,3911,4.0,1165900811\n580,3916,4.0,1167160475\n580,3917,3.5,1165292389\n580,3948,2.5,1269895083\n580,3969,1.5,1167164408\n580,3972,4.5,1168658500\n580,3977,2.5,1165899372\n580,3986,3.0,1246034723\n580,3988,2.5,1273518532\n580,3993,4.0,1155485244\n580,3994,4.0,1155484849\n580,3996,3.0,1155616626\n580,3997,0.5,1156128034\n580,4002,3.0,1167159797\n580,4011,3.5,1155616697\n580,4015,3.5,1156127548\n580,4016,3.5,1156127499\n580,4025,2.0,1167162947\n580,4027,4.0,1155616613\n580,4036,3.5,1165291955\n580,4069,2.5,1156127492\n580,4085,3.5,1156127216\n580,4101,4.5,1167160932\n580,4102,4.0,1220647226\n580,4103,4.5,1155618489\n580,4105,4.0,1218138552\n580,4128,4.0,1165292211\n580,4213,2.5,1165292898\n580,4214,3.0,1155485667\n580,4247,4.0,1156128007\n580,4262,4.0,1155617753\n580,4275,3.0,1247491395\n580,4306,4.0,1155616668\n580,4308,4.0,1165900174\n580,4321,2.5,1167159161\n580,4344,2.0,1156127481\n580,4370,3.5,1165900431\n580,4387,2.0,1156128001\n580,4438,4.0,1168657915\n580,4440,4.0,1168658706\n580,4467,2.5,1217950669\n580,4499,3.5,1167163635\n580,4541,3.0,1156128673\n580,4571,3.0,1165900887\n580,4614,3.0,1168658724\n580,4624,2.5,1156128668\n580,4638,1.5,1167159528\n580,4641,3.5,1156127450\n580,4642,3.5,1155617375\n580,4643,2.5,1165900904\n580,4701,3.5,1273518616\n580,4718,3.0,1167163360\n580,4720,2.0,1167158505\n580,4734,2.5,1167159681\n580,4816,4.5,1167159723\n580,4846,4.0,1168658567\n580,4855,3.0,1167160252\n580,4865,3.5,1165291434\n580,4878,5.0,1155616414\n580,4881,4.0,1167162272\n580,4886,4.0,1155484618\n580,4887,2.0,1217951339\n580,4896,3.5,1168657822\n580,4911,2.0,1217950687\n580,4963,1.5,1167156856\n580,4973,4.5,1155616952\n580,4979,4.0,1155617364\n580,4993,4.5,1155616593\n580,4995,4.0,1155485813\n580,5002,2.0,1165291225\n580,5010,3.5,1156127435\n580,5041,3.0,1165291244\n580,5042,1.0,1217951137\n580,5047,4.5,1156128633\n580,5064,2.5,1167160889\n580,5128,2.0,1156128623\n580,5135,3.0,1156127970\n580,5146,3.5,1165291006\n580,5218,2.5,1245424335\n580,5219,2.5,1276525178\n580,5254,3.0,1165292281\n580,5299,4.0,1167157261\n580,5349,4.5,1155616434\n580,5378,2.5,1165899173\n580,5445,3.0,1155484601\n580,5459,3.0,1165900423\n580,5477,3.0,1217951042\n580,5481,3.0,1167157998\n580,5489,3.5,1165291842\n580,5500,3.5,1220647292\n580,5502,0.5,1165291382\n580,5507,0.5,1167161334\n580,5540,3.5,1156127933\n580,5618,4.5,1155617194\n580,5669,4.0,1165899592\n580,5673,4.0,1165900838\n580,5690,4.0,1155617198\n580,5782,4.0,1155617165\n580,5810,3.5,1167161309\n580,5816,3.0,1168657783\n580,5902,4.5,1155485100\n580,5952,4.0,1202071639\n580,6013,1.0,1168658139\n580,6016,3.0,1155617143\n580,6062,3.0,1217950965\n580,6095,2.5,1167159297\n580,6156,2.5,1217951273\n580,6283,3.5,1165290947\n580,6333,4.5,1202071483\n580,6350,3.5,1155617729\n580,6365,3.0,1165899503\n580,6377,4.0,1155617745\n580,6440,4.0,1155617357\n580,6502,4.0,1165291933\n580,6503,2.0,1156127415\n580,6537,3.5,1165900518\n580,6539,3.0,1155616473\n580,6565,3.5,1165900855\n580,6618,4.0,1156127921\n580,6620,4.0,1155617916\n580,6659,2.5,1165292225\n580,6711,4.5,1155484808\n580,6713,3.0,1165290929\n580,6721,4.0,1155618194\n580,6722,4.0,1168658363\n580,6731,3.0,1165292143\n580,6754,3.0,1165292621\n580,6755,4.0,1217951093\n580,6773,3.0,1218138240\n580,6796,4.0,1155617668\n580,6807,4.0,1155617853\n580,6820,2.5,1165292170\n580,6857,3.5,1155618124\n580,6863,3.0,1218137186\n580,6874,3.5,1155617217\n580,6889,2.5,1156128567\n580,6934,2.0,1156129136\n580,6936,3.5,1165291448\n580,6942,3.0,1273517753\n580,6947,4.0,1165900254\n580,6961,4.0,1155485620\n580,6966,2.5,1156128550\n580,6979,3.5,1273518956\n580,6987,3.0,1168658242\n580,6991,3.5,1156129109\n580,7004,3.0,1167161995\n580,7036,3.0,1168657950\n580,7056,4.0,1155618262\n580,7090,4.5,1155617235\n580,7099,3.5,1155617264\n580,7123,4.0,1218138283\n580,7147,4.0,1167157050\n580,7153,4.5,1155485733\n580,7156,4.0,1155617844\n580,7160,4.0,1167160712\n580,7192,2.0,1165899928\n580,7236,2.0,1244827086\n580,7266,3.0,1280336865\n580,7307,4.0,1155485418\n580,7361,4.5,1155617159\n580,7373,3.0,1165292237\n580,7411,1.0,1167161742\n580,7438,3.5,1155617679\n580,7481,3.0,1156128543\n580,7482,4.0,1155617797\n580,7738,3.5,1167158678\n580,7766,4.0,1155617773\n580,7844,3.0,1168658309\n580,7892,2.0,1217950866\n580,7899,3.0,1220561822\n580,7925,3.5,1155617555\n580,7951,2.5,1165292538\n580,8138,3.0,1165900169\n580,8157,3.0,1155617998\n580,8360,3.0,1165291014\n580,8368,4.0,1168657819\n580,8370,4.0,1199493111\n580,8371,3.5,1276095753\n580,8376,4.5,1167158182\n580,8528,4.0,1156129061\n580,8607,3.0,1165290913\n580,8622,2.0,1165899695\n580,8636,4.0,1155618201\n580,8641,3.5,1218137171\n580,8644,2.5,1269895628\n580,8665,3.0,1218136881\n580,8784,3.5,1165290750\n580,8810,2.5,1244826548\n580,8861,2.5,1277325470\n580,8874,4.0,1217951314\n580,8917,4.5,1165291150\n580,8961,4.5,1155617153\n580,8983,2.0,1167160116\n580,25995,3.5,1244826658\n580,26005,3.5,1244826650\n580,26012,3.5,1246469482\n580,26084,3.5,1156129026\n580,26317,2.0,1269893687\n580,26413,4.0,1220646586\n580,26494,3.5,1245424630\n580,26662,3.5,1155617953\n580,26702,4.0,1269894324\n580,26840,4.5,1155618112\n580,26865,4.5,1155617523\n580,26886,3.0,1269894198\n580,27109,3.0,1246469864\n580,27441,3.0,1269893791\n580,27478,2.0,1249399246\n580,27611,3.5,1246469681\n580,27660,3.5,1269895819\n580,27741,4.5,1155617572\n580,27790,3.5,1218138262\n580,27801,3.5,1156128530\n580,27831,3.0,1217951590\n580,27904,3.0,1217951253\n580,30707,4.5,1245424226\n580,30810,4.0,1156127887\n580,30812,3.5,1165900911\n580,31658,4.0,1165290909\n580,31660,3.0,1165291078\n580,31878,4.0,1155617988\n580,32031,3.0,1165291315\n580,32395,3.0,1165292257\n580,32587,3.0,1155485094\n580,33004,3.0,1165900458\n580,33166,4.0,1156129017\n580,33171,4.0,1155618136\n580,33437,3.5,1220561805\n580,33493,2.5,1220561531\n580,33615,3.0,1165291293\n580,33794,4.5,1155617424\n580,34048,2.5,1218137259\n580,34162,4.0,1156127883\n580,34405,4.5,1155617620\n580,34542,3.5,1246470019\n580,35836,4.0,1155616928\n580,36517,3.0,1217951615\n580,36535,4.0,1220646919\n580,37729,3.0,1167159746\n580,38038,4.0,1165290942\n580,39292,4.0,1155617605\n580,40339,2.0,1156129006\n580,40583,2.0,1167158780\n580,40629,4.0,1167160694\n580,40815,3.0,1168657808\n580,40819,3.5,1167157534\n580,41566,2.0,1217950598\n580,41569,2.0,1217951370\n580,41571,3.0,1217950891\n580,41997,4.0,1165900387\n580,42738,2.5,1249399232\n580,42946,3.0,1245424216\n580,43832,3.0,1245701435\n580,44022,2.5,1165291269\n580,44191,3.5,1164328625\n580,44555,4.0,1199492003\n580,44761,2.0,1217950765\n580,45431,3.5,1155875951\n580,45447,3.0,1217951110\n580,45499,3.0,1217951491\n580,45666,4.0,1269893534\n580,45722,2.0,1245423719\n580,45950,4.0,1155617109\n580,46322,4.5,1217950330\n580,46578,4.0,1168657741\n580,46772,2.0,1217951387\n580,46948,3.0,1165291065\n580,46970,2.5,1217950951\n580,46976,5.0,1273519072\n580,47124,2.5,1165291177\n580,47629,3.0,1199492979\n580,47810,1.0,1277325483\n580,48385,4.0,1164328609\n580,48394,4.0,1199492973\n580,48516,3.5,1217950777\n580,48696,4.0,1199492025\n580,48780,4.0,1199493086\n580,48982,3.5,1220561766\n580,48997,1.5,1244826960\n580,49272,3.0,1245423800\n580,49530,4.0,1273518980\n580,50005,2.0,1217950801\n580,50601,3.5,1218138536\n580,50872,4.0,1199635409\n580,51255,4.0,1199493081\n580,51277,4.5,1245159139\n580,51540,4.0,1217950648\n580,51662,3.0,1218138455\n580,51709,4.0,1278941599\n580,52435,4.0,1246469848\n580,52722,4.0,1245159970\n580,52885,3.0,1244826992\n580,52973,3.5,1220647095\n580,53996,0.5,1245424344\n580,54001,3.0,1217950848\n580,54272,4.0,1245424172\n580,54286,3.0,1218136883\n580,54503,3.5,1199491763\n580,54881,3.5,1244827028\n580,55118,4.0,1217950706\n580,55269,4.0,1199491889\n580,55280,4.0,1220646352\n580,55282,3.0,1249482684\n580,55442,4.0,1217949460\n580,55820,4.0,1244827010\n580,55830,2.5,1248704195\n580,56152,3.0,1220647131\n580,56174,2.5,1244827177\n580,56367,4.0,1245423655\n580,56757,3.5,1249482649\n580,57640,3.5,1220561779\n580,57669,4.0,1220561655\n580,58306,3.0,1217949486\n580,58559,5.0,1217949542\n580,59315,4.0,1245423763\n580,59615,3.0,1244826928\n580,59784,2.5,1217949513\n580,59935,3.5,1245424139\n580,60037,3.0,1218136760\n580,60069,4.0,1269895801\n580,60072,2.0,1248183663\n580,60684,4.0,1245424638\n580,60756,3.0,1269893603\n580,60760,3.5,1218137336\n580,61024,4.0,1220647379\n580,61026,4.0,1269893473\n580,61132,3.0,1220561739\n580,61210,2.5,1269893563\n580,61323,4.0,1245159916\n580,62394,2.0,1226601078\n580,62733,1.0,1246469112\n580,63113,3.0,1245424367\n580,64497,2.0,1244826575\n580,64575,4.0,1244826834\n580,65126,3.5,1279028985\n580,65682,3.0,1269893832\n580,65982,2.5,1246998327\n580,66097,4.0,1245265202\n580,66427,3.5,1249399287\n580,66934,4.0,1246469705\n580,67252,3.5,1271173718\n580,67665,4.0,1280336825\n580,68159,3.5,1276700154\n580,68319,3.5,1244826594\n580,68358,4.5,1244826705\n580,68486,4.0,1269893476\n580,68791,2.5,1244826612\n580,68848,3.5,1271173792\n580,68952,3.5,1269895814\n580,68954,4.0,1271173766\n580,69844,4.0,1248439806\n580,69951,4.5,1274117644\n580,70286,3.0,1250521877\n580,71156,4.0,1269894664\n580,71211,3.5,1271173780\n580,71530,3.0,1269894771\n580,71535,4.0,1269894610\n580,71732,3.0,1269894660\n580,72165,2.5,1269893622\n580,72169,3.5,1279199526\n580,72171,3.5,1269894635\n580,72224,4.0,1269893512\n580,72226,3.0,1271173750\n580,72378,2.5,1278433985\n580,72489,2.0,1269893491\n580,72630,3.5,1277991653\n580,72998,2.5,1269893714\n580,73017,4.0,1271173700\n580,73266,3.0,1277512972\n580,73268,3.5,1274117618\n580,73321,4.0,1276870801\n580,73488,2.5,1269893786\n580,73741,2.0,1274792834\n580,73929,1.5,1276095711\n580,74438,2.0,1269894511\n580,74452,2.5,1276525124\n580,74458,4.0,1276700136\n580,74789,3.5,1276608137\n580,74795,3.5,1280152650\n580,76077,3.5,1279199576\n580,76175,3.5,1280336813\n580,79132,3.5,1280152635\n581,493,4.5,1259725109\n581,502,4.0,1259725133\n581,552,3.0,1259724938\n581,750,0.5,1259725846\n581,785,0.5,1259724958\n581,924,0.5,1259725482\n581,1126,3.0,1259725154\n581,1194,5.0,1259725208\n581,1203,4.0,1259725477\n581,1311,0.5,1259726022\n581,1642,0.5,1259726072\n581,1918,4.0,1259724986\n581,2078,4.0,1259725000\n581,2191,0.5,1259726073\n581,2412,3.5,1259725143\n581,2478,3.5,1259725041\n581,2522,0.5,1259725942\n581,2720,2.5,1259725119\n581,2892,0.5,1259726084\n581,3256,4.5,1259724978\n581,3307,0.5,1259725929\n581,3590,0.5,1259725920\n581,3617,3.0,1259725032\n581,3721,0.5,1259726065\n581,3883,0.5,1259726069\n581,4445,0.5,1259725946\n581,4753,0.5,1259726016\n581,4973,0.5,1259725892\n581,5117,0.5,1259725915\n581,5278,0.5,1259726059\n581,5413,0.5,1259725433\n581,5832,0.5,1259726087\n581,5864,0.5,1259725939\n581,7204,0.5,1259726098\n581,7283,0.5,1259725943\n581,7312,0.5,1259725922\n581,8935,0.5,1259726063\n581,26700,0.5,1259726057\n581,27032,0.5,1259726026\n581,27478,0.5,1259725969\n581,31374,0.5,1259725891\n581,32153,0.5,1259726094\n581,33615,4.0,1259725214\n581,46574,0.5,1259726062\n581,53125,2.0,1259725163\n581,54768,0.5,1259725978\n581,61465,0.5,1259726000\n581,65802,0.5,1259725965\n581,66246,0.5,1259725840\n582,34,3.0,1122167376\n582,48,4.0,1122167280\n582,62,3.5,1122167595\n582,158,3.5,1122167292\n582,253,5.0,1122168133\n582,337,4.5,1122167203\n582,339,1.0,1122170323\n582,356,3.0,1122170213\n582,364,4.0,1122169666\n582,377,4.0,1122167578\n582,551,5.0,1122169461\n582,588,4.5,1122169670\n582,594,4.0,1122167177\n582,595,4.0,1122169669\n582,596,3.5,1122167308\n582,631,1.5,1122170073\n582,653,4.0,1122167221\n582,661,2.5,1122169851\n582,720,1.0,1122167413\n582,783,4.0,1122169915\n582,858,3.5,1122167716\n582,899,4.5,1122169986\n582,914,4.0,1122169761\n582,952,3.0,1122170774\n582,1022,3.5,1122169679\n582,1028,4.0,1122169754\n582,1029,4.0,1122169804\n582,1030,4.0,1122170027\n582,1031,4.0,1122169895\n582,1035,2.5,1122169684\n582,1059,3.5,1122168200\n582,1073,3.0,1122170714\n582,1088,3.5,1122169870\n582,1101,4.5,1122167200\n582,1196,4.0,1122167537\n582,1197,5.0,1122169410\n582,1204,3.0,1122170506\n582,1221,3.0,1122170493\n582,1307,5.0,1122169397\n582,1380,3.5,1122169712\n582,1441,4.0,1122168151\n582,1580,4.0,1122170754\n582,1704,4.5,1122168009\n582,1760,3.0,1122170103\n582,1917,3.5,1122167189\n582,1947,4.0,1122169801\n582,1951,4.0,1122169704\n582,1967,4.0,1122168055\n582,2006,4.0,1122170283\n582,2054,1.0,1122167252\n582,2080,4.0,1122169751\n582,2081,4.5,1122169521\n582,2084,4.0,1122169890\n582,2092,3.5,1122170096\n582,2096,5.0,1122169502\n582,2114,2.5,1122167810\n582,2125,4.5,1122167745\n582,2144,4.0,1122167985\n582,2167,4.5,1122168351\n582,2294,2.0,1122167425\n582,2394,4.0,1122169771\n582,2413,2.5,1122167431\n582,2565,4.0,1122169677\n582,2571,3.5,1122167565\n582,2572,4.5,1122170253\n582,2628,2.0,1122167389\n582,2657,5.0,1122167317\n582,2746,4.0,1122170014\n582,2857,2.0,1122169998\n582,2863,4.5,1122169995\n582,2924,4.5,1122170871\n582,2946,4.5,1122169813\n582,2987,2.0,1122167182\n582,3052,1.0,1122168223\n582,3114,2.5,1122167209\n582,3255,3.5,1122170691\n582,3450,4.0,1122170802\n582,3477,4.5,1122170810\n582,3489,5.0,1122167401\n582,3594,4.5,1122169565\n582,3751,1.5,1122167245\n582,3793,4.5,1122167212\n582,3910,4.5,1122169863\n582,3916,3.5,1122167788\n582,3980,4.5,1122168142\n582,4014,5.0,1122168071\n582,4016,3.5,1122170671\n582,4019,4.5,1122167792\n582,4039,1.5,1122169883\n582,4054,5.0,1122169541\n582,4188,5.0,1122167800\n582,4205,4.0,1122169199\n582,4238,4.0,1122169277\n582,4246,1.0,1122170225\n582,4294,4.0,1122169955\n582,4306,4.0,1122167174\n582,4308,5.0,1122169793\n582,4734,4.0,1122167619\n582,4857,3.0,1122169742\n582,4890,4.0,1122167631\n582,4993,4.0,1122167499\n582,4994,4.0,1122170310\n582,4995,4.0,1122170203\n582,5014,4.5,1122167719\n582,5064,5.0,1122167813\n582,5254,4.5,1122169140\n582,5299,3.5,1122170196\n582,5349,4.0,1122167653\n582,5377,1.0,1122167657\n582,5445,3.5,1122167313\n582,5502,4.0,1122167661\n582,5629,4.0,1122170021\n582,5952,4.0,1122167236\n582,5991,4.5,1122169757\n582,6297,3.5,1122170652\n582,6316,4.0,1122170062\n582,6345,4.0,1122169884\n582,6378,4.0,1122168103\n582,6539,4.5,1122170641\n582,6593,1.5,1122170779\n582,6732,5.0,1122168065\n582,6753,2.5,1122170645\n582,7060,0.5,1122167928\n582,7153,4.0,1122167603\n582,7320,5.0,1122169436\n582,7614,3.0,1122169834\n582,7738,4.0,1122169632\n582,8366,1.0,1122168490\n582,8376,1.0,1122168692\n582,8529,2.5,1122170267\n582,8641,4.5,1122169251\n582,8880,5.0,1122167453\n582,8972,2.5,1122167911\n582,8983,1.5,1122168375\n582,26084,1.0,1122168118\n582,27706,3.5,1122167468\n582,30793,4.5,1122169482\n582,30816,4.5,1122168481\n583,296,5.0,1430526215\n583,318,5.0,1430526116\n583,858,5.0,1430526121\n583,1198,3.5,1430526209\n583,1213,4.5,1430526137\n583,1221,4.5,1430526133\n583,1704,4.0,1430526263\n583,2329,4.0,1430526237\n583,2858,4.0,1430526233\n583,2959,4.0,1430526211\n583,6016,4.5,1430526200\n583,49530,3.5,1430526153\n583,54503,3.0,1430526155\n583,56174,2.5,1430526161\n583,58559,5.0,1430526316\n583,79132,4.5,1430526241\n583,91529,4.0,1430526279\n583,99114,4.0,1430526265\n583,109487,4.5,1430526174\n583,112552,4.0,1430526178\n584,1,5.0,1276156510\n584,47,3.5,1276156718\n584,60,3.5,1271759947\n584,104,3.5,1276157226\n584,110,5.0,1271762454\n584,163,3.5,1276157463\n584,231,3.0,1276156746\n584,253,4.0,1276156861\n584,293,4.0,1276157057\n584,296,4.0,1271762443\n584,318,5.0,1271762150\n584,344,2.0,1277587207\n584,356,5.0,1271762270\n584,364,3.5,1277587236\n584,367,1.5,1276156750\n584,377,3.5,1276156596\n584,434,2.5,1276156876\n584,519,2.0,1271760003\n584,527,5.0,1271762696\n584,541,3.0,1271762232\n584,575,3.0,1271760285\n584,586,2.5,1276156889\n584,593,5.0,1271762449\n584,595,4.0,1277587234\n584,648,3.5,1276156701\n584,750,2.0,1273167108\n584,780,4.0,1276156525\n584,829,1.0,1271760557\n584,912,3.5,1276157018\n584,924,3.0,1276157033\n584,1036,2.0,1271884901\n584,1061,4.5,1273516287\n584,1073,3.5,1271763454\n584,1136,3.5,1276156819\n584,1193,4.0,1273166475\n584,1196,3.5,1273166557\n584,1197,5.0,1276156785\n584,1203,5.0,1273166595\n584,1206,1.5,1276157074\n584,1213,3.5,1273166604\n584,1214,4.0,1277759442\n584,1258,3.0,1276157105\n584,1270,3.5,1276156708\n584,1527,3.5,1276156941\n584,1573,3.5,1273564913\n584,1580,4.0,1276156765\n584,1608,2.5,1276157501\n584,1625,5.0,1273564789\n584,1682,5.0,1271763182\n584,1704,5.0,1276156946\n584,1721,5.0,1276156769\n584,2028,5.0,1271762702\n584,2054,2.5,1276157271\n584,2167,1.5,1271763401\n584,2329,4.0,1276157204\n584,2355,3.5,1276157141\n584,2541,1.0,1271763278\n584,2542,3.0,1273516964\n584,2571,5.0,1271762353\n584,2706,1.5,1276157062\n584,2762,5.0,1271884893\n584,2858,3.0,1273167006\n584,2959,3.5,1271763972\n584,2997,3.5,1277836742\n584,3147,5.0,1271762725\n584,3156,5.0,1273352813\n584,3285,2.5,1271763721\n584,3578,3.0,1271884906\n584,3623,3.0,1276157307\n584,3717,3.0,1273564837\n584,3793,3.5,1276156968\n584,3809,5.0,1271759977\n584,3949,5.0,1271762274\n584,3996,3.5,1276156994\n584,4011,3.0,1276157555\n584,4155,3.0,1271763850\n584,4226,5.0,1273166386\n584,4239,4.0,1273517055\n584,4299,5.0,1271763225\n584,4306,5.0,1273165682\n584,4699,4.0,1271760982\n584,4718,2.5,1273352918\n584,4886,5.0,1276157119\n584,4963,5.0,1276157189\n584,4993,5.0,1271762209\n584,4995,4.0,1271885018\n584,5225,1.0,1273352898\n584,5254,0.5,1271763403\n584,5349,4.0,1276157155\n584,5418,5.0,1271884897\n584,5952,5.0,1271762204\n584,5989,4.0,1276157525\n584,5995,5.0,1271763205\n584,6016,4.5,1273166378\n584,6365,3.0,1276157492\n584,6377,5.0,1273165641\n584,6539,4.0,1273165651\n584,6771,1.0,1271764048\n584,6870,4.0,1271762767\n584,6951,0.5,1271761004\n584,7153,5.0,1271762244\n584,7361,5.0,1271762634\n584,8368,3.5,1273165760\n584,8665,5.0,1273563819\n584,8807,4.0,1271763479\n584,8874,3.0,1271763146\n584,8957,5.0,1271763862\n584,8961,3.5,1271885000\n584,8985,0.5,1271763407\n584,26172,4.0,1271763833\n584,26528,3.0,1273172184\n584,27724,5.0,1273564719\n584,27871,3.0,1273152283\n584,30707,5.0,1273565239\n584,32666,1.0,1271764090\n584,33794,5.0,1271762914\n584,34319,4.0,1271760167\n584,34552,3.5,1273352829\n584,36931,5.0,1271763027\n584,38061,3.5,1276156145\n584,39446,2.5,1271763865\n584,39715,2.5,1273352918\n584,42718,3.0,1271761282\n584,44199,3.0,1273167182\n584,44555,5.0,1276156229\n584,44665,5.0,1271764023\n584,45186,3.0,1276156107\n584,45722,3.5,1273517182\n584,46972,2.5,1271760578\n584,46976,3.5,1273165635\n584,47518,4.0,1271760949\n584,48043,4.0,1273563510\n584,48394,2.5,1271763261\n584,48516,4.0,1271764463\n584,48780,5.0,1271762228\n584,49272,4.0,1271885033\n584,49530,4.0,1273164638\n584,50189,2.5,1273352921\n584,50872,5.0,1271763067\n584,51255,5.0,1271763133\n584,51662,3.0,1271763008\n584,51927,3.0,1273565176\n584,52245,2.5,1271763412\n584,52458,5.0,1271763245\n584,52973,3.0,1271763942\n584,53125,3.5,1273517179\n584,53972,3.0,1271760246\n584,53993,1.5,1271760878\n584,53996,5.0,1271763368\n584,54004,2.5,1271763998\n584,54286,5.0,1271832615\n584,54997,5.0,1271760185\n584,55995,2.5,1271763669\n584,58559,5.0,1271762939\n584,58998,2.0,1271764374\n584,59016,3.0,1271763688\n584,59315,4.0,1271762638\n584,59369,5.0,1271762780\n584,59429,2.5,1273352919\n584,60069,5.0,1271762404\n584,62081,4.5,1271763326\n584,62374,5.0,1271762952\n584,63062,2.5,1273164661\n584,63082,5.0,1271762263\n584,64497,2.5,1271761033\n584,64614,5.0,1271762708\n584,65514,4.0,1271762731\n584,66203,3.5,1273564695\n584,67087,5.0,1271763164\n584,68157,3.5,1273166629\n584,68358,5.0,1271762629\n584,68954,5.0,1271763098\n584,69122,4.5,1271763924\n584,69481,4.0,1271764108\n584,69526,5.0,1271763367\n584,69757,5.0,1271762821\n584,70286,5.0,1271762400\n584,71429,4.5,1276156067\n584,71838,5.0,1271762970\n584,72378,4.0,1271762675\n584,72731,4.0,1273565094\n584,72998,5.0,1271762358\n584,73017,5.0,1276155969\n584,73321,5.0,1276156172\n584,74450,4.0,1276156202\n584,74458,5.0,1271762835\n584,74532,3.5,1273353272\n584,74946,5.0,1276159649\n584,75805,3.0,1271762988\n584,76077,3.0,1276156338\n584,76093,5.0,1277499389\n584,76251,4.0,1273563486\n584,77561,4.0,1276155920\n585,1,4.0,974607482\n585,21,4.0,974607643\n585,34,4.0,974607482\n585,39,4.0,974607516\n585,45,4.0,974607674\n585,50,5.0,975365404\n585,110,4.0,975365641\n585,125,4.0,975363505\n585,235,4.0,974607610\n585,247,3.0,975365500\n585,260,4.0,975364936\n585,266,3.0,975361825\n585,296,5.0,975365117\n585,318,4.0,975363941\n585,334,4.0,975365311\n585,345,3.0,974607733\n585,348,4.0,974607610\n585,356,4.0,974607571\n585,357,4.0,975363105\n585,417,4.0,974607762\n585,441,4.0,974607733\n585,467,4.0,975362548\n585,471,4.0,975363578\n585,480,3.0,975361581\n585,490,3.0,975361786\n585,492,3.0,974607702\n585,527,5.0,975364725\n585,541,5.0,975364896\n585,551,3.0,975361581\n585,589,3.0,975361460\n585,593,5.0,975365053\n585,648,2.0,975361825\n585,720,4.0,975365187\n585,745,4.0,975362059\n585,750,5.0,975365246\n585,838,4.0,975363236\n585,858,5.0,975363898\n585,892,4.0,975362967\n585,898,5.0,975362294\n585,901,4.0,975363236\n585,903,5.0,975364936\n585,904,5.0,975364725\n585,905,5.0,975362136\n585,907,5.0,975363505\n585,908,5.0,975361291\n585,909,5.0,975362330\n585,910,5.0,975362104\n585,911,4.0,975363199\n585,912,5.0,975364936\n585,913,5.0,975365117\n585,915,5.0,975363105\n585,916,5.0,975362136\n585,919,5.0,975364936\n585,920,4.0,975365604\n585,921,4.0,975362967\n585,922,5.0,975363941\n585,923,5.0,975364725\n585,924,5.0,975365117\n585,926,5.0,975365187\n585,929,4.0,975365311\n585,933,5.0,975363199\n585,936,4.0,975362136\n585,940,5.0,975365053\n585,945,5.0,975362294\n585,946,5.0,975362294\n585,947,5.0,975362059\n585,950,5.0,975364685\n585,951,5.0,975361291\n585,954,4.0,975365053\n585,955,5.0,975362330\n585,965,5.0,975365246\n585,973,5.0,975365500\n585,1028,5.0,975363073\n585,1035,4.0,975361460\n585,1041,4.0,975365404\n585,1042,4.0,975363316\n585,1060,3.0,975363073\n585,1066,5.0,975362967\n585,1077,5.0,975363032\n585,1078,5.0,975363404\n585,1079,4.0,975362381\n585,1080,4.0,975362330\n585,1083,4.0,975363541\n585,1089,4.0,975365187\n585,1104,4.0,975365088\n585,1129,3.0,975361710\n585,1136,5.0,975362198\n585,1148,4.0,975362104\n585,1162,4.0,975362104\n585,1171,4.0,975363282\n585,1172,5.0,975363282\n585,1178,5.0,975365053\n585,1179,4.0,974607128\n585,1180,5.0,975363166\n585,1188,3.0,974607441\n585,1193,5.0,975365117\n585,1196,3.0,975365404\n585,1197,4.0,975362925\n585,1198,5.0,975365088\n585,1203,4.0,975365524\n585,1204,5.0,975364685\n585,1206,5.0,975365117\n585,1207,5.0,975365246\n585,1208,5.0,975365404\n585,1209,4.0,975365187\n585,1210,4.0,974607078\n585,1212,5.0,975364725\n585,1213,4.0,975365524\n585,1214,5.0,975365311\n585,1217,5.0,975364960\n585,1219,5.0,975365187\n585,1220,4.0,975363282\n585,1223,4.0,975362381\n585,1225,4.0,975365023\n585,1226,5.0,975363199\n585,1228,5.0,975365311\n585,1230,5.0,975362381\n585,1231,4.0,975365641\n585,1233,5.0,975364896\n585,1234,4.0,975362548\n585,1235,5.0,975362925\n585,1238,5.0,975362198\n585,1240,5.0,975365500\n585,1242,4.0,975365311\n585,1244,5.0,975362381\n585,1247,5.0,975365311\n585,1248,4.0,975361291\n585,1249,3.0,975361364\n585,1250,5.0,975361291\n585,1252,5.0,975364896\n585,1254,5.0,975365023\n585,1256,5.0,975362198\n585,1260,5.0,975364725\n585,1262,5.0,975365438\n585,1263,4.0,975365604\n585,1265,4.0,974607441\n585,1266,4.0,975365641\n585,1267,4.0,975364896\n585,1269,4.0,975361364\n585,1270,3.0,975362925\n585,1276,5.0,975362381\n585,1278,5.0,975362925\n585,1281,5.0,975363236\n585,1282,4.0,975361460\n585,1284,5.0,975361364\n585,1286,3.0,975361761\n585,1287,5.0,974607128\n585,1288,4.0,975363032\n585,1292,5.0,975362484\n585,1297,4.0,975363404\n585,1299,5.0,975365088\n585,1307,5.0,975362484\n585,1354,4.0,975365188\n585,1358,3.0,975365246\n585,1387,5.0,975365641\n585,1446,3.0,975363105\n585,1537,4.0,975362381\n585,1544,2.0,975361927\n585,1580,3.0,975361679\n585,1617,5.0,975365188\n585,1641,4.0,974607610\n585,1663,4.0,975363348\n585,1694,4.0,975365220\n585,1784,4.0,974607762\n585,1831,1.0,974607078\n585,1873,3.0,974607128\n585,1883,4.0,974607674\n585,1885,4.0,974607610\n585,1914,4.0,975363578\n585,1923,3.0,974607643\n585,1927,5.0,975364725\n585,1929,4.0,975365404\n585,1934,5.0,975362484\n585,1945,5.0,975364936\n585,1948,5.0,975363236\n585,1952,5.0,975365438\n585,1953,5.0,975365438\n585,1958,4.0,975363316\n585,1963,5.0,975363282\n585,1965,4.0,975361497\n585,2000,4.0,975363282\n585,2019,5.0,975363792\n585,2053,3.0,974607078\n585,2064,4.0,975363105\n585,2065,4.0,975363404\n585,2078,4.0,975363316\n585,2108,4.0,975363505\n585,2174,4.0,975363578\n585,2203,4.0,975364661\n585,2208,5.0,975363374\n585,2238,4.0,975362198\n585,2243,4.0,975363316\n585,2248,4.0,975363032\n585,2289,4.0,974607516\n585,2291,4.0,975361460\n585,2300,5.0,975362925\n585,2321,4.0,974607482\n585,2324,3.0,975362967\n585,2349,4.0,975363505\n585,2352,5.0,975363236\n585,2355,4.0,974607516\n585,2359,5.0,975363236\n585,2384,4.0,974607571\n585,2395,4.0,974607702\n585,2396,5.0,974607408\n585,2511,4.0,975365053\n585,2599,5.0,974607408\n585,2648,4.0,975365220\n585,2657,3.0,975361620\n585,2716,5.0,975363316\n585,2746,4.0,975363348\n585,2779,4.0,975363578\n585,2791,4.0,975361460\n585,2797,4.0,975363541\n585,2804,5.0,975362381\n585,2858,4.0,974607365\n585,2863,4.0,975362330\n585,2870,4.0,975363541\n585,2889,3.0,975363348\n585,2915,5.0,975363374\n585,2932,5.0,975365438\n585,2935,5.0,975362104\n585,2936,4.0,975362198\n585,2937,4.0,975362104\n585,2946,4.0,975362330\n585,2948,4.0,975361497\n585,2973,4.0,975362484\n585,2997,5.0,975362294\n585,3022,5.0,975362104\n585,3035,5.0,975362925\n585,3037,5.0,975362548\n585,3052,4.0,974607643\n585,3060,5.0,974607516\n585,3061,4.0,975363282\n585,3067,4.0,975362198\n585,3072,5.0,975363236\n585,3076,4.0,975363606\n585,3083,4.0,974607365\n585,3088,5.0,975362548\n585,3095,5.0,975364725\n585,3096,5.0,975362136\n585,3097,4.0,975362330\n585,3104,4.0,975362967\n585,3108,3.0,974607643\n585,3114,4.0,974607441\n585,3133,3.0,975362104\n585,3134,5.0,975364936\n585,3160,4.0,975361497\n585,3175,4.0,975363606\n585,3196,5.0,975365641\n585,3210,4.0,975363404\n585,3244,4.0,975363374\n585,3253,4.0,974607643\n585,3307,5.0,975362104\n585,3341,5.0,975362548\n585,3349,4.0,975363578\n585,3358,4.0,974607674\n585,3371,4.0,975365220\n585,3396,4.0,975363282\n585,3421,4.0,975362548\n585,3424,4.0,975363073\n585,3429,4.0,975362198\n585,3435,5.0,975364685\n585,3451,5.0,975363578\n585,3462,5.0,975362198\n585,3469,5.0,975365500\n585,3481,4.0,975361364\n585,3504,4.0,975362484\n585,3521,4.0,975363282\n585,3534,3.0,975361761\n585,3545,4.0,975365500\n585,3588,4.0,975365500\n585,3608,4.0,975362484\n585,3627,4.0,975361497\n585,3629,5.0,975362059\n585,3671,4.0,975363032\n585,3675,4.0,975361581\n585,3683,5.0,975365188\n585,3712,3.0,974607571\n585,3730,5.0,975365023\n585,3735,5.0,975365220\n585,3751,4.0,975361460\n585,3814,5.0,975363166\n585,3819,4.0,975362294\n585,3836,4.0,975363199\n585,3861,5.0,975363578\n585,3873,4.0,975363541\n585,3911,4.0,974607219\n585,3926,2.0,975361847\n585,3927,3.0,975361710\n585,3929,3.0,975361291\n585,3936,4.0,975361291\n585,3957,2.0,975361877\n585,3959,4.0,975361364\n585,3963,3.0,975361825\n585,3969,3.0,974607195\n585,3984,3.0,975361581\n585,4002,3.0,975361364\n585,4008,4.0,975361364\n585,5060,5.0,975362294\n586,1,4.0,1214234202\n586,110,1.0,1214234005\n586,165,3.5,1214234296\n586,260,3.0,1214234111\n586,296,5.0,1214234266\n586,318,4.0,1214234014\n586,344,1.5,1214234260\n586,356,4.0,1214233961\n586,480,5.0,1214234118\n586,527,4.0,1214234222\n586,590,3.0,1214234001\n586,592,1.0,1214233942\n586,593,2.0,1214233972\n586,608,5.0,1214234331\n586,780,4.0,1214234070\n586,849,1.5,1214225502\n586,1196,4.0,1214234177\n586,1210,4.0,1214233957\n586,1270,4.5,1214234238\n586,1405,4.0,1214225451\n586,1617,3.5,1214234327\n586,1721,2.0,1214234285\n586,1918,2.0,1214225463\n586,1952,2.0,1214225577\n586,1957,4.0,1214225565\n586,1962,3.0,1214225496\n586,2076,2.5,1214225492\n586,2109,0.5,1214225571\n586,2490,3.5,1214225478\n586,2571,5.0,1214233975\n586,2716,4.5,1214234249\n586,2762,5.0,1214234045\n586,2944,2.5,1214225536\n586,2949,2.5,1214225568\n586,2968,5.0,1214225484\n586,3006,4.5,1214225458\n586,3256,1.0,1214225471\n586,3363,5.0,1214225525\n586,3386,1.5,1214225539\n586,3578,3.5,1214234085\n586,3996,2.0,1214234128\n586,4306,4.0,1214234181\n586,4963,4.5,1214234148\n586,4993,5.0,1214234082\n586,4995,5.0,1214234192\n586,5349,1.0,1214234017\n586,5445,5.0,1214233997\n586,5952,5.0,1214234290\n586,6539,1.0,1214234154\n586,6711,4.0,1214234275\n586,6874,5.0,1214234041\n586,7153,5.0,1214234172\n586,33493,1.0,1214234313\n586,48516,4.0,1214234135\n586,49272,2.5,1214234169\n586,54286,5.0,1214234316\n586,57353,4.5,1214234227\n587,25,4.0,1111348887\n587,34,3.5,1112036128\n587,45,4.0,1111086063\n587,47,3.5,1111348809\n587,50,4.5,1111102828\n587,52,4.0,1111796480\n587,58,4.5,1112399554\n587,111,4.0,1111102724\n587,123,3.0,1112457155\n587,125,4.5,1112457007\n587,150,4.5,1111347514\n587,154,4.0,1112632389\n587,162,3.0,1112117935\n587,194,4.5,1112453946\n587,199,3.0,1111367950\n587,231,0.5,1111348842\n587,246,5.0,1111085928\n587,247,3.5,1131819606\n587,265,3.5,1111102715\n587,272,4.0,1112892763\n587,296,3.5,1111347136\n587,306,3.5,1112055652\n587,318,4.5,1111347521\n587,321,4.5,1112892286\n587,345,4.0,1111086045\n587,377,3.5,1111347541\n587,457,4.5,1111347351\n587,475,4.0,1112399089\n587,495,3.0,1111086556\n587,509,4.0,1111348946\n587,515,4.0,1122546321\n587,527,5.0,1111336613\n587,541,4.0,1284472769\n587,593,4.0,1112033425\n587,599,3.5,1111363457\n587,608,4.0,1111336675\n587,659,4.5,1112633355\n587,668,3.5,1111798699\n587,718,4.0,1111626662\n587,750,4.0,1111336475\n587,778,4.0,1118421322\n587,800,3.5,1111368143\n587,858,5.0,1111102589\n587,899,5.0,1284472748\n587,902,4.0,1284473762\n587,903,5.0,1111086035\n587,904,4.0,1111360687\n587,905,4.0,1111362828\n587,906,4.0,1112034471\n587,908,5.0,1111336484\n587,909,4.0,1112055609\n587,910,4.0,1111362892\n587,911,5.0,1131823340\n587,912,5.0,1111086507\n587,913,5.0,1111102657\n587,919,4.5,1117557051\n587,920,5.0,1284473202\n587,922,4.5,1111336491\n587,923,5.0,1111336547\n587,924,4.0,1111102649\n587,926,5.0,1111362370\n587,928,4.5,1111799608\n587,929,4.0,1112053099\n587,930,4.0,1111360673\n587,933,4.0,1112034078\n587,936,4.0,1112033650\n587,942,4.0,1111799826\n587,946,5.0,1112034840\n587,947,4.0,1116100203\n587,951,3.5,1111363082\n587,953,4.0,1111085978\n587,954,4.0,1112055564\n587,955,4.0,1112056367\n587,965,4.0,1111799733\n587,969,3.5,1111799836\n587,970,3.5,1111626615\n587,1035,5.0,1111102602\n587,1041,4.5,1112315588\n587,1073,3.5,1111348876\n587,1079,5.0,1111349012\n587,1080,4.0,1111102586\n587,1084,4.5,1112056038\n587,1089,4.0,1111102626\n587,1094,4.0,1111085923\n587,1095,4.0,1112318395\n587,1096,5.0,1112456711\n587,1097,3.5,1111348860\n587,1103,4.0,1112309250\n587,1111,3.5,1160393817\n587,1131,4.5,1112055598\n587,1132,4.5,1112056021\n587,1136,4.0,1111336962\n587,1172,4.5,1111368127\n587,1178,4.0,1111336510\n587,1179,4.0,1112036243\n587,1183,4.5,1112533030\n587,1185,4.5,1112315600\n587,1189,3.5,1111363225\n587,1193,4.5,1111336459\n587,1197,4.5,1111102462\n587,1198,4.5,1111348820\n587,1203,4.0,1111336542\n587,1204,5.0,1111085983\n587,1206,4.0,1111102635\n587,1207,4.0,1111102435\n587,1208,5.0,1111336942\n587,1212,5.0,1111288845\n587,1213,4.0,1111336550\n587,1214,3.5,1121548963\n587,1217,4.0,1111362236\n587,1219,4.0,1111336572\n587,1221,4.5,1111287930\n587,1225,4.0,1111336993\n587,1226,3.5,1112036138\n587,1228,5.0,1217326285\n587,1230,5.0,1112056017\n587,1231,4.0,1112118450\n587,1233,5.0,1111362375\n587,1234,4.5,1111336661\n587,1235,4.0,1112317798\n587,1242,4.0,1112118774\n587,1244,4.5,1111086637\n587,1248,4.0,1111362254\n587,1250,5.0,1111086005\n587,1251,3.5,1111370759\n587,1252,4.0,1111085919\n587,1254,4.0,1111336696\n587,1256,5.0,1131823067\n587,1259,4.0,1111102441\n587,1260,4.5,1111336948\n587,1262,4.0,1111361411\n587,1263,5.0,1284472804\n587,1266,4.5,1148223437\n587,1267,4.0,1111336531\n587,1269,4.5,1112052419\n587,1272,5.0,1112056263\n587,1276,3.5,1111086050\n587,1280,4.5,1111362899\n587,1284,4.0,1111336600\n587,1287,5.0,1112036073\n587,1288,4.5,1111363250\n587,1292,4.0,1111626637\n587,1293,5.0,1112313979\n587,1299,4.0,1111337010\n587,1302,4.5,1111799374\n587,1304,4.0,1111362855\n587,1307,4.0,1111348931\n587,1340,4.0,1112035495\n587,1354,4.0,1111368105\n587,1358,4.0,1111102424\n587,1365,4.0,1111367994\n587,1380,3.5,1111085955\n587,1387,4.0,1111349009\n587,1393,4.0,1111367965\n587,1394,4.5,1112052935\n587,1537,5.0,1112056086\n587,1610,4.0,1284473273\n587,1617,4.5,1284472754\n587,1625,4.0,1111086012\n587,1641,4.5,1122546435\n587,1673,4.0,1112399897\n587,1674,4.0,1111346955\n587,1683,3.5,1148222180\n587,1704,3.5,1111348954\n587,1719,4.0,1112118476\n587,1784,4.0,1111796367\n587,1794,3.5,1111796461\n587,1834,4.0,1112035454\n587,1883,4.0,1111367921\n587,1923,5.0,1111102358\n587,1927,5.0,1112055433\n587,1929,3.5,1112318228\n587,1931,4.0,1111800012\n587,1944,4.5,1112313975\n587,1945,4.0,1111336608\n587,1946,4.0,1111798518\n587,1950,4.0,1111336700\n587,1952,5.0,1111423804\n587,1953,4.0,1111799720\n587,1959,5.0,1284473402\n587,1960,5.0,1117560438\n587,1961,4.0,1111348943\n587,1963,4.5,1112052091\n587,2019,5.0,1111336560\n587,2020,4.0,1112315408\n587,2028,4.5,1116098991\n587,2064,4.0,1112317870\n587,2065,4.5,1131835150\n587,2070,3.5,1111363411\n587,2076,4.0,1112634713\n587,2132,4.5,1112118801\n587,2186,4.0,1111336568\n587,2194,4.0,1111085996\n587,2243,4.5,1111103687\n587,2248,3.5,1146241582\n587,2289,4.0,1131823276\n587,2295,4.0,1112206404\n587,2300,5.0,1111103892\n587,2313,4.5,1111363275\n587,2342,3.0,1111363343\n587,2352,3.5,1111103670\n587,2366,5.0,1112036149\n587,2396,5.0,1111102399\n587,2467,4.0,1111103624\n587,2571,3.5,1111102325\n587,2612,4.0,1112052548\n587,2657,3.0,1111085992\n587,2677,4.0,1112398715\n587,2682,3.5,1160394052\n587,2686,4.0,1112633367\n587,2708,4.0,1284474778\n587,2712,4.0,1111102330\n587,2731,3.5,1111626455\n587,2734,4.0,1111103440\n587,2746,4.0,1112453780\n587,2762,4.0,1111348898\n587,2788,3.5,1111103448\n587,2791,3.5,1112036058\n587,2858,4.5,1112206831\n587,2871,4.0,1111103292\n587,2915,3.5,1111103298\n587,2917,4.5,1112034877\n587,2920,5.0,1122546230\n587,2927,5.0,1112315538\n587,2936,5.0,1284472455\n587,2937,3.5,1111799974\n587,2940,4.0,1111796126\n587,2951,3.5,1111103282\n587,2959,2.5,1111370861\n587,2966,3.5,1111103187\n587,2973,5.0,1112206177\n587,2997,4.0,1111348935\n587,3006,4.0,1111368210\n587,3008,3.5,1111796078\n587,3019,4.0,1112315627\n587,3030,4.5,1284483302\n587,3039,3.5,1111103285\n587,3068,4.0,1112315414\n587,3072,4.5,1112036270\n587,3089,3.5,1111363212\n587,3091,4.0,1112056248\n587,3095,3.5,1111363287\n587,3101,4.0,1111086053\n587,3134,4.0,1129405138\n587,3148,4.0,1111103175\n587,3152,4.0,1111103165\n587,3168,4.0,1123001592\n587,3196,4.0,1111361521\n587,3198,4.0,1112034183\n587,3201,4.0,1112315611\n587,3210,3.0,1111103150\n587,3246,4.0,1112318386\n587,3307,4.0,1112055110\n587,3361,3.5,1111103159\n587,3362,4.0,1111336983\n587,3363,3.5,1112034670\n587,3365,4.5,1111368091\n587,3384,3.5,1112317779\n587,3408,4.0,1111368261\n587,3435,5.0,1111287926\n587,3448,3.5,1111102956\n587,3462,5.0,1284472363\n587,3468,5.0,1284472441\n587,3471,4.5,1112318390\n587,3481,3.5,1111370798\n587,3498,4.0,1116099496\n587,3503,3.5,1111625672\n587,3504,3.5,1111102967\n587,3507,4.0,1111799957\n587,3546,4.0,1112891663\n587,3547,3.5,1112315770\n587,3551,4.5,1112117848\n587,3671,4.0,1112034902\n587,3679,4.5,1111800003\n587,3681,3.5,1111363242\n587,3683,3.5,1111362162\n587,3685,3.5,1111103124\n587,3730,5.0,1111336652\n587,3733,4.0,1112317876\n587,3735,4.5,1111102936\n587,3783,4.0,1111086590\n587,3801,5.0,1284472479\n587,3814,4.0,1112034373\n587,3816,4.0,1111368227\n587,3819,4.0,1112033898\n587,3855,3.5,1123001882\n587,3871,5.0,1112036067\n587,3910,3.5,1111368059\n587,3911,3.5,1112313972\n587,3929,3.5,1111363437\n587,3949,4.5,1131819438\n587,3976,4.0,1122546260\n587,3983,4.5,1160394090\n587,3996,5.0,1111363281\n587,4012,3.5,1116099972\n587,4022,3.5,1111370835\n587,4034,4.0,1111086032\n587,4173,3.5,1112313939\n587,4179,5.0,1217326267\n587,4216,4.0,1112634441\n587,4217,4.0,1284474480\n587,4218,3.5,1112892606\n587,4225,4.0,1116099327\n587,4226,3.5,1111102338\n587,4246,3.5,1111102884\n587,4262,3.0,1111795708\n587,4280,3.5,1111102897\n587,4298,4.0,1284474373\n587,4306,4.0,1112892341\n587,4361,4.0,1111102891\n587,4424,4.5,1112633533\n587,4495,3.5,1284473161\n587,4523,4.0,1123001336\n587,4612,5.0,1112313794\n587,4664,4.0,1122546868\n587,4705,5.0,1112891876\n587,4806,3.5,1112401005\n587,4809,4.0,1112399548\n587,4848,3.0,1111626373\n587,4855,4.0,1111102846\n587,4914,4.5,1112055580\n587,4973,3.5,1111361451\n587,4993,2.5,1113928291\n587,4995,3.5,1111796036\n587,4999,4.0,1284474519\n587,5008,5.0,1111336467\n587,5013,5.0,1160393838\n587,5015,3.5,1111627075\n587,5056,4.0,1284474523\n587,5120,4.5,1111336933\n587,5147,4.0,1112036762\n587,5222,4.0,1117556959\n587,5225,4.0,1131819493\n587,5291,4.0,1120496086\n587,5292,3.5,1112456701\n587,5339,4.0,1112318158\n587,5341,4.0,1112118584\n587,5349,2.5,1111796407\n587,5365,3.0,1111796057\n587,5367,4.5,1112399903\n587,5404,4.0,1131819622\n587,5418,4.0,1111796383\n587,5464,4.0,1111796504\n587,5481,0.5,1111368401\n587,5603,4.0,1111799493\n587,5618,3.0,1111336974\n587,5693,2.5,1111370674\n587,5772,4.0,1112399570\n587,5812,4.0,1112317640\n587,5902,4.0,1112314043\n587,5940,3.5,1112453819\n587,5945,3.5,1117556873\n587,5952,4.0,1116099075\n587,5989,4.0,1120496118\n587,5992,4.5,1111627120\n587,5995,4.5,1122546371\n587,6001,3.5,1111799969\n587,6008,4.0,1111796022\n587,6016,4.5,1111336436\n587,6035,4.5,1284475077\n587,6056,4.0,1118713876\n587,6073,4.0,1148222967\n587,6101,4.0,1112317505\n587,6115,3.0,1131818834\n587,6216,4.5,1117556850\n587,6230,3.5,1284473053\n587,6244,3.5,1112055556\n587,6296,4.0,1112634180\n587,6339,3.5,1111795831\n587,6370,3.5,1111368281\n587,6380,3.5,1160394071\n587,6385,3.5,1111363207\n587,6440,4.0,1111370704\n587,6538,4.0,1114296013\n587,6539,3.5,1111423743\n587,6620,3.5,1111337018\n587,6643,4.0,1111796350\n587,6662,4.0,1284473106\n587,6663,4.0,1112052912\n587,6666,3.5,1111625996\n587,6669,4.5,1111336988\n587,6711,3.5,1116099017\n587,6724,4.5,1111799997\n587,6772,1.0,1111363268\n587,6779,4.0,1112532693\n587,6783,5.0,1133113375\n587,6786,5.0,1112052930\n587,6787,4.0,1111968470\n587,6791,5.0,1112056004\n587,6807,4.0,1112056045\n587,6828,4.0,1146588279\n587,6858,3.5,1160393891\n587,6870,4.0,1123000544\n587,6890,3.5,1111796440\n587,6954,4.5,1111626037\n587,6978,3.5,1160393937\n587,6982,4.0,1284473483\n587,6987,4.0,1111086823\n587,6993,4.5,1111362842\n587,7042,4.0,1112892347\n587,7063,4.5,1111367888\n587,7064,4.5,1111423706\n587,7068,2.5,1111370972\n587,7084,4.0,1111361738\n587,7089,3.5,1111796530\n587,7091,5.0,1111288854\n587,7121,3.5,1111363404\n587,7132,5.0,1111336499\n587,7136,4.0,1284475114\n587,7139,3.0,1111367865\n587,7153,4.0,1117556941\n587,7156,4.0,1284472661\n587,7160,4.0,1122546354\n587,7208,5.0,1112036277\n587,7209,3.0,1111627102\n587,7210,4.0,1111625926\n587,7215,4.0,1111968788\n587,7234,3.5,1111367908\n587,7256,5.0,1148222119\n587,7299,4.0,1111796115\n587,7327,3.0,1131818748\n587,7361,4.0,1130021718\n587,7396,4.0,1284475015\n587,7478,4.0,1111336680\n587,7487,4.0,1111845608\n587,7560,3.0,1111086741\n587,7566,4.5,1284474443\n587,7669,4.0,1284483407\n587,7700,4.5,1112033905\n587,7706,4.0,1112453799\n587,7728,4.5,1111363198\n587,7767,5.0,1284474083\n587,7792,3.5,1131819458\n587,7840,4.0,1112205888\n587,7943,4.5,1160393996\n587,8044,3.5,1112055394\n587,8121,5.0,1112117944\n587,8128,3.0,1112117545\n587,8143,3.5,1111626155\n587,8154,2.0,1111370782\n587,8183,4.0,1111968960\n587,8188,4.0,1284473731\n587,8207,3.5,1111086731\n587,8228,5.0,1111287916\n587,8337,4.0,1111337061\n587,8341,4.0,1112056029\n587,8499,3.0,1148223063\n587,8542,5.0,1111288848\n587,8571,3.5,1112532676\n587,8582,4.0,1112634964\n587,8591,3.5,1111845601\n587,8610,4.0,1112034895\n587,8618,4.0,1284474221\n587,8620,4.0,1284474527\n587,8623,4.0,1112633930\n587,8650,5.0,1112318381\n587,8724,4.0,1148223046\n587,8754,4.5,1111799751\n587,8779,4.0,1111796427\n587,8873,4.5,1118419673\n587,8933,5.0,1112457242\n587,8938,4.0,1131819589\n587,8949,4.0,1111336448\n587,8954,3.5,1160393864\n587,8958,4.0,1284473297\n587,8983,4.0,1160394113\n587,25805,4.0,1284473819\n587,25827,3.5,1116100454\n587,25852,5.0,1284472666\n587,26472,5.0,1284472384\n587,26649,3.5,1284473721\n587,26663,4.0,1160393770\n587,26712,4.5,1284474394\n587,27721,4.0,1160394039\n587,27768,3.5,1113928372\n587,30707,4.5,1116099143\n587,30749,4.0,1284472712\n587,32525,5.0,1284473442\n587,32591,4.0,1148222148\n587,33880,3.5,1146157466\n587,37733,3.5,1148222199\n587,37741,4.0,1148222163\n587,38384,3.5,1284473489\n587,39183,5.0,1148222225\n587,41285,2.5,1148222079\n587,44555,4.5,1284472419\n587,44587,3.5,1284473652\n587,47610,4.0,1160393957\n587,47728,5.0,1284472635\n587,48696,4.5,1284473098\n587,49272,4.0,1284473283\n587,50658,4.5,1284474770\n587,50740,4.5,1284475020\n587,50742,4.5,1284472326\n587,52435,4.0,1284475240\n587,52767,4.5,1284474391\n587,55069,4.5,1284475037\n587,56367,3.5,1217326303\n587,58303,5.0,1284483441\n587,60382,4.0,1284483448\n587,68194,4.0,1284472630\n587,68838,4.5,1284472777\n587,70846,3.5,1284474541\n587,71462,4.5,1284475056\n588,6,4.0,842298338\n588,10,3.0,842298158\n588,14,3.0,842298642\n588,19,2.0,842298252\n588,21,4.0,842298252\n588,25,4.0,842298338\n588,32,4.0,842298592\n588,47,5.0,842298216\n588,50,5.0,842298338\n588,62,3.0,842298422\n588,110,5.0,842298189\n588,150,4.0,842298010\n588,153,4.0,842298045\n588,161,4.0,842298158\n588,165,3.0,842298045\n588,185,3.0,842298158\n588,208,3.0,842298158\n588,223,3.0,842298526\n588,231,3.0,842298082\n588,253,2.0,842298158\n588,288,3.0,842298189\n588,296,5.0,842298010\n588,300,4.0,842298252\n588,316,3.0,842298126\n588,318,5.0,842298126\n588,329,3.0,842298082\n588,339,3.0,842298189\n588,344,4.0,842298045\n588,349,3.0,842298045\n588,356,5.0,842298126\n588,364,3.0,842298216\n588,367,3.0,842298252\n588,368,3.0,842298526\n588,377,4.0,842298216\n588,380,5.0,842298010\n588,428,4.0,842298484\n588,434,3.0,842298126\n588,454,3.0,842298189\n588,457,5.0,842298083\n588,471,3.0,842298526\n588,475,4.0,842298484\n588,480,3.0,842298189\n588,514,3.0,842298422\n588,527,5.0,842298392\n588,589,3.0,842298216\n588,590,4.0,842298010\n588,592,4.0,842298010\n588,593,5.0,842298082\n588,648,3.0,842298392\n588,733,5.0,842298392\n588,786,3.0,842298526\n588,1036,4.0,842298484\n589,10,4.0,836109734\n589,44,3.0,838902719\n589,47,5.0,838902404\n589,95,4.0,838902719\n589,110,3.0,838902121\n589,145,3.0,838903038\n589,150,4.0,836109171\n589,153,3.0,838902121\n589,165,3.0,836109522\n589,173,3.0,838902625\n589,204,3.0,838902719\n589,227,4.0,838902887\n589,231,3.0,836109554\n589,292,4.0,836109588\n589,296,3.0,836109171\n589,315,3.0,838902625\n589,316,4.0,836109554\n589,329,4.0,836109554\n589,344,3.0,836109522\n589,349,4.0,838902121\n589,353,4.0,838902761\n589,377,5.0,838902625\n589,380,4.0,836109171\n589,383,3.0,838903289\n589,405,4.0,838903346\n589,434,3.0,836109588\n589,442,4.0,838902625\n589,457,4.0,836109734\n589,464,3.0,838903466\n589,474,4.0,838902761\n589,480,5.0,838902404\n589,485,3.0,838902887\n589,533,3.0,838903346\n589,544,3.0,838903466\n589,548,3.0,838903466\n589,552,4.0,838903038\n589,588,4.0,836109522\n589,589,4.0,838902404\n589,590,4.0,836109171\n589,592,3.0,836109171\n589,593,3.0,836109588\n589,733,4.0,838903141\n589,780,4.0,838903141\n590,2,3.0,848677637\n590,5,3.0,848677907\n590,6,4.0,848677809\n590,10,3.0,848677459\n590,22,3.0,848677877\n590,25,5.0,848677760\n590,31,3.0,848677861\n590,32,3.0,848677590\n590,34,4.0,848677547\n590,47,4.0,848677525\n590,50,5.0,848677567\n590,110,5.0,848677459\n590,141,4.0,848677687\n590,150,5.0,848677295\n590,151,4.0,848677713\n590,153,3.0,848677376\n590,160,3.0,848677616\n590,161,4.0,848677459\n590,163,3.0,848677890\n590,165,4.0,848677375\n590,168,3.0,848677787\n590,172,3.0,848677787\n590,173,3.0,848677636\n590,185,3.0,848677459\n590,186,3.0,848677713\n590,193,3.0,848677837\n590,196,3.0,848677686\n590,204,4.0,848677742\n590,208,3.0,848677459\n590,223,5.0,848677877\n590,225,4.0,848677590\n590,231,3.0,848677408\n590,235,4.0,848677742\n590,253,3.0,848677496\n590,256,3.0,848677787\n590,265,4.0,848677787\n590,266,4.0,848677616\n590,276,3.0,848677890\n590,288,4.0,848677496\n590,292,4.0,848677432\n590,293,4.0,848677742\n590,296,4.0,848677295\n590,315,3.0,848677654\n590,316,3.0,848677408\n590,317,4.0,848677616\n590,318,5.0,848677432\n590,329,3.0,848677432\n590,333,3.0,848677809\n590,337,4.0,848677686\n590,339,3.0,848677496\n590,342,4.0,848677907\n590,344,3.0,848677376\n590,349,3.0,848677408\n590,350,3.0,848677616\n590,353,3.0,848677760\n590,356,4.0,848677408\n590,357,3.0,848677590\n590,364,3.0,848677525\n590,367,3.0,848677525\n590,368,4.0,848677742\n590,370,3.0,848677809\n590,377,4.0,848677525\n590,380,4.0,848677295\n590,420,3.0,848677590\n590,432,3.0,848677637\n590,434,4.0,848677432\n590,435,3.0,848677637\n590,440,3.0,848677616\n590,442,3.0,848677654\n590,454,3.0,848677496\n590,457,5.0,848677375\n590,466,3.0,848677837\n590,468,3.0,848677890\n590,474,3.0,848677654\n590,480,4.0,848677432\n590,485,4.0,848677808\n590,500,3.0,848677525\n590,508,3.0,848677670\n590,520,3.0,848677861\n590,527,4.0,848677567\n590,551,4.0,848677742\n590,588,3.0,848677375\n590,589,4.0,848677496\n590,590,3.0,848677295\n590,592,3.0,848677295\n590,595,3.0,848677408\n590,597,3.0,848677547\n590,736,3.0,848677686\n590,780,3.0,848677713\n591,48,3.0,1112415483\n591,158,2.0,1112415860\n591,370,3.5,1112415434\n591,592,3.5,1112415767\n591,596,3.0,1112415520\n591,720,3.0,1112415994\n591,783,4.0,1112415569\n591,953,4.5,1112415502\n591,1073,1.5,1112415847\n591,1097,3.5,1112415830\n591,1250,3.5,1112415541\n591,1282,4.0,1112415592\n591,1380,2.0,1112415824\n591,2006,3.5,1112415574\n591,2100,3.5,1112415530\n591,2321,3.5,1112415549\n591,2406,2.5,1112415442\n591,2407,4.0,1112415777\n591,2502,4.0,1112415512\n591,2657,3.0,1112415527\n591,2683,1.5,1112415773\n591,2918,4.5,1112415803\n591,2949,2.5,1112415903\n591,2987,3.0,1112415787\n591,3052,2.5,1112415565\n591,3088,3.5,1112415922\n591,3868,4.0,1112415912\n591,5060,3.5,1112415428\n591,5299,4.5,1112415869\n591,8917,2.5,1112416055\n592,10,4.0,995420467\n592,104,5.0,995420003\n592,110,4.0,995419352\n592,150,4.0,995420234\n592,158,2.0,995422382\n592,165,5.0,995421850\n592,223,5.0,995420188\n592,260,5.0,995419094\n592,329,2.0,995421702\n592,349,3.0,995418869\n592,353,4.0,995421074\n592,356,4.0,995422609\n592,364,2.0,995420684\n592,367,4.0,995420787\n592,380,5.0,995419929\n592,480,4.0,995420250\n592,527,4.0,995419405\n592,588,4.0,995420443\n592,589,5.0,995419470\n592,592,3.0,995421917\n592,596,2.0,995420826\n592,736,4.0,995422133\n592,780,5.0,995421917\n592,783,1.0,995420733\n592,785,5.0,995420733\n592,919,2.0,995422335\n592,1017,4.0,995422413\n592,1032,2.0,995420565\n592,1033,2.0,995420217\n592,1036,5.0,995419494\n592,1059,3.0,995420905\n592,1073,2.0,995422387\n592,1101,3.0,995420298\n592,1136,5.0,995419650\n592,1148,3.0,995419306\n592,1194,2.0,995421737\n592,1196,5.0,995418869\n592,1197,4.0,995418841\n592,1198,5.0,995419385\n592,1200,5.0,995421118\n592,1206,4.0,995420202\n592,1210,5.0,995418908\n592,1214,5.0,995420373\n592,1240,4.0,995419754\n592,1263,2.0,995419210\n592,1282,1.0,995420615\n592,1291,4.0,995419713\n592,1298,2.0,995419537\n592,1320,4.0,995421161\n592,1356,4.0,995421702\n592,1370,5.0,995421934\n592,1371,1.0,995421702\n592,1372,4.0,995421702\n592,1373,2.0,995421702\n592,1374,4.0,995421702\n592,1375,2.0,995421702\n592,1376,4.0,995420588\n592,1387,3.0,995421863\n592,1517,4.0,995420684\n592,1552,5.0,995422320\n592,1580,4.0,995419125\n592,1682,4.0,995420188\n592,1690,5.0,995421161\n592,1693,3.0,995420698\n592,1722,5.0,995422066\n592,1735,3.0,995420188\n592,1917,5.0,995422055\n592,1941,5.0,995419617\n592,1954,4.0,995419975\n592,2028,4.0,995418893\n592,2080,2.0,995420684\n592,2096,2.0,995420314\n592,2115,5.0,995420650\n592,2124,3.0,995421042\n592,2167,3.0,995420467\n592,2273,5.0,995421876\n592,2302,5.0,995419176\n592,2353,5.0,995421955\n592,2355,3.0,995420629\n592,2376,5.0,995420629\n592,2423,5.0,995419701\n592,2571,5.0,995419337\n592,2617,3.0,995421967\n592,2628,5.0,995419094\n592,2671,3.0,995420250\n592,2694,4.0,995420935\n592,2762,5.0,995419897\n592,2772,4.0,995420935\n592,2804,3.0,995419991\n592,2916,5.0,995420601\n592,2918,3.0,995419482\n592,2947,5.0,995419405\n592,2948,4.0,995420234\n592,2949,5.0,995421888\n592,2959,5.0,995419071\n592,2987,4.0,995422335\n592,2989,5.0,995420787\n592,2990,5.0,995421030\n592,2991,5.0,995420921\n592,2993,5.0,995421850\n592,3082,5.0,995420852\n592,3175,4.0,995420534\n592,3253,4.0,995420274\n592,3271,3.0,995420565\n592,3397,4.0,995419537\n592,3404,3.0,995422106\n592,3452,4.0,995421319\n592,3510,4.0,995421303\n592,3527,5.0,995421850\n592,3578,5.0,995421850\n592,3617,4.0,995420049\n592,3635,5.0,995419650\n592,3638,5.0,995422133\n592,3717,5.0,995420037\n592,3744,4.0,995421368\n592,3752,4.0,995421352\n592,3798,4.0,995421439\n592,3821,5.0,995421536\n592,3826,3.0,995421519\n592,3897,4.0,995419650\n592,3916,4.0,995419883\n592,3948,5.0,995421289\n592,3977,2.0,995421330\n592,3979,3.0,995421536\n592,3984,5.0,995422133\n592,4214,4.0,995420750\n592,4247,5.0,995421498\n592,4270,2.0,995421391\n592,4299,4.0,995421405\n592,4340,3.0,995421433\n592,4344,5.0,995421094\n592,4369,5.0,995419146\n592,4453,1.0,995421593\n593,2,3.0,835464130\n593,10,2.0,835463471\n593,20,4.0,840996449\n593,25,5.0,835465034\n593,32,5.0,835463824\n593,47,4.0,835463672\n593,95,4.0,835464565\n593,122,3.0,840996303\n593,141,5.0,835464565\n593,150,4.0,835462855\n593,165,4.0,835462904\n593,172,5.0,835464635\n593,173,3.0,835463878\n593,185,5.0,835463560\n593,196,4.0,835464162\n593,225,4.0,835463672\n593,227,4.0,835465650\n593,231,3.0,840995397\n593,246,4.0,835465650\n593,273,3.0,835465650\n593,277,4.0,835465163\n593,288,5.0,835463581\n593,292,4.0,835463471\n593,296,5.0,835462855\n593,306,4.0,840996303\n593,307,4.0,840996339\n593,316,3.0,835463235\n593,319,5.0,840996278\n593,329,3.0,835463235\n593,337,3.0,835463908\n593,344,4.0,835462904\n593,353,5.0,835466240\n593,356,5.0,840995512\n593,357,5.0,835465163\n593,362,3.0,840996099\n593,367,4.0,835463878\n593,370,3.0,840995929\n593,377,5.0,835464671\n593,380,2.0,835462855\n593,382,4.0,840996381\n593,420,3.0,835463824\n593,434,3.0,835463471\n593,442,5.0,835464776\n593,454,5.0,835463847\n593,457,4.0,835463560\n593,466,3.0,840995953\n593,480,3.0,835464163\n593,485,3.0,840995909\n593,497,5.0,840995910\n593,500,4.0,835465034\n593,508,5.0,840995839\n593,509,5.0,840995807\n593,519,3.0,840996369\n593,520,3.0,840995953\n593,531,3.0,840996303\n593,533,4.0,840996381\n593,543,5.0,840996257\n593,552,4.0,840995972\n593,555,5.0,835464671\n593,586,3.0,835465990\n593,587,4.0,835465255\n593,589,4.0,835464565\n593,592,3.0,835462855\n593,593,4.0,835463560\n593,597,4.0,835465650\n593,616,4.0,840996226\n593,648,4.0,840995888\n593,708,5.0,844753626\n593,780,5.0,840995995\n593,1104,3.0,844753453\n594,1,4.0,938948878\n594,21,5.0,938961252\n594,110,5.0,938962157\n594,162,5.0,938960414\n594,206,4.0,938960243\n594,246,4.0,938960116\n594,260,5.0,938961252\n594,296,5.0,938949135\n594,474,3.0,938961491\n594,527,5.0,938962048\n594,541,4.0,938961093\n594,549,5.0,938960161\n594,608,5.0,938949190\n594,778,2.0,938962048\n594,858,5.0,938948387\n594,913,5.0,938961093\n594,1079,4.0,938947869\n594,1089,5.0,938949136\n594,1147,5.0,938960074\n594,1148,5.0,938948789\n594,1196,5.0,938961301\n594,1197,3.0,938947985\n594,1198,5.0,938961252\n594,1200,4.0,938948241\n594,1210,4.0,938961373\n594,1213,5.0,938949281\n594,1214,3.0,938961373\n594,1220,5.0,938962080\n594,1221,5.0,938948387\n594,1223,5.0,938948789\n594,1230,5.0,955037203\n594,1234,4.0,938948387\n594,1288,5.0,938947869\n594,1304,4.0,938961491\n594,1321,3.0,938948287\n594,1358,5.0,938962157\n594,1387,5.0,938961373\n594,1394,4.0,938947869\n594,1584,4.0,939034456\n594,1610,3.0,938961373\n594,1617,5.0,938949281\n594,1729,3.0,938949280\n594,1784,3.0,938948831\n594,1909,4.0,939034456\n594,1953,5.0,938948387\n594,1965,5.0,938947985\n594,2000,2.0,938961301\n594,2028,4.0,938961252\n594,2064,5.0,938947985\n594,2081,3.0,938960925\n594,2150,4.0,938947985\n594,2243,3.0,938947985\n594,2248,4.0,938947985\n594,2262,2.0,938948241\n594,2268,3.0,938949190\n594,2289,5.0,938948878\n594,2311,2.0,938948241\n594,2366,5.0,938961373\n594,2375,2.0,938962080\n594,2406,4.0,938961373\n594,2542,5.0,938948622\n594,2571,3.0,938961301\n594,2599,5.0,938948789\n594,2628,4.0,938961301\n594,2706,3.0,938947368\n594,2710,4.0,938947397\n594,2716,3.0,938947985\n594,2723,3.0,938947574\n594,2726,4.0,938961136\n594,2759,4.0,938947494\n594,2791,3.0,938947985\n594,3362,4.0,955037203\n594,3363,5.0,955037203\n594,3421,4.0,955037203\n594,5060,5.0,955037203\n595,1,5.0,965077903\n595,2,2.0,965230397\n595,13,5.0,965230121\n595,17,4.0,965077977\n595,34,3.0,965077143\n595,48,4.0,965230500\n595,111,5.0,965162852\n595,150,4.0,965078298\n595,162,5.0,965077016\n595,164,4.0,965077903\n595,176,5.0,965077977\n595,206,5.0,965230839\n595,235,4.0,965077977\n595,262,5.0,965078078\n595,265,4.0,965077878\n595,272,5.0,965076996\n595,296,5.0,965077067\n595,313,1.0,965230326\n595,318,4.0,965076996\n595,334,2.0,965077926\n595,348,3.0,965078096\n595,357,4.0,965078041\n595,364,4.0,965230086\n595,509,5.0,965078017\n595,531,5.0,965230203\n595,535,5.0,965077067\n595,549,4.0,965078374\n595,556,5.0,965230906\n595,558,4.0,965230453\n595,562,4.0,965077092\n595,581,3.0,965230797\n595,586,4.0,965230453\n595,588,3.0,965230182\n595,590,5.0,965078374\n595,593,5.0,965077188\n595,594,3.0,965230086\n595,595,2.0,965230086\n595,596,4.0,965230086\n595,608,5.0,965077800\n595,661,4.0,965230022\n595,766,3.0,965076608\n595,778,5.0,965077092\n595,899,5.0,965230967\n595,900,4.0,965231022\n595,904,5.0,965162827\n595,908,5.0,965162852\n595,912,3.0,965076586\n595,914,4.0,965231048\n595,917,5.0,965230500\n595,919,5.0,965230602\n595,1013,4.0,965230233\n595,1022,4.0,965230182\n595,1023,5.0,965230615\n595,1028,5.0,965230022\n595,1031,3.0,965230182\n595,1032,4.0,965230182\n595,1033,3.0,965230150\n595,1035,5.0,965231048\n595,1059,5.0,965078283\n595,1073,5.0,965230634\n595,1081,4.0,965230997\n595,1089,5.0,965077170\n595,1094,5.0,965078150\n595,1097,5.0,965230022\n595,1120,4.0,965078240\n595,1148,4.0,965077143\n595,1171,4.0,965078341\n595,1179,4.0,965077977\n595,1183,3.0,965078374\n595,1188,5.0,965077188\n595,1189,5.0,965230754\n595,1191,4.0,965230839\n595,1192,5.0,965077016\n595,1198,4.0,965076608\n595,1213,5.0,965077027\n595,1220,4.0,965231048\n595,1223,4.0,965077878\n595,1230,4.0,965076623\n595,1264,5.0,965162892\n595,1265,4.0,965077828\n595,1266,2.0,965077926\n595,1282,3.0,965230022\n595,1288,5.0,965230997\n595,1289,1.0,965230819\n595,1358,4.0,965077067\n595,1367,3.0,965230266\n595,1380,4.0,965231022\n595,1449,5.0,965078283\n595,1500,2.0,965077949\n595,1537,4.0,965077977\n595,1566,4.0,965230295\n595,1610,3.0,965078263\n595,1617,5.0,965162852\n595,1641,4.0,965077878\n595,1648,1.0,965078263\n595,1673,5.0,965077208\n595,1694,4.0,965077949\n595,1713,1.0,965230121\n595,1734,5.0,965078133\n595,1806,2.0,965230654\n595,1883,4.0,965078374\n595,1907,3.0,965230150\n595,1916,5.0,965077854\n595,1921,4.0,965078170\n595,1923,4.0,965077854\n595,1947,5.0,965230997\n595,1966,4.0,965077828\n595,2005,4.0,965230266\n595,2014,4.0,965230266\n595,2015,3.0,965230326\n595,2018,4.0,965230086\n595,2028,1.0,965077092\n595,2033,1.0,965230150\n595,2059,3.0,965230500\n595,2064,5.0,965230777\n595,2078,4.0,965230043\n595,2080,4.0,965230086\n595,2081,3.0,965230266\n595,2085,3.0,965230233\n595,2087,4.0,965230086\n595,2096,4.0,965230150\n595,2102,5.0,965230121\n595,2137,5.0,965230043\n595,2138,5.0,965230022\n595,2139,1.0,965230086\n595,2141,5.0,965230266\n595,2186,5.0,965162892\n595,2284,5.0,965078170\n595,2289,5.0,965077115\n595,2294,1.0,965230182\n595,2303,5.0,965230997\n595,2324,4.0,965078017\n595,2355,5.0,965078150\n595,2391,5.0,965078263\n595,2396,5.0,965077926\n595,2571,4.0,965077067\n595,2599,5.0,965077115\n595,2677,4.0,965230839\n595,2687,3.0,965230326\n595,2692,5.0,965077903\n595,2700,1.0,965078041\n595,2716,3.0,965076608\n595,2762,3.0,965077170\n595,2858,5.0,965077208\n595,2859,4.0,965230819\n595,2890,4.0,965077903\n595,2908,4.0,965077067\n595,2971,5.0,965231022\n595,3006,5.0,965077067\n595,3061,4.0,965230997\n595,3114,5.0,965230022\n595,3182,2.0,965076706\n595,3246,5.0,965078059\n595,3400,1.0,965230121\n595,3545,5.0,965230967\n595,3549,4.0,965230967\n595,3578,5.0,965076734\n595,3606,3.0,965230967\n595,3615,2.0,965076706\n595,3623,2.0,965076872\n595,3672,4.0,965230397\n595,3751,3.0,965076706\n595,3793,2.0,965076872\n596,1,3.5,1145034973\n596,6,4.0,1138659551\n596,10,3.5,1142088563\n596,16,5.0,1138658329\n596,18,3.5,1139403101\n596,19,2.5,1138658273\n596,23,3.5,1140797926\n596,25,4.0,1138658441\n596,31,3.0,1138705152\n596,32,5.0,1138659546\n596,36,3.5,1142088573\n596,47,4.0,1138659444\n596,50,4.5,1138659441\n596,69,4.0,1147972002\n596,70,4.0,1138659867\n596,92,3.0,1139334630\n596,110,4.0,1138660509\n596,111,5.0,1138658397\n596,141,4.0,1138658777\n596,145,4.5,1142088861\n596,147,3.5,1138661955\n596,150,3.5,1138662118\n596,156,5.0,1139092457\n596,163,3.5,1140797899\n596,165,3.5,1142088523\n596,172,3.5,1138705156\n596,194,5.0,1139092479\n596,223,4.0,1138659553\n596,231,3.0,1142088550\n596,247,4.0,1139143221\n596,253,4.0,1138902768\n596,259,3.5,1138732383\n596,260,3.0,1138659800\n596,266,3.0,1140784454\n596,282,3.0,1142088795\n596,288,4.5,1138661857\n596,292,3.5,1138877013\n596,293,4.0,1138659480\n596,296,5.0,1138658558\n596,300,3.5,1138729358\n596,316,3.5,1142088535\n596,318,5.0,1138659437\n596,327,1.5,1139334643\n596,329,3.5,1138729373\n596,337,3.5,1140797876\n596,339,3.5,1138661870\n596,344,3.5,1140785813\n596,350,3.5,1138877007\n596,353,4.5,1138729365\n596,355,3.0,1138658758\n596,356,5.0,1138658566\n596,357,3.5,1138902774\n596,364,3.0,1139307601\n596,367,3.0,1138729370\n596,370,3.0,1138658745\n596,373,3.0,1138732361\n596,377,4.0,1138902779\n596,380,3.0,1138729340\n596,428,4.5,1138659400\n596,431,4.0,1138659358\n596,434,3.0,1138877018\n596,440,3.0,1138705128\n596,441,3.5,1138729874\n596,442,4.0,1139307591\n596,443,5.0,1138659264\n596,454,4.0,1138729339\n596,455,3.0,1139403109\n596,457,4.0,1138662101\n596,466,3.0,1139402969\n596,474,3.5,1138658249\n596,480,4.0,1138658585\n596,481,4.0,1139403068\n596,485,3.5,1138658762\n596,493,3.5,1138729837\n596,500,3.5,1138705133\n596,508,3.5,1140798130\n596,527,4.5,1138658580\n596,532,2.5,1139403076\n596,535,4.0,1139403086\n596,539,3.0,1138661829\n596,541,3.5,1139316022\n596,543,1.0,1138705109\n596,553,3.5,1138658343\n596,555,4.0,1138658735\n596,586,3.5,1139402961\n596,587,3.5,1140797887\n596,589,4.0,1138662141\n596,590,4.0,1138658562\n596,593,4.0,1138659461\n596,595,3.0,1139402926\n596,597,3.5,1138658725\n596,608,3.5,1138660461\n596,628,4.0,1138660479\n596,648,3.5,1142088527\n596,733,4.0,1138659195\n596,736,3.5,1142088549\n596,778,4.5,1138658715\n596,780,3.5,1138662154\n596,783,2.5,1139307579\n596,784,3.5,1138705121\n596,786,3.0,1142088659\n596,788,3.0,1142088641\n596,858,5.0,1138659368\n596,902,4.0,1139143144\n596,903,4.5,1138660389\n596,904,4.5,1138660382\n596,910,3.5,1138658720\n596,912,4.5,1138729762\n596,924,3.5,1138705101\n596,931,4.0,1139403071\n596,953,4.0,1138705097\n596,1036,4.0,1138876991\n596,1042,3.0,1139143205\n596,1080,4.0,1139307556\n596,1086,4.5,1138875194\n596,1089,4.0,1138659499\n596,1090,3.5,1138660310\n596,1092,3.5,1139307571\n596,1093,4.5,1139403031\n596,1097,3.5,1140785802\n596,1101,3.0,1139307563\n596,1120,3.5,1138729833\n596,1129,3.5,1142088998\n596,1136,3.5,1138658711\n596,1171,3.0,1139092426\n596,1183,0.5,1138661846\n596,1193,5.0,1138658708\n596,1196,3.5,1142088479\n596,1199,3.5,1138876981\n596,1206,4.0,1138659827\n596,1208,4.5,1138658311\n596,1209,5.0,1138659425\n596,1210,3.5,1142088482\n596,1211,5.0,1138729155\n596,1213,5.0,1138658243\n596,1219,4.5,1138660399\n596,1221,5.0,1138659369\n596,1222,4.0,1138659491\n596,1227,4.5,1138659414\n596,1233,4.0,1138661848\n596,1240,3.5,1138705083\n596,1246,4.0,1138658692\n596,1258,4.0,1138658338\n596,1259,3.5,1138659473\n596,1265,4.0,1138732315\n596,1267,2.5,1138660005\n596,1270,3.5,1139092271\n596,1279,4.5,1138732104\n596,1281,3.0,1138660009\n596,1287,4.0,1145034956\n596,1288,4.5,1138658687\n596,1302,2.5,1138705079\n596,1333,4.0,1138729865\n596,1343,3.5,1140797841\n596,1347,2.5,1147971936\n596,1356,3.5,1142088626\n596,1370,3.5,1138732555\n596,1387,4.5,1138705039\n596,1388,3.5,1139092413\n596,1391,3.0,1142088710\n596,1407,4.0,1138876965\n596,1408,4.0,1138659841\n596,1461,3.5,1139307740\n596,1466,4.0,1138658646\n596,1479,3.5,1139403049\n596,1485,3.5,1140785825\n596,1517,3.5,1138658277\n596,1527,3.0,1138658667\n596,1552,3.5,1138705055\n596,1573,3.5,1138732341\n596,1580,3.0,1138658670\n596,1584,3.0,1138705044\n596,1608,2.5,1138658678\n596,1617,4.0,1138660432\n596,1619,4.5,1139403035\n596,1625,4.5,1138659506\n596,1627,3.5,1139092405\n596,1644,2.5,1147971922\n596,1645,4.0,1139307544\n596,1653,4.5,1138660597\n596,1671,3.5,1142905481\n596,1672,3.5,1138659169\n596,1676,3.5,1138659792\n596,1682,4.0,1138658655\n596,1704,4.5,1138659458\n596,1721,4.0,1138660612\n596,1722,3.5,1138659783\n596,1729,4.0,1138658661\n596,1732,5.0,1138659217\n596,1747,5.0,1138876957\n596,1827,4.0,1138729826\n596,1835,4.0,1138732377\n596,1884,4.5,1139092395\n596,1892,4.0,1138660016\n596,1912,3.5,1142088991\n596,1917,3.0,1139402917\n596,1923,4.0,1138658262\n596,1961,4.5,1138659521\n596,1968,3.5,1142905460\n596,1982,3.5,1138729521\n596,1997,3.5,1138658653\n596,2003,3.5,1138660611\n596,2004,3.5,1138660053\n596,2011,3.5,1140785783\n596,2012,3.5,1138876971\n596,2023,4.0,1138659371\n596,2028,4.0,1138660306\n596,2054,3.0,1138705029\n596,2064,4.0,1142089063\n596,2067,4.0,1139307701\n596,2081,2.0,1138659774\n596,2160,3.5,1138658478\n596,2161,3.0,1139143175\n596,2167,4.0,1140785777\n596,2178,4.0,1142905527\n596,2194,3.5,1138659778\n596,2231,3.5,1140784370\n596,2321,3.5,1138658663\n596,2324,4.5,1138660348\n596,2329,5.0,1138658627\n596,2338,3.0,1138661936\n596,2340,3.5,1139307711\n596,2353,3.5,1138658673\n596,2355,3.0,1142088672\n596,2378,3.0,1139307694\n596,2389,3.5,1140050384\n596,2424,3.0,1138705022\n596,2427,4.0,1138659057\n596,2467,4.0,1138659053\n596,2474,4.0,1138659981\n596,2485,3.5,1139307690\n596,2505,3.5,1138659068\n596,2529,3.5,1138658606\n596,2541,3.5,1138659063\n596,2542,3.5,1138659753\n596,2571,4.5,1138660295\n596,2572,3.0,1142088973\n596,2596,4.0,1138660571\n596,2628,4.0,1138658620\n596,2671,3.5,1138658615\n596,2672,4.0,1139307684\n596,2677,4.0,1138661902\n596,2683,3.5,1138661824\n596,2692,4.0,1138659604\n596,2706,3.5,1138658307\n596,2707,4.5,1139307677\n596,2710,4.0,1138658328\n596,2722,2.0,1138659047\n596,2762,4.5,1138658596\n596,2797,3.5,1138658324\n596,2803,4.0,1138659036\n596,2805,3.0,1138659039\n596,2858,5.0,1138659468\n596,2861,3.0,1138661923\n596,2908,4.0,1139307661\n596,2912,3.5,1141003791\n596,2918,1.0,1138705003\n596,2944,3.0,1138659029\n596,2947,3.5,1140785792\n596,2953,3.5,1138875126\n596,2959,5.0,1138658240\n596,2966,4.0,1138729888\n596,2997,3.5,1138661826\n596,3006,1.0,1138659533\n596,3020,5.0,1138659013\n596,3033,3.0,1138732561\n596,3081,3.5,1142088874\n596,3113,2.5,1139092360\n596,3147,4.0,1138660492\n596,3176,4.5,1138704977\n596,3177,3.5,1147972020\n596,3186,3.5,1138659973\n596,3198,4.5,1138659595\n596,3253,4.0,1138658600\n596,3267,3.5,1138658998\n596,3275,4.0,1138660355\n596,3285,5.0,1138660195\n596,3386,4.0,1138658993\n596,3408,3.5,1138704983\n596,3409,3.0,1138729445\n596,3448,3.5,1138660584\n596,3481,5.0,1138658587\n596,3499,3.5,1138659515\n596,3510,3.0,1138729436\n596,3535,4.5,1139307898\n596,3556,4.5,1138661896\n596,3578,4.5,1140797838\n596,3614,3.5,1138658976\n596,3617,3.0,1138729441\n596,3623,3.0,1138704970\n596,3653,5.0,1138659266\n596,3681,3.5,1210534664\n596,3686,4.0,1139402984\n596,3706,3.5,1139092333\n596,3717,3.0,1138658985\n596,3791,3.0,1138729450\n596,3793,3.5,1138658296\n596,3825,3.0,1139092347\n596,3826,3.0,1139402994\n596,3869,4.0,1138658979\n596,3896,3.5,1139307904\n596,3897,4.5,1138658543\n596,3948,3.5,1138658570\n596,3949,4.0,1138659561\n596,3977,3.0,1140797960\n596,3986,2.5,1138658932\n596,3994,1.0,1139092242\n596,3999,2.5,1139334653\n596,4011,4.5,1138659454\n596,4015,3.0,1139307645\n596,4022,3.5,1138729385\n596,4025,3.5,1138729399\n596,4027,4.0,1138729684\n596,4033,3.5,1138658918\n596,4146,4.0,1149788293\n596,4161,3.5,1138658927\n596,4223,3.0,1138658915\n596,4226,5.0,1138659449\n596,4262,5.0,1138659467\n596,4306,3.0,1138658253\n596,4310,3.5,1138658939\n596,4343,2.0,1138729417\n596,4344,3.5,1138729395\n596,4351,4.5,1139092339\n596,4361,3.0,1139307623\n596,4369,3.5,1138659946\n596,4388,0.5,1138658967\n596,4639,3.5,1138705217\n596,4640,2.5,1139307883\n596,4643,3.0,1139143164\n596,4718,3.5,1139307632\n596,4776,2.0,1148666807\n596,4848,3.5,1138658466\n596,4855,3.5,1138729654\n596,4878,4.5,1138658869\n596,4901,4.0,1146406806\n596,4963,4.5,1138704988\n596,4967,3.5,1138660343\n596,4973,5.0,1138658590\n596,4975,3.5,1139092297\n596,4979,4.0,1138705201\n596,4993,3.0,1138658287\n596,4995,4.0,1138659786\n596,5010,4.0,1138705210\n596,5152,2.0,1138658878\n596,5218,3.5,1138705206\n596,5266,3.0,1139402950\n596,5349,3.5,1138658577\n596,5378,3.5,1138729134\n596,5418,3.5,1138661834\n596,5445,3.5,1138704963\n596,5452,2.5,1139143267\n596,5459,3.0,1139404326\n596,5464,3.5,1138659877\n596,5481,3.5,1138902784\n596,5502,2.0,1138659173\n596,5505,3.5,1142174021\n596,5507,1.5,1138658907\n596,5528,3.0,1138705179\n596,5608,4.0,1138660336\n596,5620,3.0,1138658863\n596,5630,3.5,1139307838\n596,5655,4.0,1139334623\n596,5669,4.5,1138659541\n596,5679,4.0,1138729383\n596,5682,4.0,1141003816\n596,5784,3.5,1139403124\n596,5785,3.0,1139143257\n596,5810,4.0,1139092304\n596,5872,3.5,1138705190\n596,5902,3.5,1138729659\n596,5903,4.0,1139307854\n596,5945,3.5,1138658829\n596,5952,3.0,1138658336\n596,5954,3.0,1140784342\n596,5956,3.5,1138659861\n596,5989,4.5,1138659853\n596,5995,5.0,1138658838\n596,6003,4.5,1138729859\n596,6016,5.0,1138660279\n596,6058,2.0,1145139399\n596,6157,0.5,1138729405\n596,6187,4.5,1139307892\n596,6188,3.5,1139402945\n596,6218,4.0,1138661854\n596,6281,3.5,1139092294\n596,6323,4.0,1139307857\n596,6331,3.5,1138729731\n596,6365,2.5,1138661876\n596,6370,4.0,1138729167\n596,6373,2.0,1140297087\n596,6377,3.5,1138658547\n596,6378,3.5,1138658852\n596,6502,4.0,1138658846\n596,6534,2.0,1138705193\n596,6537,2.5,1138658858\n596,6539,4.5,1138659789\n596,6708,4.0,1138659526\n596,6709,4.0,1138659420\n596,6711,5.0,1138659849\n596,6787,4.0,1138729115\n596,6796,4.0,1138659531\n596,6863,3.5,1138705173\n596,6868,4.0,1158765184\n596,6870,4.5,1138658832\n596,6874,5.0,1138659493\n596,6934,2.5,1138661881\n596,6936,3.0,1138658855\n596,6953,3.5,1138660469\n596,6979,4.0,1138660654\n596,7022,4.0,1140050306\n596,7090,3.0,1139092193\n596,7143,3.5,1138659858\n596,7160,4.0,1138659588\n596,7254,4.5,1138705164\n596,7318,3.5,1141841715\n596,7323,3.5,1138660255\n596,7352,4.0,1141583206\n596,7361,5.0,1138659510\n596,7438,4.5,1138659484\n596,7445,3.0,1139307832\n596,7458,3.5,1138705182\n596,7460,3.0,1138732071\n596,8070,3.5,1140374287\n596,8132,5.0,1138659189\n596,8360,3.0,1138705170\n596,8361,2.0,1138661970\n596,8368,3.0,1138729137\n596,8370,3.5,1146386261\n596,8376,4.5,1138659864\n596,8464,4.0,1138658834\n596,8528,3.0,1138658818\n596,8529,3.5,1140798114\n596,8622,4.0,1138705162\n596,8665,2.0,1138705144\n596,8713,3.5,1138902818\n596,8784,4.0,1142625112\n596,8798,4.0,1142088218\n596,8873,4.5,1138729637\n596,8927,3.0,1139334603\n596,8949,4.0,1138660681\n596,8950,3.5,1144857237\n596,8957,3.5,1140296940\n596,8958,3.5,1138660452\n596,8961,4.0,1138658774\n596,8972,3.5,1142043104\n596,8977,3.0,1140025848\n596,8984,3.5,1140784441\n596,8985,0.5,1138660166\n596,27022,3.5,1139833908\n596,27773,3.5,1147471590\n596,27788,4.0,1138659329\n596,27821,3.5,1138732018\n596,27876,3.0,1138732051\n596,30707,4.5,1141583266\n596,30749,4.5,1144790585\n596,30810,3.5,1140296990\n596,30812,4.0,1138659578\n596,31410,4.5,1138660285\n596,32019,1.0,1138732495\n596,32029,3.5,1139307922\n596,32587,3.5,1138659481\n596,33124,3.5,1146645097\n596,33162,2.0,1138875218\n596,33166,5.0,1144615341\n596,33437,4.0,1142088197\n596,33493,3.5,1138658785\n596,33679,3.5,1140784447\n596,34048,3.0,1142125035\n596,34319,3.5,1142353181\n596,34437,3.5,1146265483\n596,37386,0.5,1139307795\n596,37720,3.5,1140315106\n596,37741,3.5,1158765270\n596,38061,3.5,1147471547\n596,39446,3.5,1140466477\n596,40583,4.0,1147471642\n596,40819,4.5,1158765340\n596,41569,4.0,1138809915\n596,41997,3.0,1139505587\n596,44555,5.0,1183906550\n596,48394,4.5,1183906582\n596,48516,4.0,1183906557\n596,55247,4.0,1210534623\n596,55820,3.5,1210534579\n596,56782,4.0,1210534655\n596,58351,4.5,1217600199\n597,1,5.0,940708550\n597,11,4.0,940707935\n597,29,3.0,940707179\n597,32,4.0,940707179\n597,34,5.0,940708603\n597,39,5.0,940707935\n597,160,3.0,940708918\n597,164,4.0,940706921\n597,185,3.0,940707571\n597,196,3.0,940707609\n597,198,3.0,940707355\n597,260,5.0,940709043\n597,293,4.0,940707879\n597,350,3.0,940708760\n597,356,4.0,940707703\n597,451,5.0,940708840\n597,480,4.0,940707511\n597,492,5.0,940708761\n597,497,4.0,940707828\n597,513,3.0,940708840\n597,517,3.0,940708761\n597,541,5.0,940706721\n597,588,5.0,940708456\n597,589,5.0,940707355\n597,610,2.0,940707571\n597,648,3.0,940708799\n597,671,4.0,940707571\n597,745,5.0,940708400\n597,750,5.0,940707179\n597,800,5.0,940708672\n597,898,4.0,940707703\n597,899,5.0,940707778\n597,903,5.0,940708672\n597,904,5.0,940708672\n597,906,4.0,940708761\n597,907,5.0,940707985\n597,908,5.0,940709146\n597,909,5.0,940708511\n597,910,5.0,940708456\n597,911,4.0,940708800\n597,912,4.0,940707778\n597,913,5.0,940706721\n597,916,4.0,940707828\n597,923,5.0,940709146\n597,924,4.0,940707124\n597,928,4.0,940707778\n597,931,4.0,940708718\n597,933,4.0,940707985\n597,942,4.0,940706859\n597,943,4.0,940707837\n597,945,5.0,940707879\n597,946,5.0,940708603\n597,950,5.0,940708718\n597,951,5.0,940708400\n597,968,4.0,940707412\n597,969,5.0,940707828\n597,1018,3.0,940708840\n597,1019,4.0,940707571\n597,1066,4.0,940707711\n597,1069,4.0,940706859\n597,1077,5.0,940707300\n597,1079,4.0,940708124\n597,1086,4.0,940708718\n597,1097,4.0,940707230\n597,1127,4.0,940707412\n597,1129,4.0,940707230\n597,1136,5.0,940708400\n597,1148,5.0,940708081\n597,1178,5.0,940709043\n597,1193,4.0,940709044\n597,1196,3.0,940707124\n597,1197,5.0,940707778\n597,1199,5.0,940707355\n597,1200,4.0,940707355\n597,1210,3.0,940707300\n597,1212,5.0,940708718\n597,1214,5.0,940707179\n597,1215,3.0,940707511\n597,1220,4.0,940708400\n597,1223,5.0,940708252\n597,1238,4.0,940708124\n597,1240,5.0,940707124\n597,1247,4.0,940707828\n597,1248,5.0,940706721\n597,1252,5.0,940706921\n597,1264,5.0,940708718\n597,1265,5.0,940707828\n597,1267,3.0,940706859\n597,1269,5.0,940708400\n597,1270,4.0,940707300\n597,1274,2.0,940707511\n597,1281,4.0,940708212\n597,1284,5.0,940708672\n597,1285,3.0,940708511\n597,1288,3.0,940708252\n597,1301,4.0,940707300\n597,1304,5.0,940708081\n597,1307,4.0,940707879\n597,1334,3.0,940707609\n597,1358,5.0,940709146\n597,1394,5.0,940708212\n597,1396,4.0,940707571\n597,1422,2.0,940708918\n597,1460,2.0,940708840\n597,1527,4.0,940707230\n597,1580,5.0,940707179\n597,1584,4.0,940707300\n597,1590,2.0,940708918\n597,1597,4.0,940708761\n597,1617,5.0,940706721\n597,1644,3.0,940708918\n597,1653,3.0,940707300\n597,1663,3.0,940708511\n597,1674,5.0,940707985\n597,1689,3.0,940708799\n597,1711,4.0,940708918\n597,1721,4.0,940707778\n597,1732,4.0,940708511\n597,1748,3.0,940706921\n597,1784,4.0,940709156\n597,1845,5.0,940708511\n597,1883,4.0,940708603\n597,1909,4.0,940707511\n597,1917,2.0,940707435\n597,1921,4.0,940707355\n597,1924,2.0,940707571\n597,1950,4.0,940708718\n597,1964,4.0,940708718\n597,1982,4.0,940709043\n597,2000,2.0,940708550\n597,2009,3.0,940707300\n597,2010,5.0,940707124\n597,2011,3.0,940707473\n597,2015,4.0,940709088\n597,2028,4.0,940709088\n597,2046,3.0,940707230\n597,2064,5.0,940708603\n597,2076,5.0,940708718\n597,2078,4.0,940708212\n597,2080,4.0,940707778\n597,2094,4.0,940707609\n597,2108,5.0,940708400\n597,2117,3.0,940707571\n597,2126,3.0,940708866\n597,2136,2.0,940708124\n597,2140,4.0,940707230\n597,2141,3.0,940708550\n597,2150,5.0,940708265\n597,2173,3.0,940707412\n597,2184,5.0,940708866\n597,2206,4.0,940708799\n597,2208,5.0,940707778\n597,2252,4.0,940708081\n597,2273,4.0,940709088\n597,2287,5.0,940707179\n597,2288,3.0,940707124\n597,2291,4.0,940707879\n597,2322,3.0,940707300\n597,2338,3.0,940708973\n597,2349,4.0,940708252\n597,2352,4.0,940709088\n597,2355,5.0,940708603\n597,2363,4.0,940707179\n597,2395,5.0,940708456\n597,2396,5.0,940707703\n597,2406,4.0,940707985\n597,2413,3.0,940708918\n597,2414,4.0,940708761\n597,2428,3.0,940707473\n597,2454,4.0,940707412\n597,2458,2.0,940708603\n597,2467,5.0,940708672\n597,2470,5.0,940708603\n597,2475,2.0,940708918\n597,2525,3.0,940707511\n597,2527,3.0,940707230\n597,2528,3.0,940707179\n597,2529,4.0,940707230\n597,2554,3.0,940707412\n597,2571,5.0,940707124\n597,2572,3.0,940707828\n597,2613,3.0,940707355\n597,2657,4.0,940707124\n597,2661,4.0,940707609\n597,2662,3.0,940707473\n597,2664,5.0,940707473\n597,2668,3.0,940707473\n597,2699,4.0,940707412\n597,2716,5.0,940708124\n597,2720,2.0,940706200\n597,2761,5.0,940705799\n597,2762,4.0,940705799\n597,2770,4.0,940709261\n597,2791,4.0,940708081\n597,2797,4.0,940708124\n597,2807,3.0,940705987\n597,2923,4.0,940708144\n597,2935,5.0,940707703\n597,2937,5.0,940708212\n597,2985,4.0,940707571\n597,2987,5.0,940706921\n597,5060,5.0,940708456\n598,1,4.5,1057554797\n598,11,4.0,1008571467\n598,15,2.0,1007344372\n598,17,2.0,1009415293\n598,39,3.0,1008571296\n598,50,5.0,1008572131\n598,69,4.0,1008571397\n598,70,2.0,1007344460\n598,88,4.0,1014589144\n598,104,5.0,1008571412\n598,110,4.0,1008571627\n598,161,4.0,1008657959\n598,180,4.0,1057554799\n598,216,5.0,1014589172\n598,223,5.0,1008570454\n598,260,5.0,1008572312\n598,296,5.0,1008571588\n598,318,5.0,1008571588\n598,333,5.0,1014589130\n598,356,4.0,1008571199\n598,364,4.0,1008572199\n598,440,4.0,1008571325\n598,527,4.0,1007344372\n598,539,2.0,1008571467\n598,551,4.0,1008571338\n598,588,4.0,1008571159\n598,589,4.0,1057555099\n598,590,4.0,1008572384\n598,594,4.0,1008572180\n598,780,3.0,1008658011\n598,785,4.0,1008570619\n598,838,2.0,1009415275\n598,858,4.0,1057554666\n598,919,4.0,1008572180\n598,923,4.0,1009080786\n598,924,4.0,1008572325\n598,1028,4.0,1008572199\n598,1032,5.0,1008572199\n598,1035,3.0,1008572180\n598,1042,3.0,1008571437\n598,1060,5.0,1008571228\n598,1079,4.0,1008571093\n598,1093,3.0,1008570482\n598,1097,4.0,1008572325\n598,1127,4.0,1008570363\n598,1196,4.0,1008572161\n598,1197,5.0,1008571885\n598,1198,4.0,1008572359\n598,1210,5.0,1007344437\n598,1213,4.0,1008571608\n598,1222,5.0,1008657971\n598,1225,4.0,1008572437\n598,1235,4.0,1057554982\n598,1242,5.0,1008657949\n598,1259,4.0,1008571133\n598,1270,4.0,1008571072\n598,1278,3.5,1057554943\n598,1287,4.0,1008572384\n598,1288,5.0,1008571199\n598,1291,4.0,1008572370\n598,1297,3.0,1008571242\n598,1298,4.0,1008572199\n598,1485,4.0,1008571540\n598,1500,3.5,1057555053\n598,1513,2.0,1008570743\n598,1517,4.0,1008571412\n598,1580,3.0,1008571285\n598,1610,3.5,1057555097\n598,1617,5.0,1008572131\n598,1619,4.0,1008657991\n598,1641,4.0,1057554926\n598,1676,2.0,1008657991\n598,1682,4.0,1058140764\n598,1704,4.0,1008571627\n598,1732,4.0,1008571385\n598,1777,4.0,1008571296\n598,1784,5.0,1008571255\n598,1883,3.0,1008571385\n598,1884,4.0,1011389855\n598,1895,3.0,1008571437\n598,1911,3.0,1008658180\n598,1923,4.0,1057554759\n598,1961,4.0,1007344460\n598,1967,4.0,1008572498\n598,1968,3.5,1057555051\n598,2000,3.0,1057554815\n598,2003,4.0,1008571526\n598,2028,4.0,1008572161\n598,2064,4.0,1008571901\n598,2078,4.0,1008571176\n598,2080,4.0,1008571210\n598,2081,4.0,1008571310\n598,2087,4.0,1008572199\n598,2093,4.0,1008570720\n598,2109,4.0,1057554783\n598,2145,3.0,1007344437\n598,2174,4.0,1008571265\n598,2324,4.0,1008571627\n598,2329,5.0,1007344372\n598,2355,4.0,1008570431\n598,2380,3.0,1019347635\n598,2392,1.0,1008570619\n598,2394,4.0,1008570720\n598,2395,4.0,1014588999\n598,2396,4.0,1008570775\n598,2423,4.0,1057554918\n598,2445,2.0,1007344437\n598,2471,2.0,1007344401\n598,2485,2.0,1008570775\n598,2502,4.0,1008570681\n598,2541,3.0,1008570454\n598,2542,4.0,1008571176\n598,2571,4.0,1008572131\n598,2572,3.0,1008570363\n598,2581,3.0,1008570681\n598,2599,4.0,1008570510\n598,2605,3.0,1008658180\n598,2622,2.0,1008570663\n598,2628,4.0,1008657817\n598,2683,4.0,1008570378\n598,2692,4.0,1008570743\n598,2693,4.0,1008570817\n598,2694,4.0,1008570413\n598,2699,3.0,1008658112\n598,2700,4.0,1008570775\n598,2701,1.0,1008570839\n598,2702,2.0,1008570798\n598,2706,3.0,1008570378\n598,2710,3.0,1008570413\n598,2712,4.0,1008570538\n598,2713,2.0,1008570619\n598,2714,3.0,1008570839\n598,2716,4.0,1008570565\n598,2718,3.0,1008570510\n598,2719,3.0,1008570596\n598,2722,1.0,1008570454\n598,2723,1.0,1008570681\n598,2724,3.0,1008658276\n598,2747,4.0,1008571325\n598,2762,4.0,1008570775\n598,2763,3.0,1008570798\n598,2770,2.0,1008570413\n598,2771,2.0,1008570413\n598,2772,3.0,1008570482\n598,2791,5.0,1008571118\n598,2795,4.0,1057555049\n598,2797,4.0,1008571133\n598,2804,4.0,1008571151\n598,2805,3.0,1008570663\n598,2840,2.0,1008570775\n598,2841,3.0,1008570775\n598,2857,4.0,1008572199\n598,2858,5.0,1008570363\n598,2861,3.0,1008570538\n598,2863,5.0,1008571228\n598,2881,3.0,1008570482\n598,2888,2.0,1008570510\n598,2889,3.0,1008571478\n598,2890,4.0,1008657979\n598,2907,3.0,1008658319\n598,2918,5.0,1008571107\n598,2946,4.0,1008572209\n598,2959,5.0,1008570538\n598,2961,2.0,1008570775\n598,2987,4.0,1008570839\n598,2995,2.0,1008570596\n598,2997,4.0,1008570396\n598,3005,3.0,1008658137\n598,3033,5.0,1057554947\n598,3039,4.0,1057555056\n598,3051,3.0,1014589064\n598,3052,4.0,1008571325\n598,3064,3.0,1007344437\n598,3081,4.0,1008570776\n598,3098,4.0,1058140766\n598,3114,3.0,1008570817\n598,3147,4.0,1008571635\n598,3160,4.0,1008570638\n598,3175,4.0,1008658216\n598,3176,3.0,1008570798\n598,3177,4.0,1007344460\n598,3210,3.0,1008571228\n598,3238,2.0,1008570538\n598,3253,4.5,1057554807\n598,3255,3.0,1008571357\n598,3256,3.5,1057555133\n598,3273,2.0,1008570743\n598,3285,3.0,1008570396\n598,3328,1.0,1008572708\n598,3361,4.0,1008571107\n598,3386,4.0,1008571627\n598,3388,3.0,1037851609\n598,3408,4.0,1008570510\n598,3421,4.0,1008571118\n598,3481,4.0,1008571277\n598,3512,3.0,1008570720\n598,3534,3.0,1008570363\n598,3552,5.0,1008571449\n598,3564,1.0,1008570538\n598,3578,4.0,1008570565\n598,3593,1.0,1008658112\n598,3608,3.0,1008571357\n598,3617,4.0,1008570743\n598,3623,2.0,1008570663\n598,3671,4.0,1008571310\n598,3751,4.0,1008570431\n598,3752,4.0,1008570638\n598,3753,3.0,1008570700\n598,3760,4.0,1008657765\n598,3786,3.0,1008570431\n598,3793,3.0,1008570839\n598,3798,3.0,1008570817\n598,3825,2.0,1008571830\n598,3826,2.0,1008570596\n598,3863,3.0,1008570431\n598,3868,4.0,1008571133\n598,3897,4.0,1008571680\n598,3911,4.0,1057554779\n598,3948,4.0,1008571478\n598,3952,4.0,1008571721\n598,3977,2.0,1008570431\n598,3988,4.0,1008570596\n598,3994,3.0,1008571721\n598,3996,4.0,1008572359\n598,4008,3.0,1008657971\n598,4011,4.0,1014589019\n598,4022,3.0,1008570431\n598,4027,3.0,1058140813\n598,4033,4.0,1008571721\n598,4054,3.0,1008571775\n598,4066,3.0,1008571176\n598,4102,4.0,1009415243\n598,4223,3.0,1008571762\n598,4226,5.0,1008571660\n598,4246,3.0,1008571733\n598,4306,4.0,1008572660\n598,4308,4.0,1009080767\n598,4310,2.0,1008571775\n598,4322,4.0,1058140768\n598,4370,3.0,1017349824\n598,4452,4.0,1008572437\n598,4489,5.0,1057554801\n598,4571,3.0,1008571467\n598,4619,4.0,1032720665\n598,4623,5.0,1008571385\n598,4643,3.0,1008571775\n598,4718,3.0,1008571553\n598,4734,4.0,1008571151\n598,4774,3.0,1019347540\n598,4776,4.0,1017349557\n598,4816,2.0,1008571242\n598,4846,2.0,1009415331\n598,4865,3.0,1009415331\n598,4886,4.0,1008571151\n598,4890,3.0,1009237565\n598,4896,4.0,1008572370\n598,4958,2.0,1009415331\n598,4963,4.0,1009237534\n598,4975,4.0,1009237565\n598,4979,4.0,1009237565\n598,4992,3.0,1009237565\n598,4993,5.0,1009080735\n598,4995,4.0,1025925076\n598,5013,3.0,1025925093\n598,5048,1.0,1014588958\n598,5064,4.0,1014588918\n598,5103,4.0,1017349615\n598,5106,1.0,1014588958\n598,5141,3.0,1019347635\n598,5151,3.0,1017349663\n598,5219,2.0,1019347596\n598,5220,2.0,1017349663\n598,5223,1.0,1017349743\n598,5255,1.0,1017349663\n598,5265,3.0,1019347613\n598,5266,2.0,1019347576\n598,5292,4.0,1057554811\n598,5313,3.0,1019347520\n598,5377,4.5,1057554766\n598,5417,1.0,1031461928\n598,5445,3.5,1058140750\n598,5458,1.0,1031461883\n598,5459,4.0,1025925135\n598,5462,2.0,1031461883\n598,5464,4.0,1031461928\n598,5466,1.0,1031461883\n598,5477,1.0,1031461928\n598,5481,4.0,1031461786\n598,5502,4.0,1031461799\n598,5503,1.0,1031461883\n598,5516,1.0,1031461928\n598,5517,1.0,1031461928\n598,5528,3.0,1032720620\n598,5530,1.0,1031461883\n598,5535,1.0,1031461962\n598,5575,1.0,1031461928\n598,5649,3.0,1007344372\n598,5669,5.0,1037851625\n598,5816,4.0,1037851609\n598,5952,4.5,1058140738\n598,5989,4.5,1058140743\n598,6188,4.5,1057554761\n598,6218,2.0,1058140819\n598,6296,4.5,1057554706\n598,6333,4.0,1057554686\n598,6365,3.5,1057554690\n598,6373,2.0,1057554713\n598,6377,4.5,1057554688\n598,6461,3.5,1057555106\n598,6534,2.0,1057554710\n598,6537,4.0,1057555152\n598,6539,5.0,1057555166\n599,39,5.0,1329892886\n599,150,1.5,1329892590\n599,260,5.0,1329891654\n599,356,4.0,1329891795\n599,502,2.5,1306107922\n599,551,4.5,1344134498\n599,745,1.5,1329891638\n599,892,3.5,1306108929\n599,923,1.0,1329891692\n599,1028,3.5,1344134311\n599,1136,4.0,1329891664\n599,1148,1.5,1329891644\n599,1196,4.5,1329891673\n599,1198,4.5,1329891634\n599,1251,3.0,1306107965\n599,1270,4.5,1329892667\n599,1968,5.0,1329893128\n599,2011,4.5,1344134223\n599,2115,4.0,1329892609\n599,2136,2.5,1306107948\n599,2144,5.0,1329893907\n599,2145,5.0,1329893854\n599,2248,2.5,1306107780\n599,2291,4.5,1344134507\n599,2455,3.5,1306107766\n599,2485,4.5,1329893083\n599,2497,1.5,1306108798\n599,2572,5.0,1344133838\n599,2581,5.0,1329893078\n599,2671,4.0,1344134819\n599,2788,5.0,1344134442\n599,2795,3.5,1344133960\n599,2888,4.5,1329893861\n599,2915,4.5,1306107788\n599,2918,5.0,1329892689\n599,2942,3.5,1306107914\n599,3225,4.0,1329893565\n599,3396,4.5,1306107811\n599,3454,4.0,1329893771\n599,3991,2.5,1306108908\n599,4069,3.5,1344133741\n599,4246,5.0,1329893408\n599,4447,4.5,1344136070\n599,4700,5.0,1329893849\n599,4816,4.0,1344134437\n599,4878,3.5,1344134445\n599,4896,5.0,1329893666\n599,4973,0.5,1329892839\n599,4993,4.0,1329891707\n599,5283,3.5,1344135702\n599,5349,3.5,1344134349\n599,5377,4.0,1344134486\n599,5620,4.0,1344133768\n599,5667,4.0,1344136000\n599,5816,5.0,1329893663\n599,5942,4.0,1344135764\n599,5943,3.5,1344133737\n599,6155,5.0,1329893932\n599,6266,5.0,1329893810\n599,6331,3.5,1344134211\n599,6332,5.0,1344133745\n599,6373,3.5,1329891789\n599,6385,2.0,1306107934\n599,6539,3.5,1329892681\n599,6753,1.5,1306108807\n599,7153,4.0,1329891702\n599,7316,4.0,1329893798\n599,7375,5.0,1344136057\n599,7380,4.5,1344134566\n599,7444,4.0,1344136063\n599,7451,4.5,1329893104\n599,7453,3.0,1329893507\n599,8368,5.0,1329893669\n599,8376,3.5,1344134417\n599,8533,4.0,1344136263\n599,8642,3.0,1329893781\n599,8643,4.5,1329893650\n599,8808,4.0,1329893602\n599,8969,4.0,1344133724\n599,27706,3.0,1344134412\n599,30793,4.0,1344134404\n599,31193,5.0,1306109530\n599,31433,3.5,1344134843\n599,31685,3.5,1344134868\n599,33296,3.0,1344135700\n599,33669,4.0,1344135990\n599,37384,3.5,1344135691\n599,40581,4.5,1344136116\n599,40815,5.0,1329892606\n599,41566,3.5,1329893658\n599,43930,4.5,1329893545\n599,44004,4.5,1344136145\n599,44193,4.5,1329893735\n599,44225,4.0,1344136015\n599,45720,4.0,1344134590\n599,46062,4.5,1344134900\n599,47122,4.0,1329893836\n599,49286,4.0,1344134878\n599,50954,4.0,1344136024\n599,51834,4.0,1344134584\n599,52975,4.0,1344134894\n599,53125,4.0,1344134726\n599,54001,5.0,1329892583\n599,54259,4.0,1344134037\n599,54503,4.5,1344135097\n599,54734,4.5,1329893789\n599,55100,4.0,1329893926\n599,55451,4.0,1344135201\n599,56367,3.5,1329891784\n599,56941,4.0,1344135652\n599,56949,3.5,1344135168\n599,58047,4.5,1329893248\n599,59333,3.5,1329893339\n599,59985,3.5,1344135685\n599,60069,4.0,1329891586\n599,61071,4.5,1344136006\n599,61123,4.0,1344134902\n599,61250,5.0,1344135773\n599,62155,4.0,1344135090\n599,62912,4.5,1344134903\n599,63082,3.5,1329891594\n599,65585,3.0,1329893431\n599,66203,5.0,1344134741\n599,66934,4.0,1329891657\n599,67087,4.0,1306108934\n599,67734,4.5,1344135687\n599,67788,4.5,1344135226\n599,68135,5.0,1329893826\n599,68319,4.0,1344135696\n599,68554,3.5,1306108927\n599,68659,4.0,1344136382\n599,69069,4.0,1329893760\n599,69122,4.0,1329891776\n599,69406,4.5,1344135693\n599,69606,4.0,1344136337\n599,69757,4.5,1344133836\n599,69844,5.0,1329892579\n599,70183,4.0,1344135177\n599,70898,4.5,1344136097\n599,71033,0.5,1329892834\n599,74154,4.0,1329893373\n599,74450,3.5,1344136331\n599,74458,3.0,1329891626\n599,74789,4.0,1344134598\n599,76093,5.0,1329891577\n599,76251,4.0,1344134240\n599,77364,5.0,1344135122\n599,77414,4.0,1344135148\n599,78041,3.0,1344135182\n599,78209,4.5,1344136374\n599,78499,5.0,1306108013\n599,79132,3.5,1329891603\n599,79588,3.5,1344134887\n599,79702,4.0,1329891609\n599,80166,3.0,1306109460\n599,80463,4.0,1329891620\n599,80549,5.0,1344135659\n599,80858,2.0,1344136049\n599,80860,4.0,1344135187\n599,80906,2.5,1306109415\n599,81537,4.0,1306109444\n599,81562,4.5,1306108963\n599,81591,4.0,1306108980\n599,81834,5.0,1306109429\n599,81845,5.0,1306109409\n599,81847,5.0,1306109438\n599,82152,3.5,1306109304\n599,82167,3.0,1306109454\n599,82499,4.0,1306109470\n599,83349,4.0,1306109447\n599,84374,3.5,1306109457\n599,86293,4.5,1306109270\n599,86817,5.0,1344134615\n599,87232,5.0,1329891588\n599,87430,4.0,1344135714\n599,88125,5.0,1329891574\n599,88140,4.5,1344134282\n599,88163,5.0,1344136245\n599,88179,4.5,1344134600\n599,88672,4.5,1344135214\n599,88810,4.0,1344133761\n599,89745,5.0,1344133770\n599,89864,4.0,1329891591\n599,90576,5.0,1344134770\n599,91500,3.0,1344135155\n599,91529,4.0,1344133782\n599,93326,4.5,1344134540\n599,93510,4.5,1344134303\n599,95199,4.0,1344136106\n599,95449,4.5,1344136156\n599,95510,5.0,1344133801\n599,95567,4.5,1344134527\n600,588,5.0,1431956328\n600,2081,5.0,1431957361\n600,2085,3.0,1431958408\n600,2096,3.0,1431958441\n600,4886,5.0,1431956114\n600,4995,3.0,1431956337\n600,5618,4.5,1431956362\n600,6377,4.0,1431956125\n600,8368,3.0,1431956139\n600,50872,4.5,1431956320\n600,58559,3.0,1431956335\n600,68954,5.0,1431956316\n600,72737,4.0,1431958440\n600,72998,2.5,1431956131\n600,73290,5.0,1431956210\n600,76093,5.0,1431956421\n600,79132,5.0,1431956095\n600,81845,4.5,1431956086\n600,81847,5.0,1431956365\n600,88744,3.5,1431956185\n600,90866,5.0,1431958854\n600,91500,3.5,1431956171\n600,91542,3.0,1431958441\n600,95167,4.0,1431957372\n600,96821,4.0,1431956151\n600,97913,4.0,1431956420\n600,104374,3.5,1431956153\n600,104841,3.5,1431956215\n600,106782,2.5,1431956197\n600,111529,4.0,1431956202\n600,111913,3.0,1431956287\n600,111921,3.5,1431956259\n600,112552,4.0,1431958850\n600,112556,3.0,1431956147\n600,116797,4.5,1431958995\n601,31,3.0,1270253462\n601,193,1.5,1270253539\n601,493,4.0,1270253740\n601,1274,3.5,1270254552\n601,1293,4.5,1270253469\n601,1831,2.5,1270253564\n601,2567,3.0,1270253718\n601,2605,3.0,1270253510\n601,3210,3.0,1270253541\n601,3243,3.0,1270253892\n601,3386,4.0,1270253555\n601,3439,3.5,1270253870\n601,3755,3.5,1270253459\n601,4148,3.0,1270253595\n601,4226,4.5,1270254385\n601,4235,4.5,1270254353\n601,4878,3.5,1270254378\n601,5294,2.5,1270253938\n601,6016,4.5,1270254271\n601,6283,3.5,1270254547\n601,6502,4.0,1270254588\n601,6870,4.0,1270254455\n601,6953,4.0,1270254348\n601,7022,3.5,1270254542\n601,7254,2.5,1270254256\n601,7361,5.0,1270254531\n601,8914,4.0,1270254595\n601,27611,4.0,1270254528\n601,27773,5.0,1270254394\n601,34405,4.0,1270254582\n601,44191,3.5,1270254555\n601,46723,4.0,1270254367\n601,48516,4.5,1270254429\n601,48774,5.0,1270254534\n601,48780,4.5,1270254457\n601,52885,4.0,1270254592\n601,55290,3.5,1270254463\n601,58559,4.5,1270254671\n601,59315,3.5,1270254544\n601,59615,2.0,1270253859\n601,63082,4.0,1270254640\n601,68237,4.0,1270254452\n601,68358,4.0,1270254536\n601,69757,4.0,1270254221\n601,70286,3.5,1270254469\n601,72998,2.5,1270254359\n602,2,4.0,842360098\n602,10,3.0,842359419\n602,11,3.0,842358525\n602,21,2.0,842358017\n602,25,5.0,842357252\n602,29,5.0,842358084\n602,32,3.0,842357534\n602,34,4.0,842357252\n602,36,5.0,842357428\n602,45,4.0,842358826\n602,47,4.0,842356712\n602,50,5.0,842356111\n602,60,3.0,842359168\n602,85,5.0,842359533\n602,97,5.0,842359168\n602,107,4.0,842358299\n602,110,3.0,842356080\n602,144,1.0,842359298\n602,147,3.0,842359924\n602,150,3.0,842355955\n602,153,3.0,842356033\n602,155,3.0,842360072\n602,156,5.0,842359483\n602,162,5.0,842357278\n602,164,4.0,842357664\n602,177,3.0,842360283\n602,180,3.0,842358887\n602,188,2.0,842358394\n602,194,4.0,842357534\n602,208,3.0,842358692\n602,215,4.0,842357604\n602,223,5.0,842357559\n602,229,4.0,842358670\n602,231,3.0,842358354\n602,235,4.0,842357428\n602,246,4.0,842357486\n602,247,5.0,842357664\n602,253,4.0,842360266\n602,260,4.0,842359298\n602,261,3.0,842359924\n602,265,4.0,842358985\n602,268,4.0,842358985\n602,272,4.0,842359274\n602,273,3.0,842360266\n602,280,3.0,842358610\n602,282,3.0,842359985\n602,288,3.0,842359438\n602,292,1.0,842358116\n602,296,5.0,842355957\n602,300,5.0,842357604\n602,316,1.0,842359483\n602,318,5.0,842356712\n602,319,2.0,842357985\n602,329,3.0,842357696\n602,337,3.0,842358164\n602,344,3.0,842356033\n602,348,3.0,842360049\n602,349,3.0,842356033\n602,353,4.0,842358552\n602,354,4.0,842359446\n602,356,4.0,842356712\n602,357,4.0,842359274\n602,362,3.0,842356111\n602,364,5.0,842356080\n602,367,3.0,842359403\n602,371,3.0,842358638\n602,372,3.0,842359373\n602,373,4.0,842358214\n602,376,1.0,842358671\n602,380,3.0,842355959\n602,382,2.0,842360060\n602,417,3.0,842359403\n602,418,3.0,842357923\n602,434,1.0,842358610\n602,448,3.0,842357428\n602,457,3.0,842357604\n602,461,4.0,842358249\n602,471,3.0,842357922\n602,474,5.0,842357723\n602,475,5.0,842357534\n602,477,4.0,842358826\n602,480,4.0,842357696\n602,481,3.0,842359225\n602,493,2.0,842357696\n602,497,5.0,842358610\n602,500,4.0,842359086\n602,501,3.0,842357428\n602,508,4.0,842357723\n602,509,4.0,842357985\n602,515,4.0,842358116\n602,527,5.0,842356712\n602,531,4.0,842359340\n602,534,5.0,842358249\n602,535,5.0,842357749\n602,538,5.0,842357985\n602,539,3.0,842359924\n602,551,5.0,842357723\n602,555,4.0,842358017\n602,562,4.0,842356974\n602,587,4.0,842359403\n602,588,5.0,842356034\n602,589,4.0,842357428\n602,590,4.0,842355954\n602,592,3.0,842355954\n602,593,5.0,842356111\n602,595,5.0,842356080\n602,596,3.0,842356080\n602,597,3.0,842360115\n602,608,4.0,842356870\n602,647,3.0,842356837\n602,653,1.0,842357061\n602,661,5.0,842356780\n602,736,3.0,842356896\n602,764,5.0,842356896\n602,778,5.0,842356111\n602,783,4.0,842356111\n602,799,3.0,842357074\n602,802,3.0,842356752\n602,805,3.0,842356805\n602,1009,4.0,842358985\n602,1023,4.0,842357749\n602,1025,3.0,842359469\n602,1029,3.0,842358046\n602,1031,4.0,842358887\n602,1032,3.0,842358525\n602,1033,4.0,842360129\n602,1035,5.0,842359006\n602,1036,4.0,842357724\n602,1037,3.0,842360314\n603,1,4.0,868354978\n603,2,4.0,868355874\n603,3,2.0,868355076\n603,6,4.0,868355017\n603,32,5.0,868354978\n603,44,3.0,868356377\n603,60,3.0,868355519\n603,62,5.0,868354978\n603,88,3.0,868481896\n603,104,4.0,868355076\n603,110,5.0,868356124\n603,150,4.0,868355405\n603,163,4.0,868356125\n603,231,2.0,868482315\n603,260,5.0,868355017\n603,277,4.0,868355683\n603,296,5.0,868356122\n603,300,3.0,868802320\n603,316,4.0,868356197\n603,317,2.0,868355630\n603,333,3.0,868482531\n603,355,2.0,868356024\n603,364,5.0,868355683\n603,367,3.0,868482315\n603,370,4.0,868482531\n603,380,5.0,868356123\n603,419,2.0,868356024\n603,442,5.0,868356767\n603,457,4.0,868356197\n603,466,4.0,868482450\n603,480,5.0,868355683\n603,500,4.0,868355630\n603,527,5.0,868802321\n603,543,3.0,868482419\n603,551,5.0,868355800\n603,552,3.0,868355519\n603,586,3.0,868356000\n603,588,5.0,868355630\n603,589,5.0,868356124\n603,592,4.0,868356298\n603,594,4.0,868355800\n603,595,5.0,868355748\n603,596,4.0,868355800\n603,608,5.0,868355017\n603,648,3.0,868354978\n603,653,3.0,868356298\n603,661,3.0,868355683\n603,673,3.0,868355874\n603,733,5.0,868355017\n603,736,3.0,868354978\n603,743,3.0,868482098\n603,748,3.0,868356298\n603,761,3.0,868482025\n603,780,4.0,868354978\n603,783,5.0,868355800\n603,784,5.0,868481795\n603,832,3.0,868481695\n603,1008,3.0,868355683\n603,1010,3.0,868355748\n603,1011,3.0,868355938\n603,1012,4.0,868355466\n603,1013,3.0,868355683\n603,1014,3.0,868355800\n603,1016,3.0,868355800\n603,1017,4.0,868355519\n603,1021,3.0,868355683\n603,1022,4.0,868355519\n603,1025,5.0,868355466\n603,1027,5.0,868355466\n603,1028,3.0,868355519\n603,1029,4.0,868355630\n603,1030,3.0,868355748\n603,1031,3.0,868355630\n603,1032,5.0,868355519\n603,1033,3.0,868355519\n603,1035,5.0,868355466\n603,1073,3.0,868355017\n603,1097,4.0,868355466\n603,1101,3.0,868356251\n603,1126,3.0,868355938\n603,1136,5.0,868482292\n603,1196,5.0,868355405\n603,1197,5.0,868355405\n603,1198,4.0,868355405\n603,1200,3.0,868356197\n603,1207,4.0,868355405\n603,1210,5.0,868355405\n603,1214,3.0,868356197\n603,1220,4.0,868482331\n603,1240,5.0,868356196\n603,1242,5.0,868356152\n603,1243,5.0,868482350\n603,1265,3.0,868482450\n603,1275,5.0,868356151\n603,1278,5.0,868482433\n603,1282,5.0,868355466\n603,1291,4.0,868356225\n603,1320,3.0,868356377\n603,1367,3.0,868355970\n603,1374,3.0,868356316\n603,1377,4.0,868356767\n603,1391,5.0,868481575\n603,1393,3.0,868481647\n603,1394,5.0,868482350\n603,1396,4.0,868482484\n603,1408,5.0,868356251\n603,1517,5.0,868481695\n603,1526,3.0,868481986\n603,1527,3.0,868481621\n603,1544,3.0,868481755\n603,1562,3.0,868481924\n603,1566,5.0,868355164\n603,1573,4.0,868355164\n603,1580,5.0,868355164\n604,19,2.5,1277533255\n604,32,3.5,1277533126\n604,344,2.0,1277533253\n604,524,4.5,1277532667\n604,2161,1.0,1277532580\n604,2193,1.0,1277532603\n604,2278,5.0,1277532589\n604,2539,4.0,1277532606\n604,2717,1.5,1277532674\n604,2949,2.0,1277532707\n604,2953,1.0,1277532716\n604,2990,3.0,1277532839\n604,3256,4.0,1277532610\n604,3450,4.0,1277532751\n604,3526,2.0,1277532805\n604,3552,3.0,1277532620\n604,3671,3.5,1277532575\n604,4623,1.5,1277532871\n604,4792,3.5,1277533108\n604,5300,4.0,1277533213\n605,3,2.0,980194114\n605,11,3.0,980174746\n605,19,4.0,980174457\n605,21,2.0,980177887\n605,25,3.0,980196749\n605,34,5.0,980175025\n605,36,1.0,980176545\n605,39,4.0,980176168\n605,87,1.0,980176907\n605,95,3.0,980175720\n605,99,1.0,980194873\n605,104,4.0,980194759\n605,105,2.0,980174106\n605,110,3.0,980175636\n605,118,1.0,980195404\n605,125,2.0,980177469\n605,146,4.0,980174717\n605,150,4.0,980174894\n605,164,3.0,980176647\n605,165,3.0,980176703\n605,170,3.0,980194141\n605,172,3.0,980195844\n605,173,1.0,980195869\n605,216,3.0,980175410\n605,224,3.0,980176775\n605,230,3.0,980176775\n605,231,3.0,980176884\n605,234,1.0,980177097\n605,237,2.0,980177649\n605,238,4.0,980177182\n605,246,3.0,980195223\n605,247,3.0,980194842\n605,248,2.0,980195283\n605,253,3.0,980195635\n605,254,2.0,980195780\n605,255,1.0,980195812\n605,258,2.0,980195940\n605,261,4.0,980197670\n605,262,4.0,980197670\n605,344,5.0,980174457\n605,345,3.0,980174525\n605,350,3.0,980176141\n605,353,3.0,980176412\n605,357,3.0,980177649\n605,361,2.0,980195677\n605,405,2.0,980194978\n605,421,3.0,980175435\n605,423,3.0,980175498\n605,428,3.0,980175720\n605,429,3.0,980175794\n605,440,3.0,980176493\n605,442,2.0,980176606\n605,457,4.0,980177763\n605,468,4.0,980177012\n605,474,3.0,980195477\n605,480,3.0,980195889\n605,484,3.0,980196307\n605,541,3.0,980175465\n605,585,3.0,980175615\n605,586,4.0,980195004\n605,587,3.0,980177887\n605,588,4.0,980174631\n605,590,3.0,980176475\n605,592,4.0,980175162\n605,608,3.0,980177205\n605,609,3.0,980195075\n605,616,4.0,980174934\n605,648,4.0,980174247\n605,661,3.0,980195740\n605,700,3.0,980174852\n605,724,2.0,980176365\n605,745,4.0,980176187\n605,779,3.0,980174326\n605,780,4.0,980195477\n605,783,3.0,980195325\n605,800,3.0,980197731\n605,801,2.0,980194776\n605,808,3.0,980174631\n605,829,1.0,980195844\n605,830,3.0,980177421\n605,838,3.0,980176990\n605,858,5.0,980177999\n605,900,4.0,980174773\n605,902,3.0,980175656\n605,903,3.0,980199622\n605,904,4.0,980199622\n605,905,5.0,980195677\n605,906,3.0,980177795\n605,911,5.0,980175912\n605,912,5.0,980175843\n605,913,5.0,980199622\n605,917,3.0,980197670\n605,920,5.0,980174106\n605,923,4.0,980176080\n605,924,1.0,980174353\n605,926,4.0,980174659\n605,932,3.0,980174525\n605,934,4.0,980177221\n605,938,5.0,980177926\n605,940,5.0,980174525\n605,942,5.0,980196541\n605,943,4.0,980177887\n605,951,4.0,980194978\n605,952,4.0,980174954\n605,953,5.0,980195678\n605,955,4.0,980175700\n605,965,3.0,980174373\n605,969,5.0,980174557\n605,986,4.0,980177494\n605,1009,3.0,980177052\n605,1015,4.0,980195075\n605,1020,4.0,980176322\n605,1021,5.0,980174852\n605,1022,4.0,980176061\n605,1029,4.0,980176907\n605,1031,3.0,980175264\n605,1032,5.0,980174659\n605,1033,3.0,980177649\n605,1044,3.0,980174106\n605,1054,1.0,980177887\n605,1078,4.0,980175106\n605,1079,4.0,980177421\n605,1082,4.0,980175815\n605,1084,4.0,980175550\n605,1086,4.0,980176678\n605,1088,2.0,980176703\n605,1093,3.0,980176812\n605,1097,3.0,980176907\n605,1099,5.0,980176044\n605,1100,3.0,980176519\n605,1136,3.0,980174106\n605,1177,3.0,980176990\n605,1183,2.0,980177012\n605,1196,3.0,980176990\n605,1203,5.0,980174353\n605,1204,3.0,980196541\n605,1212,5.0,980199622\n605,1213,3.0,980180616\n605,1214,3.0,980174659\n605,1220,3.0,980175530\n605,1221,4.0,980177975\n605,1225,4.0,980174717\n605,1230,3.0,980174875\n605,1242,3.0,980177946\n605,1246,3.0,980176545\n605,1247,3.0,980180633\n605,1256,4.0,980176884\n605,1262,3.0,980180924\n605,1265,3.0,980194114\n605,1269,5.0,980174954\n605,1270,4.0,980175048\n605,1271,4.0,980177728\n605,1275,3.0,980194919\n605,1282,4.0,980177182\n605,1284,2.0,980199622\n605,1285,2.0,980194842\n605,1287,4.0,980175307\n605,1291,3.0,980195500\n605,1302,3.0,980177386\n605,1304,4.0,980175777\n605,1321,3.0,980174773\n605,1327,3.0,980174773\n605,1333,4.0,980175435\n605,1334,3.0,980175480\n605,1340,2.0,980175677\n605,1343,3.0,980175815\n605,1344,4.0,980175815\n605,1345,3.0,980175843\n605,1359,2.0,980195812\n605,1380,4.0,980180654\n605,1387,5.0,980195740\n605,1388,2.0,980195780\n605,1389,1.0,980195780\n605,1393,4.0,980195812\n605,1401,2.0,980177907\n605,1405,3.0,980175208\n605,1429,3.0,980195704\n605,1453,3.0,980175208\n605,1459,3.0,980174457\n605,1466,3.0,980176812\n605,1474,2.0,980195889\n605,1485,3.0,980197284\n605,1498,2.0,980195635\n605,1500,2.0,980194114\n605,1517,4.0,980174990\n605,1541,2.0,980174486\n605,1542,2.0,980174067\n605,1562,2.0,980175162\n605,1573,3.0,980177141\n605,1588,3.0,980177829\n605,1592,4.0,980174606\n605,1594,3.0,980195452\n605,1608,3.0,980174606\n605,1617,3.0,980196094\n605,1625,2.0,980177795\n605,1635,2.0,980195404\n605,1639,2.0,980175931\n605,1641,3.0,980177763\n605,1644,2.0,980195359\n605,1645,4.0,980176647\n605,1654,3.0,980177141\n605,1665,3.0,980175184\n605,1673,3.0,980175550\n605,1678,2.0,980195844\n605,1688,5.0,980174793\n605,1693,1.0,980174773\n605,1702,2.0,980177494\n605,1703,2.0,980177603\n605,1704,4.0,980180616\n605,1727,3.0,980195241\n605,1797,4.0,980177052\n605,1855,1.0,980196063\n605,1875,2.0,980176141\n605,1883,1.0,980175761\n605,1888,2.0,980195223\n605,1895,3.0,980174106\n605,1929,3.0,980180654\n605,1935,3.0,980195283\n605,1937,4.0,980178503\n605,1938,3.0,980174106\n605,1944,4.0,980177763\n605,1953,4.0,980177697\n605,1955,3.0,980196063\n605,1957,4.0,980175912\n605,1962,3.0,980176866\n605,1968,3.0,980175656\n605,1974,3.0,980177713\n605,1975,1.0,980177713\n605,1997,4.0,980174183\n605,2000,3.0,980196811\n605,2011,3.0,980175072\n605,2012,2.0,980175072\n605,2014,3.0,980177669\n605,2015,4.0,980174457\n605,2017,3.0,980175025\n605,2022,1.0,980196521\n605,2028,3.0,980174067\n605,2032,3.0,980175138\n605,2033,3.0,980175435\n605,2038,4.0,980175863\n605,2043,4.0,980176475\n605,2050,2.0,980194889\n605,2054,2.0,980195075\n605,2057,4.0,980195477\n605,2077,3.0,980195844\n605,2078,3.0,980195869\n605,2080,3.0,980196094\n605,2081,4.0,980197649\n605,2085,4.0,980174326\n605,2108,2.0,980196094\n605,2109,3.0,980195780\n605,2115,4.0,980195500\n605,2125,4.0,980177052\n605,2133,2.0,980174486\n605,2135,3.0,980176746\n605,2137,4.0,980175931\n605,2150,3.0,980177975\n605,2154,1.0,980195283\n605,2163,3.0,980174990\n605,2169,3.0,980176545\n605,2184,2.0,980200112\n605,2208,4.0,980196094\n605,2239,3.0,980174106\n605,2243,3.0,980175700\n605,2262,3.0,980174457\n605,2280,4.0,980176098\n605,2312,3.0,980176025\n605,2336,3.0,980176964\n605,2352,3.0,980175377\n605,2353,3.0,980177012\n605,2366,3.0,980196005\n605,2367,2.0,980196005\n605,2369,2.0,980176621\n605,2374,2.0,980194141\n605,2384,4.0,980175025\n605,2405,3.0,980195812\n605,2407,3.0,980176168\n605,2413,3.0,980176168\n605,2420,3.0,980195915\n605,2421,2.0,980195915\n605,2422,1.0,980195915\n605,2428,2.0,980177141\n605,2454,3.0,980177494\n605,2468,1.0,980195869\n605,2470,4.0,980176395\n605,2471,2.0,980176395\n605,2520,5.0,980174606\n605,2522,2.0,980174606\n605,2535,3.0,980176922\n605,2541,2.0,980176412\n605,2546,2.0,980176584\n605,2559,2.0,980196005\n605,2565,3.0,980196005\n605,2567,2.0,980176907\n605,2572,3.0,980174326\n605,2599,4.0,980176964\n605,2661,3.0,980195653\n605,2683,2.0,980174990\n605,2688,1.0,980177814\n605,2690,4.0,980195416\n605,2706,2.0,980174746\n605,2707,3.0,980174934\n605,2716,3.0,980177907\n605,2720,2.0,980195610\n605,2736,2.0,980175700\n605,2753,3.0,980175264\n605,2759,1.0,980176678\n605,2779,4.0,980194842\n605,2788,3.0,980174814\n605,2789,2.0,980176456\n605,2791,5.0,980174606\n605,2792,4.0,980174606\n605,2797,4.0,980175361\n605,2804,5.0,980176044\n605,2846,5.0,980174525\n605,2858,1.0,980174717\n605,2866,4.0,980175761\n605,2870,4.0,980175138\n605,2871,3.0,980176606\n605,2881,3.0,980176812\n605,2882,1.0,980195740\n605,2886,3.0,980174525\n605,2899,3.0,980194141\n605,2918,3.0,980177365\n605,2926,3.0,980194676\n605,2942,3.0,980177451\n605,2948,4.0,980177763\n605,2949,4.0,980176834\n605,2950,2.0,980175515\n605,2971,2.0,980174680\n605,2989,3.0,980177624\n605,2990,3.0,980197284\n605,2991,3.0,980197716\n605,2997,4.0,980175286\n605,3013,1.0,980175677\n605,3044,3.0,980176519\n605,3052,1.0,980176775\n605,3060,3.0,980176226\n605,3061,4.0,980194978\n605,3074,3.0,980195780\n605,3088,5.0,980194797\n605,3101,3.0,980177205\n605,3102,3.0,980195704\n605,3107,3.0,980175072\n605,3110,4.0,980176341\n605,3136,3.0,980195740\n605,3145,3.0,980176365\n605,3146,1.0,980176647\n605,3159,4.0,980174183\n605,3175,3.0,980177795\n605,3179,3.0,980174852\n605,3203,3.0,980176519\n605,3210,3.0,980177205\n605,3244,2.0,980180616\n605,3249,3.0,980194692\n605,3260,2.0,980195303\n605,3264,3.0,980175761\n605,3334,4.0,980195940\n605,3340,1.0,980175677\n605,3341,4.0,980175569\n605,3358,2.0,980176606\n605,3359,3.0,980175656\n605,3360,5.0,980195223\n605,3361,3.0,980175761\n605,3363,4.0,980174746\n605,3412,4.0,980175184\n605,3420,2.0,980174326\n605,3421,4.0,980174852\n605,3430,4.0,980176566\n605,3431,2.0,980176566\n605,3435,4.0,980176812\n605,3445,3.0,980177120\n605,3450,3.0,980194114\n605,3451,4.0,980194114\n605,3460,3.0,980194978\n605,3471,3.0,980176187\n605,3478,3.0,980175089\n605,3483,3.0,980174247\n605,3510,5.0,980174205\n605,3516,4.0,980175286\n605,3520,3.0,980195303\n605,3537,1.0,980174247\n605,3543,3.0,980176703\n605,3548,5.0,980174990\n605,3549,4.0,980194141\n605,3579,1.0,980195341\n605,3594,3.0,980174183\n605,3599,4.0,980174814\n605,3600,3.0,980175515\n605,3614,3.0,980195075\n605,3649,3.0,980174746\n605,3671,4.0,980175465\n605,3672,5.0,980175307\n605,3674,3.0,980177624\n605,3684,2.0,980177120\n605,3700,3.0,980175736\n605,3701,3.0,980174659\n605,3715,1.0,980175761\n605,3717,1.0,980174247\n605,3724,2.0,980176226\n605,3751,5.0,980174184\n605,3753,1.0,980174184\n605,3755,3.0,980174184\n605,3763,3.0,980177120\n605,3785,1.0,980174247\n605,3791,4.0,980177604\n605,3793,2.0,980174184\n605,3813,1.0,980195610\n605,3841,2.0,980174606\n605,3861,3.0,980174247\n605,3890,3.0,980175048\n605,3913,3.0,980175138\n605,3922,3.0,980175410\n605,3927,3.0,980177182\n605,3967,4.0,980175410\n605,3977,3.0,980175913\n605,3984,4.0,980176678\n605,3988,2.0,980195283\n605,4001,2.0,980174067\n605,4008,2.0,980175569\n605,4019,4.0,980177403\n605,4021,2.0,980175264\n605,4023,4.0,980177159\n605,4039,4.0,980174875\n605,4040,2.0,980176812\n605,4047,3.0,980177887\n605,4080,3.0,980175025\n605,4081,4.0,980175048\n605,4084,2.0,980175345\n605,4085,4.0,980175345\n605,4086,5.0,980175377\n605,4090,4.0,980175615\n605,4091,3.0,980175815\n605,4098,3.0,980176545\n605,4117,2.0,980195223\n605,4124,1.0,980195780\n605,4126,2.0,980196811\n606,175,5.0,1380349824\n606,235,4.0,1380350132\n606,296,5.0,1380350548\n606,441,3.0,1380431874\n606,593,3.5,1380350020\n606,661,3.0,1380349705\n606,778,5.0,1380350514\n606,858,5.0,1380350440\n606,904,5.0,1380349948\n606,908,5.0,1380349954\n606,911,4.5,1380349865\n606,1089,5.0,1380350538\n606,1103,5.0,1380349779\n606,1136,3.5,1380350017\n606,1148,2.5,1380349995\n606,1203,5.0,1380349977\n606,1207,4.5,1380349938\n606,1219,5.0,1380349930\n606,1221,5.0,1380350463\n606,1247,4.0,1380349927\n606,1285,3.0,1380349698\n606,1405,3.0,1380349725\n606,1562,3.5,1380349728\n606,1729,5.0,1380350557\n606,1916,4.5,1380350207\n606,1968,4.0,1380431895\n606,2145,4.5,1380349749\n606,2186,5.0,1380349923\n606,2395,5.0,1380350305\n606,2455,2.0,1380349715\n606,2571,5.0,1380349999\n606,2858,4.5,1380350024\n606,2863,5.0,1380349849\n606,2918,4.0,1380431905\n606,2959,4.0,1380349984\n606,3089,5.0,1380350037\n606,3100,5.0,1380349785\n606,3210,3.5,1380431899\n606,3246,3.5,1380349833\n606,3254,4.0,1380349811\n606,3477,3.5,1380431805\n606,3608,3.0,1380349787\n606,3740,2.5,1380349817\n606,3897,3.5,1380431888\n606,4128,3.0,1380431909\n606,4878,4.0,1380419676\n606,4979,5.0,1380350283\n606,5971,4.0,1380350047\n606,6711,4.5,1380409217\n606,6874,5.0,1380350336\n606,7438,5.0,1380350339\n606,27664,5.0,1380350218\n606,30810,5.0,1380350318\n606,55269,4.5,1380350261\n606,62336,4.0,1380409270\n606,68073,3.0,1380431932\n606,72226,5.0,1380350252\n606,73860,3.0,1380431943\n606,79132,4.0,1380350008\n606,94959,4.5,1380350244\n607,1,4.5,1113319531\n607,2,3.0,1118247388\n607,3,3.5,1118247469\n607,7,3.5,1118247500\n607,10,3.5,1144790933\n607,16,3.5,1113319432\n607,18,4.0,1148587665\n607,19,1.5,1148585618\n607,21,3.5,1118247250\n607,31,3.5,1118248028\n607,32,3.5,1113319713\n607,47,4.0,1113319779\n607,50,4.5,1113319758\n607,62,3.5,1148586492\n607,69,4.0,1144790547\n607,93,3.0,1113404955\n607,95,2.0,1148585841\n607,104,3.0,1113319389\n607,110,4.5,1113319478\n607,141,3.0,1144790824\n607,150,4.0,1113319685\n607,153,3.0,1113319747\n607,161,4.0,1113319853\n607,163,3.5,1118246506\n607,165,3.5,1113319752\n607,180,3.5,1113405918\n607,185,3.0,1113319866\n607,193,2.5,1118246785\n607,208,2.5,1148585644\n607,223,2.5,1153513758\n607,224,4.5,1118247934\n607,231,3.0,1113319810\n607,253,4.0,1113319863\n607,260,4.5,1113319693\n607,266,0.5,1113319347\n607,277,3.5,1148586470\n607,282,3.5,1118247647\n607,288,4.0,1118247315\n607,292,3.5,1113319832\n607,293,4.5,1113405924\n607,296,5.0,1148586998\n607,303,3.5,1148586427\n607,316,3.5,1113319766\n607,317,2.0,1113319359\n607,318,5.0,1113319688\n607,329,3.5,1113319794\n607,333,3.5,1118246528\n607,339,0.5,1153513656\n607,344,2.5,1113319726\n607,349,4.0,1118247217\n607,353,3.0,1148586696\n607,355,3.0,1148586057\n607,356,5.0,1118246433\n607,362,3.5,1118248319\n607,364,3.0,1144791031\n607,367,3.0,1113319825\n607,368,4.5,1113319350\n607,370,3.5,1118247586\n607,377,3.5,1113319723\n607,380,4.5,1113319695\n607,383,0.5,1148585495\n607,410,3.5,1118247375\n607,420,3.0,1118247523\n607,423,3.5,1113405106\n607,431,4.0,1148587599\n607,432,2.5,1148585849\n607,434,3.5,1113319845\n607,440,4.0,1144790507\n607,441,3.5,1148586631\n607,442,2.0,1113319337\n607,454,4.0,1113319857\n607,457,4.0,1113319672\n607,466,3.5,1118247589\n607,471,4.0,1118247731\n607,480,3.0,1118246435\n607,485,3.5,1118247676\n607,500,2.5,1148585800\n607,520,3.5,1113404649\n607,524,3.0,1113405852\n607,543,4.0,1118247663\n607,551,4.0,1118247448\n607,553,4.0,1113319395\n607,586,2.0,1148585778\n607,587,2.5,1148586071\n607,588,4.0,1113319707\n607,589,3.5,1113319578\n607,590,2.5,1118246446\n607,592,3.5,1118246441\n607,593,4.0,1113319659\n607,595,2.0,1148585574\n607,597,3.0,1144791081\n607,608,3.5,1113319721\n607,647,4.0,1118248012\n607,648,3.5,1148586487\n607,653,3.0,1113319436\n607,661,3.5,1113404666\n607,720,4.0,1144790749\n607,733,4.0,1113319798\n607,736,3.5,1144791139\n607,737,1.0,1148585606\n607,762,2.0,1148585681\n607,778,4.0,1118247439\n607,780,3.5,1113319699\n607,783,4.0,1144790631\n607,784,3.0,1118247561\n607,785,3.5,1118247837\n607,786,3.0,1118247412\n607,788,2.5,1118247383\n607,802,3.5,1118247552\n607,832,4.0,1113408654\n607,852,3.5,1118247719\n607,858,4.5,1118247224\n607,996,4.5,1148587330\n607,1027,4.0,1148587456\n607,1029,3.0,1118248288\n607,1035,0.5,1148585489\n607,1036,4.0,1113319492\n607,1042,3.0,1148586369\n607,1060,4.5,1143500466\n607,1073,3.0,1148586261\n607,1079,4.0,1144790544\n607,1080,4.0,1113319438\n607,1088,2.0,1148586162\n607,1089,4.5,1118247427\n607,1090,2.5,1153426671\n607,1092,3.5,1148586737\n607,1097,4.0,1113319836\n607,1100,3.5,1118246754\n607,1101,4.5,1113406624\n607,1125,4.0,1113408448\n607,1127,4.5,1113406159\n607,1136,5.0,1113406235\n607,1148,4.0,1144790751\n607,1196,4.5,1113319762\n607,1197,4.5,1143500580\n607,1198,4.0,1113319785\n607,1200,4.0,1144790389\n607,1208,0.5,1153513594\n607,1210,4.5,1113319523\n607,1213,3.5,1148666485\n607,1214,4.0,1144790386\n607,1215,4.0,1144790396\n607,1220,3.5,1144790831\n607,1221,4.0,1148666646\n607,1222,4.5,1148587795\n607,1240,4.0,1144790737\n607,1246,3.0,1113405909\n607,1257,4.0,1118247033\n607,1258,2.5,1148587162\n607,1261,4.0,1118246748\n607,1265,4.5,1113406374\n607,1266,3.5,1148587540\n607,1267,4.5,1118248124\n607,1270,4.0,1113319567\n607,1271,2.5,1148585724\n607,1275,4.0,1113406226\n607,1291,4.5,1113319472\n607,1293,3.5,1148586860\n607,1302,3.5,1144790919\n607,1343,3.0,1144790844\n607,1356,4.5,1113406822\n607,1358,4.0,1148587490\n607,1370,3.5,1118247567\n607,1371,4.0,1118248008\n607,1372,3.5,1118247777\n607,1374,4.0,1113319442\n607,1375,3.5,1118247857\n607,1376,4.0,1118247693\n607,1377,3.5,1118247827\n607,1391,4.0,1118247506\n607,1393,2.5,1148585782\n607,1396,4.5,1113406135\n607,1405,3.5,1118248134\n607,1408,4.0,1113404655\n607,1461,3.5,1148585650\n607,1466,4.0,1143500517\n607,1479,4.0,1118248260\n607,1485,2.5,1118246475\n607,1500,4.5,1148586890\n607,1517,3.5,1113319375\n607,1527,5.0,1113405985\n607,1552,3.5,1118247808\n607,1573,3.5,1118247493\n607,1580,4.5,1113406636\n607,1584,2.5,1113319332\n607,1597,5.0,1118247901\n607,1610,4.0,1113319340\n607,1625,5.0,1113405607\n607,1645,3.5,1148586640\n607,1653,2.5,1148585749\n607,1682,3.5,1113405946\n607,1689,4.0,1113404896\n607,1704,5.0,1113405671\n607,1713,3.5,1113404887\n607,1722,4.0,1118247870\n607,1729,3.5,1144790954\n607,1732,3.5,1118247614\n607,1747,3.5,1118247918\n607,1748,3.5,1148586706\n607,1777,3.5,1118247798\n607,1784,3.5,1118247409\n607,1907,4.0,1113405770\n607,1917,3.0,1113319421\n607,1923,4.0,1113406606\n607,1954,4.0,1113406668\n607,1961,3.5,1148586789\n607,1967,4.5,1118246723\n607,1968,3.5,1113405964\n607,2000,4.0,1113319464\n607,2003,3.5,1148586611\n607,2005,4.0,1113406620\n607,2006,4.0,1113408610\n607,2011,3.5,1118246496\n607,2012,4.0,1118246483\n607,2019,4.5,1118248090\n607,2021,4.0,1118248273\n607,2054,3.5,1118247604\n607,2058,4.0,1113406657\n607,2072,3.5,1113405134\n607,2083,4.5,1118246708\n607,2100,3.5,1118247706\n607,2108,3.0,1144790979\n607,2109,3.5,1118246714\n607,2115,4.5,1118247541\n607,2139,3.5,1144791100\n607,2140,3.0,1148586714\n607,2161,3.5,1144791070\n607,2167,4.0,1113408583\n607,2174,3.5,1113408533\n607,2193,4.5,1118248163\n607,2194,4.0,1148585423\n607,2231,4.5,1113405883\n607,2268,3.5,1150394070\n607,2273,3.0,1118248307\n607,2278,4.5,1118248158\n607,2294,3.5,1118248165\n607,2302,3.5,1113406794\n607,2353,4.0,1118247710\n607,2355,4.0,1144790407\n607,2371,4.0,1113406955\n607,2393,3.5,1118248449\n607,2396,3.5,1144791106\n607,2406,4.0,1113406936\n607,2407,1.0,1153513700\n607,2408,3.5,1113404871\n607,2424,2.0,1118246681\n607,2470,4.0,1118247890\n607,2490,4.5,1113408541\n607,2501,5.0,1113405686\n607,2502,4.5,1113405977\n607,2539,3.5,1118248228\n607,2542,4.5,1113406199\n607,2571,4.5,1113319536\n607,2605,2.5,1148586171\n607,2617,4.0,1118247601\n607,2628,3.5,1118247305\n607,2640,4.0,1118247558\n607,2683,4.0,1118247392\n607,2699,3.5,1118247652\n607,2700,4.0,1113408510\n607,2701,2.5,1148585631\n607,2706,4.0,1118247456\n607,2710,4.0,1118247473\n607,2716,3.5,1113319527\n607,2717,2.5,1148585749\n607,2723,4.0,1118248313\n607,2762,4.0,1113405527\n607,2763,4.5,1113408360\n607,2791,3.5,1118246486\n607,2797,3.0,1118247478\n607,2804,4.0,1118247787\n607,2819,3.5,1148666553\n607,2916,3.5,1113406929\n607,2918,3.5,1144790916\n607,2926,0.5,1118246661\n607,2944,4.0,1113405788\n607,2947,4.0,1144790584\n607,2959,4.5,1113405992\n607,2985,3.5,1118247737\n607,2987,3.0,1113319366\n607,3033,4.0,1144790716\n607,3052,3.5,1113406471\n607,3082,4.0,1144790791\n607,3098,4.5,1113405572\n607,3114,4.0,1113319401\n607,3146,3.0,1118246604\n607,3147,5.0,1113319482\n607,3210,3.5,1113406599\n607,3253,3.5,1118247874\n607,3255,0.5,1148585552\n607,3256,4.0,1118248248\n607,3301,4.0,1113408777\n607,3360,4.0,1148586838\n607,3361,3.5,1113406500\n607,3396,4.0,1143500576\n607,3397,4.0,1118248883\n607,3408,3.0,1148586198\n607,3421,4.0,1144790393\n607,3448,4.0,1113406122\n607,3499,3.5,1144791051\n607,3527,3.5,1144791078\n607,3578,4.5,1113319507\n607,3617,3.5,1118246585\n607,3623,3.5,1118247741\n607,3681,4.0,1118248641\n607,3702,4.0,1113408558\n607,3735,3.5,1158466890\n607,3751,4.0,1144790497\n607,3763,2.0,1148585716\n607,3793,4.5,1113319404\n607,3809,3.5,1144791148\n607,3868,3.5,1113406896\n607,3896,4.5,1148588127\n607,3911,3.5,1118248173\n607,3948,3.5,1113406889\n607,3977,4.0,1118247755\n607,3994,3.5,1148586243\n607,3996,4.0,1144790501\n607,4011,4.5,1113405796\n607,4016,3.5,1148586653\n607,4018,3.0,1118246575\n607,4022,4.0,1118247637\n607,4027,4.5,1118247660\n607,4085,3.0,1113319510\n607,4105,3.5,1118248896\n607,4128,4.0,1144790654\n607,4161,4.0,1148588020\n607,4226,4.5,1113406117\n607,4306,4.5,1113319392\n607,4321,3.5,1144790885\n607,4344,3.0,1118246553\n607,4489,3.0,1144790867\n607,4499,4.5,1113406269\n607,4544,3.0,1118246864\n607,4557,3.5,1113408502\n607,4623,4.0,1113406708\n607,4816,3.5,1118246541\n607,4844,3.5,1113404739\n607,4886,4.5,1113319497\n607,4896,4.5,1113405742\n607,4901,4.5,1113405761\n607,4963,4.5,1113319563\n607,4975,1.5,1153513833\n607,4979,3.5,1118248269\n607,4980,1.5,1148585598\n607,4993,4.5,1144790368\n607,5064,4.0,1151425776\n607,5103,3.0,1113406092\n607,5218,4.0,1144790635\n607,5254,3.5,1113405140\n607,5299,4.0,1148588039\n607,5309,2.5,1148585662\n607,5349,4.5,1113319581\n607,5378,3.5,1118246535\n607,5388,3.5,1113408336\n607,5418,4.5,1113405524\n607,5444,4.0,1113405168\n607,5445,4.0,1144790667\n607,5459,3.5,1118246545\n607,5464,4.5,1113405712\n607,5507,2.5,1148585894\n607,5574,4.0,1148587096\n607,5816,4.5,1113405683\n607,5872,4.0,1144790526\n607,5903,4.0,1144790538\n607,5944,4.0,1113404877\n607,5952,4.5,1113405588\n607,5989,4.0,1113405737\n607,6005,4.0,1144790401\n607,6157,2.5,1118246559\n607,6188,4.0,1113405059\n607,6218,3.5,1118248865\n607,6333,4.5,1113319466\n607,6365,4.0,1118248257\n607,6377,4.5,1113405663\n607,6378,4.5,1113406023\n607,6539,5.0,1113319571\n607,6659,3.5,1113408682\n607,6709,3.5,1118246852\n607,6753,4.5,1143499914\n607,6807,4.5,1118248766\n607,6863,3.5,1113406440\n607,6870,3.5,1148587407\n607,6874,4.5,1113406175\n607,6936,4.5,1113406913\n607,6947,4.0,1148587996\n607,6979,3.5,1118247089\n607,7000,3.5,1148587360\n607,7090,5.0,1118248663\n607,7143,4.0,1113319551\n607,7153,4.5,1144790370\n607,7156,3.5,1150081984\n607,7317,4.0,1148587637\n607,7324,4.5,1113408476\n607,7373,4.5,1113408763\n607,7438,4.5,1113406147\n607,7445,4.0,1118247053\n607,8360,4.0,1113405612\n607,8368,4.5,1113405701\n607,8371,3.5,1118246808\n607,8376,0.5,1148585544\n607,8633,3.5,1148586534\n607,8636,4.5,1113405549\n607,8641,3.0,1148588165\n607,8644,4.0,1113404833\n607,8665,4.0,1113405251\n607,8781,4.0,1113404688\n607,8798,4.0,1113404933\n607,8807,4.0,1148587203\n607,8961,4.5,1144790365\n607,8984,3.5,1148588062\n607,26555,4.0,1113406798\n607,30793,3.5,1143500416\n607,30812,2.5,1148585904\n607,31696,3.5,1148588186\n607,32587,5.0,1143500291\n607,33004,4.0,1148587860\n607,33166,3.5,1158466773\n607,33493,4.5,1118246995\n607,33679,4.0,1148588092\n607,33794,5.0,1143499639\n607,34162,3.5,1154372790\n607,34405,5.0,1157590005\n607,36519,3.0,1148587098\n607,38038,4.0,1143500472\n607,40815,4.0,1143499665\n607,41566,2.5,1148585435\n608,1,4.0,939461651\n608,6,5.0,939362594\n608,10,3.0,939362773\n608,16,4.0,939362594\n608,17,3.0,939461523\n608,22,3.0,939362773\n608,25,4.0,939461869\n608,30,4.0,939461712\n608,32,4.0,939461122\n608,34,4.0,939362108\n608,36,4.0,939461768\n608,47,5.0,939362390\n608,50,5.0,939361516\n608,59,3.0,958824728\n608,70,3.0,939362862\n608,81,3.0,958825252\n608,95,3.0,939363985\n608,111,5.0,939360997\n608,112,3.0,958825015\n608,117,2.0,958824838\n608,123,5.0,958825441\n608,149,4.0,958824947\n608,153,1.0,958825275\n608,164,3.0,958824948\n608,176,3.0,939360997\n608,190,5.0,939362862\n608,198,5.0,958825051\n608,229,3.0,939362289\n608,235,5.0,958825904\n608,247,4.0,939362390\n608,290,5.0,939361439\n608,293,3.0,939362529\n608,296,5.0,939361579\n608,300,4.0,939461122\n608,302,4.0,939461651\n608,306,5.0,939461599\n608,307,4.0,939461651\n608,319,3.0,939362529\n608,320,4.0,939362773\n608,322,3.0,939461523\n608,348,5.0,958825935\n608,356,3.0,939461225\n608,367,3.0,958825015\n608,373,4.0,939362773\n608,431,4.0,958824969\n608,457,3.0,939362460\n608,474,3.0,939362390\n608,490,3.0,939363985\n608,494,3.0,939363985\n608,509,4.0,939362289\n608,527,4.0,939361439\n608,532,4.0,958825110\n608,541,4.0,939361579\n608,549,3.0,958825791\n608,589,4.0,939362460\n608,592,4.0,958825015\n608,593,5.0,939362593\n608,599,5.0,958824585\n608,608,5.0,939362289\n608,627,3.0,939362594\n608,632,4.0,939461599\n608,696,1.0,939362460\n608,707,3.0,958825252\n608,750,5.0,939361157\n608,757,4.0,958825872\n608,778,4.0,958825809\n608,787,4.0,958825850\n608,800,4.0,939361635\n608,831,3.0,958824763\n608,841,4.0,958824367\n608,850,5.0,958825110\n608,858,5.0,958824554\n608,865,4.0,958825618\n608,866,4.0,939362773\n608,903,5.0,939361516\n608,904,5.0,939361373\n608,908,5.0,939361917\n608,910,5.0,939361373\n608,912,5.0,958824763\n608,913,5.0,939361635\n608,924,5.0,939361917\n608,931,4.0,939362289\n608,951,5.0,939361157\n608,955,5.0,939361316\n608,994,4.0,939362172\n608,1036,4.0,939462104\n608,1041,4.0,939361516\n608,1061,3.0,958825073\n608,1084,4.0,958824917\n608,1089,4.0,939362529\n608,1094,4.0,958825872\n608,1131,3.0,939361316\n608,1171,4.0,939461122\n608,1175,4.0,939461532\n608,1176,4.0,939461651\n608,1178,4.0,939362041\n608,1183,3.0,939461344\n608,1188,4.0,939362108\n608,1193,5.0,939360997\n608,1198,4.0,939362108\n608,1200,5.0,939462104\n608,1212,5.0,939362228\n608,1213,5.0,939361157\n608,1214,4.0,958824367\n608,1217,4.0,939462271\n608,1218,5.0,939462104\n608,1219,4.0,939361707\n608,1220,3.0,939462045\n608,1221,5.0,939361065\n608,1227,5.0,958824948\n608,1228,5.0,939361316\n608,1230,5.0,939361579\n608,1232,5.0,958824708\n608,1234,4.0,958824917\n608,1241,4.0,958824400\n608,1248,5.0,939362172\n608,1252,5.0,939362172\n608,1255,4.0,958824367\n608,1258,5.0,939462104\n608,1259,4.0,939462104\n608,1265,4.0,939461225\n608,1266,5.0,939461344\n608,1267,4.0,958824451\n608,1274,4.0,939462045\n608,1281,4.0,939361373\n608,1284,5.0,939361635\n608,1291,4.0,939361157\n608,1333,5.0,958824400\n608,1354,5.0,939461599\n608,1361,4.0,939461712\n608,1377,3.0,958825252\n608,1394,4.0,939462271\n608,1406,3.0,939461444\n608,1407,4.0,939363985\n608,1466,4.0,939362172\n608,1473,1.0,958825252\n608,1500,4.0,958824969\n608,1537,4.0,958825887\n608,1584,3.0,939461711\n608,1589,3.0,958825051\n608,1594,4.0,939362228\n608,1611,4.0,939461768\n608,1612,2.0,939461173\n608,1617,5.0,939361065\n608,1625,4.0,939362862\n608,1627,3.0,958825073\n608,1635,5.0,958825904\n608,1639,3.0,939461768\n608,1645,3.0,958825051\n608,1653,4.0,939362529\n608,1658,3.0,939361316\n608,1673,3.0,958825850\n608,1674,5.0,939462045\n608,1682,4.0,939461344\n608,1683,4.0,939362529\n608,1699,4.0,939461444\n608,1701,4.0,939361635\n608,1704,3.0,958825954\n608,1711,3.0,958825110\n608,1719,4.0,939361707\n608,1721,4.0,939461050\n608,1729,4.0,939461344\n608,1730,4.0,939461050\n608,1732,4.0,939362529\n608,1734,4.0,939361516\n608,1784,3.0,939461173\n608,1788,5.0,939361707\n608,1805,3.0,939362594\n608,1809,5.0,939362108\n608,1834,4.0,939362529\n608,1841,2.0,939362773\n608,1844,4.0,958825374\n608,1846,5.0,958825954\n608,1858,3.0,939362108\n608,1859,5.0,958824689\n608,1865,3.0,939361373\n608,1883,5.0,939361219\n608,1901,3.0,958824655\n608,1912,4.0,958824969\n608,1916,4.0,939362041\n608,1918,4.0,958825086\n608,1921,3.0,939362041\n608,1923,3.0,939461932\n608,1953,5.0,939361439\n608,1957,3.0,939361316\n608,1961,3.0,939462271\n608,1997,4.0,939361439\n608,2000,4.0,958825015\n608,2006,3.0,939361579\n608,2010,3.0,939361065\n608,2019,5.0,939361917\n608,2028,4.0,939361157\n608,2064,4.0,939361984\n608,2076,5.0,939462045\n608,2110,3.0,958825073\n608,2126,3.0,958825252\n608,2160,5.0,958824381\n608,2165,4.0,939461050\n608,2186,4.0,939361219\n608,2194,4.0,939462045\n608,2203,5.0,939361157\n608,2231,3.0,939461225\n608,2268,2.0,958825015\n608,2273,3.0,939362862\n608,2278,3.0,939362460\n608,2282,4.0,939361373\n608,2288,5.0,939462045\n608,2289,4.0,939361065\n608,2294,4.0,939362228\n608,2300,4.0,939360997\n608,2303,4.0,958824775\n608,2304,5.0,958825919\n608,2318,4.0,939361516\n608,2324,2.0,958824879\n608,2329,4.0,939461651\n608,2334,4.0,939362594\n608,2336,4.0,958825935\n608,2340,3.0,939461932\n608,2346,4.0,939360997\n608,2353,4.0,939363985\n608,2360,5.0,939361373\n608,2384,5.0,939461599\n608,2387,3.0,958825051\n608,2389,4.0,958825275\n608,2391,4.0,939362460\n608,2395,4.0,939461444\n608,2396,3.0,939461173\n608,2401,4.0,958824598\n608,2425,4.0,958825030\n608,2427,5.0,939362228\n608,2439,4.0,939361707\n608,2488,5.0,958824367\n608,2490,5.0,939362594\n608,2540,4.0,958825252\n608,2557,3.0,958825618\n608,2561,3.0,958825110\n608,2571,5.0,939362460\n608,2575,4.0,939461122\n608,2580,4.0,939361635\n608,2585,5.0,958825618\n608,2599,4.0,939362041\n608,2600,4.0,939362460\n608,2617,3.0,939363985\n608,2628,2.0,939361316\n608,2673,5.0,939361065\n608,2676,1.0,939362594\n608,2682,5.0,958825935\n608,2700,4.0,939461651\n608,2701,3.0,939361917\n608,2707,4.0,939357956\n608,2712,4.0,939358656\n608,2726,4.0,958824948\n608,2731,4.0,958824743\n608,2762,4.0,958824170\n608,2763,3.0,939357852\n608,2810,4.0,958825791\n608,2832,3.0,939358747\n608,2858,4.0,958825542\n608,2890,4.0,958825850\n608,2908,4.0,958824170\n608,2912,4.0,958824202\n608,2917,4.0,958824986\n608,2921,4.0,958824598\n608,2959,5.0,958824170\n608,2964,4.0,958825954\n608,2966,4.0,958825791\n608,2997,5.0,958824170\n608,3002,4.0,958824655\n608,3006,5.0,958824170\n608,3008,5.0,958825809\n608,3055,4.0,958824203\n608,3083,5.0,958825542\n608,3114,4.0,958825417\n608,3117,4.0,958825670\n608,3125,4.0,958824170\n608,3160,4.0,958825772\n608,3175,4.0,958824203\n608,3178,3.0,958824986\n608,3218,5.0,958824838\n608,3265,5.0,958824554\n608,3266,4.0,958824554\n608,3272,3.0,958825015\n608,3285,3.0,958824298\n608,3298,3.0,958824282\n608,3307,5.0,958824728\n608,3328,4.0,958824243\n608,3408,4.0,958825346\n608,3435,5.0,958824763\n608,3508,5.0,958824585\n608,3535,4.0,958824414\n608,3538,4.0,958824255\n608,3555,2.0,958824298\n608,3556,4.0,958824243\n608,3569,5.0,958824243\n608,3578,4.0,958824282\n608,4970,4.0,939361065\n609,81,5.0,1029869519\n609,117,1.0,1029870084\n609,188,5.0,1029870084\n609,215,1.0,1029870161\n609,290,5.0,1029869716\n609,296,1.0,1029870084\n609,320,1.0,1029870367\n609,334,1.0,1029870161\n609,390,5.0,1029870367\n609,436,1.0,1029869519\n609,443,1.0,1029869863\n609,456,1.0,1029869813\n609,483,1.0,1029870119\n609,501,5.0,1029869813\n609,565,5.0,1029870040\n609,569,1.0,1029869675\n609,593,5.0,1029869771\n609,614,1.0,1029869863\n609,617,1.0,1029870119\n609,621,1.0,1029870367\n609,678,1.0,1029870262\n609,720,1.0,1029869989\n609,735,5.0,1029870084\n609,839,1.0,1029869771\n609,858,5.0,1029869771\n609,912,1.0,1029870161\n609,923,5.0,1029870262\n609,936,1.0,1029870367\n609,1164,1.0,1029870040\n609,1202,1.0,1029870161\n609,1210,1.0,1029869519\n609,1224,1.0,1029869914\n609,1256,3.0,1029870084\n609,1352,5.0,1029869519\n609,1361,1.0,1029869989\n609,1365,1.0,1029870119\n609,1419,1.0,1029870262\n609,1447,1.0,1029870119\n609,1450,5.0,1029869863\n609,1537,1.0,1029870262\n609,1539,1.0,1029869914\n609,1563,5.0,1029869914\n609,1571,1.0,1029870084\n609,1819,5.0,1029869519\n609,1902,1.0,1029870161\n609,1929,1.0,1029870084\n609,2008,1.0,1029870084\n609,2063,1.0,1029870040\n609,2066,1.0,1029869813\n609,2237,1.0,1029870119\n609,2238,1.0,1029869863\n609,2267,5.0,1029869914\n609,2304,4.0,1029869771\n609,2348,1.0,1029870119\n609,2419,1.0,1029869863\n609,2434,1.0,1029869914\n609,2482,4.0,1029870119\n609,2563,5.0,1029870040\n609,2678,1.0,1029869675\n609,2767,1.0,1029870161\n609,2791,5.0,1029870040\n609,2824,1.0,1029869813\n609,2869,1.0,1029870262\n609,2905,1.0,1029869813\n609,2964,1.0,1029870161\n609,3003,1.0,1029869615\n609,3019,5.0,1029869519\n609,3030,1.0,1029869615\n609,3047,1.0,1029869989\n609,3076,1.0,1029869675\n609,3090,1.0,1029870161\n609,3196,1.0,1029869914\n609,3266,1.0,1029869989\n609,3303,1.0,1029869716\n609,3338,1.0,1029869675\n609,3341,1.0,1029869989\n609,3342,1.0,1029869989\n609,3362,1.0,1029870084\n609,3494,1.0,1029869914\n609,3547,1.0,1029869989\n609,3649,1.0,1029870262\n609,3672,5.0,1029869519\n609,3718,1.0,1029869615\n609,3728,1.0,1029870040\n609,3736,1.0,1029869813\n609,3813,1.0,1029870119\n609,3822,1.0,1029869989\n609,3892,5.0,1029870262\n609,3936,1.0,1029869519\n609,3965,1.0,1029869863\n609,3973,5.0,1029869771\n609,4026,1.0,1029869615\n609,4076,5.0,1029869716\n609,4166,1.0,1029869863\n609,4208,1.0,1029869813\n609,4271,1.0,1029869813\n609,4278,1.0,1029869813\n609,4334,1.0,1029870119\n609,4352,5.0,1029869914\n609,4387,1.0,1029870084\n609,4399,1.0,1029869771\n609,4433,1.0,1029870367\n609,4441,1.0,1029869716\n609,4467,5.0,1029869519\n609,4482,1.0,1029869675\n609,4518,5.0,1029870262\n609,4538,1.0,1029869771\n609,4562,1.0,1029869615\n609,4591,5.0,1029869675\n609,4592,1.0,1029869675\n609,4605,1.0,1029870161\n609,4768,1.0,1029870040\n609,4769,1.0,1029869863\n609,4782,1.0,1029870262\n609,4784,1.0,1029869716\n609,4796,5.0,1029870367\n609,4837,1.0,1029869771\n609,4865,5.0,1029869519\n609,4930,5.0,1029870262\n609,4965,5.0,1029869863\n609,4984,1.0,1029869675\n609,5114,5.0,1029869989\n609,5179,1.0,1029870040\n609,5202,1.0,1029870040\n609,5224,1.0,1029869813\n609,5236,1.0,1029870119\n609,5237,1.0,1029869914\n609,5241,1.0,1029869675\n609,5294,1.0,1029870040\n609,5304,1.0,1029869989\n609,5339,1.0,1029869863\n609,5352,1.0,1029870367\n609,5395,1.0,1029869716\n609,5410,1.0,1029869716\n609,5427,5.0,1029869675\n609,5470,1.0,1029869716\n609,5481,3.0,1029869771\n609,5504,1.0,1029869771\n609,5527,1.0,1029869914\n609,6531,1.0,1029869716\n610,538,4.0,1348595260\n610,1556,2.5,1348595245\n610,1590,4.0,1348595190\n610,1653,5.0,1349427910\n610,1894,3.0,1348595241\n610,2717,2.5,1348595057\n610,2761,2.0,1348595063\n610,2881,2.5,1348595126\n610,3020,3.0,1348595207\n610,3481,3.0,1348596057\n610,3510,3.0,1348595112\n610,3752,4.0,1348595166\n610,3863,1.0,1348595140\n610,3911,3.5,1348596045\n610,3949,3.5,1349428736\n610,4011,4.0,1348595682\n610,4027,3.0,1348596075\n610,4306,2.5,1348596053\n610,4641,3.5,1349428795\n610,4848,4.0,1349428080\n610,4878,3.5,1349428797\n610,4973,4.5,1348595696\n610,4979,4.5,1348595778\n610,5013,3.0,1348595214\n610,5015,3.5,1348595256\n610,5225,4.0,1349428669\n610,5617,3.5,1348595917\n610,5673,4.0,1348595932\n610,5902,3.5,1348595775\n610,5954,2.5,1349428723\n610,5989,4.0,1349428738\n610,5995,4.0,1349428670\n610,6016,4.5,1349428702\n610,6620,3.5,1348595928\n610,6711,5.0,1348595800\n610,6870,4.0,1349428689\n610,6942,2.0,1348596064\n610,6953,3.0,1349428681\n610,7139,4.0,1349428742\n610,7361,4.5,1349428800\n610,8622,3.0,1348595169\n610,8784,3.5,1348595781\n610,8874,4.0,1348595804\n610,8910,4.0,1348596157\n610,8949,3.5,1348596037\n610,27611,1.0,1349428781\n610,27773,5.0,1349428075\n610,30707,3.0,1349428083\n610,30749,4.0,1349428699\n610,30810,3.5,1348595923\n610,30812,5.0,1348595262\n610,31410,4.0,1349428814\n610,32587,3.5,1349428807\n610,34437,3.0,1348596047\n610,36535,4.0,1348596208\n610,38038,1.0,1349428755\n610,38061,3.5,1348595807\n610,41997,4.0,1349428709\n610,44195,4.0,1348595785\n610,44555,4.0,1349428650\n610,46578,4.5,1348595690\n610,46976,3.5,1348596111\n610,48516,4.0,1349428784\n610,48738,3.0,1349428665\n610,48780,4.0,1349428792\n610,49530,3.5,1349428745\n610,50872,3.5,1348596171\n610,54503,3.0,1348596123\n610,55269,3.5,1348595919\n610,55280,3.5,1348595930\n610,55820,3.0,1349428788\n610,56367,4.0,1348595792\n610,56782,5.0,1349428068\n610,57669,5.0,1348596107\n610,61240,4.0,1349428693\n610,63082,4.0,1349428724\n610,67997,4.0,1348596202\n610,68954,3.5,1348595680\n610,69757,4.0,1348596189\n610,71535,3.5,1348596163\n610,72011,3.0,1348596161\n610,84847,4.0,1348595710\n611,260,2.0,1471521325\n611,356,5.0,1471524463\n611,588,5.0,1471524718\n611,1721,4.0,1471521709\n611,1722,4.5,1471521496\n611,1882,1.5,1471521570\n611,2167,1.0,1471524250\n611,2294,3.0,1471521519\n611,2571,4.5,1471521299\n611,3404,4.0,1471521667\n611,3623,4.0,1471521448\n611,4369,4.0,1471522157\n611,4963,4.0,1471524042\n611,5254,1.0,1471524228\n611,5349,3.0,1471521873\n611,5418,3.0,1471524050\n611,6539,5.0,1471522941\n611,8533,3.5,1471521665\n611,8984,3.5,1471524096\n611,8985,1.0,1471524317\n611,45722,5.0,1471522875\n611,47099,4.5,1471521954\n611,53125,4.0,1471522849\n611,53322,3.5,1471524137\n611,73290,5.0,1471522055\n611,79132,3.5,1471521317\n611,86880,3.5,1471522820\n611,97304,4.0,1471521230\n611,98000,4.0,1471523753\n611,105504,4.0,1471521195\n611,108514,4.5,1471523535\n611,149606,4.5,1471523461\n611,150548,4.0,1471521899\n611,162542,5.0,1471520667\n611,162672,3.0,1471523986\n612,223,2.5,1455642746\n612,349,3.0,1455642720\n612,362,3.5,1455638487\n612,364,4.0,1455638876\n612,551,3.0,1455642716\n612,673,3.5,1455638412\n612,1097,4.5,1455638867\n612,1136,3.0,1455638864\n612,1198,3.5,1455642709\n612,1246,5.0,1455638856\n612,1485,3.0,1455642688\n612,1608,3.0,1455642853\n612,1682,4.0,1455642692\n612,1722,3.0,1455638347\n612,1777,2.5,1455642849\n612,2011,2.0,1455638646\n612,2078,4.0,1455638442\n612,2273,3.5,1455638428\n612,2278,4.0,1455638402\n612,2335,3.0,1455642831\n612,2502,3.0,1455642683\n612,2571,4.0,1455642680\n612,2683,4.0,1455638637\n612,2706,3.0,1455638633\n612,2918,4.0,1455642676\n612,2947,2.5,1455638381\n612,3033,2.5,1455642822\n612,3481,3.0,1455642814\n612,3552,4.0,1455642811\n612,3624,3.0,1455642809\n612,3755,3.0,1455642806\n612,4022,3.5,1455638629\n612,4085,3.5,1455638392\n612,4239,3.5,1455642799\n612,4369,4.0,1455642793\n612,4896,3.5,1455638625\n612,4963,4.0,1455638621\n612,4993,4.5,1455638619\n612,5378,4.0,1455638614\n612,5679,4.0,1455638420\n612,6333,3.0,1455642788\n612,7445,3.5,1455642988\n612,8784,2.5,1455638434\n612,30793,3.5,1455642782\n612,33679,2.5,1455642770\n612,34048,3.0,1455642766\n612,40278,4.0,1455642979\n612,40815,4.0,1455638367\n612,45447,3.0,1455642757\n612,45720,3.5,1455642974\n612,46578,3.5,1455642759\n612,47099,3.5,1455642972\n612,49530,4.5,1455638474\n612,50872,3.5,1455638373\n612,61024,2.0,1455642959\n612,62434,2.5,1455642956\n612,63082,4.5,1455642750\n612,63113,3.5,1455642952\n612,69122,4.5,1455638424\n612,72011,3.5,1455642947\n612,73321,4.0,1455642945\n612,74458,3.5,1455642741\n612,80463,4.0,1455642739\n612,91500,4.0,1455642736\n612,94959,4.0,1455642933\n612,99114,4.0,1455638449\n613,50,5.0,1208297864\n613,260,5.0,1208297872\n613,272,3.0,1208297635\n613,318,4.0,1208297827\n613,593,5.0,1208297831\n613,719,1.5,1208297648\n613,745,4.5,1208297909\n613,750,3.5,1208297916\n613,858,5.0,1208297869\n613,904,3.5,1208297936\n613,1042,4.5,1208297665\n613,1093,2.5,1208297716\n613,1148,4.0,1208297906\n613,1193,4.0,1208297854\n613,1198,5.0,1208297823\n613,1203,4.0,1208297838\n613,1271,3.5,1208298382\n613,1321,4.5,1208297759\n613,1343,4.0,1208297623\n613,1663,2.5,1208297692\n613,1831,2.5,1208297769\n613,1960,2.5,1208297765\n613,1962,3.5,1208297700\n613,2243,3.5,1208297751\n613,2329,5.0,1208297814\n613,2571,4.0,1208297894\n613,2723,3.0,1208297705\n613,2858,4.0,1208297836\n613,2871,4.0,1208297681\n613,2959,4.5,1208297891\n613,2968,4.0,1208297670\n613,3107,2.5,1208297714\n613,3510,3.0,1208297727\n613,3578,4.5,1208298112\n613,3811,4.0,1208298294\n613,3996,3.0,1208298137\n613,4361,3.0,1208297744\n613,4993,4.5,1208298063\n613,5952,4.5,1208298065\n613,6333,4.0,1208298122\n613,6539,3.0,1208298094\n613,6650,4.0,1208297961\n613,6874,4.0,1208298054\n613,7153,4.5,1208297852\n613,7360,3.5,1208298126\n613,7438,4.0,1208298052\n613,8798,3.5,1208298101\n613,8961,5.0,1208298141\n613,48774,3.0,1208298135\n613,48780,3.5,1208298348\n613,49272,4.0,1208298083\n613,51255,3.5,1208298073\n613,54286,3.5,1208298145\n614,3,2.0,1003253691\n614,8,1.0,1003254119\n614,28,4.0,1003253973\n614,48,3.0,1003253691\n614,52,4.0,1010620180\n614,195,3.0,1010620148\n614,236,5.0,1003253736\n614,260,4.0,1003254048\n614,261,4.0,1010620275\n614,296,5.0,1010620205\n614,309,5.0,1010620205\n614,500,4.0,1010620090\n614,513,2.0,1010620225\n614,515,5.0,1010620148\n614,527,3.0,1003253994\n614,540,2.0,1010620205\n614,589,3.0,1003254086\n614,593,4.0,1003254147\n614,608,5.0,1003253918\n614,780,1.0,1003253712\n614,838,3.0,1010620036\n614,858,5.0,1003253843\n614,899,5.0,1003254006\n614,902,3.0,1003253691\n614,905,5.0,1003253918\n614,910,5.0,1003254175\n614,913,5.0,1003254102\n614,919,1.0,1003253933\n614,923,5.0,1003253862\n614,928,5.0,1010620157\n614,933,5.0,1010620259\n614,942,5.0,1003254048\n614,945,4.0,1003253795\n614,947,4.0,1003254048\n614,950,5.0,1003253933\n614,951,5.0,1003253918\n614,955,5.0,1003254086\n614,965,4.0,1003253973\n614,994,5.0,1010620111\n614,1013,4.0,1010620073\n614,1198,5.0,1003254086\n614,1203,4.0,1003254147\n614,1212,5.0,1003253933\n614,1218,4.0,1003254175\n614,1219,5.0,1003253712\n614,1221,4.0,1003253853\n614,1225,4.0,1003253955\n614,1231,4.0,1003254032\n614,1234,4.0,1003254006\n614,1244,3.0,1003254175\n614,1247,3.0,1003253896\n614,1250,5.0,1003253982\n614,1252,5.0,1003253874\n614,1256,5.0,1003253896\n614,1260,5.0,1003253973\n614,1262,5.0,1010620290\n614,1267,5.0,1003253896\n614,1280,5.0,1010620127\n614,1339,4.0,1010620148\n614,1358,2.0,1003253933\n614,1370,1.0,1010620090\n614,1377,2.0,1010620090\n614,1387,3.0,1003254086\n614,1411,5.0,1003254157\n614,1544,1.0,1010620180\n614,1556,1.0,1010620225\n614,1594,5.0,1010620243\n614,1653,2.0,1010620111\n614,1821,4.0,1010620111\n614,1858,4.0,1010620243\n614,1968,4.0,1003253736\n614,2134,2.0,1003253736\n614,2165,5.0,1010620225\n614,2243,4.0,1003254185\n614,2301,4.0,1010620036\n614,2396,3.0,1003254016\n614,2398,2.0,1003253973\n614,2424,3.0,1010620290\n614,2803,3.0,1010620243\n614,2849,2.0,1010620036\n614,2879,4.0,1010620090\n614,2935,4.0,1003254032\n614,3004,1.0,1010620205\n614,3148,2.0,1010620148\n614,3173,2.0,1010620049\n614,3185,1.0,1010620111\n614,3270,4.0,1003253736\n614,3341,3.0,1003253918\n614,3555,4.0,1010620225\n614,3623,4.0,1010620205\n614,3683,4.0,1003253955\n614,3983,4.0,1003254049\n614,3996,4.0,1003253955\n614,4212,4.0,1010620127\n614,4226,5.0,1003253691\n614,4355,1.0,1010620036\n614,4469,4.0,1010620275\n614,4835,2.0,1003253884\n614,5060,4.0,1003253994\n615,1,4.0,1425504992\n615,6,3.5,1463685875\n615,32,3.0,1408779743\n615,47,4.5,1425505006\n615,60,3.5,1408779602\n615,260,3.5,1457590934\n615,293,4.5,1441987461\n615,296,5.0,1425504532\n615,344,3.0,1425505013\n615,356,4.0,1408778740\n615,364,4.0,1425505009\n615,367,2.5,1425505038\n615,442,4.5,1463685687\n615,466,4.0,1408780287\n615,480,4.0,1425504991\n615,520,4.0,1408780341\n615,527,4.5,1408778593\n615,541,4.0,1408778818\n615,555,4.5,1454914001\n615,589,4.0,1408779769\n615,593,4.0,1425504990\n615,608,4.0,1454913730\n615,733,3.5,1425505045\n615,736,3.0,1425505096\n615,745,4.0,1408778654\n615,778,3.5,1454913734\n615,780,3.5,1425504995\n615,786,3.5,1457590958\n615,858,4.0,1408778570\n615,1036,4.0,1425505062\n615,1079,4.0,1408780130\n615,1080,5.0,1425503869\n615,1089,4.0,1425506722\n615,1091,3.5,1408778226\n615,1136,4.5,1408778643\n615,1193,3.0,1425505047\n615,1198,4.0,1408778790\n615,1200,4.0,1408779693\n615,1201,4.0,1408779999\n615,1206,3.5,1455473518\n615,1208,4.5,1463685843\n615,1213,4.0,1408778633\n615,1214,4.5,1408779685\n615,1215,2.5,1408778876\n615,1222,4.5,1463685882\n615,1240,4.0,1408778768\n615,1258,4.5,1454913517\n615,1261,3.0,1408778867\n615,1265,3.5,1425505050\n615,1270,3.5,1425505003\n615,1291,4.0,1425505057\n615,1345,2.5,1408780843\n615,1391,3.5,1457590953\n615,1407,3.0,1457590960\n615,1425,3.5,1408780105\n615,1517,4.0,1408780244\n615,1527,4.5,1425506721\n615,1580,3.5,1425505098\n615,1625,4.0,1408779313\n615,1653,3.5,1454873849\n615,1687,3.5,1408778262\n615,1721,3.5,1425505095\n615,1732,4.5,1425504611\n615,2027,3.0,1408780339\n615,2028,4.5,1425505102\n615,2134,2.0,1408778212\n615,2167,3.5,1473015342\n615,2268,3.5,1463685839\n615,2329,4.0,1408778711\n615,2384,3.5,1408778218\n615,2402,3.0,1408778252\n615,2502,3.5,1457590919\n615,2571,4.5,1408778656\n615,2713,1.5,1408778330\n615,2762,4.0,1425505010\n615,2791,4.5,1408780189\n615,2792,4.0,1408780287\n615,2858,4.0,1408778712\n615,2890,4.0,1468174931\n615,2959,4.5,1408778695\n615,2993,3.0,1408778301\n615,2997,3.5,1408779865\n615,3147,5.0,1454913966\n615,3246,4.0,1408778265\n615,3275,3.5,1454914011\n615,3462,4.5,1454913954\n615,3481,4.0,1425504855\n615,3578,4.5,1425504745\n615,3593,1.5,1408778321\n615,3623,3.5,1454913442\n615,3624,3.5,1454873950\n615,3671,3.5,1468174876\n615,3751,3.5,1425504835\n615,3793,4.0,1425504875\n615,3863,3.5,1441988820\n615,3868,4.0,1408780229\n615,3869,3.5,1408780253\n615,3948,3.0,1425504856\n615,3969,2.5,1408778240\n615,3977,2.0,1425504837\n615,4008,4.0,1408778327\n615,4011,4.5,1425504773\n615,4025,2.5,1454913349\n615,4027,4.0,1454874091\n615,4084,3.0,1408778308\n615,4226,4.0,1408778628\n615,4246,3.0,1454913461\n615,4306,4.0,1425504747\n615,4308,4.0,1454913399\n615,4310,1.5,1441988812\n615,4370,4.0,1454913355\n615,4447,2.5,1454913386\n615,4865,2.5,1408778296\n615,4878,3.5,1408779675\n615,4886,4.5,1425504753\n615,4896,3.0,1425504863\n615,4963,3.5,1425504871\n615,4975,4.0,1441988814\n615,4979,3.0,1454913454\n615,4993,3.5,1408778797\n615,4995,4.0,1425504870\n615,5010,5.0,1454874135\n615,5218,3.0,1454874022\n615,5349,3.5,1425504765\n615,5418,4.0,1425504868\n615,5421,3.5,1455473606\n615,5445,4.0,1425504750\n615,5459,3.5,1454913336\n615,5463,3.5,1473015400\n615,5500,3.5,1408780214\n615,5541,4.5,1408780211\n615,5902,3.5,1454913804\n615,5903,3.0,1455473674\n615,5952,4.0,1408778803\n615,5989,4.0,1425504775\n615,6016,4.5,1408778532\n615,6333,3.5,1425504846\n615,6365,3.5,1425504780\n615,6377,4.5,1425504757\n615,6378,3.0,1454913341\n615,6502,5.0,1408778967\n615,6534,3.0,1408780654\n615,6537,3.0,1441988817\n615,6539,3.5,1425504796\n615,6541,3.0,1473015355\n615,6711,4.0,1425504839\n615,6807,4.0,1457590921\n615,6874,4.5,1408778714\n615,6934,3.5,1454874021\n615,6942,4.0,1454913390\n615,7143,3.5,1454913354\n615,7153,4.0,1408778800\n615,7254,3.5,1454913343\n615,7360,4.0,1408779009\n615,7361,4.0,1408779622\n615,7373,3.5,1473015313\n615,7438,4.0,1408778718\n615,7454,3.0,1473015338\n615,7502,5.0,1408778457\n615,8360,3.5,1425504848\n615,8368,3.0,1441987591\n615,8371,3.0,1408780790\n615,8636,1.5,1441987598\n615,8784,2.0,1454913381\n615,8874,5.0,1408778825\n615,8910,3.5,1408779806\n615,8914,3.5,1408779845\n615,8961,4.0,1425504785\n615,8984,3.0,1441987480\n615,27660,4.0,1463685880\n615,27773,4.0,1408779998\n615,30707,4.0,1455473516\n615,30793,2.0,1463685753\n615,31696,3.5,1473015317\n615,32587,4.5,1408780540\n615,33004,4.0,1441987480\n615,33679,4.0,1463685775\n615,33794,4.0,1425504777\n615,34048,2.5,1463685782\n615,34162,3.0,1463685780\n615,34405,4.0,1408778904\n615,35836,3.0,1463685748\n615,36529,4.5,1454913694\n615,40815,3.5,1463685756\n615,40819,3.5,1463685785\n615,42738,3.0,1473015334\n615,44191,3.0,1441987595\n615,44195,4.5,1425503927\n615,44665,2.5,1441987475\n615,45447,2.0,1463685789\n615,45722,3.0,1454913359\n615,46578,4.5,1441987587\n615,46976,4.0,1408779837\n615,48385,3.5,1463685750\n615,48394,5.0,1454873935\n615,48516,4.0,1408778729\n615,48738,3.5,1454874046\n615,48774,4.5,1408778944\n615,48780,5.0,1454874107\n615,49272,4.5,1441987588\n615,49530,3.5,1463685772\n615,50872,3.5,1454874126\n615,51255,4.0,1408778862\n615,51662,4.0,1408781193\n615,52281,3.5,1463685850\n615,52328,4.0,1408779609\n615,52606,2.5,1408780860\n615,52722,1.5,1454873879\n615,52885,3.5,1408779845\n615,52973,2.5,1454873877\n615,53000,4.0,1408779427\n615,53129,4.0,1408779313\n615,53322,2.5,1408779488\n615,53996,3.0,1463685799\n615,54256,3.0,1408780812\n615,54272,3.5,1454873871\n615,54286,3.5,1463685760\n615,54503,3.0,1463685777\n615,55118,3.5,1454874055\n615,55247,3.0,1463685791\n615,55765,3.0,1454914058\n615,55820,4.0,1408778938\n615,55995,2.0,1473015402\n615,56367,4.0,1454913452\n615,57640,3.5,1425503902\n615,57669,5.0,1454873869\n615,58025,2.5,1454913820\n615,58293,1.5,1454913835\n615,58559,4.5,1408778535\n615,59315,3.5,1454874099\n615,59369,4.5,1463685795\n615,59387,3.5,1454913842\n615,60040,3.5,1408780676\n615,60069,5.0,1425504599\n615,60684,4.0,1408779694\n615,60756,3.0,1454913932\n615,60937,2.5,1473015561\n615,60950,4.0,1454913855\n615,62394,1.0,1473015372\n615,62434,2.0,1454913845\n615,63859,3.5,1454913836\n615,64614,3.5,1463685771\n615,64839,4.0,1408778978\n615,64957,3.0,1454873874\n615,64969,2.0,1454913752\n615,65682,3.5,1473015332\n615,66171,3.0,1455473632\n615,66934,4.0,1408779709\n615,68157,4.5,1408778686\n615,68237,5.0,1408778902\n615,68358,3.5,1408779740\n615,68554,1.5,1454913867\n615,68791,3.0,1454913747\n615,68954,4.5,1425504608\n615,69122,3.0,1454913374\n615,69481,4.0,1425503866\n615,69757,4.5,1454913573\n615,70286,4.0,1408779649\n615,70336,1.0,1473015550\n615,71057,3.0,1454913907\n615,71211,3.0,1408779472\n615,71464,4.0,1408779807\n615,71535,4.5,1408778861\n615,71745,3.5,1408779910\n615,72011,4.0,1463685873\n615,72226,4.0,1408778967\n615,72998,4.0,1454913449\n615,73268,3.0,1473015326\n615,73321,3.5,1454913750\n615,74458,3.0,1408779333\n615,76251,3.0,1408778915\n615,77455,3.5,1454913833\n615,78499,4.5,1425504542\n615,79132,4.0,1408778644\n615,79293,3.0,1454913852\n615,79695,3.0,1454913900\n615,79702,4.5,1408778908\n615,81229,3.0,1454913830\n615,81562,3.5,1454913597\n615,81564,3.0,1454913863\n615,81845,4.0,1454913562\n615,82459,4.5,1408778810\n615,82461,3.5,1454913755\n615,83134,4.0,1408778864\n615,84152,4.0,1425503888\n615,84392,3.5,1425504555\n615,84954,3.0,1454913872\n615,86190,4.0,1425504561\n615,86504,5.0,1454913558\n615,86835,1.5,1473015329\n615,87232,3.5,1473015566\n615,87306,3.0,1408779733\n615,87869,3.5,1454913890\n615,88140,3.0,1425503895\n615,89470,4.0,1408779470\n615,89745,4.0,1408780636\n615,90405,3.0,1454913928\n615,90866,3.0,1454913850\n615,90888,2.5,1473015356\n615,91485,2.5,1473015558\n615,91529,3.5,1408778685\n615,91658,3.0,1425503890\n615,91974,2.0,1473015336\n615,92008,3.5,1408779468\n615,92420,4.0,1408779738\n615,93838,4.5,1408780021\n615,93840,4.5,1408778872\n615,94959,4.5,1408778510\n615,95309,4.0,1408779681\n615,95441,2.0,1425504567\n615,95761,4.0,1408780699\n615,96610,3.5,1408779672\n615,96811,4.0,1408778523\n615,96821,4.0,1463685887\n615,97304,3.5,1408779648\n615,97306,4.0,1463685831\n615,99007,3.5,1408780941\n615,99114,4.5,1408778568\n615,100163,2.0,1473015318\n615,100383,4.5,1408779299\n615,100745,3.5,1408778578\n615,102194,3.0,1455473677\n615,102819,3.5,1408779463\n615,103228,4.0,1425504558\n615,103249,2.5,1473015399\n615,103253,3.5,1408780551\n615,103341,4.0,1408778907\n615,104243,3.5,1408780790\n615,104374,4.5,1408778485\n615,104879,4.5,1408778512\n615,104881,4.0,1408780759\n615,105213,2.5,1408779150\n615,105504,4.0,1408779041\n615,105731,3.5,1408780840\n615,105844,5.0,1408778485\n615,105954,3.5,1408779123\n615,106002,3.0,1408779148\n615,106072,3.0,1408779126\n615,106100,3.5,1408778515\n615,106487,3.5,1408779049\n615,106489,3.5,1408779104\n615,106696,3.0,1408779072\n615,106782,4.0,1408779043\n615,106916,3.0,1408779068\n615,106918,3.0,1408779064\n615,106920,4.5,1408778473\n615,107069,3.5,1408779119\n615,107141,2.5,1408779050\n615,107348,1.5,1408779204\n615,107406,4.0,1454913599\n615,108583,5.0,1425504620\n615,108932,4.5,1408779056\n615,108945,1.5,1408779170\n615,109187,0.5,1454913681\n615,109374,5.0,1408778476\n615,109673,3.0,1408779173\n615,109848,3.0,1408780927\n615,110127,3.5,1408779162\n615,110501,4.0,1408780045\n615,110591,4.0,1454913486\n615,110730,2.0,1408779167\n615,111364,2.5,1455473628\n615,111384,4.0,1408780953\n615,111759,4.5,1455473620\n615,111931,2.0,1408780887\n615,112183,3.0,1441988803\n615,112515,3.5,1457591037\n615,112552,4.0,1457590911\n615,112556,5.0,1425503863\n615,112852,4.5,1425503912\n615,115122,4.5,1463685885\n615,115149,4.5,1463685829\n615,115569,4.5,1425503913\n615,115713,4.5,1441987490\n615,119145,4.5,1454874052\n615,120466,2.0,1455473662\n615,122882,5.0,1441987461\n615,122886,4.5,1454873889\n615,122904,4.5,1455473577\n615,128360,4.5,1463685695\n615,134130,4.5,1454873887\n615,134853,5.0,1454873781\n615,139385,4.0,1457590980\n615,139644,3.5,1454914061\n615,152081,5.0,1473015032\n616,1,4.0,860572913\n616,3,3.0,860572960\n616,6,3.0,860572959\n616,7,3.0,860572960\n616,17,3.0,860572913\n616,18,4.0,860573132\n616,25,4.0,860572913\n616,32,3.0,860572913\n616,36,4.0,860572959\n616,62,3.0,860572913\n616,79,3.0,860573029\n616,140,4.0,860573066\n616,141,3.0,860572913\n616,260,5.0,860572988\n616,376,4.0,860572988\n616,494,3.0,860572960\n616,608,4.0,860572959\n616,635,3.0,860573287\n616,637,3.0,860573029\n616,647,4.0,860573132\n616,719,3.0,860573066\n616,724,3.0,860573086\n616,726,3.0,860573303\n616,733,4.0,860572959\n616,736,4.0,860572913\n616,762,3.0,860573029\n616,765,4.0,860573168\n616,778,3.0,860573066\n616,780,4.0,860572913\n616,788,4.0,860572988\n616,802,4.0,860573029\n616,805,4.0,860573029\n616,832,5.0,860573066\n616,852,4.0,860573066\n616,858,4.0,860573133\n616,1073,4.0,860572960\n616,1183,5.0,860573168\n616,1357,4.0,860573222\n616,1393,4.0,860573106\n616,1409,4.0,860573222\n617,39,3.0,944893754\n617,70,1.0,944893444\n617,188,3.0,944893410\n617,216,3.0,944893754\n617,253,4.0,944893298\n617,296,3.0,944894013\n617,356,4.0,944893837\n617,357,2.0,944893703\n617,364,4.0,944894072\n617,367,3.0,944893779\n617,457,2.0,944893010\n617,480,3.0,944892771\n617,500,4.0,944893920\n617,527,5.0,944893957\n617,551,2.0,944893896\n617,562,3.0,944893604\n617,587,3.0,944893837\n617,588,3.0,944893703\n617,593,5.0,944892846\n617,799,3.0,944893858\n617,838,3.0,944893676\n617,919,4.0,944894191\n617,1125,1.0,944892771\n617,1188,2.0,944893604\n617,1210,1.0,944892739\n617,1225,4.0,944892771\n617,1258,5.0,944893142\n617,1265,2.0,944893755\n617,1333,3.0,944893142\n617,1339,4.0,944893298\n617,1345,4.0,944893176\n617,1347,3.0,944893216\n617,1387,3.0,944893107\n617,1392,2.0,944893703\n617,1405,2.0,944893896\n617,1407,4.0,944892739\n617,1476,3.0,944893646\n617,1485,4.0,944893804\n617,1580,4.0,944893779\n617,1617,3.0,944892924\n617,1645,3.0,944893254\n617,1717,3.0,944893410\n617,1777,1.0,944893896\n617,1784,3.0,944893646\n617,1883,3.0,944893755\n617,1885,3.0,944893604\n617,1923,5.0,944893676\n617,1982,3.0,944893216\n617,1991,3.0,944893376\n617,1994,5.0,944893176\n617,1997,5.0,944892873\n617,2122,2.0,944893298\n617,2155,3.0,944893804\n617,2160,4.0,944893142\n617,2188,4.0,944894298\n617,2302,2.0,944893676\n617,2315,3.0,944893351\n617,2321,2.0,944893896\n617,2355,3.0,944893703\n617,2395,1.0,944893676\n617,2396,5.0,944894038\n617,2428,3.0,944893444\n617,2433,3.0,944894321\n617,2447,5.0,944893837\n617,2459,1.0,944893298\n617,2541,5.0,944894340\n617,2554,2.0,944892951\n617,2572,5.0,944894141\n617,2683,4.0,944894298\n617,2694,3.0,944894321\n617,2699,3.0,944894298\n617,2710,3.0,944893351\n617,3052,3.0,944893896\n617,3063,3.0,944893042\n617,3108,1.0,944893604\n618,50,5.0,1009556335\n618,111,5.0,1009556353\n618,172,2.0,1009556066\n618,319,4.0,1009555175\n618,541,5.0,1009556247\n618,593,5.0,1009555263\n618,780,2.0,1009555303\n618,912,5.0,1009555118\n618,1208,5.0,1009556476\n618,1219,5.0,1009556335\n618,1339,4.0,1009555928\n618,1446,4.0,1009555263\n618,1617,4.0,1009555141\n618,2160,4.0,1009555216\n618,2553,5.0,1009556353\n618,2641,2.0,1009555216\n618,2677,4.0,1009556802\n618,3101,3.0,1009555175\n618,3127,2.0,1009557039\n618,3462,5.0,1009555242\n618,3676,5.0,1009556503\n618,3996,5.0,1009555697\n618,4103,5.0,1009555902\n618,4273,5.0,1009555837\n618,4300,2.0,1009556141\n618,4306,4.0,1009555865\n618,4308,4.0,1009555777\n618,4811,4.0,1009555966\n618,4928,5.0,1009555714\n618,4970,5.0,1009555675\n618,4973,4.0,1009555486\n619,21,3.0,831921914\n619,31,3.0,831923897\n619,47,4.0,831923570\n619,50,5.0,831923679\n619,111,5.0,831923679\n619,150,5.0,831921736\n619,153,2.0,831921795\n619,160,3.0,831923679\n619,161,4.0,831921853\n619,165,3.0,831921829\n619,168,5.0,831923847\n619,172,3.0,831923875\n619,173,2.0,831923824\n619,185,4.0,831921879\n619,196,4.0,831923824\n619,204,3.0,831923847\n619,208,3.0,831921879\n619,225,2.0,831921914\n619,237,4.0,831923927\n619,246,5.0,831923897\n619,252,3.0,831923750\n619,253,3.0,831921879\n619,256,3.0,831923897\n619,276,3.0,831923927\n619,288,3.0,831921914\n619,293,4.0,831923875\n619,296,5.0,831921736\n619,300,3.0,831921878\n619,315,1.0,831923750\n619,316,3.0,831921829\n619,318,5.0,831921795\n619,329,3.0,831921829\n619,337,5.0,831923790\n619,349,4.0,831921795\n619,380,4.0,831921736\n619,410,2.0,831921914\n619,432,3.0,831923679\n619,434,3.0,831921853\n619,553,4.0,831923790\n619,588,5.0,831921795\n619,590,4.0,831921736\n619,592,3.0,831921736\n619,595,3.0,831921829\n620,50,4.0,1455532785\n620,260,4.0,1455532809\n620,296,4.0,1455532055\n620,901,3.5,1455532934\n620,902,5.0,1455532854\n620,912,3.5,1455532789\n620,914,4.5,1455532924\n620,915,3.5,1455532881\n620,916,4.0,1455532921\n620,919,4.0,1455533087\n620,924,4.0,1457890184\n620,937,3.0,1455532937\n620,1028,4.0,1457890244\n620,1196,3.5,1455532816\n620,1206,3.5,1455533067\n620,1247,3.5,1455533039\n620,1732,4.0,1455532050\n620,2324,2.5,1455531550\n620,3409,1.5,1455532318\n620,3578,3.0,1455532086\n620,3785,1.0,1455532205\n620,3825,2.5,1455532398\n620,3988,3.0,1455532298\n620,4014,2.5,1455532181\n620,4016,5.0,1455532311\n620,4022,2.5,1455532458\n620,4027,3.0,1455532465\n620,4069,3.0,1455532400\n620,4232,2.5,1455532412\n620,4239,2.0,1455532257\n620,4246,3.0,1455532009\n620,4306,1.5,1455532444\n620,4308,4.0,1455532162\n620,4310,2.5,1455532217\n620,4367,4.0,1455532248\n620,4369,0.5,1455532567\n620,4447,2.5,1455532195\n620,4718,0.5,1455532530\n620,4878,2.5,1455532104\n620,4886,3.0,1455532035\n620,4896,3.0,1455532450\n620,4973,4.5,1455532092\n620,4979,4.0,1455532479\n620,4993,0.5,1455532440\n620,5299,0.5,1455532511\n620,5378,4.0,1455532125\n620,5444,3.5,1455532362\n620,5816,4.5,1455532133\n620,5952,1.0,1455532081\n620,5991,3.0,1455532535\n620,6365,3.0,1455532456\n620,6377,1.0,1455532109\n620,6503,2.0,1455532651\n620,6593,2.5,1455532748\n620,6711,4.5,1455532127\n620,6863,4.0,1455532201\n620,6874,3.5,1455532098\n620,6942,1.5,1455532199\n620,7147,3.0,1455532483\n620,7153,1.0,1455532082\n620,7254,3.5,1455532188\n620,7293,0.5,1455532272\n620,7361,4.5,1455532096\n620,7444,1.5,1455532693\n620,7451,3.0,1455532333\n620,7458,1.0,1455532571\n620,8033,3.0,1455532918\n620,8360,3.5,1455532140\n620,8368,4.5,1455532136\n620,8533,0.5,1455532352\n620,8957,0.5,1455532598\n620,8961,4.0,1455532102\n620,26776,4.0,1455533133\n620,30707,1.5,1455532516\n620,30793,4.0,1455532239\n620,30810,4.0,1455532064\n620,33493,3.5,1455532495\n620,33615,1.5,1455532419\n620,33679,4.0,1455532547\n620,34150,2.0,1455532647\n620,37729,3.5,1455532349\n620,40629,3.0,1455532660\n620,40815,4.0,1455532171\n620,40819,4.0,1455532272\n620,41566,4.0,1455532233\n620,44022,0.5,1455532736\n620,44191,4.0,1455532451\n620,45720,4.5,1455531996\n620,45722,0.5,1455532504\n620,46578,4.0,1455532142\n620,50872,5.0,1455532029\n620,51662,1.5,1455532167\n620,54272,2.0,1455532300\n620,54780,2.5,1455532002\n620,55274,4.5,1455532963\n620,56174,3.0,1455532553\n620,56757,1.5,1455532404\n620,59725,2.5,1455532005\n620,59784,4.0,1455532302\n620,60069,2.5,1455532038\n620,61236,4.0,1455533156\n620,61323,4.0,1455532062\n620,65585,1.5,1455531827\n620,66297,0.5,1455531788\n620,67788,4.5,1455531834\n620,68157,3.0,1455532155\n620,68269,4.0,1455531872\n620,68954,4.5,1455532026\n620,69712,2.5,1455531904\n620,69844,4.0,1455532585\n620,71264,4.5,1455531676\n620,71464,3.0,1455531694\n620,72226,4.5,1455531564\n620,72294,4.0,1455531907\n620,72378,1.5,1455531625\n620,72998,2.0,1455532475\n620,73017,4.0,1455532548\n620,73106,0.5,1455531951\n620,74458,0.5,1455532210\n620,74688,1.5,1455531910\n620,74789,4.0,1455532675\n620,75341,0.5,1455531913\n620,78174,3.0,1455531888\n620,78316,3.0,1455531893\n620,78499,3.5,1455532031\n620,78574,3.0,1455531688\n620,78637,3.0,1455531757\n620,79091,0.5,1455532645\n620,80463,2.5,1455532557\n620,80549,4.0,1455531618\n620,80551,4.0,1455531849\n620,81591,4.0,1455532250\n620,81834,4.0,1455532293\n620,81847,4.0,1455531567\n620,82169,4.0,1455531795\n620,82202,3.0,1455531765\n620,84152,3.0,1455532410\n620,84374,3.5,1455531759\n620,84637,1.5,1455531971\n620,86833,2.0,1455531647\n620,86880,1.0,1455531639\n620,86882,4.0,1455531570\n620,87222,4.0,1455531684\n620,87485,3.5,1455531760\n620,87876,0.5,1455531854\n620,88125,4.0,1455532588\n620,88179,4.0,1455531928\n620,88267,2.0,1457890198\n620,88405,2.5,1455531727\n620,88810,4.0,1455531606\n620,91104,0.5,1455531797\n620,91500,2.0,1455532612\n620,91529,3.0,1455532222\n620,92259,3.0,1455531543\n620,93721,4.0,1455531778\n620,94466,3.5,1455532807\n620,94777,2.0,1455531650\n620,94959,3.5,1455532681\n620,95167,3.0,1455531663\n620,95441,1.5,1455531643\n620,96588,4.0,1455531733\n620,96821,4.0,1455531609\n620,97921,3.0,1455532678\n620,98491,4.5,1457890234\n620,98809,3.0,1455532357\n620,99149,4.0,1455531744\n620,106487,1.0,1455532684\n620,109374,4.0,1455532329\n620,112556,3.5,1455532321\n620,115617,4.0,1455532414\n620,116797,3.5,1455532596\n620,122886,2.5,1455531583\n621,5,4.5,1116476167\n621,253,3.5,1116476158\n621,277,1.0,1116476028\n621,296,4.5,1116476361\n621,344,3.5,1116476134\n621,345,5.0,1116475866\n621,356,4.0,1116476365\n621,440,4.0,1116476374\n621,527,5.0,1116476681\n621,551,4.5,1116476370\n621,589,1.5,1116476119\n621,783,1.0,1116475893\n621,914,3.5,1116476074\n621,919,4.5,1116476342\n621,920,4.5,1116476353\n621,954,5.0,1116476794\n621,1032,4.5,1116476833\n621,1073,3.5,1116476845\n621,1088,3.5,1116476035\n621,1136,4.5,1116476774\n621,1197,5.0,1116477262\n621,1210,4.0,1116476649\n621,1246,4.5,1116476345\n621,1269,4.0,1116476840\n621,1270,4.0,1116476348\n621,1372,3.0,1116475874\n621,1375,4.5,1116475982\n621,1580,5.0,1116476327\n621,1641,4.0,1116476944\n621,1674,4.0,1116475988\n621,1682,4.0,1116476713\n621,1704,4.0,1116476332\n621,1909,4.5,1116476004\n621,1967,5.0,1116476906\n621,1968,3.5,1116476693\n621,2003,2.0,1116476038\n621,2073,3.5,1116477344\n621,2134,4.5,1116477404\n621,2137,3.0,1116476732\n621,2138,3.5,1116476899\n621,2144,4.0,1116477311\n621,2145,3.5,1116477364\n621,2147,2.5,1116476233\n621,2174,4.0,1116476321\n621,2407,2.5,1116476019\n621,2470,3.5,1116477415\n621,2473,4.0,1116477537\n621,2478,3.5,1116477421\n621,2502,4.5,1116476789\n621,2571,5.0,1116476312\n621,2686,5.0,1116476181\n621,2716,4.5,1116476307\n621,2752,4.0,1116477478\n621,2770,4.5,1116475994\n621,2794,3.5,1116477454\n621,2918,4.5,1116477283\n621,2926,5.0,1116477390\n621,3052,4.0,1116476884\n621,3101,3.0,1116475888\n621,3255,3.0,1116476068\n621,3385,4.0,1116477529\n621,3418,5.0,1116475985\n621,3548,4.5,1116476958\n621,3591,5.0,1116477376\n621,3671,5.0,1116476740\n621,3751,4.5,1116476912\n621,4010,4.5,1116477433\n621,4085,4.5,1116477302\n621,4104,0.5,1116477808\n621,4280,4.0,1116477273\n621,4306,4.0,1116476674\n621,4361,5.0,1116477296\n621,4478,5.0,1116477357\n621,4502,0.5,1116477806\n621,4571,5.0,1116477331\n621,4676,2.5,1116477564\n621,4678,4.0,1116477324\n621,4696,4.5,1116477460\n621,4980,4.0,1116476164\n621,4993,5.0,1116476252\n621,5568,3.5,1116477379\n621,5780,4.0,1116477349\n621,5952,4.5,1116476636\n621,6039,4.0,1116477506\n621,6104,4.5,1116476756\n621,6122,4.0,1116476798\n621,6125,3.5,1116476408\n621,6184,3.5,1116476200\n621,6718,4.5,1116477485\n621,6807,5.0,1116476143\n621,7062,3.0,1116476933\n621,7153,5.0,1116476044\n621,7340,4.5,1116477466\n621,8610,4.5,1116477268\n621,8961,1.0,1116476669\n622,260,5.0,1424224962\n622,318,5.0,1424225031\n622,593,4.0,1424225062\n622,1196,5.0,1424224964\n622,1198,5.0,1424224961\n622,1234,5.0,1424225077\n622,1291,5.0,1424224968\n622,1704,5.0,1424225370\n622,2571,5.0,1424224965\n622,2762,5.0,1424225107\n622,2959,5.0,1424225089\n622,4226,5.0,1424225047\n622,4993,5.0,1424225045\n622,7153,5.0,1424224969\n622,7438,2.0,1424224984\n622,7502,5.0,1424225034\n622,8360,4.5,1424224993\n622,8636,5.0,1424224988\n622,8961,5.0,1424224981\n622,32587,3.0,1424224991\n622,33794,5.0,1424224986\n622,44191,5.0,1424224996\n622,48394,5.0,1424225321\n622,58559,5.0,1424224970\n622,64614,5.0,1424225333\n622,95858,5.0,1424225068\n622,99114,4.5,1424225358\n622,100553,5.0,1424225101\n622,108979,3.5,1424225074\n622,109487,5.0,1424225001\n622,112852,5.0,1424225012\n623,1,4.5,1225256593\n623,34,4.0,1225256510\n623,110,4.0,1225255881\n623,150,4.0,1225255893\n623,153,3.0,1225256302\n623,231,3.0,1225256527\n623,296,5.0,1225255825\n623,318,4.5,1225256582\n623,344,3.5,1225258429\n623,356,5.0,1225255827\n623,364,4.0,1225258445\n623,367,3.5,1225256514\n623,377,4.0,1225258426\n623,480,4.0,1225255846\n623,527,4.5,1225256584\n623,588,4.0,1225258419\n623,589,3.5,1225255959\n623,595,3.5,1225256480\n623,648,4.0,1225256173\n623,733,4.0,1225256499\n623,736,4.0,1225258449\n623,780,3.5,1225256057\n623,1042,5.0,1225258023\n623,1089,5.0,1225258253\n623,1210,3.5,1225255836\n623,1265,3.5,1225256456\n623,1270,4.0,1225256369\n623,1438,3.0,1225255417\n623,1580,3.5,1225256122\n623,1588,3.0,1225255522\n623,1681,2.5,1225255721\n623,1801,3.0,1225255440\n623,1923,4.0,1225256422\n623,2329,4.5,1225258158\n623,2382,4.0,1225255694\n623,2384,3.5,1225255459\n623,2542,5.0,1225258201\n623,2571,4.5,1225256068\n623,2683,2.0,1225256351\n623,2692,4.5,1225258138\n623,2706,3.5,1225257700\n623,2716,3.5,1225256353\n623,2723,4.5,1225257987\n623,2762,4.5,1225258458\n623,2827,1.5,1225255569\n623,2858,3.5,1225256020\n623,2997,5.0,1225256232\n623,3114,4.5,1225256547\n623,3146,1.5,1225255555\n623,3697,2.0,1225255469\n623,3793,4.0,1225256234\n623,3869,4.5,1225256561\n623,3972,4.5,1225255588\n623,3977,3.5,1225257755\n623,3996,4.5,1225256085\n623,4011,5.0,1225258189\n623,4306,4.5,1225256595\n623,4816,4.5,1225258001\n623,4878,5.0,1225258173\n623,4896,3.5,1225256527\n623,4963,4.5,1225256138\n623,4973,5.0,1225258328\n623,5349,4.0,1225256036\n623,5418,4.0,1225256335\n623,5628,4.5,1225258230\n623,5952,5.0,1225255925\n623,5989,4.0,1225256351\n623,6016,5.0,1225258320\n623,6333,3.5,1225256277\n623,6377,4.0,1225256023\n623,6539,4.5,1225255863\n623,6874,4.0,1225255995\n623,7090,5.0,1225258041\n623,7153,5.0,1225255859\n623,7361,4.5,1225256119\n623,7438,4.0,1225256098\n623,8636,3.5,1225256240\n623,8665,4.0,1225257823\n623,8961,4.0,1225255895\n623,9010,5.0,1225258357\n623,26842,4.0,1225256098\n623,27544,4.0,1225256035\n623,31685,3.5,1225255617\n623,33794,5.0,1225255949\n623,44195,5.0,1225258221\n623,45517,3.5,1225255682\n623,45722,4.0,1225256527\n623,46578,5.0,1225256302\n623,48385,4.5,1225256573\n623,48516,4.5,1225256568\n623,49957,5.0,1225257963\n623,50872,4.0,1225257836\n623,51662,4.0,1225256384\n623,51705,4.0,1225258296\n623,52952,4.5,1225257954\n623,53956,5.0,1225258519\n623,56367,3.5,1225256014\n623,57243,4.5,1225257936\n623,57669,5.0,1225257896\n623,58559,5.0,1225256609\n623,59315,4.5,1225256041\n623,59615,3.5,1225257821\n623,60069,4.0,1225257771\n624,1,5.0,1019126661\n624,2,3.0,1019125424\n624,3,3.0,1019128536\n624,5,3.0,1019128415\n624,10,4.0,1019124400\n624,12,2.0,1019563753\n624,16,5.0,1019138531\n624,19,2.0,1019132168\n624,20,3.0,1019124922\n624,21,2.0,1019124231\n624,32,2.0,1019132949\n624,38,3.0,1019227804\n624,47,4.0,1019132386\n624,50,4.0,1064741727\n624,65,1.0,1028111080\n624,66,2.0,1019133230\n624,95,2.0,1019124644\n624,101,3.5,1076328586\n624,104,3.0,1221250916\n624,107,4.0,1019125396\n624,122,2.0,1019128536\n624,135,2.0,1178982000\n624,145,4.0,1019124465\n624,150,3.0,1019137611\n624,153,2.5,1118166852\n624,158,3.0,1019125583\n624,161,4.0,1019137754\n624,163,3.5,1074420419\n624,165,4.0,1019142324\n624,170,3.0,1019132497\n624,172,2.0,1080549606\n624,180,3.5,1058089154\n624,185,2.5,1206217384\n624,208,2.0,1019124858\n624,216,3.0,1034506007\n624,223,4.0,1059407171\n624,231,3.0,1019128257\n624,260,5.0,1019124071\n624,288,3.0,1019124575\n624,296,5.0,1019132316\n624,300,4.0,1019137717\n624,303,3.0,1057592358\n624,316,3.0,1028110820\n624,329,4.0,1092829881\n624,339,3.0,1104840673\n624,344,3.0,1019128536\n624,348,4.0,1019127381\n624,349,4.0,1019124455\n624,350,2.5,1061899719\n624,355,2.0,1019127065\n624,356,3.0,1019127614\n624,357,3.0,1019127559\n624,367,3.0,1019127943\n624,370,3.0,1032164700\n624,376,3.0,1019124675\n624,377,4.0,1019124324\n624,380,3.0,1019124334\n624,383,2.0,1324313611\n624,410,4.0,1019128484\n624,413,2.0,1039945532\n624,420,2.0,1019124939\n624,428,3.0,1019137647\n624,432,3.0,1019128694\n624,434,3.0,1019124800\n624,435,3.0,1019128846\n624,437,2.0,1019128946\n624,440,3.0,1019127444\n624,445,3.0,1019128877\n624,454,3.0,1164743063\n624,457,4.0,1019142214\n624,466,3.0,1019124703\n624,471,4.0,1178980875\n624,474,4.0,1019124231\n624,480,3.0,1019124292\n624,485,4.0,1019124939\n624,492,4.0,1019127800\n624,494,3.0,1019124621\n624,500,4.0,1019128140\n624,507,3.0,1019123928\n624,519,2.0,1019133230\n624,520,3.0,1019128680\n624,528,2.0,1080752851\n624,533,3.0,1019124632\n624,539,3.0,1019127800\n624,541,4.0,1019123960\n624,543,4.0,1019127814\n624,552,3.0,1019125749\n624,553,3.5,1088933661\n624,555,4.0,1079688049\n624,585,4.0,1019128185\n624,586,3.0,1019126928\n624,587,3.0,1019127900\n624,589,3.0,1019124194\n624,590,3.0,1019125259\n624,592,3.0,1118166857\n624,593,5.0,1019132717\n624,594,4.0,1019126687\n624,596,4.0,1019126674\n624,597,3.0,1019127874\n624,599,5.0,1265660460\n624,608,4.0,1059899864\n624,616,4.0,1019126749\n624,619,1.0,1057222213\n624,637,2.0,1019128616\n624,648,3.0,1019125129\n624,663,3.0,1019127733\n624,671,5.0,1059321444\n624,673,3.0,1019125666\n624,688,2.0,1019125022\n624,700,3.0,1019127943\n624,720,4.0,1019126661\n624,733,3.0,1019124354\n624,736,3.0,1019124675\n624,743,3.0,1019128906\n624,745,4.0,1028110529\n624,761,3.0,1019125583\n624,780,3.0,1019133014\n624,785,4.0,1019128243\n624,788,3.0,1019128497\n624,802,3.0,1028215249\n624,805,3.0,1019138615\n624,818,3.5,1178981107\n624,858,5.0,1019124147\n624,870,1.0,1034616569\n624,880,1.5,1170357662\n624,912,4.5,1113129247\n624,919,4.0,1019125217\n624,923,4.5,1459083402\n624,924,4.0,1019132961\n624,941,4.0,1092830001\n624,952,4.5,1127643381\n624,1009,3.0,1019125424\n624,1010,4.0,1019126928\n624,1011,4.0,1019125583\n624,1017,3.0,1019125340\n624,1019,3.0,1028110632\n624,1020,4.0,1092829992\n624,1021,2.0,1178982112\n624,1022,4.0,1019126704\n624,1023,3.0,1028110848\n624,1027,3.0,1019138960\n624,1028,5.0,1019126866\n624,1030,4.0,1164622199\n624,1031,5.0,1019125292\n624,1032,4.0,1019126843\n624,1035,4.0,1019140874\n624,1036,5.0,1019124211\n624,1037,4.0,1019133161\n624,1057,3.5,1073143143\n624,1073,4.0,1019125228\n624,1077,4.0,1028790319\n624,1079,5.0,1019127244\n624,1080,5.0,1019131169\n624,1083,4.0,1019128060\n624,1089,5.0,1019132326\n624,1090,4.0,1019137594\n624,1091,3.0,1164622075\n624,1092,4.0,1019141359\n624,1097,4.0,1019123941\n624,1100,3.0,1019141934\n624,1101,2.5,1178981120\n624,1125,4.0,1019127479\n624,1129,3.0,1019125369\n624,1135,3.0,1019127916\n624,1136,5.0,1019130885\n624,1147,5.0,1019132603\n624,1148,4.0,1028110632\n624,1171,4.0,1178980929\n624,1188,3.0,1019127229\n624,1193,5.0,1019123928\n624,1196,5.0,1019124147\n624,1198,5.0,1019124147\n624,1200,2.0,1113129252\n624,1201,5.0,1019124194\n624,1206,4.0,1034616598\n624,1208,4.0,1036695762\n624,1209,5.0,1062423064\n624,1210,5.0,1019123866\n624,1213,5.0,1019132316\n624,1214,3.0,1019124174\n624,1220,3.0,1019563582\n624,1221,5.0,1019124147\n624,1223,4.0,1019126661\n624,1227,5.0,1019130838\n624,1228,5.0,1324744267\n624,1230,5.0,1029135309\n624,1234,4.0,1019127145\n624,1240,3.0,1019124194\n624,1244,4.0,1028529850\n624,1250,5.0,1019132735\n624,1256,5.0,1019127163\n624,1262,5.0,1019125205\n624,1265,4.0,1164622262\n624,1266,4.0,1087644177\n624,1270,5.0,1019127202\n624,1275,5.0,1019124306\n624,1276,5.0,1019130913\n624,1278,3.0,1113129256\n624,1283,4.0,1019133301\n624,1288,5.0,1019127258\n624,1291,4.0,1019124231\n624,1302,3.0,1019137559\n624,1304,4.0,1019127202\n624,1307,3.0,1019127163\n624,1343,5.0,1019139911\n624,1356,4.0,1019124400\n624,1370,3.0,1019142275\n624,1371,3.0,1019124621\n624,1372,3.0,1019124575\n624,1373,1.5,1156619857\n624,1374,3.0,1019123880\n624,1375,3.0,1019125396\n624,1376,2.0,1178981694\n624,1377,3.0,1019124094\n624,1378,3.0,1019124528\n624,1379,4.0,1019124632\n624,1380,3.0,1019128158\n624,1387,4.0,1019124160\n624,1388,3.0,1019124822\n624,1389,1.0,1019140749\n624,1391,4.0,1019124675\n624,1393,4.0,1019132804\n624,1394,3.0,1019127258\n624,1396,4.0,1019132397\n624,1405,4.0,1019126773\n624,1408,2.0,1019124306\n624,1409,3.0,1019128400\n624,1425,2.0,1072546987\n624,1432,2.0,1037296402\n624,1438,2.0,1019124858\n624,1459,2.0,1275824371\n624,1461,2.0,1023961104\n624,1476,5.0,1019127982\n624,1479,3.0,1019125110\n624,1485,2.5,1198865886\n624,1515,2.0,1019139399\n624,1517,4.0,1019127505\n624,1527,3.0,1019132995\n624,1544,2.0,1032164659\n624,1552,0.5,1075117988\n624,1556,1.0,1019125085\n624,1562,1.5,1208620099\n624,1573,3.0,1019133014\n624,1580,4.0,1019124455\n624,1588,3.0,1019127005\n624,1591,1.0,1019125633\n624,1604,3.0,1046960166\n624,1608,3.0,1019132896\n624,1610,4.0,1019124211\n624,1614,4.0,1019127832\n624,1617,4.0,1019132316\n624,1620,4.0,1019132477\n624,1639,4.5,1058089200\n624,1641,4.0,1019127396\n624,1645,3.0,1019132423\n624,1646,3.0,1019128658\n624,1665,3.0,1178981412\n624,1676,4.0,1019124600\n624,1680,3.0,1019141513\n624,1682,3.0,1019137845\n624,1704,4.0,1081171097\n624,1722,4.0,1019124292\n624,1729,4.0,1019132386\n624,1747,2.0,1143893778\n624,1755,4.0,1019141562\n624,1760,1.0,1019132044\n624,1784,4.0,1019137522\n624,1831,1.5,1117446465\n624,1833,2.0,1019139324\n624,1837,3.0,1019132194\n624,1839,3.0,1019128846\n624,1856,4.0,1019141117\n624,1863,3.0,1019128877\n624,1876,3.0,1019133056\n624,1882,3.0,1019124974\n624,1884,2.5,1444051656\n624,1911,3.0,1019128431\n624,1917,3.0,1019124725\n624,1918,3.0,1019124750\n624,1920,4.0,1019127005\n624,1923,4.0,1019127456\n624,1953,5.0,1019124211\n624,1954,4.0,1019124244\n624,1955,3.0,1019137845\n624,1961,3.0,1019123894\n624,1965,2.0,1019132980\n624,1967,3.0,1019126914\n624,1968,3.0,1019127229\n624,1982,1.5,1161526179\n624,2000,4.0,1019127319\n624,2001,3.5,1164622247\n624,2002,3.0,1019124575\n624,2003,4.0,1019127916\n624,2004,3.0,1019128386\n624,2005,3.0,1028110699\n624,2006,3.0,1019124400\n624,2011,3.0,1019128039\n624,2012,4.0,1019128140\n624,2013,5.0,1019124481\n624,2014,2.0,1072012999\n624,2018,4.0,1019126704\n624,2019,5.0,1019132771\n624,2023,3.0,1082281251\n624,2027,2.0,1178981888\n624,2034,3.0,1019133126\n624,2038,3.0,1019127044\n624,2040,3.0,1019126952\n624,2041,4.0,1019125595\n624,2046,3.0,1019125353\n624,2050,3.0,1019125449\n624,2051,4.0,1019125633\n624,2053,2.0,1019563932\n624,2054,4.0,1019125435\n624,2060,4.0,1019128577\n624,2083,4.0,1019126899\n624,2087,4.0,1019126704\n624,2088,3.0,1028110796\n624,2090,4.0,1019126736\n624,2094,3.0,1019133056\n624,2100,3.0,1019127641\n624,2105,4.0,1019124493\n624,2108,3.0,1019127430\n624,2109,3.0,1019127711\n624,2110,4.0,1019128140\n624,2111,4.0,1019128158\n624,2115,4.0,1164622254\n624,2124,3.0,1019563464\n624,2126,2.0,1057649467\n624,2134,3.0,1019128119\n624,2139,3.0,1019126719\n624,2140,3.0,1019126914\n624,2141,3.0,1019126749\n624,2142,3.0,1019126790\n624,2146,3.0,1019141823\n624,2153,1.0,1019125065\n624,2169,3.0,1019128468\n624,2174,3.0,1019127479\n624,2194,4.0,1019132349\n624,2231,4.0,1019137951\n624,2243,4.0,1100099775\n624,2247,3.0,1019131482\n624,2249,2.0,1019128185\n624,2253,1.0,1019124908\n624,2264,3.0,1019139281\n624,2268,4.0,1019132349\n624,2269,3.0,1019139281\n624,2289,5.0,1019127129\n624,2291,3.0,1019137680\n624,2300,4.0,1019140840\n624,2302,3.0,1019127559\n624,2335,4.0,1164622080\n624,2349,2.0,1019123880\n624,2353,3.0,1019142275\n624,2355,4.0,1040756375\n624,2366,5.0,1019124231\n624,2367,3.0,1148466797\n624,2368,2.0,1019140795\n624,2369,3.0,1019128415\n624,2371,3.0,1019127748\n624,2372,2.0,1019563833\n624,2375,3.0,1019125813\n624,2376,2.5,1173560581\n624,2378,4.5,1164622167\n624,2379,3.0,1019132168\n624,2380,2.0,1028111003\n624,2381,2.0,1028111003\n624,2382,2.0,1028111003\n624,2383,2.0,1019132277\n624,2393,4.0,1019124546\n624,2402,2.0,1028111004\n624,2403,2.0,1019124400\n624,2404,1.0,1019124948\n624,2405,3.0,1019124481\n624,2406,3.0,1019124279\n624,2407,4.0,1019127727\n624,2408,2.0,1019124094\n624,2409,3.0,1019139281\n624,2410,3.0,1019124750\n624,2411,3.0,1019124800\n624,2412,2.0,1019124908\n624,2413,3.0,1019128107\n624,2414,3.0,1019125322\n624,2420,2.0,1019138730\n624,2421,2.0,1021567112\n624,2455,3.0,1019133014\n624,2463,4.0,1019127850\n624,2470,4.0,1049015553\n624,2471,3.0,1019125633\n624,2472,3.0,1019127763\n624,2474,4.0,1019125813\n624,2478,3.0,1028110820\n624,2502,3.0,1270312997\n624,2518,3.0,1019127974\n624,2520,3.0,1019139031\n624,2521,3.0,1019139712\n624,2522,3.0,1019139729\n624,2523,2.0,1019133272\n624,2524,5.0,1019138858\n624,2529,3.0,1041617295\n624,2530,2.0,1064426223\n624,2533,2.0,1041617295\n624,2537,3.0,1164622446\n624,2539,3.0,1127157795\n624,2542,4.0,1019127343\n624,2567,4.0,1019127600\n624,2571,2.0,1162753923\n624,2580,3.0,1119106113\n624,2587,4.0,1019460299\n624,2598,3.0,1019128447\n624,2616,2.0,1019124714\n624,2617,2.0,1041272707\n624,2628,2.0,1119469513\n624,2640,3.0,1019124354\n624,2641,3.0,1019125353\n624,2642,3.0,1019124858\n624,2643,2.0,1019125096\n624,2657,4.0,1019128050\n624,2683,4.5,1092562805\n624,2693,4.0,1032771794\n624,2694,4.0,1164622318\n624,2699,3.0,1019124655\n624,2700,4.0,1092830272\n624,2701,3.0,1028110848\n624,2706,3.5,1164622334\n624,2709,4.0,1019126888\n624,2713,2.0,1039177465\n624,2716,5.0,1019127163\n624,2717,3.0,1019128616\n624,2718,3.0,1045480175\n624,2723,4.0,1019125424\n624,2735,2.0,1019124736\n624,2746,3.0,1019564316\n624,2759,2.5,1318679277\n624,2762,4.0,1019142152\n624,2763,3.0,1045161657\n624,2769,2.0,1041941619\n624,2770,4.0,1019127874\n624,2779,3.0,1019127916\n624,2788,4.0,1178980946\n624,2791,5.0,1019125935\n624,2792,3.0,1041438705\n624,2794,3.0,1019128447\n624,2796,3.0,1019128447\n624,2797,4.0,1019127363\n624,2803,3.0,1019142353\n624,2805,2.0,1035811807\n624,2806,3.5,1062677841\n624,2822,2.0,1019141991\n624,2829,3.0,1021877802\n624,2857,4.0,1019126704\n624,2858,4.0,1043776610\n624,2860,3.0,1019128214\n624,2881,4.0,1019124621\n624,2883,3.0,1040237267\n624,2887,1.0,1042049388\n624,2889,4.0,1019127695\n624,2890,3.0,1019132837\n624,2915,4.0,1019127343\n624,2916,3.0,1019125292\n624,2918,4.0,1019127308\n624,2922,4.0,1019133316\n624,2942,2.0,1019563833\n624,2947,4.5,1091450131\n624,2948,4.5,1091351489\n624,2949,4.0,1091351325\n624,2951,5.0,1019124231\n624,2953,1.0,1117446468\n624,2959,4.0,1019137594\n624,2968,5.0,1019125273\n624,2973,4.0,1028529865\n624,2978,2.0,1019125784\n624,2985,4.5,1164622139\n624,2986,3.0,1019132552\n624,2987,4.0,1019125273\n624,2989,4.5,1092309194\n624,2990,4.5,1092829543\n624,2991,5.0,1019124279\n624,2993,4.5,1091450158\n624,2997,4.0,1039515852\n624,3005,1.0,1019142393\n624,3020,4.0,1019124575\n624,3024,3.0,1019133161\n624,3030,5.0,1019124045\n624,3031,3.0,1019132044\n624,3033,4.0,1019128107\n624,3034,4.0,1019126674\n624,3039,4.0,1019228504\n624,3044,4.0,1019141327\n624,3052,4.0,1058206489\n624,3057,4.0,1042220824\n624,3072,3.0,1019127505\n624,3082,3.5,1173560585\n624,3087,3.0,1019127748\n624,3101,3.0,1019142324\n624,3104,4.0,1019124279\n624,3107,4.0,1019138711\n624,3108,3.0,1019127516\n624,3114,5.0,1019126661\n624,3130,2.0,1019132194\n624,3146,4.0,1038736356\n624,3156,2.0,1019563582\n624,3168,4.0,1019125259\n624,3173,3.0,1019139010\n624,3174,3.0,1019127614\n624,3175,4.0,1019125340\n624,3198,4.0,1019137809\n624,3208,3.0,1019124750\n624,3247,4.0,1019128431\n624,3248,2.0,1019132117\n624,3249,4.0,1019142353\n624,3253,4.5,1092830346\n624,3254,4.0,1019128372\n624,3255,4.0,1019127695\n624,3256,4.0,1019124365\n624,3257,1.0,1019124836\n624,3258,3.0,1019128734\n624,3262,3.0,1019138978\n624,3263,4.0,1019131482\n624,3264,1.5,1059899816\n624,3267,3.5,1064153466\n624,3268,1.0,1028111170\n624,3274,4.0,1019124481\n624,3276,1.0,1052647528\n624,3284,3.0,1476384001\n624,3286,2.0,1038486297\n624,3301,4.0,1023692566\n624,3317,4.0,1054546273\n624,3327,4.0,1019132624\n624,3361,4.0,1019127308\n624,3386,3.0,1019137698\n624,3388,2.0,1019563896\n624,3390,2.0,1019125722\n624,3396,4.0,1164622214\n624,3397,4.0,1019126875\n624,3398,4.0,1092830342\n624,3401,2.0,1019125648\n624,3418,3.0,1019137875\n624,3421,4.0,1019130925\n624,3422,3.0,1019128089\n624,3448,4.0,1019127559\n624,3450,4.0,1019127777\n624,3471,4.0,1019132949\n624,3489,3.0,1019125583\n624,3494,5.0,1019125369\n624,3507,4.0,1019123866\n624,3508,5.0,1019133316\n624,3511,3.0,1040643593\n624,3524,3.0,1019141834\n624,3526,4.0,1019127569\n624,3527,1.0,1189358111\n624,3534,2.0,1040065052\n624,3536,4.0,1039177544\n624,3537,3.0,1019125813\n624,3552,4.5,1323105296\n624,3555,2.0,1039794524\n624,3564,2.0,1143894549\n624,3578,4.0,1019124292\n624,3591,2.0,1019138595\n624,3593,1.0,1173725692\n624,3596,1.0,1044272089\n624,3608,1.0,1028111136\n624,3614,4.0,1019128089\n624,3617,4.0,1033996657\n624,3618,4.0,1019127727\n624,3623,2.0,1019124703\n624,3624,2.0,1052647614\n624,3633,3.5,1091701887\n624,3635,4.0,1173560529\n624,3638,3.0,1173560567\n624,3639,4.5,1092044346\n624,3646,3.0,1178981400\n624,3671,5.0,1019127174\n624,3681,5.0,1019125154\n624,3688,5.0,1019128536\n624,3689,3.0,1164622468\n624,3690,3.0,1164622491\n624,3698,2.0,1019133043\n624,3701,3.0,1019563464\n624,3705,2.0,1019125666\n624,3707,2.0,1019139031\n624,3717,2.0,1178981944\n624,3740,3.0,1019128386\n624,3744,1.5,1057481948\n624,3751,3.0,1019126687\n624,3752,4.0,1023205489\n624,3754,1.0,1032772474\n624,3755,3.0,1019124588\n624,3760,2.5,1085749829\n624,3763,4.5,1164622290\n624,3764,3.0,1019124939\n624,3785,2.0,1034505956\n624,3791,3.0,1019563833\n624,3793,4.0,1019125762\n624,3802,2.0,1019133161\n624,3812,3.0,1043577943\n624,3821,3.0,1041155796\n624,3826,2.0,1038486175\n624,3827,3.0,1021877820\n624,3833,1.0,1035119788\n624,3841,3.0,1097751894\n624,3861,3.0,1028529886\n624,3868,5.0,1019127430\n624,3869,4.0,1032164700\n624,3877,3.0,1019125044\n624,3882,3.0,1038736408\n624,3897,4.0,1038594345\n624,3911,3.0,1040379687\n624,3916,3.0,1033287500\n624,3933,0.5,1191614594\n624,3948,4.0,1024902820\n624,3949,4.0,1296299329\n624,3950,3.0,1061919692\n624,3967,4.0,1041504329\n624,3968,3.0,1021276640\n624,3977,2.0,1023205435\n624,3978,3.0,1037641774\n624,3979,4.0,1023260776\n624,3980,2.0,1034096623\n624,3984,3.5,1173560541\n624,3986,3.0,1023692589\n624,3994,2.0,1025507603\n624,3996,3.0,1026118147\n624,4002,4.0,1019127415\n624,4005,3.5,1092655873\n624,4010,4.0,1019128227\n624,4011,4.0,1035980807\n624,4015,2.0,1036086140\n624,4022,4.0,1028529781\n624,4025,2.0,1056199601\n624,4027,2.0,1034700847\n624,4034,3.0,1019137522\n624,4039,3.0,1019563504\n624,4040,3.0,1019128616\n624,4051,0.5,1263237066\n624,4053,2.0,1064153348\n624,4066,2.0,1019563932\n624,4068,3.0,1046198627\n624,4084,3.0,1019124686\n624,4085,5.0,1019127444\n624,4104,1.0,1028111115\n624,4121,4.0,1019127998\n624,4124,1.0,1019140763\n624,4128,4.0,1164622228\n624,4132,4.0,1019128804\n624,4133,3.0,1019124986\n624,4148,3.0,1040065117\n624,4153,2.0,1068491368\n624,4156,2.0,1063909113\n624,4158,0.5,1074776936\n624,4159,2.0,1070185956\n624,4161,3.0,1052647694\n624,4167,2.0,1036612424\n624,4168,3.0,1066069447\n624,4198,3.0,1019226921\n624,4203,2.0,1019124546\n624,4212,3.0,1019132407\n624,4221,3.0,1019128072\n624,4225,4.0,1037531806\n624,4226,4.0,1026978102\n624,4229,3.0,1052647653\n624,4232,2.0,1045826816\n624,4233,2.5,1062524267\n624,4234,3.0,1046111054\n624,4238,3.0,1038683557\n624,4254,1.0,1049015553\n624,4255,0.5,1061212887\n624,4262,4.5,1367761882\n624,4267,3.0,1044649729\n624,4268,2.0,1041504276\n624,4270,1.0,1041272707\n624,4280,3.0,1019127489\n624,4291,2.0,1019563464\n624,4299,4.0,1049015459\n624,4321,5.0,1019127641\n624,4322,4.0,1019137717\n624,4327,5.0,1019133301\n624,4333,3.0,1019128257\n624,4339,4.0,1019665475\n624,4340,2.0,1084272528\n624,4343,2.0,1045222339\n624,4344,2.0,1045072144\n624,4351,1.0,1160936767\n624,4361,3.0,1019127202\n624,4367,1.0,1041761553\n624,4368,3.0,1041155227\n624,4369,2.0,1044649616\n624,4370,2.5,1054546199\n624,4388,2.0,1049015662\n624,4396,5.0,1019124644\n624,4397,3.0,1019125022\n624,4409,3.5,1089029542\n624,4447,1.5,1063369190\n624,4448,3.0,1053249671\n624,4471,0.5,1164622587\n624,4477,1.0,1028111080\n624,4483,2.0,1019132117\n624,4487,1.0,1157273661\n624,4489,3.0,1019127850\n624,4492,3.0,1019128846\n624,4499,4.0,1019124005\n624,4502,1.0,1028111115\n624,4526,2.0,1019133189\n624,4544,2.0,1019132130\n624,4545,3.0,1019128484\n624,4558,3.0,1019128257\n624,4563,2.0,1019128718\n624,4564,3.0,1019141546\n624,4571,5.0,1019125322\n624,4585,4.0,1019128279\n624,4587,3.0,1019128600\n624,4602,3.0,1019128894\n624,4621,2.0,1178981891\n624,4623,5.0,1019131273\n624,4630,1.0,1028717134\n624,4634,3.0,1028110767\n624,4638,4.0,1019124789\n624,4643,1.5,1054455565\n624,4654,1.5,1154785482\n624,4660,4.0,1019127974\n624,4662,3.0,1178981173\n624,4673,2.0,1019124774\n624,4677,3.0,1019128521\n624,4678,3.5,1178981100\n624,4679,3.0,1019127943\n624,4681,4.0,1019128243\n624,4686,2.0,1178981559\n624,4709,3.0,1019128600\n624,4718,3.0,1178981442\n624,4728,2.5,1059899724\n624,4732,1.5,1053362146\n624,4734,4.5,1055609997\n624,4756,1.0,1019125749\n624,4775,0.5,1183909175\n624,4776,3.0,1059899914\n624,4799,5.0,1019127444\n624,4812,3.0,1019125648\n624,4814,2.0,1074711220\n624,4816,3.0,1060601459\n624,4844,2.0,1061555032\n624,4848,3.0,1069097404\n624,4855,4.0,1019124244\n624,4866,3.5,1061467606\n624,4874,2.0,1019563961\n624,4878,4.0,1126548392\n624,4881,3.0,1061899745\n624,4886,4.0,1071935179\n624,4890,2.5,1064137470\n624,4896,3.0,1205164753\n624,4901,2.5,1053249262\n624,4915,2.0,1019124822\n624,4936,3.0,1074888974\n624,4941,5.0,1019124675\n624,4952,2.0,1178981850\n624,4963,4.0,1019124380\n624,4978,3.0,1080652891\n624,4979,3.5,1070384303\n624,4980,3.0,1019125449\n624,4981,4.0,1019127669\n624,4993,4.0,1041438979\n624,5009,2.5,1057147888\n624,5010,4.0,1074854977\n624,5025,2.0,1088413319\n624,5027,3.0,1019132541\n624,5049,4.0,1019127415\n624,5055,3.0,1171627869\n624,5060,4.0,1019127145\n624,5094,1.5,1079632810\n624,5099,3.0,1019126914\n624,5106,0.5,1158491366\n624,5110,4.0,1082793481\n624,5151,3.0,1080810039\n624,5220,3.0,1070186007\n624,5246,2.0,1178981711\n624,5247,4.0,1164622121\n624,5248,1.5,1178981709\n624,5250,4.0,1019125920\n624,5293,3.0,1083488090\n624,5299,4.0,1033033106\n624,5303,3.0,1019125877\n624,5308,4.0,1019125869\n624,5309,2.0,1019125869\n624,5334,1.0,1019125851\n624,5339,4.0,1019127244\n624,5349,4.0,1026288001\n624,5356,0.5,1261243271\n624,5378,3.0,1119469511\n624,5382,4.0,1021307899\n624,5388,3.5,1082885201\n624,5400,3.0,1030693516\n624,5401,1.0,1178982196\n624,5414,2.0,1027666620\n624,5418,3.0,1042827236\n624,5419,1.5,1072963561\n624,5420,2.0,1084800144\n624,5438,2.0,1028110227\n624,5445,4.0,1026715888\n624,5449,3.5,1084272507\n624,5459,2.0,1028529803\n624,5462,2.0,1071155500\n624,5463,2.0,1171203561\n624,5464,4.0,1034790010\n624,5478,2.5,1089029593\n624,5479,2.0,1086082505\n624,5481,4.0,1028185558\n624,5490,5.0,1028110147\n624,5500,4.0,1028110163\n624,5502,2.5,1076235449\n624,5507,1.0,1158491351\n624,5522,5.0,1029240597\n624,5523,2.0,1087571213\n624,5528,4.0,1143893757\n624,5530,2.5,1085130850\n624,5540,4.0,1029240574\n624,5541,4.0,1029240574\n624,5548,3.0,1029240574\n624,5553,3.0,1029240574\n624,5573,2.5,1106409885\n624,5582,2.0,1031132337\n624,5621,2.5,1091351409\n624,5630,3.0,1087807823\n624,5636,3.0,1110041723\n624,5669,4.0,1178981006\n624,5673,1.5,1123436800\n624,5700,0.5,1074801350\n624,5752,3.0,1074715109\n624,5779,2.0,1082282242\n624,5785,4.0,1093768355\n624,5803,2.0,1087149734\n624,5872,2.5,1173560547\n624,5881,1.5,1106484042\n624,5900,1.5,1127157797\n624,5915,5.0,1087150869\n624,5942,2.5,1268569904\n624,5944,3.0,1092829876\n624,5945,3.5,1094375921\n624,5952,4.0,1042547681\n624,5954,4.0,1105617299\n624,5956,4.5,1055107857\n624,5957,2.5,1110109045\n624,5989,4.0,1071155545\n624,6016,5.0,1313254231\n624,6039,3.0,1041963284\n624,6059,3.5,1100169060\n624,6104,4.0,1168120566\n624,6143,2.0,1143894768\n624,6157,1.5,1178982323\n624,6188,3.5,1098963762\n624,6212,1.5,1104245150\n624,6218,2.0,1059305279\n624,6249,2.0,1086005209\n624,6281,3.0,1104484674\n624,6296,4.0,1111752338\n624,6302,1.0,1054455977\n624,6314,2.0,1051433057\n624,6315,2.0,1049817300\n624,6331,3.5,1113580318\n624,6333,4.0,1053503950\n624,6348,2.0,1054457691\n624,6349,2.0,1054457689\n624,6365,1.5,1206302799\n624,6373,3.0,1104918778\n624,6375,5.0,1071935208\n624,6377,3.5,1104061834\n624,6378,3.0,1066204686\n624,6410,3.0,1054457536\n624,6424,1.0,1054457487\n624,6427,4.0,1082282303\n624,6428,3.0,1054457422\n624,6476,3.0,1064154633\n624,6503,1.0,1105009312\n624,6514,0.5,1262200449\n624,6534,1.0,1079084740\n624,6537,1.5,1175972047\n624,6539,3.5,1066291868\n624,6541,1.5,1143894028\n624,6550,2.0,1098963715\n624,6564,1.5,1107689602\n624,6582,2.0,1190622002\n624,6595,1.5,1063909065\n624,6618,4.0,1166303478\n624,6645,2.5,1064154408\n624,6658,3.5,1064154385\n624,6659,2.5,1064154371\n624,6662,4.0,1064154376\n624,6663,3.0,1064154379\n624,6708,3.5,1121590454\n624,6711,3.5,1117446460\n624,6760,3.0,1405887477\n624,6764,2.5,1121515014\n624,6798,3.0,1064153909\n624,6807,3.0,1066069801\n624,6812,2.5,1066069810\n624,6814,3.0,1066069812\n624,6862,3.5,1065030178\n624,6863,4.0,1123436756\n624,6874,4.0,1067427681\n624,6888,1.5,1124010443\n624,6893,4.5,1066069477\n624,6936,3.5,1388070781\n624,6944,3.5,1074424277\n624,6947,3.0,1113128608\n624,6957,4.0,1229376515\n624,6979,3.0,1074423739\n624,6993,4.0,1074420683\n624,6996,1.5,1074423673\n624,7000,2.0,1074423579\n624,7007,3.5,1074423573\n624,7016,1.0,1178980613\n624,7036,2.5,1074423460\n624,7046,3.0,1074423410\n624,7076,4.0,1074423312\n624,7084,3.0,1143894736\n624,7091,4.5,1074423252\n624,7101,3.0,1074423259\n624,7102,2.5,1074423256\n624,7104,2.0,1074423194\n624,7132,5.0,1143894362\n624,7137,4.0,1157300800\n624,7143,4.0,1111924609\n624,7150,3.5,1125857591\n624,7153,4.5,1074121330\n624,7173,2.5,1137926409\n624,7245,1.0,1263060377\n624,7247,5.0,1074422250\n624,7257,2.0,1119778206\n624,7258,1.5,1328987046\n624,7319,3.0,1145127030\n624,7325,3.0,1137926432\n624,7372,3.0,1082793500\n624,7373,3.0,1359988244\n624,7438,3.5,1083742391\n624,7454,2.0,1084951203\n624,7458,3.0,1143893844\n624,7569,3.0,1173560543\n624,7570,2.5,1173560573\n624,7573,2.5,1173560570\n624,7706,4.5,1097752197\n624,7757,4.0,1168120709\n624,7894,4.5,1087722064\n624,7895,3.5,1358694176\n624,8136,0.5,1262267722\n624,8137,0.5,1221415770\n624,8138,0.5,1101557729\n624,8169,2.5,1087571812\n624,8290,0.5,1087571692\n624,8361,2.0,1086005141\n624,8376,3.0,1227300647\n624,8387,1.5,1087571564\n624,8447,1.0,1087150729\n624,8464,3.5,1122228632\n624,8493,3.0,1087150615\n624,8526,1.5,1127643384\n624,8528,4.0,1139138166\n624,8529,3.0,1140952575\n624,8542,5.0,1087571380\n624,8596,3.0,1088862829\n624,8614,2.0,1088862670\n624,8622,3.5,1111503792\n624,8623,3.5,1143894336\n624,8633,3.0,1088862483\n624,8636,5.0,1089029480\n624,8641,4.0,1103897903\n624,8644,3.0,1154957003\n624,8665,3.5,1091273400\n624,8743,2.5,1091720265\n624,8781,3.5,1103897760\n624,8784,3.5,1144263537\n624,8798,3.0,1151348983\n624,8807,3.0,1289220292\n624,8865,3.5,1095688150\n624,8874,4.0,1118566433\n624,8879,3.5,1099048295\n624,8880,2.0,1178981879\n624,8910,3.5,1146503208\n624,8917,4.5,1149412996\n624,8947,2.0,1163440367\n624,8949,4.0,1346003978\n624,8957,2.5,1224341045\n624,8961,4.5,1148466855\n624,8972,2.0,1210007903\n624,8983,4.0,1145042155\n624,8984,1.5,1154868241\n624,26133,3.5,1224340974\n624,26152,3.0,1136651990\n624,26386,3.5,1136651983\n624,26409,1.0,1263728519\n624,26464,3.0,1171203513\n624,26700,2.5,1182417809\n624,26750,3.0,1177618482\n624,26870,2.0,1136651997\n624,27478,3.5,1260727330\n624,27831,3.5,1182417918\n624,27904,3.5,1214056192\n624,30707,4.5,1425842922\n624,30793,3.0,1293386484\n624,30810,3.0,1151348999\n624,30812,4.0,1145298010\n624,30825,2.5,1183206154\n624,31000,2.5,1104245514\n624,32019,2.0,1152437420\n624,32031,3.5,1154202643\n624,32291,2.5,1234381331\n624,32587,4.0,1120075344\n624,33004,3.0,1149412972\n624,33166,4.0,1205147908\n624,33493,3.5,1119469509\n624,33615,4.0,1230326215\n624,33679,2.0,1168196708\n624,33794,3.5,1119106052\n624,33830,2.0,1261909117\n624,34018,3.0,1171203494\n624,34048,3.0,1164491787\n624,34150,2.0,1160317577\n624,34162,4.0,1159096044\n624,34520,2.0,1162131898\n624,34542,3.5,1239464894\n624,35836,4.0,1148466824\n624,36401,3.0,1332087753\n624,36708,4.5,1160317629\n624,37211,3.0,1171203485\n624,37386,1.0,1176028700\n624,37727,2.0,1312122143\n624,38038,3.5,1293908134\n624,38061,4.5,1205700017\n624,39183,3.0,1171748674\n624,39444,3.0,1184426926\n624,40278,3.5,1169333691\n624,41566,3.5,1261691062\n624,41569,4.0,1148466801\n624,43558,2.0,1338652131\n624,43871,1.5,1166824406\n624,44191,3.0,1183289054\n624,44665,3.5,1144951458\n624,45062,2.0,1232228520\n624,45186,2.5,1146931490\n624,45221,2.0,1269179392\n624,45431,3.0,1261691072\n624,45447,2.0,1185655622\n624,45499,3.5,1149709081\n624,45517,3.0,1215636437\n624,45666,2.0,1200170816\n624,45722,2.5,1179061367\n624,45728,5.0,1158950611\n624,46062,3.5,1223742855\n624,46530,2.5,1189284657\n624,46578,4.0,1406660764\n624,46970,2.0,1192085518\n624,46972,3.0,1199735040\n624,46974,2.0,1252187976\n624,47044,1.5,1180296227\n624,47640,2.5,1191104574\n624,47810,1.0,1180460260\n624,47950,3.0,1205597681\n624,48262,4.0,1205154152\n624,48322,4.0,1206877207\n624,48385,4.0,1199222485\n624,48516,4.0,1192374218\n624,48783,4.0,1202674166\n624,49220,2.5,1205610364\n624,49272,4.5,1168196899\n624,49278,3.0,1202594209\n624,49530,3.0,1205618429\n624,49649,1.0,1192302220\n624,49688,4.0,1226505232\n624,49822,3.0,1205014676\n624,50005,2.5,1205959513\n624,50064,3.0,1218827311\n624,50068,4.0,1172235963\n624,50601,1.5,1231536791\n624,50792,2.5,1211142711\n624,50872,3.0,1325961893\n624,51255,4.5,1177618474\n624,51412,1.0,1199121390\n624,51540,4.0,1234700472\n624,51662,3.0,1196096451\n624,52245,3.0,1209924436\n624,52722,3.0,1178305601\n624,52730,2.5,1232207756\n624,52975,3.5,1183072734\n624,53125,2.0,1179784344\n624,53322,3.0,1218574183\n624,53464,1.5,1200155399\n624,53996,2.0,1200758109\n624,54272,4.0,1198524288\n624,54286,3.5,1198524298\n624,54503,3.5,1227390691\n624,54997,4.0,1209924449\n624,55250,2.0,1292688589\n624,55294,2.5,1311527441\n624,55765,4.0,1223742872\n624,55768,3.5,1234617873\n624,55830,3.0,1261996702\n624,55995,2.0,1215875639\n624,56174,3.0,1232207806\n624,56251,3.0,1262543180\n624,57368,2.0,1229198927\n624,57640,3.0,1374940238\n624,57669,4.0,1261909103\n624,58025,1.5,1262258700\n624,58156,3.0,1262517028\n624,58351,4.0,1408799638\n624,58559,3.5,1232881338\n624,58803,4.0,1262337884\n624,59315,4.0,1274020860\n624,59369,2.5,1476562414\n624,59615,2.0,1230847506\n624,59784,3.0,1248638757\n624,59900,2.0,1262200436\n624,60040,2.5,1243238059\n624,60069,2.5,1293908110\n624,60072,2.0,1242564720\n624,60074,2.0,1252866333\n624,60126,3.0,1257528802\n624,60161,3.0,1262543188\n624,60487,3.0,1224340978\n624,60756,3.0,1262290001\n624,60950,3.0,1290872729\n624,61123,2.0,1223742842\n624,61132,3.5,1254335419\n624,61289,2.5,1309461632\n624,61352,3.5,1314445026\n624,62434,4.5,1226505092\n624,62849,3.0,1262433902\n624,62956,3.0,1262543184\n624,62999,3.5,1261909136\n624,63113,3.5,1231681819\n624,63131,3.0,1261909094\n624,63393,1.0,1230396701\n624,64285,3.5,1293908132\n624,64839,4.0,1290877044\n624,64969,3.5,1261258589\n624,64983,3.5,1264947081\n624,65133,3.0,1231537081\n624,65135,3.0,1232207748\n624,66297,3.0,1262543185\n624,66785,4.0,1291482540\n624,67255,4.0,1356808249\n624,67361,2.0,1317148553\n624,67408,3.5,1278848449\n624,67695,2.0,1294072975\n624,67734,3.5,1311517164\n624,68157,3.5,1279364152\n624,68319,2.5,1288018890\n624,68358,3.5,1259155084\n624,68554,2.0,1322404945\n624,68659,3.0,1297715970\n624,68793,3.0,1259155095\n624,68954,3.0,1323022889\n624,69069,3.0,1312122155\n624,69118,1.5,1314616111\n624,69122,3.0,1285449098\n624,69306,2.5,1291738010\n624,69481,4.0,1364559000\n624,69526,1.0,1289837015\n624,69604,3.0,1256322001\n624,69640,3.0,1289145810\n624,69757,2.5,1325520450\n624,69784,3.0,1276341252\n624,69951,3.5,1314564585\n624,70286,3.5,1288640726\n624,70545,2.0,1309892195\n624,70565,2.5,1291653638\n624,70984,3.5,1317496659\n624,71033,4.0,1324744291\n624,71211,3.0,1292088078\n624,71248,3.0,1324315002\n624,71464,3.0,1313949654\n624,71466,4.0,1312658574\n624,71518,3.0,1328551831\n624,71520,3.0,1284236888\n624,71530,1.5,1319885998\n624,71535,4.0,1290891795\n624,71732,1.5,1318679257\n624,71823,2.5,1328962391\n624,72011,3.0,1321712791\n624,72224,1.0,1311102175\n624,72378,1.5,1291399456\n624,72405,2.0,1444058854\n624,72694,2.0,1315003118\n624,72998,3.0,1311011549\n624,73015,2.0,1328979270\n624,73017,4.0,1310216014\n624,73266,3.0,1309892157\n624,73321,3.5,1317496647\n624,73323,3.5,1356808318\n624,73386,1.5,1312049946\n624,74458,4.0,1311444922\n624,74510,3.5,1356808252\n624,74532,1.5,1306009221\n624,74789,3.0,1293886761\n624,74795,3.0,1312638561\n624,74916,2.0,1328470996\n624,75803,1.5,1329074250\n624,75805,2.0,1328471152\n624,75816,2.0,1340478819\n624,76077,2.0,1306781262\n624,76175,1.0,1308418362\n624,76251,4.0,1305405174\n624,77191,2.5,1309605307\n624,77421,2.5,1320489018\n624,77561,3.0,1308502687\n624,77866,2.0,1311505084\n624,78034,3.5,1320594057\n624,78041,1.5,1310215995\n624,78105,1.0,1310497290\n624,78116,3.5,1313949876\n624,78467,2.0,1315467254\n624,78469,2.5,1310153678\n624,78499,5.0,1293654824\n624,78893,1.0,1315753825\n624,79132,4.0,1316888022\n624,79134,3.5,1327255410\n624,79185,1.0,1314458431\n624,79224,1.0,1321202997\n624,79242,3.0,1328375812\n624,79259,2.5,1345837301\n624,79293,1.5,1310238823\n624,79428,1.5,1311505062\n624,79590,2.5,1346527752\n624,79592,2.0,1315154579\n624,79702,3.0,1310228058\n624,79879,3.0,1345980025\n624,79946,3.5,1310066785\n624,80126,2.5,1323638811\n624,80219,4.0,1322927917\n624,80241,2.5,1322333467\n624,80463,4.0,1316888101\n624,80489,4.0,1318095629\n624,80549,2.0,1321720454\n624,80590,2.0,1322329754\n624,80693,4.5,1329575519\n624,80727,2.5,1325420433\n624,80864,3.5,1335116204\n624,81156,4.0,1306762590\n624,81537,1.5,1322942446\n624,81564,3.5,1324744251\n624,81591,3.5,1325533270\n624,81782,3.0,1302714531\n624,81784,2.5,1325367521\n624,81845,4.5,1328370855\n624,81932,4.0,1323097089\n624,81949,3.0,1314564596\n624,82093,1.5,1328371086\n624,82095,0.5,1322404967\n624,82202,1.5,1325083670\n624,82378,2.5,1384621717\n624,82459,4.0,1327257756\n624,82461,2.0,1314387349\n624,82499,2.5,1338743542\n624,82527,4.0,1325083025\n624,82852,2.0,1324218176\n624,82854,1.5,1327259661\n624,83177,2.0,1333998886\n624,83349,2.0,1329060255\n624,83374,3.5,1323114261\n624,83613,1.5,1348347405\n624,83910,2.5,1325096888\n624,84152,3.0,1329590016\n624,84374,2.0,1346521626\n624,84392,3.0,1336227603\n624,84615,2.5,1335702885\n624,84696,4.0,1316201594\n624,84772,3.0,1328542457\n624,84944,4.0,1329575435\n624,84950,2.5,1338824816\n624,84954,3.5,1332595368\n624,85022,3.0,1339331562\n624,85025,2.0,1338657549\n624,85056,2.5,1322927898\n624,85131,1.0,1335706779\n624,85367,2.0,1334515088\n624,85399,1.0,1338652134\n624,85401,2.0,1335719753\n624,85510,2.0,1340560807\n624,85774,4.5,1338824711\n624,85881,3.5,1352038070\n624,86028,2.0,1332090711\n624,86142,3.0,1342380490\n624,86190,3.5,1338720202\n624,86293,2.0,1342280329\n624,86298,2.0,1341165882\n624,86332,2.5,1339338836\n624,86548,3.5,1340537139\n624,86593,2.5,1349117163\n624,86833,4.0,1342352504\n624,86880,1.5,1333998916\n624,86882,3.5,1358793434\n624,86911,3.0,1306601361\n624,87222,3.0,1339331309\n624,87232,4.0,1347303112\n624,87298,3.0,1342211700\n624,87306,3.0,1341321041\n624,87430,1.5,1308418333\n624,87444,1.5,1316261764\n624,87483,2.0,1346610995\n624,87485,1.5,1341142100\n624,87520,0.5,1309285921\n624,87529,1.5,1338827195\n624,87785,2.0,1316371475\n624,87869,3.0,1356510643\n624,87876,3.0,1340478836\n624,88140,3.0,1341142078\n624,88163,3.5,1358608911\n624,88356,2.0,1341260290\n624,88405,2.5,1348167893\n624,88672,3.0,1403449194\n624,88744,2.5,1351976991\n624,88785,2.0,1348777053\n624,88812,2.5,1340537120\n624,89087,2.0,1350761819\n624,89305,4.0,1472497292\n624,89343,3.0,1437765410\n624,89388,1.5,1355602518\n624,89427,1.5,1354367391\n624,89470,4.0,1318450117\n624,89492,4.0,1355584097\n624,89745,3.5,1368209995\n624,89840,1.5,1350834941\n624,89904,4.0,1367695291\n624,90249,2.5,1348917778\n624,90343,2.5,1345574423\n624,90374,3.0,1362238078\n624,90439,3.0,1368990175\n624,90522,2.0,1356205855\n624,90717,3.0,1357041435\n624,90719,2.5,1364138940\n624,90738,1.5,1373743906\n624,90746,3.5,1359491177\n624,90866,4.0,1359284029\n624,90890,2.0,1358614782\n624,91077,4.5,1359307126\n624,91094,3.5,1357071568\n624,91126,3.5,1357403679\n624,91128,3.0,1356880002\n624,91273,1.5,1347100087\n624,91323,1.5,1357893762\n624,91325,2.0,1328370503\n624,91470,1.5,1412446645\n624,91529,3.5,1342728332\n624,91535,2.0,1377951757\n624,91542,2.5,1359988215\n624,91628,2.0,1394377404\n624,91630,2.5,1359301585\n624,91653,4.0,1369680698\n624,91658,4.0,1356194044\n624,91688,1.5,1373227853\n624,91842,2.0,1366485592\n624,91873,1.5,1371302167\n624,91935,2.5,1355595506\n624,91976,1.0,1364052723\n624,92008,2.5,1356729800\n624,92048,2.5,1348315049\n624,92198,2.0,1350245861\n624,92264,1.0,1367060712\n624,92420,3.5,1364590802\n624,92439,2.0,1351539673\n624,92507,2.5,1359218818\n624,92665,2.5,1382815064\n624,93242,1.5,1371925097\n624,93270,1.5,1359231612\n624,93287,3.0,1357029139\n624,93326,2.0,1362231181\n624,93363,2.0,1369596924\n624,93510,4.5,1334514953\n624,93563,1.5,1367780373\n624,93766,1.5,1378653084\n624,93980,1.5,1387886171\n624,93982,2.0,1369660878\n624,94011,1.5,1433704205\n624,94018,1.0,1368282328\n624,94070,2.5,1361039399\n624,94266,2.5,1372006763\n624,94323,2.0,1369655625\n624,94478,2.0,1377963360\n624,94494,2.5,1397303036\n624,94672,2.0,1347105028\n624,94677,3.5,1359992764\n624,94777,2.5,1338145121\n624,94780,2.0,1371983752\n624,94833,3.5,1361119355\n624,94864,2.5,1374940194\n624,94896,3.0,1400437446\n624,94919,2.5,1346065679\n624,94953,2.0,1364126046\n624,94959,3.5,1367699194\n624,95067,2.5,1359200781\n624,95105,2.5,1374356300\n624,95167,3.0,1370110263\n624,95201,3.0,1375631165\n624,95207,2.0,1377289915\n624,95307,2.0,1371309742\n624,95441,4.0,1353855417\n624,95508,3.5,1364059114\n624,95510,3.5,1342380479\n624,95583,2.5,1383479112\n624,95720,2.0,1381672365\n624,95744,2.5,1374873073\n624,95875,1.5,1375631183\n624,96079,4.0,1361711769\n624,96110,4.0,1348315017\n624,96114,2.0,1377516263\n624,96281,3.0,1378584502\n624,96417,2.0,1374399916\n624,96448,1.5,1373199417\n624,96530,2.5,1392570740\n624,96588,3.0,1472411722\n624,96616,1.5,1376847471\n624,96726,1.5,1378554396\n624,96737,2.0,1382793786\n624,96861,1.0,1348777036\n624,97225,2.5,1381666482\n624,97304,4.0,1388597590\n624,97328,3.0,1353855482\n624,97470,1.5,1433704214\n624,97742,1.5,1388835576\n624,97752,3.0,1392467584\n624,97836,2.5,1387055788\n624,97858,2.0,1387894354\n624,97860,2.5,1384612498\n624,97870,4.0,1399232826\n624,97913,3.5,1394385374\n624,97921,4.0,1388249677\n624,97923,3.5,1388565429\n624,97936,3.0,1387643304\n624,97938,3.0,1386269567\n624,98154,3.5,1399742901\n624,98160,1.5,1398082810\n624,98175,1.5,1384016631\n624,98230,3.5,1377355019\n624,98243,2.5,1384026816\n624,98279,3.0,1371921150\n624,98296,1.5,1367270204\n624,98585,3.0,1398539219\n624,98809,2.5,1451566774\n624,98836,2.0,1393782241\n624,98908,1.5,1369655614\n624,98961,4.0,1393149574\n624,99005,1.5,1396094584\n624,99106,2.5,1391960604\n624,99112,2.5,1377355043\n624,99114,3.0,1356183614\n624,99117,2.0,1393156808\n624,99415,2.0,1395502530\n624,99574,3.0,1411853981\n624,99728,2.5,1391943738\n624,99846,3.0,1361017948\n624,99992,3.0,1374953846\n624,100226,1.5,1396794908\n624,100304,3.0,1391975427\n624,100326,2.5,1401914096\n624,100390,1.5,1394367924\n624,100487,2.0,1392480189\n624,100498,1.5,1395514136\n624,101025,2.5,1399469265\n624,101283,2.5,1394918217\n624,101360,1.5,1415532900\n624,101415,1.5,1377355598\n624,101529,2.0,1401540479\n624,101577,1.0,1399147624\n624,101612,2.0,1408818164\n624,101864,2.0,1400416461\n624,101884,1.5,1378633987\n624,101895,4.0,1409509515\n624,102033,3.0,1408300457\n624,102123,4.0,1401540496\n624,102125,3.0,1380312379\n624,102165,2.0,1396789784\n624,102278,2.0,1442492538\n624,102378,1.5,1412426313\n624,102407,3.5,1401128048\n624,102445,3.0,1380312400\n624,102481,3.0,1407579407\n624,102686,2.5,1386235249\n624,102720,2.5,1405112286\n624,102880,1.5,1401128019\n624,103042,2.5,1386235185\n624,103141,4.0,1401651916\n624,103221,2.5,1382796664\n624,103228,1.0,1373135820\n624,103235,3.5,1431811714\n624,103249,2.0,1371921120\n624,103253,2.5,1408991160\n624,103339,1.0,1408799647\n624,103341,4.0,1407011635\n624,103384,1.0,1406660742\n624,103502,1.5,1380569623\n624,103543,2.0,1406660751\n624,103596,1.5,1376739104\n624,103655,1.5,1412012574\n624,103755,2.5,1412018143\n624,103772,2.5,1409428197\n624,103819,3.0,1405881505\n624,103865,2.0,1442092243\n624,104076,1.5,1402162552\n624,104078,4.0,1439154367\n624,104129,2.0,1430057625\n624,104211,2.5,1409509528\n624,104218,1.5,1404662557\n624,104241,3.0,1408908578\n624,104245,2.5,1402155479\n624,104760,1.0,1419173382\n624,104841,4.0,1415470298\n624,104906,2.5,1408962245\n624,105037,2.0,1408809332\n624,105121,1.0,1415740266\n624,105197,4.5,1413740600\n624,105211,3.5,1412437686\n624,105213,2.5,1415645706\n624,105254,3.0,1411243546\n624,105351,1.5,1412012554\n624,105504,4.5,1410033778\n624,105755,1.5,1383863088\n624,105954,3.0,1420150263\n624,106062,4.0,1409392084\n624,106072,2.0,1414963234\n624,106330,2.0,1426362065\n624,106438,4.5,1418744545\n624,106491,2.0,1420388390\n624,106542,1.5,1446898911\n624,106782,4.5,1420909802\n624,106839,3.5,1422209104\n624,106883,1.5,1422125150\n624,106916,4.0,1419784104\n624,106918,3.0,1421520824\n624,106920,3.5,1423924867\n624,107141,4.0,1414261428\n624,107348,4.0,1387638835\n624,107702,1.5,1422808248\n624,107945,2.0,1442162036\n624,108156,2.0,1425237473\n624,108188,2.5,1419788002\n624,108601,2.0,1438624811\n624,108715,1.5,1445716817\n624,108729,2.0,1445199005\n624,108928,2.5,1422904330\n624,108932,4.0,1424032074\n624,108949,2.5,1433093709\n624,109042,2.0,1430765988\n624,109187,2.0,1431182418\n624,109191,1.5,1424020656\n624,109295,2.0,1405881635\n624,109317,2.5,1401128029\n624,109372,1.5,1426446817\n624,109374,3.5,1430051891\n624,109487,3.0,1446324494\n624,109576,1.5,1430758387\n624,109673,1.5,1430653744\n624,109853,2.0,1420392949\n624,109864,2.0,1429534829\n624,109895,3.0,1465151268\n624,110102,3.5,1426353299\n624,110127,2.0,1425142320\n624,110297,3.0,1422814063\n624,110553,2.5,1428076525\n624,110611,2.5,1438542786\n624,110655,2.5,1433082356\n624,110730,1.5,1432467245\n624,110771,2.0,1440358879\n624,110826,1.5,1434915641\n624,111113,3.5,1421005442\n624,111360,2.5,1442056298\n624,111362,3.0,1437851922\n624,111364,2.5,1434299815\n624,111617,2.0,1435505091\n624,111659,2.5,1431189563\n624,111663,1.5,1441024592\n624,111680,1.5,1446485804\n624,111743,3.5,1436040172\n624,111759,3.5,1436003724\n624,111781,2.0,1437765440\n624,111795,3.0,1437926422\n624,112138,4.0,1417546798\n624,112171,2.5,1440870535\n624,112183,3.5,1449501174\n624,112290,3.5,1444051599\n624,112303,1.5,1440358927\n624,112370,1.5,1433790679\n624,112460,2.5,1430048135\n624,112497,1.0,1439918833\n624,112552,4.5,1449351903\n624,112556,3.0,1445112193\n624,112623,3.0,1440358908\n624,112749,2.0,1444075104\n624,112788,1.5,1437939241\n624,112804,2.0,1454778777\n624,112818,2.0,1441481958\n624,112852,3.5,1417546776\n624,113186,3.0,1436022177\n624,113225,3.0,1417546920\n624,113378,2.0,1441562929\n624,113416,1.5,1461440907\n624,113453,2.5,1443263800\n624,113532,3.5,1472584520\n624,114028,4.0,1446293357\n624,114060,3.0,1447603253\n624,114074,3.0,1441569356\n624,114180,1.0,1445688797\n624,114601,2.0,1445711660\n624,114662,4.0,1450196550\n624,114762,1.5,1468076788\n624,114818,2.5,1461411036\n624,114925,2.0,1463239504\n624,114935,4.0,1460142912\n624,115149,3.0,1459265693\n624,115151,2.0,1433082348\n624,115170,2.5,1445682180\n624,115210,2.5,1444484278\n624,115216,3.0,1462122852\n624,115231,4.0,1447529477\n624,115617,4.0,1454251411\n624,115680,3.5,1422882861\n624,115713,3.0,1450298411\n624,116207,1.5,1461356501\n624,116413,3.0,1437769085\n624,116419,1.5,1421591835\n624,116799,2.5,1451567453\n624,116849,2.5,1448816824\n624,116887,2.0,1454184194\n624,116977,1.5,1447594766\n624,116985,1.5,1435998508\n624,117107,2.5,1448310216\n624,117176,3.5,1449334366\n624,117511,3.0,1441225425\n624,117529,2.5,1462209122\n624,117590,2.0,1446908340\n624,117895,1.0,1476616373\n624,118248,1.5,1466434602\n624,118326,2.0,1436700869\n624,118354,3.0,1453137366\n624,118702,2.5,1448739411\n624,118814,2.0,1441045203\n624,118900,3.0,1449951679\n624,118924,3.0,1455983626\n624,118985,3.5,1447864532\n624,118997,2.5,1449604930\n624,119068,2.0,1445682187\n624,119141,3.5,1448050198\n624,119145,3.5,1456167046\n624,119155,2.5,1453059806\n624,119655,1.0,1459186712\n624,120466,2.0,1453584364\n624,120635,1.0,1449576688\n624,120637,2.0,1451579985\n624,120783,2.5,1461945772\n624,120799,2.0,1435700222\n624,122490,1.5,1474301155\n624,122882,3.0,1460909750\n624,122886,3.5,1450464170\n624,122892,3.0,1454948403\n624,122900,3.5,1473446107\n624,122902,1.0,1472294219\n624,122932,2.0,1463332542\n624,123947,3.0,1451681053\n624,124859,2.0,1448298599\n624,125916,0.5,1448552452\n624,126420,1.5,1447856998\n624,127096,2.5,1448976148\n624,127136,2.5,1467660810\n624,127194,2.0,1472404409\n624,127198,2.5,1471463552\n624,127204,3.0,1465156246\n624,127319,1.5,1457787868\n624,128520,3.0,1450210315\n624,128592,1.0,1459258497\n624,129250,0.5,1447868930\n624,129354,3.0,1451771581\n624,129428,2.5,1459192248\n624,129657,1.0,1462213497\n624,129659,3.5,1473508483\n624,129737,2.0,1455989380\n624,129937,2.0,1458423103\n624,130083,2.0,1465066042\n624,130450,1.5,1474979005\n624,131013,2.0,1456147797\n624,131714,1.5,1460395876\n624,132046,2.0,1460208835\n624,132157,1.5,1459517655\n624,132333,5.0,1436031040\n624,132462,1.0,1454257367\n624,132488,2.0,1448121361\n624,132618,1.5,1475668755\n624,132796,1.5,1461954152\n624,133281,2.0,1467568187\n624,133365,2.0,1465066061\n624,133377,1.5,1474972054\n624,133419,3.0,1460403925\n624,133545,1.0,1459512439\n624,133782,2.0,1467482303\n624,133798,1.5,1468076797\n624,134130,4.0,1475668748\n624,134158,1.5,1459596384\n624,134368,3.0,1471809278\n624,134393,4.0,1468095409\n624,134859,3.5,1467458600\n624,134881,4.0,1472153260\n624,135137,2.5,1463242723\n624,135518,2.0,1470249128\n624,135536,3.0,1470416022\n624,135569,2.5,1469050657\n624,135861,4.0,1466434592\n624,135887,2.5,1473969899\n624,136020,3.0,1456147804\n624,136305,1.0,1443283700\n624,136598,1.5,1472294254\n624,136654,1.5,1459164933\n624,136666,1.0,1462023798\n624,136800,1.5,1462127826\n624,136816,2.5,1451771590\n624,136864,2.0,1458847358\n624,138036,2.0,1474657854\n624,138208,3.5,1443733663\n624,138546,1.5,1450297616\n624,139415,3.0,1467397459\n624,139642,3.0,1465727277\n624,139915,2.0,1468319799\n624,140237,2.0,1472294240\n624,140725,3.0,1462187665\n624,141422,2.5,1475668765\n624,142448,3.0,1472492996\n624,142536,2.0,1473962172\n624,142997,2.5,1476465026\n624,143255,1.5,1474309547\n624,143257,2.5,1461356507\n624,143410,2.0,1474224802\n624,143472,1.5,1459171686\n624,144714,1.5,1474972061\n624,145150,3.0,1476465033\n624,146688,2.0,1472820632\n624,149590,2.5,1464975088\n624,149612,2.0,1472845892\n624,150401,3.0,1471897318\n624,157407,1.5,1476469445\n624,160440,1.5,1470510722\n624,161830,1.0,1472493010\n624,161918,1.5,1472929873\n625,337,4.0,1452848472\n625,509,3.5,1452848603\n625,527,5.0,1452849310\n625,1197,4.0,1452849332\n625,1544,4.0,1452848690\n625,1682,4.5,1452828156\n625,1721,3.5,1452828678\n625,1873,3.5,1452828466\n625,2710,1.5,1452828184\n625,3000,4.5,1452849063\n625,3160,4.0,1452848900\n625,3785,0.5,1452849199\n625,4638,3.5,1452828343\n625,4816,1.5,1452850416\n625,4878,4.0,1452848448\n625,4973,4.0,1452828160\n625,4995,5.0,1452828156\n625,5617,4.0,1452852354\n625,5618,4.0,1452828193\n625,5989,5.0,1452848468\n625,8368,4.0,1452848656\n625,33004,4.0,1452850907\n625,41566,4.0,1452849727\n625,44191,5.0,1452848602\n625,48774,4.0,1452849099\n625,50872,4.0,1452848984\n625,63082,4.0,1452848899\n625,66097,4.5,1452852786\n625,68358,4.5,1452849101\n625,68954,4.0,1452848731\n625,69529,4.0,1452849692\n625,69844,4.0,1452851762\n625,71462,4.5,1452850059\n625,72641,4.5,1452850057\n625,72998,4.0,1452848733\n625,73017,4.5,1452849705\n625,74458,4.5,1452849282\n625,79132,5.0,1452848437\n625,81562,4.0,1452852963\n625,81591,5.0,1452850861\n625,85414,4.5,1452852046\n625,85774,5.0,1452849976\n625,88140,4.5,1452852818\n625,88744,4.0,1452852820\n625,88810,5.0,1452849344\n625,89864,4.0,1452853276\n625,91500,5.0,1452851891\n625,91542,4.5,1452849690\n625,96610,4.5,1452852220\n625,96821,5.0,1452849430\n625,97938,4.5,1452853018\n625,98491,4.5,1452849344\n625,99114,4.0,1452849662\n625,102445,4.0,1452852959\n625,102993,4.5,1452850054\n625,104841,4.0,1452852050\n625,106642,4.0,1452849332\n625,109374,4.5,1452850935\n625,109487,5.0,1452849202\n625,110102,4.0,1452853116\n625,112552,5.0,1452850052\n625,115617,4.5,1452849308\n625,115713,4.5,1452858146\n625,116797,5.0,1452849308\n625,117895,4.0,1452858189\n625,121231,2.5,1452858177\n625,134853,4.5,1452828036\n626,217,2.0,974769992\n626,223,4.0,974768972\n626,247,4.0,974769992\n626,260,3.0,974770072\n626,366,4.0,974769880\n626,377,5.0,974777959\n626,380,5.0,974778132\n626,593,4.0,974769992\n626,785,4.0,974769294\n626,799,3.0,974769880\n626,858,5.0,974770048\n626,891,2.0,974778174\n626,928,4.0,974769992\n626,968,4.0,974769446\n626,1036,4.0,974770141\n626,1073,5.0,974778019\n626,1197,4.0,974770141\n626,1198,4.0,974768616\n626,1210,4.0,974768558\n626,1258,4.0,974769824\n626,1407,5.0,974769880\n626,1513,5.0,974769544\n626,1556,4.0,974777959\n626,1623,2.0,974769655\n626,1682,5.0,974778511\n626,1833,3.0,974768558\n626,1911,2.0,974769117\n626,1916,5.0,974778396\n626,1968,5.0,974778372\n626,1982,5.0,974778174\n626,1983,4.0,974778174\n626,1984,1.0,974778174\n626,1985,3.0,974778174\n626,1986,3.0,974778174\n626,1994,4.0,974769824\n626,2028,4.0,974768616\n626,2107,4.0,974778174\n626,2186,5.0,974769992\n626,2188,3.0,974768839\n626,2194,4.0,974770072\n626,2288,3.0,974769824\n626,2355,2.0,974768972\n626,2376,4.0,974768581\n626,2394,3.0,974769510\n626,2395,2.0,974769544\n626,2396,4.0,974769544\n626,2428,4.0,974769159\n626,2433,2.0,974768972\n626,2455,3.0,974769824\n626,2485,4.0,974769544\n626,2490,4.0,974769476\n626,2491,3.0,974769585\n626,2502,4.0,974769446\n626,2546,2.0,974769003\n626,2572,3.0,974768839\n626,2574,3.0,974769446\n626,2580,5.0,974769229\n626,2581,4.0,974769446\n626,2599,5.0,974769159\n626,2600,2.0,974769672\n626,2605,4.0,974769159\n626,2606,2.0,974769265\n626,2676,3.0,974769265\n626,2683,3.0,974768877\n626,2688,4.0,974769196\n626,2694,4.0,974768907\n626,2699,3.0,974768877\n626,2700,4.0,974769585\n626,2701,3.0,974769655\n626,2706,4.0,974768839\n626,2707,3.0,974768877\n626,2710,3.0,974768907\n626,2712,5.0,974769159\n626,2713,2.0,974769294\n626,2716,4.0,974769229\n626,2718,2.0,974769117\n626,2719,4.0,974769229\n626,2720,2.0,974769265\n626,2722,3.0,974769003\n626,2723,1.0,974769446\n626,2724,3.0,974769544\n626,2739,5.0,974778476\n626,2759,3.0,974769003\n626,2761,4.0,974769265\n626,2762,5.0,974769585\n626,2770,5.0,974768907\n626,2806,4.0,974769621\n626,2840,2.0,974769585\n626,2841,4.0,974769585\n626,2858,5.0,974768779\n626,2881,3.0,974769117\n626,2888,1.0,974769117\n626,2906,2.0,974769510\n626,2907,1.0,974769621\n626,2908,4.0,974768907\n626,2947,5.0,974770185\n626,2959,4.0,974769196\n626,2976,2.0,974768972\n626,2987,4.0,974769655\n626,2995,2.0,974769229\n626,2997,4.0,974768877\n626,3005,2.0,974768907\n626,3016,4.0,974769003\n626,3051,3.0,974768877\n626,3081,4.0,974769585\n626,3113,3.0,974769159\n626,3114,4.0,974769621\n626,3160,4.0,974769294\n626,3174,4.0,974769294\n626,3175,5.0,974769196\n626,3176,3.0,974769621\n626,3203,4.0,974769003\n626,3238,3.0,974769159\n626,3273,5.0,974769544\n626,3285,4.0,974768877\n626,3298,3.0,974768907\n626,3300,3.0,974769476\n626,3325,2.0,974769446\n626,3354,2.0,974769369\n626,3358,5.0,974778268\n626,3408,5.0,974769159\n626,3409,3.0,974769196\n626,3451,5.0,974778341\n626,3499,5.0,974769880\n626,3510,4.0,974769196\n626,3511,3.0,974768616\n626,3534,4.0,974768839\n626,3564,3.0,974769196\n626,3565,5.0,974769655\n626,3578,2.0,974769229\n626,3593,1.0,974768877\n626,3615,3.0,974769117\n626,3623,1.0,974769369\n626,3717,2.0,974769229\n626,3745,3.0,974769621\n626,3752,3.0,974769369\n626,3753,4.0,974769476\n626,3754,4.0,974768839\n626,3793,5.0,974769672\n626,3798,5.0,974769655\n626,3930,4.0,974777872\n626,3946,2.0,974777825\n626,3948,4.0,974777825\n626,3968,2.0,974777499\n626,3969,5.0,974777499\n626,3973,3.0,974777499\n626,3975,3.0,974777499\n626,3977,4.0,974770048\n626,3979,4.0,974777463\n626,3981,2.0,974769510\n627,6,4.0,1201381361\n627,19,1.0,1201389367\n627,36,4.0,1201383202\n627,47,4.0,1201380839\n627,50,4.0,1201378634\n627,95,2.0,1201381346\n627,110,4.0,1201381096\n627,147,4.0,1201378051\n627,150,3.0,1201381127\n627,165,3.5,1201380769\n627,185,2.5,1201381250\n627,208,3.0,1201381484\n627,231,1.5,1201381241\n627,260,4.0,1201380786\n627,266,4.0,1201389538\n627,288,3.5,1201381398\n627,292,3.0,1201381104\n627,293,3.5,1201389394\n627,296,3.5,1201380894\n627,318,4.5,1201378628\n627,339,2.5,1201382052\n627,344,1.0,1201381026\n627,353,3.5,1201389862\n627,356,3.0,1201381067\n627,357,3.0,1201381184\n627,364,2.5,1201380972\n627,367,1.0,1201389458\n627,380,3.0,1201381049\n627,442,2.5,1201389469\n627,480,2.5,1201380753\n627,508,3.5,1201389413\n627,527,4.0,1201378616\n627,539,1.5,1201381160\n627,553,2.5,1201389716\n627,586,1.5,1201381286\n627,587,3.0,1201381480\n627,589,4.0,1201380869\n627,590,2.5,1201380792\n627,593,4.0,1201380949\n627,597,3.5,1201381004\n627,608,3.5,1201381961\n627,648,3.5,1201381033\n627,733,2.0,1201380954\n627,736,2.5,1201380911\n627,778,3.5,1201389753\n627,780,0.5,1201380890\n627,784,1.0,1201389692\n627,786,1.5,1201389309\n627,832,3.5,1201389878\n627,839,3.5,1201378012\n627,858,5.0,1201378600\n627,920,1.0,1201389563\n627,1036,3.5,1201389376\n627,1047,3.0,1201377822\n627,1214,4.0,1201381756\n627,1221,5.0,1201378867\n627,1240,3.5,1201381279\n627,1246,2.5,1201382017\n627,1258,3.5,1201381767\n627,1307,1.5,1201389286\n627,1370,3.5,1201389520\n627,1380,3.0,1201389499\n627,1387,3.0,1201381347\n627,1391,1.0,1201389667\n627,1393,3.0,1201381256\n627,1407,3.5,1201389407\n627,1485,1.0,1201389246\n627,1515,1.0,1201378082\n627,1527,3.0,1201381053\n627,1552,1.0,1201389454\n627,1573,1.0,1201381493\n627,1580,3.0,1201381100\n627,1586,4.0,1201389112\n627,1608,1.0,1201389326\n627,1617,4.0,1201380992\n627,1625,4.5,1201389319\n627,1641,1.0,1201381760\n627,1645,3.5,1201389785\n627,1682,3.5,1201381464\n627,1704,4.0,1201381180\n627,1721,3.5,1201381301\n627,1722,2.0,1201377772\n627,1779,2.5,1201377942\n627,1876,1.0,1201389720\n627,1917,0.5,1201381086\n627,1923,1.0,1201380981\n627,1997,4.0,1201389671\n627,2023,4.0,1201378868\n627,2028,1.5,1201380977\n627,2167,2.5,1201389793\n627,2231,4.0,1201389060\n627,2232,4.0,1201379633\n627,2329,4.0,1201381749\n627,2353,3.5,1201389339\n627,2387,3.5,1201378439\n627,2470,2.5,1201389514\n627,2542,4.0,1201389800\n627,2571,5.0,1201379937\n627,2640,4.0,1201382045\n627,2671,3.5,1201389610\n627,2683,1.5,1201381060\n627,2699,2.5,1201381904\n627,2706,2.5,1201381782\n627,2707,4.0,1201377891\n627,2710,4.0,1201381651\n627,2712,4.0,1201381970\n627,2762,4.0,1201381076\n627,2858,3.5,1201380749\n627,2959,4.0,1201379986\n627,3147,3.5,1201381326\n627,3249,3.0,1201378226\n627,3253,1.0,1201389707\n627,3408,3.0,1201381258\n627,3418,3.0,1201389236\n627,3484,3.0,1201378460\n627,3578,4.0,1201380897\n627,3717,2.5,1201389873\n627,3755,1.0,1201389803\n627,3977,1.5,1201382056\n627,3980,2.5,1201378201\n627,3994,1.5,1201381352\n627,3996,4.5,1201379908\n627,4011,3.5,1201381403\n627,4022,3.0,1201381134\n627,4025,2.0,1201389763\n627,4027,3.0,1201380874\n627,4034,4.0,1201380811\n627,4226,4.5,1201380771\n627,4246,3.0,1201382026\n627,4306,3.5,1201381253\n627,4447,3.5,1201389840\n627,4720,4.0,1201389675\n627,4848,3.5,1201389548\n627,4896,4.0,1201381043\n627,4963,4.0,1201380776\n627,4993,4.5,1201380737\n627,5010,2.0,1201389436\n627,5218,4.0,1201377835\n627,5349,2.5,1201381189\n627,5418,4.0,1201380996\n627,5464,2.5,1201389434\n627,5669,4.0,1201378976\n627,5816,4.0,1201381779\n627,5952,4.5,1201380823\n627,5989,3.5,1201380806\n627,6365,2.5,1201379948\n627,6373,3.5,1201389621\n627,6539,4.0,1201381233\n627,6863,2.0,1201381598\n627,6934,2.5,1201379951\n627,6942,4.0,1201389360\n627,6953,4.0,1201378803\n627,7153,2.5,1201379112\n627,7254,5.0,1201389705\n627,7361,3.5,1201381156\n627,7458,3.5,1201379644\n627,8132,4.5,1201378734\n627,8368,4.0,1201381357\n627,8464,3.0,1201382014\n627,8622,4.5,1201378994\n627,8798,4.0,1201382040\n627,8957,4.5,1201379541\n627,26462,3.0,1201378688\n627,30707,2.0,1201381412\n627,33004,1.5,1201389524\n627,33166,5.0,1201378921\n627,33794,4.0,1201377803\n627,34048,1.0,1201381981\n627,39183,4.0,1201389229\n627,39446,4.0,1201379544\n627,40815,4.0,1201381388\n627,43921,4.0,1201389164\n627,44191,4.5,1201379563\n627,45722,2.5,1201381208\n627,46723,4.0,1201389747\n627,47610,3.5,1201389711\n627,48385,3.5,1201380931\n627,48516,4.0,1201381176\n627,48774,3.0,1201381238\n627,48877,4.0,1201379546\n627,49272,4.0,1201379865\n627,49530,4.0,1201389661\n627,51255,4.0,1201390028\n627,51662,4.5,1201378218\n627,52952,4.0,1201381395\n627,53125,2.5,1201389483\n627,53322,3.5,1201389542\n627,53894,4.0,1201378548\n627,54272,4.0,1201380900\n627,55290,4.0,1201379056\n627,55577,4.0,1201379548\n627,55765,4.0,1201380193\n627,56174,4.0,1202932159\n627,57368,0.5,1202932028\n628,16,3.0,1357725723\n628,29,4.0,1357725108\n628,32,3.5,1357725317\n628,58,3.5,1357725016\n628,110,1.5,1413103944\n628,236,0.5,1357725019\n628,293,5.0,1357725619\n628,342,4.0,1357725010\n628,356,2.5,1413103901\n628,555,3.5,1357725727\n628,589,3.0,1413103741\n628,914,2.0,1357725084\n628,924,2.5,1357725368\n628,1093,2.5,1357725119\n628,1148,2.5,1413103753\n628,1175,4.0,1413103793\n628,1188,4.0,1357725147\n628,1197,1.5,1413103918\n628,1209,2.5,1413103802\n628,1262,3.0,1413103940\n628,1276,4.0,1357725035\n628,1321,2.5,1357725139\n628,1610,2.0,1413103823\n628,1653,4.5,1413103779\n628,1682,3.0,1413103760\n628,1747,2.5,1357725029\n628,1748,3.0,1413103798\n628,1884,2.5,1413103904\n628,1950,4.0,1413103827\n628,2020,2.5,1357725135\n628,2100,1.5,1357724999\n628,2145,2.0,1357725133\n628,2289,2.5,1357725150\n628,2692,3.5,1413103928\n628,2763,2.0,1357725006\n628,2951,3.0,1413103936\n628,3006,3.0,1357725093\n628,3039,3.0,1357725096\n628,3068,2.5,1413103858\n628,3198,4.0,1357725713\n628,3363,4.0,1357725143\n628,3507,2.5,1413103841\n628,3508,2.5,1413103846\n628,3551,3.5,1413103836\n628,3681,4.0,1413103787\n628,4011,3.0,1357725684\n628,4262,4.0,1357725716\n628,4327,2.5,1413103833\n628,4855,3.0,1413103813\n628,4878,4.0,1357725655\n628,4973,3.0,1413103911\n628,5618,3.0,1413103933\n628,5690,3.0,1413103713\n628,5782,5.0,1413103729\n628,5945,4.0,1357725515\n628,5954,3.0,1357725720\n628,6502,3.5,1357725406\n628,6658,1.5,1357725280\n628,6807,2.0,1413103907\n628,6870,2.5,1357725737\n628,7090,3.0,1413103756\n628,8014,2.0,1413103718\n628,8874,4.0,1413103852\n628,27773,5.0,1357725631\n628,27803,3.5,1413103848\n628,31410,4.0,1413103725\n628,44555,4.0,1357725616\n628,44694,3.5,1413103878\n628,48394,4.0,1357725644\n628,48872,4.0,1357725335\n628,52767,4.0,1357725386\n628,54997,1.5,1357725441\n628,55069,3.5,1357725444\n628,55118,3.0,1413103914\n628,57669,2.0,1413103925\n628,58303,3.0,1413103810\n628,61240,4.0,1413103766\n628,68237,3.0,1413103899\n628,69757,2.0,1357725270\n628,70286,3.5,1413103922\n628,71033,4.0,1357725669\n628,73344,4.5,1413103737\n628,77846,4.0,1357725313\n628,79132,3.5,1357725622\n628,86142,2.5,1357725326\n628,88129,2.5,1413103750\n628,97304,3.0,1357725693\n629,24,1.0,841414132\n629,34,2.0,841414132\n629,110,5.0,841414056\n629,150,3.0,841414022\n629,208,5.0,841414087\n629,224,3.0,841414227\n629,266,3.0,841414056\n629,293,1.0,841414108\n629,296,3.0,841414023\n629,340,1.0,841414175\n629,356,5.0,841414056\n629,364,2.0,841414206\n629,368,5.0,841414287\n629,380,4.0,841414175\n629,383,3.0,841414108\n629,440,3.0,841414272\n629,457,5.0,841414132\n629,458,5.0,841414272\n629,480,2.0,841414087\n629,491,5.0,841414227\n629,500,5.0,841414227\n629,527,3.0,841414056\n629,539,5.0,841414287\n629,555,3.0,841414206\n629,586,5.0,841414108\n629,587,5.0,841414132\n629,588,3.0,841414250\n629,589,1.0,841414087\n629,590,5.0,841414021\n629,593,5.0,841414206\n629,596,3.0,841414227\n629,597,4.0,841414272\n629,610,3.0,841414108\n629,786,1.0,841414316\n630,1,4.0,1443807734\n630,356,4.5,1443807710\n630,593,2.0,1443807719\n630,858,5.0,1443807838\n630,904,5.0,1443807884\n630,908,4.0,1443808019\n630,912,5.0,1443807875\n630,916,4.0,1443808383\n630,1207,4.5,1443808144\n630,1213,4.0,1443808037\n630,1221,5.0,1443807841\n630,1247,5.0,1443808345\n630,1252,4.5,1443808059\n630,1270,3.0,1443807707\n630,2571,3.0,1443807727\n630,2712,5.0,1443808790\n630,3052,3.5,1443808800\n630,3948,3.0,1443808804\n630,4262,3.5,1443808884\n630,4973,5.0,1443808746\n630,58559,3.0,1443808760\n630,79132,3.5,1443808768\n630,131724,4.5,1443807954\n631,47,5.0,897771523\n631,318,5.0,897771545\n631,953,4.0,897771576\n631,1183,4.0,897771039\n631,1196,5.0,897771523\n631,1198,4.0,897771576\n631,1387,5.0,897771576\n631,1407,5.0,897771039\n631,1414,2.0,897771069\n631,1422,3.0,897771245\n631,1438,4.0,897771245\n631,1479,2.0,897771245\n631,1485,3.0,897771175\n631,1488,3.0,897771271\n631,1515,2.0,897771271\n631,1584,4.0,897771131\n631,1586,3.0,897771157\n631,1597,4.0,897771175\n631,1608,3.0,897771131\n631,1614,3.0,897771069\n631,1616,3.0,897771157\n631,1617,5.0,897770993\n631,1619,4.0,897771107\n631,1625,5.0,897771039\n631,1672,4.0,897771069\n631,1673,3.0,897771107\n631,1686,3.0,897771069\n631,1687,3.0,897771383\n631,1689,4.0,897771340\n631,1704,5.0,897770993\n631,1722,3.0,897771194\n632,65,3.0,1263846190\n632,88,4.5,1263846185\n632,110,5.0,1263871078\n632,150,4.0,1263871174\n632,296,5.0,1263871101\n632,318,4.5,1263871159\n632,344,4.0,1264547511\n632,480,4.5,1264547283\n632,589,5.0,1264547427\n632,593,5.0,1263871107\n632,609,3.0,1264547562\n632,780,4.0,1263871096\n632,1015,4.5,1263846283\n632,1100,4.0,1263846141\n632,1198,4.0,1264547463\n632,1431,3.5,1263846317\n632,1461,4.0,1263846366\n632,1721,2.5,1264547476\n632,2028,4.5,1264547280\n632,2501,5.0,1263845994\n632,2513,3.5,1264547578\n632,2571,4.5,1264547440\n632,2948,4.0,1263846104\n632,2959,4.5,1264547533\n632,2991,4.0,1263846202\n632,3360,4.0,1263846207\n632,3555,3.5,1263846098\n632,3861,3.5,1263846359\n632,4008,4.0,1263846240\n632,4306,5.0,1263871067\n632,4623,4.0,1263846259\n632,4963,4.5,1264547522\n632,8961,4.0,1264547324\n632,33794,4.0,1264547446\n632,54736,4.5,1264547190\n632,58559,5.0,1263871057\n632,59315,5.0,1264547506\n632,68157,4.5,1263870832\n632,69640,3.0,1264547094\n633,6,3.0,848518408\n633,21,4.0,848518247\n633,36,3.0,848518247\n633,47,3.0,848518278\n633,62,3.0,848518358\n633,150,4.0,848517899\n633,161,3.0,848518115\n633,185,2.0,848518430\n633,277,3.0,848518496\n633,292,3.0,848518310\n633,296,3.0,848517899\n633,316,2.0,848518430\n633,318,4.0,848517977\n633,329,3.0,848518115\n633,356,4.0,848517977\n633,357,3.0,848518513\n633,364,3.0,848518278\n633,377,3.0,848518358\n633,380,2.0,848517899\n633,410,3.0,848518581\n633,440,3.0,848518358\n633,457,4.0,848518114\n633,480,3.0,848518115\n633,500,3.0,848518377\n633,508,3.0,848518115\n633,539,3.0,848518278\n633,587,3.0,848518496\n633,588,3.0,848518247\n633,589,3.0,848518278\n633,590,4.0,848517899\n633,592,3.0,848517899\n633,1073,4.0,848518536\n634,180,3.5,1309492375\n634,256,1.0,1309492258\n634,318,5.0,1309492538\n634,355,1.5,1309492267\n634,585,1.0,1309492291\n634,858,5.0,1309492488\n634,1129,3.0,1309492321\n634,1221,5.0,1309492491\n634,1293,3.0,1309492274\n634,1371,3.5,1309492279\n634,1405,3.0,1309492306\n634,1663,4.0,1309492338\n634,2002,2.0,1309492309\n634,2021,2.0,1309492312\n634,2023,2.5,1309492493\n634,2427,4.0,1309492342\n634,2641,2.0,1309492346\n634,3255,1.5,1309492282\n634,3552,2.0,1309492352\n634,3671,3.5,1309492285\n634,4085,3.0,1309492251\n634,86781,2.5,1309492532\n635,50,3.0,1448301664\n635,111,3.5,1448301764\n635,296,3.5,1448301729\n635,318,3.0,1448301659\n635,527,2.0,1448301669\n635,593,5.0,1448301726\n635,608,4.5,1448301753\n635,903,4.0,1448301807\n635,1089,4.0,1448301756\n635,1193,4.0,1448301675\n635,1201,2.5,1448301738\n635,1206,4.0,1448301850\n635,1219,5.0,1448301810\n635,1222,3.5,1448301802\n635,1485,2.0,1448301703\n635,1732,2.5,1448301858\n635,2329,4.0,1448301744\n635,2918,2.5,1448301864\n635,2959,3.5,1448301725\n635,3994,4.0,1448301917\n635,8874,3.5,1448301885\n635,112552,3.0,1448301797\n636,1,3.0,855227186\n636,17,3.0,855227188\n636,18,3.0,855227364\n636,25,4.0,855227188\n636,29,4.0,855227415\n636,30,4.0,855227524\n636,32,4.0,855227184\n636,36,4.0,855227232\n636,52,2.0,855227262\n636,65,2.0,855227321\n636,68,4.0,855227547\n636,85,5.0,855227416\n636,88,3.0,855227385\n636,102,3.0,855227385\n636,141,3.0,855227186\n636,260,3.0,855227294\n636,562,4.0,855227547\n636,608,5.0,855227232\n636,639,3.0,855227547\n636,640,4.0,855227364\n636,648,4.0,855227187\n636,663,3.0,855227415\n636,724,3.0,855227339\n636,736,3.0,855227186\n636,762,3.0,855227294\n636,766,5.0,855227523\n636,778,5.0,855227321\n636,781,3.0,855227547\n636,788,3.0,855227262\n636,1073,5.0,855227232\n637,24,3.5,1231346461\n637,32,5.0,1343142621\n637,50,5.0,1343134397\n637,60,3.0,1231346573\n637,135,2.5,1231346553\n637,276,3.0,1231346581\n637,318,5.0,1343134386\n637,524,5.0,1231346519\n637,750,5.0,1343134420\n637,849,4.0,1231346495\n637,858,5.0,1343134393\n637,1203,4.5,1343142617\n637,1221,5.0,1343134402\n637,1409,4.0,1231346565\n637,1586,4.0,1231346547\n637,1947,2.5,1231346476\n637,2231,5.0,1231346568\n637,2580,3.5,1231346453\n637,2605,4.0,1231346486\n637,2746,3.5,1231346491\n637,2944,5.0,1231346534\n637,3107,4.5,1231346504\n637,3361,5.0,1231346509\n637,3421,3.5,1343134381\n637,3489,3.5,1231346518\n638,327,4.0,1307558400\n638,898,3.5,1307558493\n638,1019,4.5,1307558479\n638,1188,3.0,1307558409\n638,1223,4.5,1307558406\n638,1378,4.0,1307558438\n638,1882,1.0,1307558388\n638,2094,3.0,1307558444\n638,2359,3.5,1307558441\n638,2391,1.0,1307558499\n638,2478,4.5,1307558482\n638,2501,2.0,1307558393\n638,2572,4.5,1307558996\n638,3148,2.5,1307558420\n638,3247,3.5,1307558423\n638,3354,1.5,1307558486\n638,3396,3.5,1307558426\n638,3826,0.5,1307558429\n638,4792,3.5,1307559221\n638,58293,2.0,1307559001\n639,11,4.0,832450629\n639,24,3.0,832450630\n639,31,3.0,832451040\n639,39,4.0,833991986\n639,46,3.0,832765088\n639,47,3.0,832450970\n639,110,4.0,832450943\n639,111,5.0,832450970\n639,150,4.0,832450891\n639,151,4.0,832451002\n639,160,2.0,833991986\n639,161,4.0,833991762\n639,165,3.0,833991717\n639,170,3.0,832451150\n639,185,2.0,833991819\n639,191,3.0,832765146\n639,193,3.0,832451071\n639,196,3.0,833992054\n639,198,2.0,832764230\n639,208,3.0,833991819\n639,225,4.0,832450943\n639,231,3.0,833991717\n639,246,5.0,832451071\n639,254,3.0,832765321\n639,277,4.0,832451070\n639,280,4.0,832451121\n639,282,4.0,832451003\n639,288,3.0,833991819\n639,292,3.0,832450943\n639,296,4.0,833991650\n639,299,4.0,832764308\n639,300,4.0,832450943\n639,318,5.0,832450891\n639,329,3.0,832450943\n639,339,3.0,833991762\n639,344,3.0,833991650\n639,350,3.0,832764136\n639,364,3.0,833992054\n639,371,4.0,832765045\n639,380,3.0,833991650\n639,381,3.0,832451093\n639,410,4.0,833991819\n639,427,3.0,832451150\n639,432,3.0,833991985\n639,440,4.0,832764103\n639,454,3.0,832451121\n639,457,4.0,833991879\n639,515,4.0,832764230\n639,553,2.0,832764038\n639,588,3.0,833991650\n639,590,4.0,832450891\n639,592,2.0,832450890\n639,593,4.0,833991879\n639,595,3.0,833991717\n639,736,3.0,832450630\n640,3,4.0,860950973\n640,5,3.0,860950972\n640,9,3.0,860951277\n640,12,3.0,860951390\n640,14,2.0,860951181\n640,17,4.0,860950846\n640,36,5.0,860950972\n640,52,2.0,860951083\n640,62,5.0,860950846\n640,74,4.0,860951390\n640,95,3.0,860950846\n640,99,1.0,860951719\n640,104,3.0,860951083\n640,107,3.0,860951390\n640,116,5.0,860952793\n640,140,3.0,860951277\n640,141,5.0,860950846\n640,260,5.0,860950973\n640,494,4.0,860950973\n640,608,5.0,860950972\n640,609,3.0,860951513\n640,631,5.0,860951513\n640,648,3.0,860950846\n640,671,3.0,860951513\n640,708,3.0,860951083\n640,711,3.0,860951390\n640,736,3.0,860950846\n640,761,5.0,860951513\n640,762,3.0,860951181\n640,780,5.0,860950845\n640,783,2.0,860951277\n640,784,3.0,860951083\n640,788,3.0,860951083\n640,830,4.0,860952019\n640,858,5.0,860951513\n640,1042,4.0,860952310\n640,1059,4.0,860951719\n640,1073,3.0,860950972\n640,1183,5.0,860951719\n640,1210,3.0,860951277\n640,1356,5.0,860951181\n640,1357,4.0,860952454\n640,1363,4.0,860952867\n640,1367,4.0,860951619\n640,1393,4.0,860951513\n640,1398,3.0,860954769\n640,1401,4.0,860954538\n640,1416,4.0,860952580\n640,1476,3.0,860953577\n641,1,4.0,850021197\n641,2,4.0,834636796\n641,3,3.0,833955544\n641,5,4.0,834636108\n641,6,4.0,851304369\n641,7,4.0,834636169\n641,10,3.0,834636305\n641,11,4.0,834636769\n641,19,3.0,841551413\n641,22,4.0,841551328\n641,27,4.0,834802130\n641,31,4.0,841551303\n641,32,4.0,834636631\n641,34,4.0,834636605\n641,36,4.0,850021177\n641,39,5.0,834636664\n641,46,4.0,835844739\n641,52,4.0,851304179\n641,61,4.0,856747998\n641,62,4.0,834984635\n641,64,3.0,834802028\n641,74,4.0,834802130\n641,79,3.0,836882146\n641,94,4.0,850021227\n641,95,3.0,834636796\n641,102,3.0,851304419\n641,113,3.0,850021361\n641,116,5.0,835844561\n641,135,3.0,850023534\n641,140,4.0,835844812\n641,141,5.0,834802101\n641,150,4.0,834636219\n641,153,3.0,834636246\n641,165,4.0,834636246\n641,185,4.0,834636332\n641,186,3.0,834636769\n641,196,3.0,834636769\n641,203,3.0,834984635\n641,204,3.0,834636796\n641,207,3.0,841551362\n641,208,3.0,834636332\n641,216,2.0,841551232\n641,218,4.0,834984687\n641,219,4.0,841551453\n641,224,4.0,839397349\n641,231,5.0,834636276\n641,236,4.0,834636741\n641,252,4.0,834636769\n641,253,4.0,834636332\n641,261,5.0,836533682\n641,262,5.0,834984658\n641,277,3.0,836533724\n641,282,4.0,834636740\n641,289,4.0,841551362\n641,292,4.0,834636305\n641,296,3.0,834636219\n641,300,4.0,834636572\n641,317,3.0,834636631\n641,318,5.0,834636276\n641,337,4.0,834636740\n641,339,5.0,834636305\n641,342,4.0,834984607\n641,344,5.0,834636246\n641,345,5.0,834802101\n641,349,4.0,834636246\n641,350,4.0,841551453\n641,351,4.0,841551438\n641,356,5.0,834984620\n641,357,5.0,834984745\n641,361,3.0,841551303\n641,364,4.0,834636704\n641,367,3.0,834636740\n641,370,3.0,839397316\n641,372,4.0,839397316\n641,377,5.0,836533780\n641,380,4.0,834636219\n641,381,5.0,841551394\n641,410,4.0,834636605\n641,432,3.0,834636664\n641,434,3.0,834636305\n641,435,3.0,834636704\n641,440,5.0,836533765\n641,454,3.0,834636704\n641,457,4.0,834636572\n641,466,3.0,839397316\n641,474,5.0,836533752\n641,475,4.0,834984547\n641,480,4.0,836533780\n641,494,3.0,850021242\n641,500,5.0,836533738\n641,514,3.0,841551362\n641,536,4.0,834984699\n641,539,5.0,834984763\n641,543,3.0,841551244\n641,562,5.0,853994125\n641,585,3.0,841551257\n641,587,4.0,841551394\n641,588,4.0,834636246\n641,589,4.0,841551303\n641,590,3.0,834636219\n641,592,3.0,834636219\n641,593,5.0,834636572\n641,597,4.0,841551413\n641,608,4.0,853994141\n641,627,3.0,855981007\n641,628,4.0,850021197\n641,638,4.0,850021377\n641,647,4.0,839397349\n641,648,3.0,850021212\n641,705,4.0,861415895\n641,708,4.0,839397283\n641,724,3.0,850023465\n641,733,3.0,839397283\n641,736,5.0,834636485\n641,780,5.0,839397283\n641,786,4.0,850021242\n641,802,4.0,855980932\n641,804,3.0,850023601\n641,805,5.0,850023756\n641,830,3.0,850021197\n641,832,5.0,850021197\n641,837,4.0,850023643\n641,838,5.0,850021177\n641,852,4.0,850023720\n641,986,3.0,851304214\n641,1020,4.0,841551346\n641,1028,4.0,841551346\n641,1032,4.0,841551377\n641,1042,3.0,861415917\n641,1057,5.0,861415976\n641,1059,5.0,853994107\n641,1061,4.0,861415933\n641,1073,4.0,850021177\n641,1183,5.0,861415917\n641,1366,5.0,855980942\n641,1380,5.0,850023798\n641,1381,3.0,850023798\n641,1391,3.0,856748022\n641,1407,5.0,856747910\n641,1416,4.0,856747883\n642,162,5.0,881526314\n642,457,2.0,881526366\n642,549,4.0,881526337\n642,800,4.0,881526394\n642,899,5.0,881526394\n642,906,3.0,881526314\n642,913,5.0,881526314\n642,924,4.0,881526314\n642,933,4.0,881526314\n642,942,4.0,881526394\n642,950,5.0,881526394\n642,954,5.0,881526314\n642,969,4.0,881526394\n642,1057,4.0,881526071\n642,1079,4.0,881526394\n642,1084,5.0,881526394\n642,1199,5.0,881526337\n642,1218,5.0,881526366\n642,1228,4.0,881526337\n642,1230,5.0,881526314\n642,1251,3.0,881526366\n642,1254,4.0,881526337\n642,1414,4.0,881526029\n642,1594,5.0,881526049\n642,1597,2.0,881526029\n642,1600,4.0,881526221\n642,1601,4.0,881526098\n642,1617,4.0,881526003\n642,1633,3.0,881526003\n642,1639,3.0,881526029\n642,1643,3.0,881526098\n642,1644,2.0,881526118\n642,1649,5.0,881526098\n642,1658,2.0,881526160\n642,1673,3.0,881526071\n642,1676,4.0,881526137\n643,50,5.0,1372518445\n643,204,2.0,1372517894\n643,260,5.0,1372518503\n643,318,5.0,1372518439\n643,858,5.0,1372518442\n643,1196,5.0,1372518513\n643,1221,5.0,1372518457\n643,1385,2.0,1372517946\n643,1681,2.0,1372518189\n643,1687,3.5,1372518013\n643,1792,3.5,1372518007\n643,1918,2.5,1372517865\n643,2379,2.0,1372518074\n643,2381,2.5,1372518131\n643,2571,4.5,1372518501\n643,2959,5.0,1372518483\n643,3452,2.0,1372518033\n643,4673,3.0,1372518210\n643,4701,2.0,1372517973\n643,5541,2.0,1372518145\n643,8387,0.5,1372518405\n643,53322,3.0,1372518079\n643,58559,5.0,1372518465\n643,98809,4.5,1372518318\n644,4,1.0,944934385\n644,24,3.0,944933494\n644,235,5.0,944934104\n644,348,5.0,944934313\n644,527,5.0,944928937\n644,608,5.0,944934043\n644,785,3.0,944933418\n644,1230,5.0,944929008\n644,1247,5.0,944933908\n644,1354,5.0,944934250\n644,1513,3.0,944933494\n644,1836,5.0,944934001\n644,1911,2.0,944933297\n644,2089,3.0,944928937\n644,2093,4.0,944933494\n644,2108,5.0,944934198\n644,2174,4.0,944928937\n644,2188,2.0,944933227\n644,2336,3.0,944933351\n644,2337,4.0,944933583\n644,2394,4.0,944933495\n644,2395,5.0,944933544\n644,2396,5.0,944933544\n644,2428,3.0,944933351\n644,2580,4.0,944933386\n644,2581,3.0,944933449\n644,2599,5.0,944933352\n644,2606,3.0,944933386\n644,2628,3.0,944929275\n644,2683,2.0,944933227\n644,2699,2.0,944933227\n644,2706,4.0,944933227\n644,2709,2.0,944933418\n644,2710,5.0,944933263\n644,2712,5.0,944933352\n644,2716,4.0,944933352\n644,2762,3.0,944933544\n644,2858,4.0,944933227\n644,2987,3.0,944933583\n645,158,3.0,1053419964\n645,266,3.5,1053420717\n645,277,3.5,1053420036\n645,316,4.0,1053420714\n645,543,3.0,1053420348\n645,596,2.0,1053419972\n645,913,3.5,1053419937\n645,1302,4.0,1053420019\n645,1380,4.5,1053420310\n645,1619,3.0,1053420739\n645,2006,4.0,1053420022\n645,2011,4.0,1053420321\n645,2012,3.5,1053419925\n645,2054,3.5,1053420328\n645,2617,4.0,1053419989\n645,2770,3.0,1053420011\n645,2987,4.5,1053420729\n645,3101,4.5,1053420025\n645,3176,1.0,1053420001\n645,3408,4.5,1053419953\n645,3897,5.0,1053420007\n645,5464,4.0,1053420918\n645,5630,5.0,1053420923\n645,5810,4.0,1053420726\n645,5816,4.0,1053420719\n645,6249,3.0,1053420261\n645,6252,1.5,1053420239\n645,6263,4.0,1053420229\n645,6287,5.0,1053420249\n645,6333,4.5,1053420314\n646,1,5.0,953449518\n646,3,5.0,953451056\n646,48,5.0,953704122\n646,186,4.0,953703866\n646,231,4.0,953450678\n646,258,4.0,953448643\n646,260,5.0,953448040\n646,316,4.0,953448248\n646,317,4.0,953450545\n646,356,5.0,953449488\n646,364,5.0,953704051\n646,368,4.0,953450325\n646,379,4.0,953448443\n646,432,4.0,953450940\n646,435,4.0,953448718\n646,466,4.0,953450789\n646,480,4.0,953448111\n646,500,5.0,953450112\n646,519,4.0,953448748\n646,552,4.0,953450545\n646,575,4.0,953450940\n646,586,5.0,953450606\n646,587,4.0,953450030\n646,588,5.0,953449561\n646,594,4.0,953704020\n646,595,5.0,953704020\n646,596,4.0,953703974\n646,673,2.0,953450886\n646,719,4.0,953450606\n646,720,5.0,953703937\n646,780,5.0,953448281\n646,783,5.0,953704051\n646,785,1.0,953447703\n646,788,5.0,953448407\n646,813,4.0,953450886\n646,837,4.0,953450492\n646,880,2.0,953448670\n646,881,4.0,953450545\n646,888,4.0,953704122\n646,952,4.0,953450283\n646,955,1.0,953449460\n646,1010,4.0,953450492\n646,1014,5.0,953451083\n646,1016,4.0,953450434\n646,1018,5.0,953450886\n646,1019,5.0,953448368\n646,1021,5.0,953450706\n646,1022,4.0,953704020\n646,1025,5.0,953704086\n646,1028,5.0,953449763\n646,1029,4.0,953704051\n646,1064,4.0,953450852\n646,1148,5.0,953449346\n646,1196,5.0,953447145\n646,1210,5.0,953448077\n646,1265,5.0,953449421\n646,1270,5.0,953448040\n646,1282,4.0,953703974\n646,1297,5.0,953449636\n646,1304,4.0,953449604\n646,1356,4.0,953448248\n646,1372,4.0,953448327\n646,1373,4.0,953448643\n646,1376,5.0,953448175\n646,1380,2.0,953450136\n646,1387,5.0,953448821\n646,1388,4.0,953449094\n646,1389,2.0,953449190\n646,1390,5.0,953449940\n646,1391,4.0,953448559\n646,1414,5.0,953450545\n646,1517,3.0,953449940\n646,1527,5.0,953448216\n646,1544,3.0,953448559\n646,1566,3.0,953450357\n646,1580,5.0,953448175\n646,1584,5.0,953448077\n646,1588,4.0,953450653\n646,1688,3.0,953704086\n646,1689,5.0,953451027\n646,1702,3.0,953450972\n646,1777,4.0,953449986\n646,1784,4.0,953449715\n646,1831,3.0,953448443\n646,1834,4.0,953447082\n646,1848,4.0,953450385\n646,1855,5.0,953451083\n646,1858,3.0,953447173\n646,1862,3.0,953448718\n646,1876,5.0,953448407\n646,1894,4.0,953450570\n646,1911,4.0,953447573\n646,1917,5.0,953448496\n646,2010,3.0,953448040\n646,2011,5.0,953448148\n646,2012,5.0,953448281\n646,2013,3.0,953447810\n646,2014,4.0,953450940\n646,2015,4.0,953450208\n646,2018,4.0,953704020\n646,2034,3.0,953448593\n646,2038,4.0,953447533\n646,2040,4.0,953450972\n646,2041,2.0,953447533\n646,2053,4.0,953448718\n646,2054,4.0,953448527\n646,2078,4.0,953449822\n646,2080,4.0,953449794\n646,2081,5.0,953449715\n646,2085,5.0,953704020\n646,2087,5.0,953704020\n646,2089,4.0,953704051\n646,2090,5.0,953704122\n646,2094,5.0,953448527\n646,2096,4.0,953704086\n646,2108,5.0,953449685\n646,2110,4.0,953450434\n646,2136,4.0,953449561\n646,2141,4.0,953450631\n646,2150,5.0,953449636\n646,2170,4.0,953450789\n646,2174,4.0,953449685\n646,2252,5.0,953447117\n646,2294,4.0,953704086\n646,2336,3.0,953447613\n646,2355,5.0,953447486\n646,2359,5.0,953703840\n646,2393,4.0,953448368\n646,2394,4.0,953447844\n646,2396,4.0,953447878\n646,2413,4.0,953451126\n646,2424,4.0,953450208\n646,2431,5.0,953450789\n646,2433,4.0,953447533\n646,2478,4.0,953451056\n646,2552,3.0,953451027\n646,2558,4.0,953450789\n646,2567,2.0,953449912\n646,2571,5.0,953448077\n646,2574,4.0,953447777\n646,2581,1.0,953447777\n646,2605,5.0,953447613\n646,2617,4.0,953448991\n646,2640,3.0,953448111\n646,2683,3.0,953447443\n646,2699,1.0,953447443\n646,2701,2.0,953447966\n646,2716,5.0,953447656\n646,2746,5.0,953448966\n646,2747,5.0,953448917\n646,2761,5.0,953447703\n646,2762,5.0,953447878\n646,2770,5.0,953447486\n646,2791,5.0,953449488\n646,2792,4.0,953451027\n646,2805,4.0,953447738\n646,2860,4.0,953450164\n646,2879,4.0,953450056\n646,2949,4.0,953447207\n646,2987,4.0,953703974\n646,3033,4.0,953448496\n646,3087,3.0,953450492\n646,3114,5.0,953447916\n646,3157,4.0,953450995\n646,3159,5.0,953447656\n646,3253,5.0,953449912\n646,3255,5.0,953450030\n646,3354,4.0,953703792\n646,3450,5.0,953450706\n647,1,4.0,947292218\n647,6,4.0,947292853\n647,16,4.0,947292732\n647,34,5.0,947292940\n647,47,5.0,947292784\n647,50,5.0,947292654\n647,70,3.0,947292818\n647,111,5.0,947292570\n647,112,4.0,947293302\n647,149,3.0,947292818\n647,161,3.0,947292784\n647,170,3.0,947292818\n647,190,5.0,947292692\n647,229,5.0,947292753\n647,232,4.0,947292450\n647,245,3.0,947292322\n647,247,5.0,947292692\n647,259,4.0,947293233\n647,260,5.0,947292545\n647,265,4.0,947292184\n647,290,4.0,947293128\n647,293,5.0,947292692\n647,296,5.0,947292921\n647,300,5.0,947292218\n647,306,4.0,947292940\n647,319,5.0,947292853\n647,349,4.0,947292853\n647,373,4.0,947292692\n647,377,5.0,947292784\n647,431,4.0,947293102\n647,457,4.0,947292692\n647,474,4.0,947292818\n647,481,3.0,947292753\n647,482,1.0,947292373\n647,521,3.0,947293233\n647,527,5.0,947292940\n647,541,5.0,947292496\n647,555,4.0,947293233\n647,589,4.0,947292692\n647,590,3.0,947292218\n647,593,5.0,947292570\n647,608,5.0,947292391\n647,621,4.0,947292304\n647,640,4.0,947292692\n647,745,5.0,947292654\n647,858,5.0,947292218\n647,866,5.0,947292732\n647,896,4.0,947292304\n647,912,5.0,947292474\n647,922,5.0,947292545\n647,923,5.0,947292545\n647,926,5.0,947292496\n647,930,4.0,947292450\n647,949,4.0,947292304\n647,999,4.0,947293233\n647,1034,5.0,947293128\n647,1041,4.0,947292570\n647,1061,4.0,947293302\n647,1079,5.0,947293361\n647,1089,4.0,947292654\n647,1136,5.0,947292474\n647,1148,5.0,947292600\n647,1193,5.0,947292450\n647,1207,5.0,947292422\n647,1211,5.0,947293332\n647,1213,5.0,947292521\n647,1217,5.0,947292422\n647,1219,5.0,947292545\n647,1221,4.0,947292521\n647,1225,4.0,947292496\n647,1227,5.0,947292450\n647,1233,4.0,947292921\n647,1238,4.0,947293332\n647,1249,5.0,947292654\n647,1259,5.0,947293361\n647,1260,5.0,947292521\n647,1263,5.0,947292600\n647,1267,4.0,947292373\n647,1270,2.0,947293361\n647,1273,5.0,947293361\n647,1280,4.0,947292545\n647,1283,5.0,947292570\n647,1284,2.0,947292304\n647,1288,5.0,947293332\n647,1343,4.0,947292784\n647,1348,4.0,947292184\n647,1354,5.0,947292957\n647,1394,4.0,947293332\n647,1396,3.0,947293233\n647,1466,5.0,947293102\n647,1500,5.0,947293146\n647,1523,4.0,947293128\n647,1589,4.0,947293302\n647,1610,3.0,947292732\n647,1617,5.0,947292654\n647,1620,3.0,947293302\n647,1625,3.0,947292818\n647,1635,5.0,947292957\n647,1645,4.0,947292853\n647,1729,1.0,947293102\n647,1732,5.0,947292218\n647,1748,5.0,947292818\n647,1805,5.0,947292818\n647,1824,1.0,947292391\n647,1834,5.0,947292732\n647,1866,5.0,947292373\n647,1912,5.0,947293102\n647,1914,5.0,947292974\n647,1921,4.0,947292732\n647,1945,5.0,947292600\n647,1952,5.0,947292521\n647,1997,5.0,947292570\n647,2010,5.0,947292304\n647,2019,4.0,947292600\n647,2028,2.0,947292184\n647,2064,5.0,947293332\n647,2111,3.0,947293361\n647,2126,2.0,947293302\n647,2186,5.0,947292474\n647,2203,4.0,947292570\n647,2231,4.0,947293233\n647,2278,3.0,947292818\n647,2280,4.0,947293128\n647,2283,4.0,947292184\n647,2289,5.0,947292921\n647,2303,4.0,947292422\n647,2310,5.0,947292422\n647,2336,5.0,947292957\n647,2349,4.0,947293332\n647,2353,4.0,947292853\n647,2391,4.0,947292732\n647,2571,4.0,947292218\n647,2580,4.0,947293102\n647,2648,4.0,947292304\n647,2692,5.0,947293128\n647,2715,3.0,947292451\n647,2745,5.0,947292474\n647,2762,5.0,947292654\n647,2858,5.0,947292898\n647,2908,5.0,947292600\n647,2912,5.0,947293102\n647,2916,3.0,947292853\n647,2925,5.0,947292521\n647,2946,5.0,947292304\n647,2973,4.0,947293332\n647,3011,5.0,947292451\n647,3037,5.0,947292422\n647,3067,5.0,947293361\n647,3075,3.0,947292451\n647,3129,5.0,947292373\n648,6,4.0,1204413633\n648,47,3.0,1138477818\n648,48,1.0,1138477466\n648,70,2.0,1140872227\n648,97,4.5,1182033732\n648,104,3.0,1138479600\n648,111,3.0,1138477880\n648,175,4.0,1278769948\n648,288,4.5,1138487531\n648,293,4.5,1138487533\n648,296,5.0,1138487519\n648,318,4.5,1205021727\n648,344,3.0,1140221841\n648,356,4.5,1176754950\n648,364,2.0,1138477825\n648,367,3.5,1140221864\n648,377,2.0,1138477797\n648,480,2.0,1138477701\n648,500,4.0,1138477832\n648,552,3.5,1138487538\n648,555,3.5,1138479358\n648,586,2.0,1140221898\n648,588,2.0,1138477792\n648,590,2.0,1140221817\n648,608,4.0,1279713124\n648,733,2.0,1138487841\n648,750,4.0,1184360319\n648,778,5.0,1138487522\n648,780,2.0,1138477779\n648,785,3.5,1140872042\n648,852,3.0,1140872153\n648,858,3.5,1138477822\n648,912,4.0,1183325856\n648,923,2.5,1183068262\n648,1080,3.5,1140221620\n648,1089,4.0,1141508104\n648,1136,4.0,1138477872\n648,1201,4.0,1184449576\n648,1206,3.5,1138477987\n648,1208,2.0,1169941061\n648,1213,4.0,1263684704\n648,1221,3.5,1138477898\n648,1222,4.0,1140823367\n648,1228,3.5,1183670308\n648,1246,4.0,1168121690\n648,1263,2.0,1169327892\n648,1274,2.0,1141144877\n648,1281,4.5,1176069418\n648,1288,3.0,1138477436\n648,1394,4.0,1319315839\n648,1466,3.5,1138477584\n648,1580,1.5,1138477860\n648,1704,4.5,1138487524\n648,1721,1.0,1138477862\n648,1732,5.0,1138487508\n648,1777,3.0,1140872042\n648,1827,3.5,1138479478\n648,1884,4.5,1280014860\n648,1909,2.5,1138477539\n648,1921,3.0,1138487473\n648,1923,3.0,1140221913\n648,1961,4.0,1155424240\n648,2023,3.5,1140872407\n648,2028,3.0,1138477815\n648,2064,3.0,1138479420\n648,2167,1.5,1138477565\n648,2324,4.5,1175726033\n648,2329,4.0,1138477518\n648,2338,1.0,1138478833\n648,2353,2.0,1138477461\n648,2360,4.0,1139098829\n648,2420,3.5,1153434060\n648,2542,4.5,1138477556\n648,2571,1.5,1138477810\n648,2594,3.5,1151620964\n648,2596,4.0,1279440095\n648,2671,3.5,1140871965\n648,2677,2.5,1191621076\n648,2700,4.0,1138478243\n648,2706,2.0,1138477996\n648,2843,4.0,1172268394\n648,2959,2.5,1138477960\n648,3052,4.5,1138477493\n648,3083,4.0,1138479539\n648,3148,4.0,1151351965\n648,3235,4.0,1176241208\n648,3263,4.0,1162755323\n648,3267,4.0,1326531025\n648,3306,4.0,1176328041\n648,3307,4.5,1176754888\n648,3310,3.5,1177190151\n648,3448,4.0,1138477572\n648,3456,4.5,1230416514\n648,3462,4.5,1177190204\n648,3481,3.5,1138477705\n648,3559,4.0,1176421721\n648,3629,4.0,1176155318\n648,3632,3.5,1176625753\n648,3640,3.5,1176504562\n648,3897,3.0,1140872459\n648,3949,4.0,1138478292\n648,4011,4.0,1138478117\n648,4027,3.5,1138999720\n648,4034,4.5,1280012075\n648,4235,4.5,1138487552\n648,4262,3.5,1138999404\n648,4306,3.5,1138477913\n648,4369,3.5,1140992012\n648,4388,2.0,1138479624\n648,4741,4.5,1138487574\n648,4816,3.5,1185137669\n648,4834,4.0,1138479012\n648,4878,3.5,1138479187\n648,4896,2.0,1138477552\n648,4973,4.0,1140303296\n648,4993,1.5,1138477918\n648,4995,4.5,1138487557\n648,5051,4.0,1140307821\n648,5225,4.5,1138487555\n648,5515,3.0,1263677276\n648,5632,4.0,1141155820\n648,5669,4.0,1138478301\n648,5785,3.5,1175716739\n648,5818,4.0,1257029800\n648,5878,4.0,1138479536\n648,5913,3.0,1138478475\n648,5952,1.5,1138477693\n648,6016,4.5,1138478138\n648,6022,4.0,1175638550\n648,6051,4.0,1138489121\n648,6091,3.5,1248206931\n648,6291,3.5,1138478439\n648,6377,4.5,1138477547\n648,6440,3.0,1319315858\n648,6539,4.0,1152207935\n648,6618,4.5,1138487568\n648,6679,3.5,1138478296\n648,6690,3.5,1138479546\n648,6711,4.0,1327184129\n648,6807,3.5,1138478686\n648,6869,4.0,1279400703\n648,6874,3.5,1138999399\n648,6884,4.0,1187816389\n648,6898,4.0,1251061999\n648,6935,4.0,1256500277\n648,6957,4.0,1215550907\n648,7011,3.5,1313877449\n648,7034,3.5,1138478407\n648,7323,4.0,1138478318\n648,7361,4.0,1138478129\n648,7438,3.0,1138478144\n648,7459,4.5,1152207751\n648,7990,3.0,1138479051\n648,8012,4.0,1138478336\n648,8273,4.0,1258231473\n648,8376,4.0,1138479560\n648,8464,4.0,1138478508\n648,8511,4.0,1176571215\n648,8576,4.5,1138487584\n648,8577,4.0,1175459933\n648,8622,3.5,1138478357\n648,8641,3.5,1151356104\n648,8645,4.0,1189807401\n648,8873,4.0,1138478695\n648,8949,2.5,1156717376\n648,8961,4.0,1148160678\n648,8973,4.0,1138478760\n648,26131,4.0,1140307902\n648,26494,3.5,1279440177\n648,26947,4.5,1278769972\n648,27416,4.0,1138478437\n648,27700,4.0,1145743964\n648,27773,2.5,1147555000\n648,27803,4.0,1257630220\n648,27846,4.0,1165614492\n648,27850,4.0,1280606222\n648,27875,4.0,1199049186\n648,30749,5.0,1138487517\n648,30793,4.0,1138487876\n648,31878,3.5,1138479113\n648,32587,4.0,1138478152\n648,32853,1.5,1171744826\n648,33166,4.0,1255174791\n648,33750,4.0,1256415707\n648,36527,4.0,1138478635\n648,36529,4.0,1138999349\n648,38038,4.0,1138478655\n648,39183,4.0,1145743924\n648,40819,4.0,1152229107\n648,41527,4.5,1149372445\n648,41912,4.5,1276452635\n648,44195,4.0,1162668701\n648,44555,2.5,1174253095\n648,44694,4.0,1165614471\n648,45666,4.0,1165703663\n648,45722,4.0,1167091045\n648,45950,3.0,1174689194\n648,46972,2.5,1174170254\n648,47423,4.0,1254683022\n648,47997,2.0,1171391067\n648,47999,3.5,1173213056\n648,48032,4.0,1279464800\n648,48385,4.5,1165703654\n648,48394,2.0,1174773455\n648,48593,4.0,1168121642\n648,48738,4.0,1173568944\n648,48856,3.5,1255810132\n648,49265,4.0,1201993174\n648,49530,4.0,1173481752\n648,51255,4.5,1200348660\n648,51662,2.5,1175725718\n648,52952,4.5,1201391983\n648,53894,4.0,1279464951\n648,54272,4.5,1187027148\n648,55247,3.5,1276455430\n648,55721,4.0,1279400736\n648,55820,3.5,1205622156\n648,57845,4.5,1276454991\n648,58029,4.0,1251062769\n648,59126,4.5,1248903438\n648,61323,5.0,1276451560\n648,61646,4.0,1252183880\n648,62250,3.0,1248124054\n648,63082,4.0,1241951859\n648,63808,4.0,1353261012\n648,64197,3.5,1241951834\n648,64499,4.0,1279400522\n648,64501,4.0,1279400525\n648,65259,4.0,1251579667\n648,67267,4.0,1263684635\n648,68347,4.5,1279400198\n648,69784,3.0,1281821753\n648,71156,4.5,1350594264\n648,71429,4.0,1302383728\n648,71640,4.5,1257029813\n648,72011,3.0,1283028006\n648,72386,4.0,1266704148\n648,73101,4.0,1266620609\n648,74275,4.0,1284238492\n648,74677,4.0,1280617196\n648,74740,3.5,1316896911\n648,77800,4.5,1298843951\n648,77810,4.0,1325887937\n648,79008,4.0,1279713091\n648,81819,4.0,1311934652\n648,87485,3.0,1327100797\n648,92004,4.0,1356551710\n648,93693,4.0,1343424336\n648,96488,4.5,1367274152\n648,98913,4.0,1355387817\n648,99675,4.0,1357597698\n648,102995,2.0,1370509191\n648,128616,4.0,1426357951\n648,140152,4.0,1460757570\n648,142488,4.5,1457736015\n648,155611,4.0,1458482965\n649,1,4.0,834424768\n649,4,3.0,834425135\n649,10,5.0,834424744\n649,19,3.0,834424836\n649,21,3.0,834424805\n649,32,4.0,834424836\n649,39,4.0,834424854\n649,44,4.0,834424947\n649,45,3.0,834425077\n649,50,4.0,834424836\n649,58,4.0,834425077\n649,112,3.0,834425102\n649,141,3.0,834424931\n649,150,4.0,834424671\n649,151,3.0,834424903\n649,153,4.0,834424696\n649,160,1.0,834424854\n649,161,4.0,834424744\n649,165,3.0,834424696\n649,172,3.0,834424930\n649,186,2.0,834424903\n649,196,2.0,834424884\n649,198,2.0,834425160\n649,208,1.0,834424768\n649,218,3.0,834425029\n649,223,4.0,834424973\n649,235,3.0,834424903\n649,236,4.0,834424868\n649,247,3.0,834425209\n649,249,3.0,834425125\n649,252,3.0,834424884\n649,261,5.0,834424930\n649,265,5.0,834424931\n649,266,3.0,834424836\n649,272,4.0,834424995\n649,282,3.0,834424869\n649,288,5.0,834424768\n649,293,4.0,834424917\n649,296,5.0,834424671\n649,307,4.0,834425181\n649,316,1.0,834424723\n649,317,3.0,834424805\n649,319,4.0,834425125\n649,327,3.0,834425102\n649,329,2.0,834424723\n649,333,4.0,834424960\n649,339,4.0,834424744\n649,344,5.0,834424696\n649,349,3.0,834424696\n649,350,5.0,834424985\n649,353,3.0,834425046\n649,356,3.0,834424985\n649,357,3.0,834425091\n649,364,3.0,834424884\n649,368,3.0,834425249\n649,371,4.0,834425221\n649,377,4.0,834425046\n649,380,3.0,834424671\n649,417,3.0,834425221\n649,434,4.0,834424744\n649,440,4.0,834424947\n649,454,4.0,834424884\n649,457,4.0,834424789\n649,468,3.0,834425004\n649,471,3.0,834425145\n649,474,5.0,834425160\n649,477,5.0,834425091\n649,480,4.0,834425016\n649,491,4.0,834425192\n649,497,4.0,834425221\n649,500,3.0,834425091\n649,508,4.0,834425192\n649,509,5.0,834424985\n649,520,3.0,834425455\n649,527,4.0,834425066\n649,531,4.0,834425281\n649,539,3.0,834425125\n649,551,3.0,834425016\n649,555,3.0,834424947\n649,586,3.0,834425160\n649,587,3.0,834425145\n649,588,3.0,834424696\n649,589,4.0,834425029\n649,590,3.0,834424671\n649,592,4.0,834424671\n649,593,5.0,834424789\n649,595,3.0,834424723\n649,597,4.0,834425135\n649,608,5.0,834425016\n649,648,3.0,834425230\n650,3,3.0,844883753\n650,4,1.0,844883753\n650,5,3.0,844883711\n650,10,4.0,844883616\n650,11,5.0,844883616\n650,15,2.0,844883798\n650,17,4.0,844883654\n650,32,3.0,844883616\n650,36,5.0,844883683\n650,42,1.0,844883925\n650,45,3.0,844883711\n650,62,5.0,844883683\n650,76,3.0,844883925\n650,79,3.0,844883822\n650,86,5.0,844884124\n650,89,4.0,844883864\n650,92,3.0,844884000\n650,95,4.0,844883654\n650,105,3.0,844883711\n650,140,4.0,844883843\n650,141,1.0,844883654\n650,191,4.0,844883843\n650,494,4.0,844883726\n650,637,3.0,844883864\n650,694,4.0,844884074\n650,704,1.0,844884020\n650,707,2.0,844883941\n650,736,4.0,844883654\n650,780,5.0,844883683\n651,260,5.0,945030304\n651,318,4.0,945031247\n651,381,3.0,945029770\n651,765,2.0,945030790\n651,919,3.0,945030304\n651,1196,5.0,945031162\n651,1197,5.0,945029770\n651,1198,5.0,945030334\n651,1250,4.0,945030304\n651,1268,3.0,945031033\n651,1270,4.0,945029725\n651,1387,4.0,945031374\n651,1513,4.0,945030790\n651,1907,5.0,945029695\n651,1923,3.0,945029904\n651,1954,5.0,945031470\n651,2028,4.0,945031219\n651,2145,3.0,945029695\n651,2416,4.0,945029904\n651,2671,3.0,945029904\n652,22,4.0,1439584210\n652,24,5.0,1322813211\n652,71,4.0,1439581733\n652,94,4.0,1439585348\n652,125,4.0,1439589051\n652,140,4.0,1439584906\n652,179,4.0,1440271840\n652,185,4.0,1439583878\n652,194,4.0,1439584823\n652,223,4.0,1439584038\n652,293,4.0,1439486552\n652,299,4.0,1440028872\n652,316,5.0,1439489896\n652,319,4.0,1439584570\n652,338,4.0,1439585068\n652,339,4.0,1439583904\n652,358,4.0,1440270441\n652,377,4.0,1439489490\n652,378,4.0,1440270420\n652,388,4.0,1440029042\n652,422,3.5,1440271647\n652,442,4.0,1439492048\n652,477,4.0,1439585232\n652,494,4.5,1447364733\n652,539,4.0,1442692427\n652,550,5.0,1440269836\n652,588,4.0,1439489918\n652,592,4.0,1442692543\n652,597,3.5,1439583820\n652,627,4.0,1440271139\n652,628,4.0,1439584168\n652,708,4.0,1439584086\n652,719,4.0,1322812264\n652,780,5.0,1439489966\n652,984,4.0,1439586161\n652,988,4.5,1440273288\n652,998,4.0,1440272460\n652,1046,4.0,1442691494\n652,1064,4.0,1440270019\n652,1197,4.0,1442692438\n652,1265,4.0,1439583823\n652,1377,5.0,1439490547\n652,1497,3.0,1439581777\n652,1527,5.0,1439486571\n652,1562,4.0,1439580116\n652,1573,3.5,1439490039\n652,1586,3.5,1439584574\n652,1603,4.0,1440270050\n652,1612,5.0,1442690774\n652,1653,4.0,1439585922\n652,1678,4.0,1439585040\n652,1748,4.0,1442691503\n652,1767,4.0,1442084902\n652,1845,5.0,1439589294\n652,1885,4.0,1440269649\n652,1903,5.0,1439586120\n652,1907,4.0,1439584547\n652,1961,4.0,1439493382\n652,2001,3.5,1439489537\n652,2011,4.0,1439584062\n652,2029,5.0,1439586255\n652,2058,4.0,1326149512\n652,2081,4.0,1439584109\n652,2092,3.5,1440271108\n652,2094,5.0,1439581090\n652,2096,4.0,1440269017\n652,2100,5.0,1439581086\n652,2115,4.0,1442694300\n652,2133,5.0,1439586746\n652,2247,3.5,1440270472\n652,2264,4.0,1440272926\n652,2268,4.0,1439493384\n652,2273,4.0,1439489571\n652,2318,4.0,1439585255\n652,2340,4.0,1440269519\n652,2374,3.5,1440271398\n652,2390,3.5,1440270353\n652,2405,4.5,1322811942\n652,2424,4.0,1439584163\n652,2443,4.5,1440271826\n652,2468,4.0,1440270097\n652,2469,4.0,1440269763\n652,2491,4.0,1440272335\n652,2502,4.0,1439584052\n652,2545,5.0,1439586283\n652,2549,4.0,1439580452\n652,2600,5.0,1439584894\n652,2607,5.0,1439488179\n652,2626,5.0,1439586307\n652,2671,3.5,1439584131\n652,2672,4.0,1439585340\n652,2690,5.0,1439589086\n652,2721,5.0,1439487885\n652,2797,5.0,1439587361\n652,2864,3.0,1451789942\n652,2887,4.0,1439581759\n652,2997,4.0,1439583857\n652,3004,4.0,1440271210\n652,3044,4.0,1322812476\n652,3087,4.0,1322812422\n652,3104,4.0,1440269528\n652,3213,4.0,1440027747\n652,3252,5.0,1439490330\n652,3264,4.0,1439584966\n652,3270,4.0,1440271439\n652,3282,4.0,1442084000\n652,3408,4.0,1439584078\n652,3418,4.0,1439586050\n652,3453,4.0,1439581842\n652,3457,5.0,1440272991\n652,3466,4.5,1440272001\n652,3512,4.0,1440267003\n652,3575,5.0,1449535091\n652,3793,4.0,1439489542\n652,3825,4.0,1439585312\n652,3914,5.0,1439586299\n652,3952,5.0,1439587510\n652,4006,5.0,1440270028\n652,4014,4.0,1439584250\n652,4054,4.5,1440266964\n652,4085,4.0,1439486623\n652,4090,5.0,1439587348\n652,4116,4.0,1440273522\n652,4121,4.0,1442693746\n652,4132,4.5,1440271172\n652,4141,4.0,1447366672\n652,4223,4.0,1439581986\n652,4246,4.0,1439584153\n652,4342,5.0,1440029079\n652,4372,4.0,1440265818\n652,4496,4.0,1440273038\n652,4545,4.0,1440269827\n652,4616,5.0,1439589243\n652,4673,3.5,1439580345\n652,4722,5.0,1439586240\n652,4724,5.0,1442084916\n652,4929,4.0,1440272625\n652,5064,4.0,1439581981\n652,5106,4.5,1440272217\n652,5229,5.0,1442083277\n652,5264,5.0,1439587442\n652,5271,4.0,1447791242\n652,5349,4.0,1439489897\n652,5377,5.0,1439584403\n652,5530,4.0,1440265823\n652,5812,4.0,1440265513\n652,6033,5.0,1439586809\n652,6059,5.0,1440265362\n652,6060,4.0,1440273293\n652,6294,4.0,1440265712\n652,6295,4.0,1442083823\n652,6333,3.5,1439489461\n652,6341,4.0,1439586128\n652,6342,5.0,1442083245\n652,6367,4.0,1440265671\n652,6369,5.0,1442083304\n652,6762,4.0,1442085456\n652,6769,5.0,1442082519\n652,6770,5.0,1439589129\n652,6881,4.0,1440265884\n652,6966,4.5,1440271768\n652,7036,3.5,1440271954\n652,7260,5.0,1440029050\n652,7380,4.0,1440272069\n652,7625,4.0,1442084290\n652,7627,4.5,1449535341\n652,7782,4.0,1439581641\n652,8256,4.0,1442693293\n652,8453,4.0,1442083596\n652,8533,4.0,1439585307\n652,8636,3.5,1439490169\n652,8699,5.0,1439587538\n652,8969,5.0,1440265465\n652,8972,4.5,1439490287\n652,8981,4.0,1439490693\n652,26791,5.0,1439588577\n652,26843,5.0,1440269953\n652,26854,4.0,1442085190\n652,27700,5.0,1440273163\n652,27826,5.0,1442690765\n652,31408,4.0,1442085302\n652,36527,4.0,1440272274\n652,45732,4.0,1440272039\n652,49286,4.0,1440265591\n652,49957,4.0,1442085420\n652,53138,4.0,1439495707\n652,54251,5.0,1439586346\n652,55451,5.0,1439493339\n652,56775,4.0,1440270458\n652,57669,4.0,1439584921\n652,59549,5.0,1439487924\n652,60086,4.0,1439587482\n652,63876,4.0,1440027546\n652,63992,4.0,1440267021\n652,68835,4.5,1442082655\n652,69495,3.0,1442085805\n652,69805,4.0,1439495757\n652,70762,5.0,1439587524\n652,72947,4.0,1439587026\n652,79163,4.0,1442083900\n652,80584,4.5,1442085352\n652,81229,4.0,1439489458\n652,82608,5.0,1442083346\n652,84152,3.0,1457366141\n652,84414,5.0,1439492987\n652,87232,4.0,1439486541\n652,89745,5.0,1439486598\n652,89870,4.5,1442083045\n652,91199,3.5,1439487912\n652,92613,4.0,1442084526\n652,92966,4.0,1442084378\n652,94323,4.0,1442084939\n652,95873,4.0,1439586144\n652,98933,5.0,1442084707\n652,99609,4.5,1442084857\n652,99615,4.0,1439587013\n652,100017,3.0,1451789068\n652,101415,4.0,1449535463\n652,102125,4.0,1439489527\n652,103731,5.0,1439586954\n652,104374,4.0,1439582045\n652,106417,3.0,1439488190\n652,107083,5.0,1440027165\n652,108551,3.0,1439488240\n652,108795,4.0,1442082700\n652,109183,4.0,1442085294\n652,109359,4.0,1439488287\n652,110058,3.0,1439491845\n652,110781,4.0,1442084222\n652,111362,4.0,1439486562\n652,111759,3.0,1457366129\n652,113862,3.5,1447364705\n652,115713,4.0,1439486716\n652,116660,4.0,1442085327\n652,116855,4.0,1439487852\n652,119145,3.5,1439579477\n652,122892,3.5,1447808069\n652,127728,5.0,1439586990\n652,129009,4.0,1442690827\n652,130522,5.0,1439587388\n652,130628,4.0,1439488075\n652,130960,3.5,1442085539\n652,135264,4.0,1442696431\n652,135266,4.0,1442696469\n652,135268,4.0,1442696465\n652,137403,3.5,1442082603\n652,140739,5.0,1439585580\n652,140741,5.0,1439585771\n652,140743,5.0,1439586481\n652,140745,5.0,1439586605\n652,140747,5.0,1439586664\n652,140749,5.0,1439586708\n652,140751,5.0,1439586931\n652,140753,4.0,1439587070\n652,140755,5.0,1439587113\n652,140757,4.0,1439587156\n652,140759,5.0,1439587219\n652,140761,5.0,1439587262\n652,140763,5.0,1439587331\n652,140880,4.0,1440029031\n652,141124,5.0,1440273477\n652,142068,5.0,1442690431\n652,142240,5.0,1442691006\n652,146443,3.0,1451790739\n652,146501,2.5,1449533204\n652,146604,3.0,1449533506\n652,147037,5.0,1447808622\n653,1,4.0,948160430\n653,19,3.0,948160498\n653,34,4.0,948160595\n653,39,5.0,948161400\n653,150,4.0,948160595\n653,216,5.0,948160832\n653,261,5.0,948160944\n653,356,5.0,948161010\n653,364,5.0,948160561\n653,440,4.0,948161152\n653,457,4.0,948160832\n653,500,4.0,948160992\n653,539,4.0,948161301\n653,569,3.0,948160666\n653,575,4.0,948160482\n653,588,5.0,948160926\n653,590,4.0,948160610\n653,595,5.0,948160498\n653,688,3.0,948161440\n653,720,5.0,948160316\n653,801,3.0,948158771\n653,838,4.0,948160543\n653,986,4.0,948160543\n653,1015,4.0,948160748\n653,1042,5.0,948161400\n653,1097,4.0,948158467\n653,1197,5.0,948158779\n653,1367,3.0,948161182\n653,1517,5.0,948161010\n653,1580,5.0,948161400\n653,1653,4.0,948160430\n653,1682,5.0,948161182\n653,1721,3.0,948158439\n653,1805,1.0,948158439\n653,1848,3.0,948160790\n653,2036,3.0,948158771\n653,2083,3.0,948161066\n653,2103,3.0,948161066\n653,2125,5.0,948161425\n653,2687,4.0,948160561\n653,2762,5.0,948160511\n653,2978,3.0,948159690\n653,3004,3.0,948158942\n653,3051,5.0,948159188\n653,3082,4.0,948159373\n653,3114,5.0,948158942\n653,3156,5.0,948158942\n653,3157,3.0,948159373\n653,3173,1.0,948158942\n653,3176,4.0,948159125\n653,3185,5.0,948159624\n654,1,5.0,1145390085\n654,2,3.0,1145389613\n654,5,4.0,1145392131\n654,10,4.0,1145391869\n654,11,4.5,1145391997\n654,15,2.0,1145389919\n654,17,4.5,1145391936\n654,19,4.5,1145392014\n654,24,4.5,1145392651\n654,32,5.0,1145390343\n654,34,4.5,1145389461\n654,36,4.5,1145391943\n654,47,4.5,1145390374\n654,48,2.0,1145392232\n654,50,5.0,1145390204\n654,60,3.5,1145393087\n654,62,4.5,1145391949\n654,70,3.5,1145392363\n654,94,4.0,1145393671\n654,104,4.5,1145389608\n654,105,4.0,1145392423\n654,107,4.0,1145393093\n654,110,4.5,1145390184\n654,112,4.0,1145392148\n654,141,4.0,1145391918\n654,150,5.0,1145390280\n654,153,3.5,1145391820\n654,158,4.0,1145392249\n654,161,4.5,1145391894\n654,165,4.0,1145391816\n654,172,4.0,1145392235\n654,180,4.0,1145392768\n654,186,3.5,1145392276\n654,193,1.0,1145392817\n654,208,2.5,1145391900\n654,223,5.0,1145389599\n654,225,4.5,1145392128\n654,231,4.0,1145391855\n654,235,4.5,1145389372\n654,236,4.0,1145392195\n654,252,3.5,1145392380\n654,253,4.0,1145391897\n654,256,3.0,1145392546\n654,260,5.0,1145390107\n654,262,5.0,1145393962\n654,292,4.5,1145391872\n654,293,4.5,1145390293\n654,296,5.0,1145390861\n654,316,4.0,1145391826\n654,317,4.0,1145392052\n654,318,5.0,1145390159\n654,319,4.0,1145392831\n654,329,4.0,1145391848\n654,337,4.0,1145392049\n654,339,4.0,1145391922\n654,344,4.5,1145391813\n654,349,4.0,1145391824\n654,350,4.0,1145389340\n654,356,4.0,1145390555\n654,364,5.0,1145390453\n654,366,4.0,1145394447\n654,367,4.5,1145391866\n654,368,3.5,1145389298\n654,370,4.0,1145392143\n654,372,4.5,1145392677\n654,376,4.0,1145392176\n654,377,4.0,1145391807\n654,380,4.0,1145391796\n654,410,4.0,1145392006\n654,415,4.5,1145394022\n654,434,4.0,1145391885\n654,440,4.0,1145391964\n654,442,3.5,1145389291\n654,450,4.0,1145394193\n654,454,4.0,1145391891\n654,457,4.5,1145391792\n654,466,4.5,1145389593\n654,474,4.0,1145390352\n654,480,4.5,1145391789\n654,485,2.0,1145392319\n654,500,4.5,1145391852\n654,502,3.0,1145394226\n654,519,3.0,1145393729\n654,520,4.0,1145392221\n654,527,5.0,1145390371\n654,531,5.0,1145392960\n654,539,4.0,1145391880\n654,541,4.0,1145389458\n654,542,3.5,1145394012\n654,543,4.0,1145392256\n654,551,5.0,1145389584\n654,552,4.0,1145392270\n654,555,4.0,1145390677\n654,585,3.5,1145392497\n654,586,4.5,1145391945\n654,587,5.0,1145391875\n654,588,4.5,1145390414\n654,589,5.0,1145389457\n654,590,4.5,1145389447\n654,592,4.5,1145390435\n654,593,4.5,1145390319\n654,594,4.0,1145389351\n654,595,5.0,1145390689\n654,597,4.0,1145391843\n654,608,4.0,1145389444\n654,647,4.5,1145392552\n654,648,4.5,1145391809\n654,653,3.5,1145392078\n654,661,4.0,1145392466\n654,671,4.0,1145389893\n654,673,3.5,1145392556\n654,708,3.0,1145389356\n654,733,4.0,1145391840\n654,736,3.0,1145391834\n654,743,3.5,1145393043\n654,748,4.0,1145393047\n654,761,3.5,1145393794\n654,780,4.0,1145391799\n654,783,4.0,1145392426\n654,802,4.5,1145392192\n654,805,4.5,1145392313\n654,818,3.5,1145394270\n654,832,4.5,1145392107\n654,852,2.5,1145392352\n654,858,4.5,1145391858\n654,879,3.0,1145394704\n654,919,5.0,1145391973\n654,924,4.0,1145391999\n654,1027,4.0,1145392951\n654,1028,4.5,1145392288\n654,1036,4.5,1145390162\n654,1037,0.5,1145392839\n654,1042,4.5,1145392654\n654,1060,4.5,1145390652\n654,1073,3.5,1145391888\n654,1079,4.0,1145390365\n654,1080,4.0,1145389376\n654,1089,5.0,1145390863\n654,1092,4.5,1145392453\n654,1097,5.0,1145390695\n654,1101,4.0,1145389354\n654,1126,3.5,1145394342\n654,1127,4.0,1145390357\n654,1129,4.5,1145392601\n654,1136,5.0,1145390196\n654,1183,4.5,1145392058\n654,1193,3.5,1145389441\n654,1196,5.0,1145390096\n654,1197,4.5,1145390093\n654,1198,5.0,1145390082\n654,1200,5.0,1145390179\n654,1210,4.0,1145390127\n654,1213,4.0,1145389565\n654,1214,5.0,1145390391\n654,1215,4.0,1145389561\n654,1220,4.0,1145389334\n654,1225,4.5,1145389329\n654,1240,4.5,1145390300\n654,1246,5.0,1145390505\n654,1252,4.5,1145392189\n654,1257,3.5,1145390115\n654,1259,5.0,1145390208\n654,1265,4.0,1145390429\n654,1266,5.0,1145390602\n654,1270,4.5,1145389439\n654,1278,4.5,1145390266\n654,1282,4.5,1145390799\n654,1285,4.5,1145389550\n654,1288,4.5,1145390807\n654,1291,4.5,1145390078\n654,1307,4.0,1145391991\n654,1320,3.5,1145392300\n654,1343,4.0,1145392574\n654,1345,4.0,1145389863\n654,1347,4.5,1145393056\n654,1356,4.5,1145391986\n654,1357,4.5,1145390921\n654,1358,4.0,1145390756\n654,1359,1.5,1145389856\n654,1370,4.0,1145392161\n654,1371,4.0,1145392530\n654,1372,4.5,1145392384\n654,1373,2.0,1145392929\n654,1374,5.0,1145389547\n654,1375,4.0,1145392438\n654,1376,4.5,1145392284\n654,1377,4.5,1145392393\n654,1378,4.5,1145393059\n654,1379,4.0,1145389852\n654,1387,4.5,1145392022\n654,1391,4.0,1145392095\n654,1393,4.5,1145391977\n654,1396,4.5,1145392247\n654,1405,4.5,1145392640\n654,1407,4.5,1145392088\n654,1409,3.5,1145393163\n654,1429,4.0,1145394043\n654,1449,4.5,1145390567\n654,1461,3.5,1145394623\n654,1485,4.5,1145392105\n654,1500,4.0,1145390296\n654,1517,4.0,1145389307\n654,1527,4.0,1145391980\n654,1544,3.5,1145392238\n654,1552,4.0,1145392307\n654,1562,3.0,1145392721\n654,1566,3.5,1145393803\n654,1573,4.5,1145392072\n654,1580,4.5,1145391909\n654,1584,3.5,1145389305\n654,1586,4.0,1145393090\n654,1588,4.0,1145394142\n654,1597,3.0,1145392475\n654,1608,4.5,1145392224\n654,1614,3.5,1145393545\n654,1617,5.0,1145390486\n654,1625,4.5,1145389543\n654,1639,3.5,1145389540\n654,1641,4.0,1145392103\n654,1645,3.5,1145392482\n654,1653,4.5,1145390962\n654,1663,4.0,1145389835\n654,1682,4.0,1145390455\n654,1688,4.0,1145394337\n654,1693,4.5,1145393758\n654,1704,4.0,1145390423\n654,1717,4.0,1145393070\n654,1721,5.0,1145391911\n654,1729,4.0,1145392540\n654,1748,4.0,1145390332\n654,1777,4.0,1145389534\n654,1779,3.0,1145393492\n654,1784,4.0,1145390604\n654,1797,5.0,1145390636\n654,1888,4.0,1145394233\n654,1894,3.0,1145393646\n654,1907,4.5,1145393015\n654,1909,4.0,1145392412\n654,1923,4.5,1145391987\n654,1967,4.5,1145390883\n654,1968,4.5,1145390419\n654,2000,4.5,1145392115\n654,2001,4.0,1145392273\n654,2002,4.0,1145392687\n654,2003,4.0,1145392485\n654,2004,3.5,1145393943\n654,2005,4.0,1145392625\n654,2006,4.5,1145392334\n654,2011,4.0,1145392100\n654,2012,4.0,1145389364\n654,2028,5.0,1145390368\n654,2072,4.0,1145394599\n654,2081,4.5,1145392241\n654,2082,4.0,1145393994\n654,2094,4.0,1145393033\n654,2100,4.0,1145392337\n654,2105,3.5,1145392609\n654,2108,4.5,1145392728\n654,2109,4.5,1145390747\n654,2115,4.5,1145389531\n654,2124,4.5,1145392915\n654,2133,4.0,1145393703\n654,2134,3.5,1145393566\n654,2139,4.0,1145389811\n654,2140,4.5,1145389809\n654,2141,4.5,1145393919\n654,2144,4.5,1145392786\n654,2150,4.0,1145389529\n654,2161,4.0,1145392635\n654,2174,4.5,1145389366\n654,2193,4.0,1145392632\n654,2194,3.5,1145392172\n654,2232,4.0,1145393873\n654,2253,3.5,1145394135\n654,2268,5.0,1145392179\n654,2273,4.0,1145392681\n654,2291,5.0,1145390740\n654,2294,4.0,1145392596\n654,2301,5.0,1145394077\n654,2302,4.5,1145389521\n654,2321,3.5,1145392297\n654,2335,3.5,1145393597\n654,2340,4.0,1145393779\n654,2355,4.5,1145390224\n654,2359,3.5,1145390592\n654,2376,3.0,1145394384\n654,2384,4.0,1145393653\n654,2391,4.0,1145392947\n654,2394,4.0,1145393203\n654,2396,4.5,1145391954\n654,2405,4.0,1145393155\n654,2406,4.5,1145392152\n654,2407,4.0,1145392501\n654,2413,4.0,1145394034\n654,2420,4.5,1145392986\n654,2423,4.5,1145393570\n654,2424,3.5,1145392524\n654,2427,3.0,1145392828\n654,2431,4.0,1145389796\n654,2463,4.0,1145389791\n654,2470,4.0,1145392435\n654,2471,3.5,1145389787\n654,2478,4.5,1145393170\n654,2485,3.5,1145393594\n654,2501,4.5,1145390216\n654,2502,4.5,1145390458\n654,2528,4.0,1145393603\n654,2539,3.0,1145392660\n654,2567,3.0,1145394055\n654,2571,5.0,1145390166\n654,2581,4.0,1145393026\n654,2617,4.0,1145392165\n654,2628,3.5,1145391930\n654,2640,4.5,1145392121\n654,2641,4.5,1145392810\n654,2642,3.5,1145393742\n654,2643,3.0,1145394306\n654,2657,2.0,1145392259\n654,2671,3.5,1145392419\n654,2672,3.5,1145394127\n654,2683,4.5,1145392003\n654,2687,4.5,1145393773\n654,2694,3.5,1145392700\n654,2699,3.5,1145392213\n654,2700,4.5,1145389518\n654,2706,4.5,1145392031\n654,2710,4.0,1145389368\n654,2712,2.0,1145392199\n654,2713,3.5,1145394155\n654,2716,4.5,1145389437\n654,2717,4.0,1145393007\n654,2718,4.5,1145389774\n654,2722,3.5,1145393036\n654,2723,3.5,1145392757\n654,2724,1.5,1145392749\n654,2735,4.5,1145393935\n654,2746,4.5,1145392761\n654,2759,3.5,1145394250\n654,2762,5.0,1145390175\n654,2791,4.5,1145390525\n654,2792,4.0,1145394046\n654,2794,4.0,1145394276\n654,2795,4.5,1145389765\n654,2797,4.5,1145392054\n654,2803,4.0,1145393915\n654,2804,5.0,1145390252\n654,2805,3.5,1145393783\n654,2808,3.0,1145394130\n654,2858,5.0,1145390940\n654,2881,3.5,1145392906\n654,2890,4.5,1145390589\n654,2908,4.0,1145392913\n654,2916,4.5,1145392038\n654,2918,4.5,1145390154\n654,2947,4.5,1145390335\n654,2948,2.0,1145389750\n654,2949,4.5,1145390657\n654,2953,4.0,1145393495\n654,2959,5.0,1145390766\n654,2968,5.0,1145392684\n654,2985,5.0,1145392343\n654,2986,4.0,1145393750\n654,2987,4.0,1145390313\n654,2989,3.5,1145394072\n654,2991,4.0,1145393853\n654,2993,3.5,1145394085\n654,2997,4.0,1145391965\n654,3000,3.0,1145390490\n654,3006,4.0,1145389514\n654,3016,3.5,1145394436\n654,3033,4.5,1145392514\n654,3044,5.0,1145390762\n654,3052,4.0,1145392303\n654,3081,5.0,1145390672\n654,3087,3.5,1145389743\n654,3101,4.0,1145392378\n654,3107,4.5,1145392966\n654,3108,4.5,1145392780\n654,3114,5.0,1145389313\n654,3146,3.0,1145389736\n654,3147,5.0,1145390304\n654,3148,5.0,1145393121\n654,3159,4.5,1145390871\n654,3174,4.0,1145392921\n654,3175,4.0,1145390339\n654,3210,4.0,1145390824\n654,3247,4.0,1145393147\n654,3249,4.0,1145394583\n654,3253,4.5,1145392408\n654,3254,4.0,1145393760\n654,3255,3.5,1145389507\n654,3259,4.0,1145394420\n654,3261,4.0,1145394428\n654,3264,4.0,1145393913\n654,3269,4.0,1145394321\n654,3274,4.0,1145394408\n654,3300,2.5,1145393197\n654,3301,2.5,1145389717\n654,3354,1.0,1145393436\n654,3386,4.5,1145393011\n654,3396,4.5,1145393174\n654,3408,4.0,1145389499\n654,3421,5.0,1145390385\n654,3441,4.0,1145394541\n654,3471,5.0,1145390360\n654,3476,4.5,1145393857\n654,3479,4.5,1145394027\n654,3481,4.5,1145390846\n654,3489,4.0,1145393004\n654,3499,4.5,1145390275\n654,3510,4.5,1145392978\n654,3526,4.5,1145390873\n654,3527,4.5,1145390832\n654,3535,4.0,1145389709\n654,3536,3.5,1145393924\n654,3578,4.0,1145390557\n654,3608,4.5,1145393555\n654,3624,4.0,1145393084\n654,3635,4.0,1145394188\n654,3638,3.5,1145393941\n654,3639,4.5,1145394327\n654,3671,4.5,1145390260\n654,3686,4.0,1145394301\n654,3697,4.0,1145393723\n654,3698,3.0,1145393477\n654,3699,4.5,1145393828\n654,3740,3.5,1145389702\n654,3745,4.0,1145393627\n654,3751,4.0,1145390552\n654,3753,4.5,1145392386\n654,3755,3.5,1145389497\n654,3763,4.5,1145389698\n654,3785,4.5,1145389696\n654,3793,4.0,1145389316\n654,3809,4.0,1145393559\n654,3844,4.0,1145394470\n654,3863,3.5,1145392935\n654,3868,4.5,1145389694\n654,3869,4.0,1145394039\n654,3897,4.0,1145390327\n654,3911,4.0,1145389495\n654,3916,4.5,1145393144\n654,3948,4.5,1145392402\n654,3967,3.0,1145393112\n654,3977,3.5,1145392227\n654,3984,3.5,1145394110\n654,3994,4.0,1145392457\n654,3996,4.5,1145389302\n654,4002,4.5,1145390478\n654,4007,5.0,1145394100\n654,4014,4.5,1145392712\n654,4016,4.5,1145393833\n654,4018,2.0,1145392995\n654,4022,3.5,1145392216\n654,4023,3.5,1145389685\n654,4025,4.0,1145392919\n654,4027,4.0,1145390517\n654,4034,5.0,1145390977\n654,4061,4.0,1145390007\n654,4069,2.0,1145389679\n654,4085,4.0,1145389493\n654,4121,4.0,1145394478\n654,4128,4.5,1145390500\n654,4148,4.0,1145393488\n654,4226,5.0,1145390503\n654,4246,4.0,1145392566\n654,4262,4.0,1145393210\n654,4270,4.0,1145393180\n654,4306,5.0,1145390245\n654,4308,2.0,1145392616\n654,4310,2.5,1145389672\n654,4321,4.5,1145393139\n654,4370,4.0,1145392737\n654,4447,4.0,1145389668\n654,4458,4.5,1145390411\n654,4489,4.5,1145394220\n654,4499,4.0,1145390363\n654,4545,4.0,1145394629\n654,4571,3.5,1145389663\n654,4621,4.0,1145394528\n654,4638,3.0,1145393562\n654,4641,3.5,1145393668\n654,4643,3.5,1145392998\n654,4678,3.5,1145389991\n654,4701,4.0,1145393838\n654,4718,4.0,1145393217\n654,4720,4.5,1145390532\n654,4734,5.0,1145393673\n654,4776,4.5,1145393526\n654,4816,3.0,1145393734\n654,4865,4.0,1145394351\n654,4878,5.0,1145391060\n654,4886,5.0,1145390136\n654,4896,4.0,1145390514\n654,4963,4.0,1145390449\n654,4975,3.5,1145393468\n654,4979,3.5,1145389480\n654,4980,3.5,1145394503\n654,4993,5.0,1145390118\n654,4995,5.0,1145390853\n654,5064,4.0,1145394179\n654,5171,3.5,1145394597\n654,5218,3.5,1145393029\n654,5266,4.5,1145393650\n654,5299,4.5,1145392743\n654,5308,4.0,1145394652\n654,5349,5.0,1145389477\n654,5377,4.5,1145389659\n654,5378,4.0,1145392491\n654,5388,4.0,1145393613\n654,5444,4.5,1145390898\n654,5445,4.5,1145390639\n654,5459,3.0,1145389657\n654,5481,4.0,1145393537\n654,5500,4.0,1145390397\n654,5502,4.5,1145392908\n654,5528,4.0,1145394239\n654,5618,3.5,1145390877\n654,5630,4.5,1145394063\n654,5650,4.0,1145390546\n654,5679,4.0,1145389654\n654,5782,4.0,1145389973\n654,5816,4.5,1145389474\n654,5945,3.0,1145393948\n654,5952,5.0,1145389346\n654,5956,4.5,1145393817\n654,5970,4.5,1145389969\n654,5989,4.5,1145390572\n654,5991,4.5,1145389651\n654,6156,4.0,1145389959\n654,6157,2.0,1145389641\n654,6188,4.0,1145394310\n654,6281,4.5,1145389639\n654,6287,3.5,1145389955\n654,6296,4.0,1145394635\n654,6297,4.0,1145390811\n654,6323,3.5,1145389636\n654,6333,4.5,1145390074\n654,6365,4.0,1145392577\n654,6373,4.0,1145393870\n654,6377,5.0,1145389470\n654,6378,4.0,1145393460\n654,6385,5.0,1145394544\n654,6502,4.0,1145390984\n654,6503,1.0,1145394547\n654,6534,2.5,1145394459\n654,6537,3.5,1145393618\n654,6539,4.5,1145390212\n654,6565,4.5,1145391005\n654,6708,4.0,1145390903\n654,6711,2.5,1145392703\n654,6807,4.5,1145390973\n654,6863,4.5,1145390932\n654,6870,4.0,1145391226\n654,6874,4.5,1145389466\n654,6934,4.0,1145393449\n654,6936,4.5,1145394696\n654,6942,5.0,1145390901\n654,6947,4.0,1145390847\n654,6953,3.5,1145389629\n654,6957,4.0,1145389944\n654,6979,4.0,1145390440\n654,7028,4.0,1145390140\n654,7090,4.5,1145390856\n654,7143,3.5,1145389626\n654,7147,5.0,1145390632\n654,7153,5.0,1145389464\n654,7162,4.5,1145389941\n654,7254,4.0,1145389621\n654,7361,4.0,1145391109\n654,7438,4.0,1145390611\n654,7458,4.0,1145394441\n654,7569,4.0,1145390661\n654,8360,4.5,1145390586\n654,8368,5.0,1145390271\n654,8376,4.5,1145394588\n654,8464,4.0,1145390790\n654,8504,4.5,1145391310\n654,8528,4.5,1145394682\n654,8622,1.5,1145393639\n654,8636,5.0,1145390121\n654,8784,4.5,1145391136\n654,8827,4.5,1145390089\n654,8914,4.0,1145390629\n654,8949,3.5,1145394049\n654,8958,4.5,1145391249\n654,8961,5.0,1145390234\n654,8970,4.5,1145389618\n654,26819,4.0,1145391359\n654,30707,4.0,1145390953\n654,30793,4.0,1145391716\n654,30812,5.0,1145390571\n654,30825,3.0,1145389926\n654,32587,4.5,1145390731\n654,33166,4.5,1145391181\n654,33493,4.5,1145390758\n654,33660,5.0,1145390241\n654,33794,4.5,1145390109\n654,33836,2.0,1145391739\n654,34048,4.0,1145391736\n654,34072,4.5,1145390888\n654,34319,4.0,1145391692\n654,34332,4.5,1145391697\n654,34405,4.5,1145390059\n654,34528,4.0,1145391577\n654,34532,4.0,1145391583\n654,35836,5.0,1145390709\n654,35957,4.5,1145391547\n654,37727,3.0,1145391514\n654,37729,4.0,1145391509\n654,37733,4.5,1145390744\n654,37741,3.5,1145390445\n654,38038,5.0,1145389923\n654,39292,3.5,1145390735\n654,40278,4.0,1145390237\n654,40815,5.0,1145390099\n654,40819,4.5,1145390311\n654,41566,4.0,1145390474\n654,41569,4.0,1145390406\n654,41997,4.0,1145390190\n654,42009,3.0,1145391400\n654,42734,3.0,1145391377\n654,43560,4.5,1145390389\n654,44022,4.0,1145391315\n654,44191,4.5,1145390071\n654,44199,4.0,1145390063\n655,2,4.0,1470073353\n655,18,4.0,1470073389\n655,32,4.0,1470074140\n655,50,5.0,1470070848\n655,163,4.0,1470073512\n655,253,4.0,1470074305\n655,260,2.5,1470072119\n655,296,4.0,1470071481\n655,316,4.0,1470071973\n655,353,4.0,1470071244\n655,364,4.5,1470072370\n655,367,4.0,1470074088\n655,368,5.0,1470070865\n655,520,2.0,1470074239\n655,588,4.5,1470073101\n655,595,4.0,1470073702\n655,750,5.0,1470070698\n655,1080,3.0,1470072425\n655,1136,5.0,1470070418\n655,1196,2.5,1470072117\n655,1197,5.0,1470070287\n655,1198,5.0,1470071137\n655,1247,4.0,1470073475\n655,1258,4.0,1470072938\n655,1261,5.0,1470071454\n655,1265,4.0,1470072540\n655,1270,5.0,1470070337\n655,1291,5.0,1470071173\n655,1527,4.0,1470072409\n655,1645,4.5,1470071840\n655,1748,4.0,1470074467\n655,1799,4.0,1470070990\n655,1923,5.0,1470070717\n655,2006,4.0,1470072791\n655,2174,4.0,1470071203\n655,2302,4.0,1470074229\n655,2423,4.0,1470073495\n655,2502,4.0,1470072221\n655,2542,5.0,1470070689\n655,2571,5.0,1470070517\n655,2617,5.0,1470070741\n655,2706,4.5,1470072923\n655,2716,4.5,1470071224\n655,2746,4.0,1470072584\n655,2918,5.0,1470071469\n655,2959,5.0,1470071900\n655,2997,3.5,1470072598\n655,3016,4.0,1470073527\n655,3017,3.5,1470073536\n655,3018,4.0,1470073438\n655,3039,4.0,1470071371\n655,3052,5.0,1470070662\n655,3175,4.5,1470071355\n655,3210,4.0,1470073215\n655,3421,5.0,1470071402\n655,3617,5.0,1470071605\n655,3968,4.0,1470071513\n655,4011,5.0,1470070367\n655,4105,4.0,1470074548\n655,4299,4.0,1470072697\n655,4306,4.5,1470072180\n655,4499,4.5,1470071752\n655,4533,4.0,1470074561\n655,4571,4.0,1470074407\n655,4720,3.5,1470075586\n655,4993,5.0,1470070639\n655,5303,4.0,1470074989\n655,5952,5.0,1470070640\n655,5991,4.0,1470075659\n655,6378,3.0,1470075174\n655,6539,5.0,1470070445\n655,6874,5.0,1470070815\n655,6902,4.0,1470074343\n655,6957,4.0,1470073372\n655,7153,5.0,1470070641\n655,7254,2.0,1470071807\n655,7438,2.5,1470072662\n655,7817,4.0,1470074428\n655,8874,4.0,1470071418\n655,8957,5.0,1470071439\n655,30793,4.0,1470073648\n655,32587,5.0,1470071619\n655,45722,5.0,1470071324\n655,46578,1.0,1470075044\n655,47997,4.0,1470071341\n655,48385,4.0,1470075219\n655,54259,4.0,1470074381\n655,54999,4.0,1470071498\n655,56715,4.0,1470072856\n655,58559,5.0,1470071088\n655,59387,4.0,1470075279\n655,59784,4.5,1470071960\n655,60684,3.0,1470072739\n655,68954,3.5,1470074877\n655,69122,3.0,1470075128\n655,71535,4.5,1470070964\n655,72998,4.0,1470074863\n655,79132,2.0,1470072052\n655,83134,4.0,1470073421\n655,91500,2.0,1470072391\n655,99114,3.0,1470075110\n655,116397,4.0,1470073336\n655,143859,3.0,1470075909\n655,148626,3.0,1470075763\n655,158314,4.5,1470071021\n656,24,4.0,986243844\n656,345,5.0,986242379\n656,412,5.0,986242405\n656,588,5.0,986242465\n656,779,4.0,986242211\n656,858,5.0,986241026\n656,900,5.0,986242635\n656,909,5.0,986242835\n656,913,5.0,986243618\n656,924,3.0,986242241\n656,926,5.0,986242527\n656,932,5.0,986242405\n656,940,5.0,986242379\n656,952,5.0,986242857\n656,969,5.0,986242405\n656,1019,4.0,986242241\n656,1032,5.0,986242496\n656,1090,4.0,986241026\n656,1200,5.0,986242527\n656,1203,5.0,986242241\n656,1208,5.0,986242835\n656,1214,5.0,986242496\n656,1225,5.0,986242569\n656,1230,5.0,986242811\n656,1269,5.0,986242886\n656,1513,5.0,986243870\n656,1608,5.0,986242424\n656,1690,5.0,986242527\n656,1692,5.0,986242496\n656,1693,5.0,986242652\n656,1694,3.0,986242835\n656,1784,5.0,986242886\n656,1927,5.0,986242527\n656,1957,5.0,986240991\n656,1959,5.0,986243819\n656,2130,4.0,986242909\n656,2141,4.0,986242635\n656,2147,4.0,986243275\n656,2188,3.0,986243178\n656,2262,4.0,986242328\n656,2294,5.0,986242811\n656,2355,5.0,986243246\n656,2369,4.0,986243300\n656,2390,4.0,986243587\n656,2394,4.0,986243844\n656,2396,5.0,986243898\n656,2520,5.0,986241026\n656,2539,5.0,986242691\n656,2622,5.0,986243618\n656,2628,5.0,986240991\n656,2670,5.0,986243870\n656,2676,4.0,986243563\n656,2686,5.0,986243870\n656,2688,5.0,986243477\n656,2690,5.0,986243563\n656,2710,1.0,986243226\n656,2712,4.0,986243432\n656,2724,4.0,986243898\n656,2734,3.0,986243650\n656,2761,5.0,986243587\n656,2762,5.0,986243898\n656,2763,5.0,986243988\n656,2791,5.0,986242465\n656,2792,4.0,986242465\n656,2805,3.0,986243618\n656,2858,5.0,986242603\n656,2861,4.0,986243457\n656,2881,5.0,986243328\n656,2906,4.0,986243844\n656,2908,4.0,986243246\n656,2961,5.0,986243917\n656,2971,5.0,986242550\n656,2987,4.0,986244044\n656,3051,5.0,986242811\n656,3081,4.0,986243898\n656,3114,5.0,986243988\n656,3155,5.0,986242773\n656,3176,5.0,986243917\n656,3179,5.0,986242752\n656,3203,5.0,986243300\n656,3238,4.0,986243432\n656,3251,5.0,986242424\n656,3363,5.0,986242603\n656,3364,5.0,986242886\n656,3408,4.0,986243432\n656,3524,4.0,986242886\n656,3534,4.0,986242276\n656,3548,5.0,986242930\n656,3565,5.0,986244044\n656,3578,5.0,986243477\n656,3623,5.0,986243650\n656,3649,4.0,986242603\n656,3701,5.0,986242496\n656,3717,2.0,986243477\n656,3751,4.0,986243275\n656,3752,1.0,986243618\n656,3753,5.0,986243819\n656,3793,4.0,986244044\n656,3801,5.0,986242691\n656,3845,5.0,986242691\n656,3863,4.0,986243275\n656,3897,5.0,986242569\n656,3909,5.0,986244044\n656,3952,5.0,986243300\n656,3977,5.0,986243275\n656,3988,5.0,986243563\n656,4022,5.0,986241107\n656,4023,4.0,986241107\n656,4025,4.0,986241107\n656,4027,5.0,986241183\n656,4033,5.0,986241148\n656,4034,5.0,986241107\n656,4039,5.0,986242773\n656,4042,4.0,986242465\n656,4069,4.0,986241232\n656,4155,3.0,986242123\n656,4161,4.0,986241148\n656,4167,2.0,986241207\n656,4177,5.0,986242072\n656,4178,5.0,986242072\n656,4184,5.0,986242047\n656,4186,4.0,986242047\n656,4187,5.0,986242047\n656,4189,5.0,986242048\n656,4190,5.0,986242048\n656,4191,5.0,986242496\n656,4205,5.0,986241997\n656,4228,4.0,986241183\n657,150,4.0,841960681\n657,153,2.0,841960714\n657,161,4.0,841960771\n657,165,3.0,841960714\n657,253,4.0,841960819\n657,292,4.0,841960771\n657,296,5.0,841960682\n657,318,3.0,841960771\n657,329,4.0,841960771\n657,344,3.0,841960714\n657,356,3.0,841960819\n657,380,3.0,841960682\n657,457,4.0,841960742\n657,590,4.0,841960680\n657,592,3.0,841960679\n657,593,5.0,841960742\n657,595,3.0,841960742\n657,608,4.0,841960954\n657,648,3.0,841960920\n657,780,2.0,841960920\n658,34,4.0,941488542\n658,58,5.0,941489177\n658,62,5.0,941489024\n658,110,4.0,941488542\n658,111,5.0,941489475\n658,150,5.0,941489110\n658,151,5.0,941488989\n658,161,4.0,941488989\n658,296,3.0,941488704\n658,314,4.0,941489074\n658,318,4.0,941488424\n658,339,4.0,941489141\n658,356,5.0,941489110\n658,364,5.0,941489662\n658,468,4.0,941489475\n658,491,4.0,941489074\n658,497,5.0,941488905\n658,508,4.0,941488485\n658,527,5.0,941488384\n658,588,5.0,941489662\n658,593,4.0,941488384\n658,594,5.0,941489662\n658,595,3.0,941488664\n658,608,5.0,941488424\n658,800,3.0,941488664\n658,802,5.0,941489213\n658,912,5.0,941489587\n658,1210,4.0,941488587\n658,1233,5.0,941488782\n658,1247,5.0,941489588\n658,1271,5.0,941489177\n658,1339,4.0,941489405\n658,1356,3.0,941489074\n658,1358,5.0,941488953\n658,1398,4.0,941489405\n658,1408,5.0,941489276\n658,1608,4.0,941489074\n658,1610,5.0,941489024\n658,1617,4.0,941488485\n658,1633,3.0,941488339\n658,1641,3.0,941488339\n658,1678,4.0,941489475\n658,1694,5.0,941489244\n658,1704,4.0,941488704\n658,1721,5.0,941488823\n658,1747,4.0,941489441\n658,1810,4.0,941488782\n658,1947,5.0,941489587\n658,2028,5.0,941488823\n658,2087,5.0,941489662\n658,2249,3.0,941488704\n658,2268,3.0,941488542\n658,2291,3.0,941488704\n658,2302,5.0,941489214\n658,2321,5.0,941489508\n658,2396,5.0,941488905\n658,2670,5.0,941489847\n658,2716,5.0,941489847\n658,2953,3.0,941488823\n658,2987,5.0,941489662\n659,6,3.0,836216031\n659,14,4.0,837271765\n659,16,5.0,834598615\n659,17,4.0,839168922\n659,18,1.0,839090399\n659,19,1.0,834693429\n659,22,4.0,834693258\n659,24,3.0,835642366\n659,25,5.0,834598421\n659,29,4.0,861612034\n659,32,4.0,840210776\n659,35,3.0,834693748\n659,36,4.0,837455668\n659,43,3.0,845291355\n659,45,3.0,834693566\n659,47,4.0,835641852\n659,50,4.0,835642125\n659,55,3.0,842858683\n659,62,3.0,844078288\n659,64,3.0,837271578\n659,78,2.0,853835268\n659,81,3.0,847452032\n659,85,3.0,843673922\n659,89,2.0,842524638\n659,92,4.0,848313665\n659,105,3.0,834694937\n659,110,3.0,839842574\n659,113,4.0,851960210\n659,144,3.0,835642346\n659,150,5.0,834598040\n659,151,4.0,834692716\n659,153,3.0,835642452\n659,155,3.0,835642452\n659,160,2.0,834694778\n659,162,4.0,835641746\n659,167,4.0,836137550\n659,186,2.0,834692716\n659,188,3.0,835642452\n659,190,2.0,852460810\n659,194,4.0,834598281\n659,198,2.0,835642492\n659,202,4.0,855057017\n659,207,3.0,842858671\n659,208,2.0,835642569\n659,215,4.0,834694545\n659,224,3.0,835642424\n659,229,5.0,834598615\n659,230,4.0,834598718\n659,233,3.0,835642346\n659,235,5.0,834598653\n659,247,4.0,834598355\n659,249,4.0,834598718\n659,257,3.0,835642292\n659,260,5.0,856698415\n659,265,3.0,835642405\n659,266,2.0,834692700\n659,272,3.0,834598514\n659,281,4.0,840287752\n659,282,3.0,834693471\n659,292,3.0,834598112\n659,294,3.0,834694735\n659,296,3.0,834598040\n659,300,5.0,834598140\n659,306,4.0,834598338\n659,307,4.0,834598421\n659,308,4.0,834598483\n659,314,3.0,840210905\n659,316,3.0,834598101\n659,318,3.0,835642219\n659,331,3.0,860395308\n659,337,4.0,835642201\n659,339,5.0,834999161\n659,342,2.0,835641820\n659,344,4.0,834598085\n659,353,3.0,834598630\n659,355,2.0,851960348\n659,356,4.0,834598297\n659,357,3.0,835642405\n659,364,5.0,834598537\n659,365,2.0,839169255\n659,367,4.0,834694890\n659,369,2.0,834694818\n659,373,4.0,837271647\n659,375,4.0,834694151\n659,376,3.0,835642292\n659,377,3.0,834598384\n659,380,5.0,834598040\n659,412,3.0,834694735\n659,422,3.0,834694750\n659,442,2.0,834694794\n659,446,3.0,834598421\n659,452,4.0,834693762\n659,454,4.0,855588743\n659,457,4.0,834598140\n659,469,3.0,835642452\n659,471,4.0,853412972\n659,480,4.0,835642125\n659,481,3.0,835642323\n659,493,3.0,834694644\n659,497,4.0,834694545\n659,500,5.0,834598679\n659,509,4.0,835642201\n659,515,4.0,834598866\n659,521,2.0,834694818\n659,527,4.0,834598256\n659,529,5.0,842347557\n659,534,4.0,834598311\n659,539,3.0,835642251\n659,555,2.0,834598514\n659,563,3.0,834694187\n659,588,3.0,834598907\n659,589,5.0,834598281\n659,590,4.0,834598040\n659,592,3.0,834598040\n659,593,5.0,834598140\n659,597,3.0,834692814\n659,606,2.0,835642569\n659,608,5.0,847452089\n659,613,3.0,863797381\n659,630,3.0,848903279\n659,648,3.0,851960105\n659,687,3.0,835642424\n659,724,2.0,845983328\n659,733,3.0,858587742\n659,736,3.0,845291317\n659,748,2.0,859192268\n659,765,2.0,857298522\n659,780,3.0,851960312\n659,788,3.0,852460851\n659,800,3.0,862829424\n659,805,3.0,856698535\n659,832,3.0,866207434\n659,848,3.0,866207451\n659,858,5.0,860395342\n659,880,2.0,854359234\n659,1073,4.0,857298553\n659,1089,3.0,855057046\n659,1196,5.0,856698438\n659,1210,4.0,856698463\n659,1222,4.0,857298522\n659,1233,4.0,860395362\n659,1356,4.0,848903148\n660,1,2.5,1436680062\n660,32,4.0,1436681788\n660,260,4.5,1436680107\n660,356,3.0,1436680081\n660,480,3.0,1436680084\n660,593,0.5,1436680073\n660,1196,4.0,1436680301\n660,1198,4.0,1436680304\n660,1210,4.0,1436680296\n660,1223,4.5,1436681556\n660,1270,2.5,1436680069\n660,1291,3.5,1436680299\n660,2571,4.0,1436680065\n660,3751,3.0,1436680709\n660,4993,4.0,1436680288\n660,5218,3.5,1436680354\n660,5378,3.5,1436680719\n660,5952,4.0,1436680291\n660,6807,4.0,1436682983\n660,6874,4.5,1436681821\n660,6934,3.0,1436680347\n660,7099,4.5,1436682907\n660,7153,4.5,1436681506\n660,8961,4.0,1436683470\n660,8970,4.0,1436683590\n660,26662,4.0,1436681618\n660,26776,4.0,1436681723\n660,30707,4.0,1436681839\n660,33493,4.5,1436680343\n660,40815,4.5,1436681461\n660,49272,4.5,1436681225\n660,52319,4.0,1436683156\n660,54001,4.5,1436681284\n660,58559,4.5,1436680285\n660,59315,4.5,1436681217\n660,59784,4.5,1436681393\n660,60069,5.0,1436680897\n660,60684,4.5,1436681233\n660,68157,4.5,1436681185\n660,68358,4.5,1436680692\n660,68954,4.5,1436680893\n660,69844,4.5,1436681276\n660,70286,5.0,1436680936\n660,72998,4.0,1436680686\n660,73017,4.5,1436681291\n660,76251,5.0,1436681212\n660,77561,4.0,1436681588\n660,79091,4.5,1436681270\n660,79132,4.5,1436680698\n660,79357,4.0,1436682871\n660,81564,4.5,1436681359\n660,81834,4.5,1436681246\n660,81847,4.5,1436681277\n660,83132,4.0,1436683219\n660,86298,4.0,1436683204\n660,86332,4.0,1436683033\n660,86882,4.0,1436683166\n660,87232,4.5,1436681238\n660,87306,4.5,1436681550\n660,88125,4.5,1436680929\n660,89745,4.5,1436681178\n660,91500,4.5,1436681314\n660,91542,4.5,1436681271\n660,95167,4.5,1436681409\n660,95510,4.0,1436681692\n660,97913,4.5,1436681227\n660,98809,4.5,1436681274\n660,99114,5.0,1436681209\n660,101864,4.0,1436683368\n660,102125,4.0,1436681306\n660,102445,4.5,1436681254\n660,103141,4.5,1436681367\n660,103335,4.5,1436681312\n660,106002,4.0,1436683169\n660,106072,4.0,1436681595\n660,106487,4.5,1436681234\n660,106489,4.5,1436681221\n660,106642,4.0,1436681730\n660,106696,4.5,1436681285\n660,106920,4.0,1436681673\n660,108932,4.5,1436681176\n660,109487,4.5,1436680365\n660,111362,4.5,1436680891\n660,111659,4.5,1436681547\n660,111759,4.5,1436680900\n660,112852,5.0,1436680931\n660,113378,4.0,1436681680\n660,114180,3.5,1436681811\n660,115617,5.0,1436680362\n660,116823,4.5,1436681495\n660,122886,4.0,1436683412\n660,135518,4.0,1436680330\n661,318,5.0,1190266808\n661,481,3.5,1190265639\n661,527,4.5,1190266805\n661,637,0.5,1190265552\n661,678,2.5,1190266880\n661,1019,4.5,1190265564\n661,1020,2.5,1190265600\n661,1027,1.0,1190265513\n661,1049,3.5,1190265636\n661,1077,4.5,1190265521\n661,1103,4.5,1190265653\n661,1185,5.0,1190265644\n661,1242,4.5,1190266708\n661,1259,4.0,1190266599\n661,1263,4.5,1190266665\n661,1296,2.5,1190265547\n661,1704,5.0,1190266672\n661,1958,4.0,1190265661\n661,1965,4.0,1190265583\n661,2013,4.0,1190265651\n661,2352,3.0,1190265500\n661,2686,4.5,1190265657\n661,3198,4.5,1190266589\n661,3363,4.0,1190265536\n661,3552,4.5,1190266004\n661,4262,3.5,1190266801\n661,4483,0.5,1190266014\n661,5952,5.0,1190266738\n661,6104,5.0,1190266644\n661,7153,5.0,1190266638\n661,8961,4.0,1190266732\n661,46578,5.0,1190266632\n661,48516,4.0,1190266565\n662,2,5.0,839022500\n662,10,3.0,839022269\n662,19,2.0,839022347\n662,34,4.0,839022324\n662,39,3.0,839022369\n662,47,3.0,839022324\n662,150,4.0,839022109\n662,158,4.0,839022587\n662,165,3.0,839022166\n662,185,4.0,839022269\n662,186,3.0,839022731\n662,204,3.0,839022714\n662,208,3.0,839022269\n662,219,5.0,839022638\n662,225,3.0,839022347\n662,231,3.0,839022212\n662,236,3.0,839022474\n662,256,3.0,839022587\n662,266,4.0,839022388\n662,282,4.0,839022474\n662,288,1.0,839022292\n662,292,4.0,839022237\n662,296,3.0,839022109\n662,300,3.0,839022324\n662,316,2.0,839022212\n662,317,4.0,839022369\n662,318,5.0,839022237\n662,337,4.0,839022500\n662,339,4.0,839022269\n662,344,2.0,839022166\n662,350,3.0,839022474\n662,356,5.0,839022292\n662,357,3.0,839022434\n662,364,3.0,839022324\n662,367,3.0,839022347\n662,377,4.0,839022369\n662,380,3.0,839022109\n662,420,3.0,839022369\n662,432,3.0,839022410\n662,434,3.0,839022237\n662,440,3.0,839022409\n662,454,3.0,839022324\n662,455,4.0,839022638\n662,457,4.0,839022237\n662,474,3.0,839022587\n662,480,3.0,839022292\n662,500,4.0,839022388\n662,508,4.0,839022638\n662,509,3.0,839022731\n662,527,5.0,839022410\n662,539,4.0,839022434\n662,553,2.0,839022474\n662,586,4.0,839022434\n662,587,4.0,839022409\n662,588,4.0,839022166\n662,595,4.0,839022212\n662,597,4.0,839022434\n662,736,1.0,839022665\n663,1,4.0,1438397999\n663,356,4.0,1438397977\n663,480,3.5,1438398009\n663,593,4.0,1438398015\n663,1270,4.0,1438398005\n663,2571,4.0,1438397995\n663,111781,3.5,1438412805\n663,117529,4.0,1438412990\n663,120799,3.5,1438412929\n663,122882,4.0,1438413049\n663,122900,3.5,1438412846\n663,127124,4.0,1438413063\n663,128512,3.0,1438412817\n663,132046,4.0,1438413009\n663,133419,3.5,1438413046\n663,134246,3.0,1438412792\n663,134368,4.0,1438412766\n663,134528,3.5,1438412783\n663,134783,3.0,1438412778\n663,134853,4.0,1438412956\n663,135861,4.0,1438412940\n663,135887,5.0,1438412867\n663,136598,3.5,1438412814\n663,137595,3.0,1438412878\n663,138204,3.5,1438412914\n663,139642,4.0,1438412820\n664,1,3.5,1362421730\n664,6,4.0,1393890301\n664,16,4.0,1343732078\n664,22,3.0,1393891205\n664,29,4.0,1343747245\n664,32,5.0,1343746766\n664,47,4.5,1343731903\n664,50,4.5,1343746665\n664,70,3.5,1343827611\n664,110,4.0,1343731865\n664,111,4.0,1393890345\n664,163,4.0,1393891162\n664,165,3.5,1343835342\n664,170,3.0,1343731415\n664,180,3.0,1393890990\n664,198,4.0,1343762698\n664,223,4.0,1343746356\n664,231,4.0,1393891721\n664,256,2.5,1343731349\n664,260,4.5,1343731723\n664,288,4.0,1393890551\n664,292,3.5,1393891181\n664,293,4.5,1343731921\n664,296,5.0,1343731800\n664,318,4.5,1343731695\n664,353,4.0,1393891115\n664,356,4.5,1343731916\n664,367,3.5,1343835326\n664,377,4.0,1343763319\n664,431,4.0,1343746797\n664,457,3.5,1343732009\n664,480,3.5,1343747011\n664,541,4.0,1343747033\n664,589,4.5,1343746709\n664,592,4.0,1343827498\n664,593,4.5,1343746707\n664,597,3.0,1393891178\n664,648,4.5,1441100995\n664,673,2.5,1343731340\n664,733,4.0,1393890683\n664,741,4.0,1343746934\n664,778,4.5,1352368484\n664,780,3.5,1343827507\n664,858,4.0,1343746801\n664,924,4.0,1393891072\n664,1027,3.5,1393890734\n664,1036,4.0,1343746671\n664,1059,2.5,1343731335\n664,1079,2.5,1393890305\n664,1080,4.5,1343746878\n664,1089,4.5,1343746735\n664,1127,4.5,1343746667\n664,1136,4.5,1343746875\n664,1196,4.5,1343731727\n664,1197,4.5,1362421746\n664,1198,4.5,1343746823\n664,1199,3.5,1343731939\n664,1200,4.0,1343731990\n664,1206,3.5,1343747072\n664,1210,4.5,1343732032\n664,1213,4.0,1343746780\n664,1214,3.5,1343746965\n664,1215,4.5,1441100835\n664,1221,4.5,1343746909\n664,1222,3.5,1343746839\n664,1240,4.0,1343746829\n664,1258,4.0,1343731803\n664,1265,4.0,1343746638\n664,1267,3.0,1343731520\n664,1270,4.0,1343746645\n664,1291,4.5,1343731996\n664,1320,4.0,1344435936\n664,1333,3.5,1393891616\n664,1339,3.5,1343731326\n664,1370,4.0,1343751264\n664,1377,4.0,1393891107\n664,1393,4.0,1393890886\n664,1405,3.0,1343731359\n664,1407,3.5,1393891262\n664,1464,3.0,1343762946\n664,1466,4.5,1343732072\n664,1527,4.0,1343746491\n664,1573,4.0,1343763323\n664,1580,4.0,1347374181\n664,1617,4.0,1343746844\n664,1639,3.5,1393890848\n664,1676,4.0,1393891660\n664,1687,4.0,1393891486\n664,1690,2.5,1344435922\n664,1729,4.5,1343732075\n664,1732,4.5,1343746946\n664,1747,3.0,1343731309\n664,1748,4.5,1343746791\n664,1884,4.5,1343746973\n664,1909,3.5,1344435964\n664,1917,3.5,1343835341\n664,1923,3.5,1393890693\n664,1997,3.0,1393891057\n664,2000,4.0,1343746937\n664,2011,4.0,1441101131\n664,2028,4.5,1343731833\n664,2058,4.0,1343835417\n664,2115,4.0,1343732098\n664,2126,3.5,1393891612\n664,2161,3.5,1343731320\n664,2167,3.0,1343731283\n664,2232,3.5,1344435984\n664,2288,4.0,1343747227\n664,2291,4.5,1343747058\n664,2329,4.5,1343731749\n664,2334,4.0,1393891558\n664,2403,4.0,1393891165\n664,2420,3.5,1343731427\n664,2427,3.0,1343731391\n664,2502,4.0,1343746552\n664,2529,4.0,1343763186\n664,2542,4.5,1343746682\n664,2571,4.5,1343731717\n664,2594,4.5,1343762815\n664,2605,3.0,1343731398\n664,2617,3.5,1393891254\n664,2628,3.0,1393891290\n664,2641,3.0,1343731384\n664,2683,4.0,1393891239\n664,2692,4.0,1343731923\n664,2700,4.0,1343826095\n664,2706,4.0,1441911592\n664,2710,3.0,1441911601\n664,2716,4.0,1343746660\n664,2717,4.0,1393891468\n664,2762,4.5,1343731847\n664,2826,4.0,1343748754\n664,2858,4.0,1343746632\n664,2916,3.5,1393890939\n664,2959,5.0,1343731838\n664,2985,3.0,1393891404\n664,3000,4.0,1343731830\n664,3006,4.0,1343762067\n664,3033,3.5,1393891105\n664,3039,3.5,1393890690\n664,3052,4.0,1362421718\n664,3081,4.0,1393890678\n664,3082,2.5,1343731402\n664,3114,3.5,1362421743\n664,3147,4.0,1343746540\n664,3160,3.0,1343746689\n664,3253,4.0,1393891045\n664,3275,4.5,1343746555\n664,3408,3.0,1393890942\n664,3452,4.5,1393891400\n664,3476,3.5,1343762938\n664,3481,4.0,1343746520\n664,3499,3.0,1393891530\n664,3527,3.0,1393890855\n664,3555,3.5,1393891459\n664,3578,5.0,1343746722\n664,3623,4.0,1441911610\n664,3717,3.5,1393891456\n664,3752,3.5,1393891548\n664,3753,3.5,1393891055\n664,3785,3.5,1393891737\n664,3793,4.0,1343835317\n664,3863,3.5,1441911701\n664,3897,4.0,1343746511\n664,3949,4.0,1343731896\n664,3969,3.5,1393891298\n664,3994,4.0,1344436072\n664,3996,4.0,1362421741\n664,4011,4.5,1343731927\n664,4022,3.0,1343826100\n664,4105,4.0,1441100858\n664,4148,3.5,1393891200\n664,4223,3.5,1343732090\n664,4226,4.5,1343746733\n664,4238,3.0,1393890950\n664,4239,4.0,1343732086\n664,4262,4.5,1343746774\n664,4270,4.0,1393891519\n664,4299,3.5,1393890198\n664,4306,4.0,1343746624\n664,4310,2.5,1441911696\n664,4343,3.5,1393891150\n664,4344,3.5,1393891441\n664,4369,3.5,1393891751\n664,4370,4.0,1393890874\n664,4378,4.0,1343762341\n664,4387,3.5,1393891292\n664,4641,2.5,1343747191\n664,4643,4.0,1343761843\n664,4720,4.0,1393890262\n664,4776,4.5,1343746361\n664,4816,4.0,1393890981\n664,4848,3.5,1343747299\n664,4865,4.0,1393890960\n664,4874,4.0,1441101439\n664,4878,4.5,1343731628\n664,4886,3.5,1362421733\n664,4887,3.5,1393891251\n664,4890,3.0,1393891584\n664,4958,4.0,1393891490\n664,4963,3.5,1343746570\n664,4975,4.0,1343762825\n664,4993,4.0,1343731754\n664,5010,4.0,1343826156\n664,5064,4.0,1393891028\n664,5152,3.5,1393890624\n664,5171,4.0,1343761835\n664,5349,4.0,1343747256\n664,5388,4.0,1343835452\n664,5418,4.0,1343746698\n664,5420,3.0,1393891587\n664,5445,4.5,1343746939\n664,5459,4.0,1347374184\n664,5574,3.0,1393890864\n664,5618,4.5,1362421776\n664,5630,3.5,1393890336\n664,5669,4.0,1441100866\n664,5679,4.0,1393890260\n664,5782,4.5,1412246431\n664,5803,1.5,1393891657\n664,5903,4.0,1343746862\n664,5952,4.0,1343731791\n664,5954,3.0,1343746988\n664,5956,4.0,1393890987\n664,5989,3.5,1393890819\n664,6016,4.0,1343731686\n664,6059,4.0,1343835409\n664,6156,3.0,1393891259\n664,6187,4.0,1393890186\n664,6213,3.5,1393891580\n664,6263,3.0,1393891249\n664,6281,4.0,1344436015\n664,6323,4.5,1344436028\n664,6333,3.5,1393890739\n664,6365,4.0,1393891198\n664,6378,3.5,1441100827\n664,6537,3.5,1393891493\n664,6539,4.0,1343746806\n664,6548,3.5,1393891749\n664,6586,3.5,1393891344\n664,6709,3.0,1393891435\n664,6711,3.0,1343747041\n664,6755,3.0,1343827566\n664,6862,3.5,1343835424\n664,6870,4.5,1343731756\n664,6874,4.0,1343746869\n664,6934,3.5,1393891307\n664,7022,4.0,1343747167\n664,7143,3.0,1393890627\n664,7147,4.0,1343746856\n664,7153,4.0,1343731743\n664,7160,4.0,1343826198\n664,7254,4.5,1344534131\n664,7293,3.5,1393890236\n664,7346,3.5,1393891447\n664,7347,4.0,1344436094\n664,7360,3.5,1393890312\n664,7361,4.0,1343731623\n664,7362,3.0,1343835645\n664,7438,4.0,1343746819\n664,7445,4.5,1343747211\n664,7458,3.0,1393891196\n664,7502,4.5,1343731683\n664,7827,4.5,1343762685\n664,8361,3.0,1393891425\n664,8528,3.5,1393891047\n664,8529,4.0,1393891173\n664,8636,4.0,1393891175\n664,8641,4.5,1393890852\n664,8644,3.5,1393890881\n664,8665,3.5,1365264868\n664,8783,3.5,1344436082\n664,8784,4.5,1343746674\n664,8798,3.5,1343746526\n664,8810,3.0,1344435905\n664,8836,3.5,1393891171\n664,8874,4.0,1343747015\n664,8914,4.0,1343747001\n664,8947,3.0,1393890993\n664,8950,4.5,1343747045\n664,8957,4.5,1344436183\n664,8961,4.0,1441100684\n664,8970,4.5,1343747131\n664,26614,3.5,1343747272\n664,27773,3.5,1343731827\n664,27788,4.5,1343762919\n664,27904,5.0,1441100896\n664,30707,4.5,1441100838\n664,30749,4.5,1343731873\n664,30793,3.0,1393890884\n664,31685,3.0,1393891129\n664,31696,3.5,1393890706\n664,31878,4.0,1441100788\n664,32029,3.5,1393890719\n664,32587,4.5,1343746920\n664,33004,4.0,1393890708\n664,33085,3.0,1393891256\n664,33166,3.5,1343746561\n664,33679,3.0,1393891500\n664,33794,4.0,1343746787\n664,34048,3.0,1393891625\n664,34162,3.5,1393890909\n664,34319,3.0,1393890905\n664,34405,4.0,1343732038\n664,35836,3.5,1393890686\n664,36517,2.5,1343746952\n664,36529,4.5,1343746641\n664,37729,2.5,1393891348\n664,37733,3.0,1393890968\n664,37741,3.5,1393890985\n664,37857,4.0,1441100886\n664,38061,4.5,1343747037\n664,39446,4.5,1393890774\n664,40583,4.0,1393891627\n664,44191,4.5,1343746853\n664,44195,4.5,1343746831\n664,44199,4.0,1343746583\n664,44665,4.5,1343746514\n664,46970,3.5,1393890947\n664,46976,4.0,1343747148\n664,47610,4.0,1343746842\n664,48385,3.5,1393890342\n664,48394,4.0,1343731877\n664,48516,4.5,1343731789\n664,48738,4.5,1343746871\n664,48774,3.5,1343763155\n664,48780,4.0,1343731631\n664,49272,3.5,1393890549\n664,49278,4.0,1393890553\n664,49530,4.5,1343746573\n664,49932,2.5,1343762952\n664,51255,3.5,1343747077\n664,51412,3.5,1393891155\n664,51540,4.5,1343835475\n664,51662,4.0,1343826128\n664,51709,4.0,1343764123\n664,51935,4.0,1343835372\n664,52281,4.0,1343827597\n664,52328,4.0,1343763135\n664,52458,3.5,1393890318\n664,52604,4.5,1343826102\n664,52644,3.0,1393891730\n664,52722,3.0,1393891582\n664,52973,4.0,1343826089\n664,53125,4.0,1343826217\n664,53519,3.5,1393890876\n664,53972,4.0,1343826107\n664,53996,4.5,1343761879\n664,54286,3.5,1365264866\n664,54503,4.5,1343747066\n664,54995,4.0,1343827619\n664,55094,4.0,1344534151\n664,55118,3.5,1393890822\n664,55276,4.5,1343835466\n664,55290,4.5,1343746976\n664,55765,3.5,1343746997\n664,55820,3.5,1343731422\n664,55908,4.5,1343763123\n664,56145,4.0,1393890670\n664,56156,2.5,1393891664\n664,56174,3.5,1393890919\n664,56367,3.0,1343747184\n664,56788,3.0,1393890295\n664,57368,4.0,1343763267\n664,57401,4.0,1343835430\n664,57669,3.5,1343762326\n664,58103,3.5,1393890927\n664,58559,4.5,1343731689\n664,58998,4.0,1343826082\n664,59016,3.0,1393891118\n664,59315,4.0,1343746916\n664,59369,5.0,1343746922\n664,59615,2.5,1343826225\n664,59784,3.5,1393890640\n664,60040,3.5,1343761909\n664,60072,4.0,1393891160\n664,60074,3.0,1393891287\n664,60684,3.0,1343746944\n664,60753,4.5,1343761989\n664,60760,3.5,1344435970\n664,60832,3.0,1393891653\n664,61024,4.5,1393890299\n664,61248,3.5,1393891244\n664,62374,3.5,1393890673\n664,62849,3.0,1393890575\n664,63062,4.5,1343746905\n664,63082,4.0,1343747116\n664,63131,4.5,1343826093\n664,64497,3.0,1343761850\n664,64614,4.5,1343731952\n664,64620,4.0,1343747134\n664,64997,2.5,1343761859\n664,65642,4.5,1343762710\n664,67087,3.5,1441911645\n664,67197,3.5,1393891301\n664,68157,4.0,1393890283\n664,68159,4.0,1343835707\n664,68237,4.0,1343731634\n664,68319,3.5,1343761904\n664,68358,4.0,1343747052\n664,68554,3.0,1393890907\n664,68791,3.5,1441101037\n664,68954,4.0,1343731883\n664,69122,4.5,1343746677\n664,69306,3.0,1393891413\n664,69481,3.5,1343747104\n664,69524,4.5,1441100722\n664,69526,4.0,1343761884\n664,69757,3.0,1343731538\n664,70286,4.5,1343747150\n664,70336,3.0,1343761891\n664,71033,4.5,1344534155\n664,71106,4.0,1343764004\n664,71135,4.5,1393890716\n664,71468,2.0,1441100986\n664,71530,4.0,1393891216\n664,71535,4.5,1343747128\n664,71838,4.5,1393890922\n664,72011,3.5,1393890900\n664,72380,3.5,1344435977\n664,72489,3.0,1393891597\n664,72998,4.0,1343826141\n664,73017,4.0,1343732109\n664,73268,4.5,1393891329\n664,73321,4.0,1393890912\n664,74228,4.0,1343762932\n664,74458,4.5,1343746704\n664,74532,3.0,1393891411\n664,74545,4.0,1343835713\n664,74685,2.0,1393891080\n664,74789,3.0,1393891168\n664,76251,3.5,1343747107\n664,77561,4.0,1343747035\n664,78088,3.5,1344436005\n664,78469,2.5,1393891083\n664,78499,4.0,1343731860\n664,79057,3.0,1393891667\n664,79132,5.0,1343747060\n664,79592,4.0,1393890877\n664,79702,4.0,1393890631\n664,80219,4.0,1393891111\n664,80463,4.0,1343747266\n664,80489,4.5,1343835489\n664,80846,4.0,1344436046\n664,81229,3.5,1393890844\n664,81562,3.5,1393891326\n664,81932,3.5,1343746994\n664,82459,4.5,1393890932\n664,83134,3.0,1393890561\n664,84152,4.0,1343826037\n664,84392,4.0,1343835521\n664,84601,3.5,1343835403\n664,84954,4.0,1393890917\n664,85131,3.0,1343761868\n664,85412,4.5,1441101054\n664,85414,4.5,1343747081\n664,86332,3.5,1343761925\n664,86911,4.0,1393891378\n664,87232,4.0,1343746810\n664,87306,4.0,1343763273\n664,87430,2.5,1343761919\n664,87520,4.0,1343761875\n664,87869,3.5,1393890358\n664,88129,3.5,1441100766\n664,88140,4.0,1441100781\n664,88744,4.0,1343763243\n664,89030,3.0,1393891443\n664,89745,5.0,1343761942\n664,89774,3.5,1393890281\n664,90746,3.5,1393890681\n664,90866,3.5,1393890700\n664,91500,3.0,1441100579\n664,91529,4.5,1343731870\n664,91542,4.0,1343747049\n664,92420,3.5,1343763258\n664,93363,3.5,1393891190\n664,93840,4.0,1345749311\n664,94018,3.5,1344435891\n664,94478,2.5,1393891003\n664,94777,4.0,1347374186\n664,94864,3.0,1393891054\n664,95167,3.5,1352368503\n664,95510,4.0,1352368404\n664,95875,3.5,1393891495\n664,96079,4.0,1393890250\n664,96610,3.5,1393890361\n664,96737,4.5,1441101067\n664,97304,4.0,1393890634\n664,97921,4.0,1393890921\n664,98809,4.5,1362421658\n664,99114,4.0,1393890242\n664,101362,4.0,1393891524\n664,101864,4.0,1393891335\n664,102125,3.5,1393890596\n664,102445,4.0,1393890339\n664,102903,3.5,1393891351\n664,103042,4.0,1393891035\n664,103228,1.5,1393891189\n664,103249,4.0,1441100989\n664,103772,3.0,1393891408\n664,106487,3.5,1393891011\n664,106782,4.0,1441100768\n664,108932,4.5,1441100805\n664,109487,4.5,1441100696\n664,110102,4.5,1441100680\n664,111362,4.5,1441100663\n664,111759,4.5,1441100647\n664,112552,3.0,1441911714\n664,112556,3.0,1441911722\n664,112852,4.5,1441100650\n664,115149,4.0,1441101021\n664,115210,3.0,1441100872\n664,115617,4.5,1441100710\n664,115713,4.0,1441101113\n664,116797,4.0,1441100539\n664,122882,4.0,1441911719\n664,122892,5.0,1441100672\n664,122900,4.5,1441100833\n664,134170,4.5,1441101221\n665,2,3.0,992836405\n665,3,3.0,993347429\n665,5,3.0,993347605\n665,16,4.0,995233268\n665,32,4.0,995233393\n665,34,2.0,995233440\n665,39,2.0,992920699\n665,48,4.0,993345890\n665,60,2.0,992909820\n665,62,3.0,995233543\n665,64,2.0,995233119\n665,74,2.0,995232733\n665,104,4.0,993346305\n665,105,1.0,995232826\n665,122,4.0,993347490\n665,129,3.0,995232528\n665,140,3.0,995232826\n665,158,4.0,992909659\n665,165,3.0,997239405\n665,168,5.0,995232660\n665,180,3.0,993346386\n665,186,3.0,992838474\n665,195,4.0,993347429\n665,207,3.0,995232619\n665,216,4.0,993346679\n665,218,4.0,993347307\n665,231,1.0,993347429\n665,236,4.0,993347376\n665,239,3.0,993345976\n665,248,3.0,993347710\n665,252,3.0,993346936\n665,253,4.0,995233600\n665,260,4.0,1046967443\n665,266,4.0,995232591\n665,276,4.0,993347521\n665,292,4.0,995233679\n665,296,4.0,995233236\n665,317,5.0,992909626\n665,318,5.0,995233192\n665,337,2.0,1010197483\n665,339,3.0,995232733\n665,344,3.0,993347124\n665,353,2.0,992837225\n665,356,4.0,993179737\n665,357,2.0,992920982\n665,358,3.0,995233523\n665,364,5.0,992909069\n665,368,3.0,992836298\n665,377,3.0,992920834\n665,380,3.0,993346471\n665,413,2.0,993347605\n665,432,3.0,993347869\n665,435,1.0,992838359\n665,441,3.0,993346146\n665,450,4.0,995233784\n665,454,3.0,995233759\n665,455,3.0,1046967706\n665,457,3.0,997239297\n665,491,3.0,995233523\n665,493,3.0,995233679\n665,500,2.0,993346777\n665,508,4.0,995233377\n665,516,2.0,993347047\n665,520,2.0,993347751\n665,524,3.0,995233613\n665,527,5.0,995233192\n665,539,4.0,993346341\n665,542,3.0,993347673\n665,543,2.0,993346644\n665,551,2.0,992909069\n665,585,1.0,993347173\n665,586,3.0,992909509\n665,587,5.0,992837331\n665,588,4.0,992909069\n665,590,4.0,995233321\n665,593,4.0,995233209\n665,594,3.0,992909129\n665,595,5.0,992909099\n665,596,5.0,992909099\n665,597,5.0,992920864\n665,605,3.0,995232789\n665,616,3.0,992909509\n665,661,3.0,992909509\n665,673,2.0,993345934\n665,708,3.0,992838101\n665,709,3.0,992909171\n665,736,3.0,995233025\n665,784,1.0,993347829\n665,788,3.0,995233053\n665,802,3.0,995233600\n665,804,3.0,993346733\n665,830,3.0,993347376\n665,839,3.0,993535023\n665,852,3.0,993346981\n665,902,3.0,992920593\n665,912,5.0,992920551\n665,919,4.0,992909039\n665,920,4.0,992920593\n665,1012,3.0,992909039\n665,1013,4.0,992909251\n665,1015,4.0,992909421\n665,1019,3.0,992909129\n665,1020,3.0,993346644\n665,1022,4.0,993345666\n665,1023,4.0,992909206\n665,1025,4.0,992909251\n665,1028,4.0,993179524\n665,1029,4.0,992909171\n665,1030,4.0,992909820\n665,1031,4.0,992909251\n665,1032,4.0,992909206\n665,1033,4.0,992909395\n665,1036,3.0,997239275\n665,1043,3.0,995232807\n665,1059,1.0,995232660\n665,1060,4.0,993346203\n665,1061,3.0,995233350\n665,1073,5.0,992909099\n665,1090,3.0,999571975\n665,1093,3.0,995233784\n665,1097,5.0,992909039\n665,1100,3.0,995232840\n665,1101,5.0,992920654\n665,1136,5.0,993179524\n665,1188,3.0,995232487\n665,1196,4.0,1046967443\n665,1206,3.0,999571975\n665,1210,4.0,992836704\n665,1213,4.0,995233253\n665,1258,3.0,997239275\n665,1265,2.0,992920614\n665,1268,4.0,995233694\n665,1270,5.0,993179367\n665,1282,3.0,992909069\n665,1285,4.0,993179634\n665,1307,4.0,992920593\n665,1339,3.0,992920982\n665,1367,3.0,993347084\n665,1370,3.0,997239405\n665,1379,3.0,993347173\n665,1388,3.0,992838277\n665,1393,4.0,992920654\n665,1408,3.0,992836298\n665,1409,4.0,993347173\n665,1457,4.0,993346573\n665,1468,2.0,993347673\n665,1485,4.0,993346936\n665,1487,3.0,995233507\n665,1513,2.0,1046967133\n665,1541,3.0,995232789\n665,1569,4.0,993346680\n665,1580,4.0,993346471\n665,1584,4.0,995233350\n665,1593,3.0,995233071\n665,1597,4.0,995232636\n665,1608,4.0,1010197529\n665,1639,3.0,992920614\n665,1673,3.0,995233468\n665,1680,4.0,995232542\n665,1682,4.0,995233543\n665,1693,3.0,995233416\n665,1703,3.0,993347913\n665,1704,5.0,995233298\n665,1721,3.0,995232501\n665,1729,3.0,995233631\n665,1735,1.0,992920673\n665,1754,5.0,993534911\n665,1777,3.0,992920914\n665,1784,4.0,993179580\n665,1821,3.0,995232733\n665,1835,4.0,993535023\n665,1883,2.0,993346644\n665,1884,3.0,1046967746\n665,1888,3.0,993347084\n665,1895,3.0,992920982\n665,1911,4.0,1046966927\n665,1923,4.0,993346386\n665,1947,4.0,992920799\n665,1954,4.0,992837174\n665,1958,3.0,992837175\n665,1961,4.0,992836298\n665,2000,3.0,993179525\n665,2002,2.0,993346777\n665,2005,4.0,992909099\n665,2012,3.0,993346981\n665,2017,3.0,992909626\n665,2018,3.0,992909171\n665,2028,4.0,995233236\n665,2036,2.0,993347751\n665,2048,3.0,992909820\n665,2054,3.0,992909626\n665,2059,3.0,992909626\n665,2071,4.0,995233734\n665,2078,4.0,992909171\n665,2080,4.0,992920673\n665,2081,5.0,992909099\n665,2082,2.0,992909626\n665,2085,3.0,992909171\n665,2087,5.0,992909129\n665,2089,4.0,992909251\n665,2090,3.0,992909171\n665,2092,3.0,993345934\n665,2096,3.0,992909099\n665,2106,4.0,995233281\n665,2122,2.0,992838672\n665,2123,4.0,992909659\n665,2125,5.0,992920593\n665,2137,4.0,993345619\n665,2139,5.0,992909099\n665,2141,5.0,992909251\n665,2142,3.0,992909251\n665,2193,3.0,1010197529\n665,2231,3.0,995233705\n665,2245,3.0,992837431\n665,2248,3.0,993179421\n665,2268,4.0,992837175\n665,2282,1.0,993346524\n665,2291,3.0,992920982\n665,2302,3.0,993346203\n665,2316,3.0,995232826\n665,2321,2.0,993346471\n665,2335,3.0,993346777\n665,2340,4.0,995232619\n665,2384,2.0,992909820\n665,2396,2.0,1046967152\n665,2406,3.0,992920799\n665,2411,4.0,992838359\n665,2412,4.0,992838474\n665,2421,3.0,999572161\n665,2422,1.0,999572161\n665,2424,4.0,995232789\n665,2431,3.0,999572041\n665,2447,3.0,993346899\n665,2485,3.0,993346777\n665,2491,3.0,993347751\n665,2497,2.0,995233087\n665,2502,3.0,993346386\n665,2541,3.0,1046966905\n665,2558,3.0,993347263\n665,2567,4.0,993346733\n665,2571,5.0,1010197436\n665,2572,3.0,992920593\n665,2581,2.0,995232759\n665,2617,4.0,992837520\n665,2622,2.0,993347047\n665,2628,3.0,1010197561\n665,2640,5.0,992837431\n665,2671,3.0,992920914\n665,2683,4.0,1046966821\n665,2688,4.0,1046966986\n665,2694,4.0,993347047\n665,2706,3.0,993346239\n665,2707,2.0,1046966821\n665,2710,3.0,1046966868\n665,2719,2.0,1046967003\n665,2720,3.0,993347869\n665,2722,2.0,1046966905\n665,2723,2.0,993347636\n665,2724,3.0,993347263\n665,2750,3.0,993179879\n665,2761,4.0,992909039\n665,2763,2.0,1046967184\n665,2771,3.0,1046966868\n665,2791,4.0,993179555\n665,2797,5.0,993179525\n665,2806,2.0,993347829\n665,2826,1.0,1046966660\n665,2846,4.0,992909129\n665,2858,3.0,993179335\n665,2881,3.0,1046966927\n665,2890,2.0,995233416\n665,2918,5.0,993179335\n665,2953,2.0,993347913\n665,2959,5.0,995233253\n665,2961,4.0,993346680\n665,2978,3.0,993346386\n665,2987,3.0,993345810\n665,2997,3.0,993179395\n665,3004,1.0,993346847\n665,3005,3.0,1046966868\n665,3033,2.0,993179879\n665,3034,5.0,992909069\n665,3039,3.0,993179879\n665,3051,3.0,1046966821\n665,3052,3.0,997239405\n665,3053,2.0,1046967032\n665,3081,3.0,995232619\n665,3100,3.0,995233489\n665,3157,4.0,1046967184\n665,3160,4.0,995233468\n665,3173,4.0,999572112\n665,3174,3.0,993346423\n665,3186,4.0,995233649\n665,3225,4.0,1010198095\n665,3243,2.0,993347788\n665,3247,3.0,993347047\n665,3248,2.0,1046967693\n665,3252,3.0,995233581\n665,3253,3.0,997239372\n665,3255,3.0,993346471\n665,3257,3.0,995233025\n665,3258,2.0,993347788\n665,3259,3.0,995232636\n665,3263,4.0,993346981\n665,3269,3.0,995232759\n665,3273,2.0,1046967133\n665,3285,1.0,1010198155\n665,3287,4.0,1010198050\n665,3298,4.0,1010197936\n665,3300,3.0,1046967100\n665,3301,5.0,1010198079\n665,3316,4.0,1010198155\n665,3317,4.0,1010197773\n665,3325,3.0,1010198135\n665,3354,2.0,1046967064\n665,3396,3.0,992909069\n665,3398,3.0,997239426\n665,3408,4.0,1010197849\n665,3409,4.0,1046966960\n665,3418,3.0,995233377\n665,3436,3.0,995233071\n665,3450,3.0,993346733\n665,3477,4.0,993346777\n665,3481,3.0,993179667\n665,3483,3.0,1010198050\n665,3484,3.0,1010198252\n665,3510,5.0,993424251\n665,3527,3.0,992837287\n665,3534,4.0,1010198050\n665,3536,4.0,1010197951\n665,3555,4.0,993424279\n665,3563,2.0,992838474\n665,3565,2.0,1046967201\n665,3578,5.0,993180356\n665,3615,4.0,992909421\n665,3617,2.0,1010197972\n665,3623,4.0,1010198029\n665,3672,3.0,992909626\n665,3705,3.0,995233087\n665,3712,3.0,1010197529\n665,3717,3.0,1010198112\n665,3752,3.0,1010198095\n665,3753,4.0,1010197951\n665,3755,3.0,1010197993\n665,3784,3.0,1010197993\n665,3785,1.0,1010198112\n665,3793,4.0,1010197870\n665,3798,4.0,1010198029\n665,3809,3.0,993346936\n665,3824,2.0,1046966842\n665,3825,3.0,1010198181\n665,3826,2.0,1010198207\n665,3857,2.0,1046966868\n665,3869,3.0,993347567\n665,3882,3.0,1010198167\n665,3893,1.0,992838004\n665,3908,1.0,1046967201\n665,3916,5.0,992837175\n665,3948,4.0,1010197888\n665,3949,3.0,995232273\n665,3964,3.0,992909251\n665,3977,4.0,992838149\n665,3978,3.0,992837743\n665,3980,2.0,992837431\n665,3981,2.0,1046967114\n665,3986,3.0,1046966660\n665,3987,3.0,992838277\n665,3988,5.0,992908810\n665,3991,3.0,1010198231\n665,3994,4.0,995232302\n665,3996,4.0,993180227\n665,3997,2.0,995232382\n665,3998,4.0,995232342\n665,4006,3.0,993345976\n665,4011,2.0,995232302\n665,4018,4.0,992838149\n665,4020,3.0,992908542\n665,4022,4.0,995232273\n665,4023,5.0,997239351\n665,4025,5.0,992838190\n665,4027,4.0,1010197801\n665,4034,3.0,993854820\n665,4039,3.0,992909206\n665,4040,3.0,993347429\n665,4052,4.0,992838277\n665,4067,3.0,995232789\n665,4069,4.0,1010198155\n665,4091,4.0,992920944\n665,4109,3.0,992838672\n665,4132,3.0,1010197651\n665,4148,3.0,992908465\n665,4155,4.0,992908410\n665,4161,3.0,992908384\n665,4167,3.0,999572129\n665,4205,3.0,993346981\n665,4226,4.0,1010197752\n665,4238,3.0,992836853\n665,4270,5.0,992836853\n665,4277,5.0,992837287\n665,4299,4.0,992836853\n665,4305,3.0,1046967473\n665,4306,5.0,1010197453\n665,4308,5.0,1046967234\n665,4310,4.0,992836853\n665,4318,3.0,992837743\n665,4321,3.0,992837432\n665,4333,2.0,997239468\n665,4344,4.0,993345519\n665,4351,4.0,992837743\n665,4352,3.0,997239297\n665,4367,4.0,992908325\n665,4368,4.0,1010197561\n665,4370,2.0,997239207\n665,4446,3.0,997239207\n665,4448,1.0,1046967133\n665,4638,3.0,999571913\n665,4639,3.0,1010197579\n665,4643,4.0,997239207\n665,4701,4.0,999571892\n665,4736,1.0,1010197684\n665,4896,5.0,1010197308\n665,4951,3.0,1010197579\n665,4993,5.0,1046967408\n665,5219,3.0,1046967769\n665,5377,4.0,1046967523\n665,5378,4.0,1046967443\n665,5445,3.0,1046967549\n665,5479,2.0,1046967641\n665,5480,4.0,1046967706\n665,5502,4.0,1046967596\n665,5679,3.0,1046967679\n665,5952,5.0,1046967408\n665,5991,4.0,1046967253\n665,6238,3.0,1046967721\n666,6,5.0,838921278\n666,10,3.0,838920928\n666,19,3.0,838920996\n666,39,2.0,838921015\n666,105,3.0,838921278\n666,110,2.0,838920959\n666,150,4.0,838920789\n666,153,2.0,838920837\n666,162,5.0,838921431\n666,165,2.0,838920837\n666,185,3.0,838920928\n666,196,2.0,838921162\n666,231,3.0,838920870\n666,236,3.0,838921142\n666,252,1.0,838921162\n666,292,3.0,838920895\n666,296,4.0,838920789\n666,329,2.0,838920870\n666,344,4.0,838920837\n666,356,5.0,838920959\n666,420,3.0,838921016\n666,432,3.0,838921056\n666,434,2.0,838920895\n666,454,3.0,838920976\n666,457,3.0,838920895\n666,480,4.0,838920959\n666,508,4.0,838921233\n666,509,3.0,838921185\n666,527,3.0,838921056\n666,539,1.0,838921120\n666,585,2.0,838921343\n666,586,3.0,838921120\n666,587,2.0,838921056\n666,588,3.0,838920837\n666,589,3.0,838920996\n666,590,5.0,838920789\n666,592,2.0,838920789\n666,593,4.0,838920870\n666,595,2.0,838920870\n666,597,2.0,838921120\n667,6,4.0,847271481\n667,11,3.0,847271401\n667,16,2.0,847271431\n667,17,2.0,847271685\n667,21,3.0,847271401\n667,25,2.0,847271463\n667,32,5.0,847271481\n667,36,4.0,847271548\n667,41,5.0,847271721\n667,58,4.0,847271721\n667,82,3.0,847272167\n667,95,3.0,847271534\n667,105,3.0,847271573\n667,110,4.0,847271334\n667,144,5.0,847271757\n667,150,4.0,847271221\n667,151,3.0,847271431\n667,161,4.0,847271314\n667,165,3.0,847271245\n667,185,3.0,847271314\n667,225,3.0,847271534\n667,232,4.0,847271703\n667,236,3.0,847271573\n667,247,4.0,847271888\n667,265,4.0,847271721\n667,266,3.0,847271463\n667,272,5.0,847271703\n667,292,3.0,847271278\n667,296,5.0,847271221\n667,300,4.0,847271534\n667,306,4.0,847271757\n667,307,5.0,847271773\n667,308,4.0,847271773\n667,321,4.0,847271849\n667,339,3.0,847271314\n667,342,4.0,847271773\n667,345,5.0,847271720\n667,349,4.0,847271260\n667,350,3.0,847271573\n667,356,4.0,847271260\n667,357,3.0,847271703\n667,377,3.0,847271549\n667,380,3.0,847271221\n667,417,4.0,847271818\n667,440,3.0,847271534\n667,446,4.0,847271818\n667,452,3.0,847271756\n667,454,3.0,847271334\n667,457,3.0,847271245\n667,468,3.0,847271794\n667,480,4.0,847271278\n667,501,5.0,847271869\n667,508,4.0,847271463\n667,509,3.0,847271685\n667,539,4.0,847271444\n667,551,3.0,847272044\n667,553,3.0,847271417\n667,590,3.0,847271220\n667,592,2.0,847272234\n667,594,4.0,847272105\n667,597,3.0,847271510\n667,608,5.0,847271510\n667,616,3.0,847272057\n667,661,4.0,847272067\n667,736,4.0,847271443\n667,745,5.0,847272075\n667,1148,5.0,847272081\n667,1199,5.0,847271997\n668,296,5.0,993613478\n668,318,4.0,993613478\n668,593,5.0,993613478\n668,608,5.0,993613478\n668,720,3.0,993613415\n668,1089,3.0,993613415\n668,1213,5.0,993613359\n668,1221,5.0,993613196\n668,1233,4.0,993613415\n668,1358,4.0,993613415\n668,1490,1.0,993613196\n668,2324,5.0,993613359\n668,2501,3.0,993613415\n668,2908,5.0,993613415\n668,2997,5.0,993613478\n668,3000,3.0,993613196\n668,3039,3.0,993613196\n668,3213,3.0,993613359\n668,4012,3.0,993613196\n668,6425,1.0,993613478\n669,223,4.0,1015829358\n669,260,5.0,1015829081\n669,381,3.0,1015829160\n669,480,3.0,1015829160\n669,785,4.0,1015829525\n669,913,5.0,1015829525\n669,968,4.0,1015829545\n669,1135,3.0,1015829160\n669,1210,3.0,1015829115\n669,1304,5.0,1015829081\n669,1513,3.0,1015829690\n669,1953,4.0,1015829081\n669,2174,3.0,1015829081\n669,2395,4.0,1015829738\n669,2396,4.0,1015829738\n669,2599,4.0,1015829431\n669,2683,4.0,1015829288\n669,2688,3.0,1015829462\n669,2702,3.0,1015829766\n669,2706,4.0,1015829288\n669,2713,2.0,1015829525\n669,2719,2.0,1015829462\n669,2722,2.0,1015829081\n669,2772,3.0,1015829395\n669,2840,4.0,1015829738\n669,2881,3.0,1015829395\n669,2959,5.0,1015829431\n669,2976,4.0,1015829358\n669,3016,3.0,1015829395\n669,3174,3.0,1015829525\n669,3219,3.0,1015829662\n669,3326,2.0,1015829081\n669,3453,2.0,1015829462\n669,3752,4.0,1015829525\n669,3826,2.0,1015829486\n669,3863,3.0,1015829358\n669,4015,2.0,1015829115\n670,1,4.0,938782344\n670,25,5.0,938782344\n670,32,3.0,938782145\n670,34,4.0,938782193\n670,36,4.0,938782050\n670,47,5.0,938782050\n670,50,5.0,938781934\n670,110,3.0,938782093\n670,150,3.0,938782006\n670,318,5.0,938781934\n670,457,4.0,938782414\n670,527,5.0,938782006\n670,590,1.0,938782094\n670,593,5.0,938782234\n670,608,5.0,938782093\n670,1183,5.0,938782193\n670,1245,1.0,938782281\n670,1584,4.0,938782344\n670,1617,2.0,938781934\n670,1704,4.0,938781934\n670,1923,2.0,938782414\n670,2269,3.0,938782344\n670,2291,4.0,938782145\n670,2571,4.0,938782234\n670,2628,4.0,938782234\n670,2683,5.0,938782281\n670,2723,2.0,940944033\n670,2759,5.0,940943832\n670,2770,4.0,938781328\n670,2858,3.0,940943832\n670,2912,5.0,940943887\n671,1,5.0,1064891129\n671,36,4.0,1065149314\n671,50,4.5,1064890944\n671,230,4.0,1064890230\n671,260,5.0,1064891246\n671,296,4.0,1064890424\n671,318,5.0,1064890397\n671,356,5.0,1063503911\n671,357,3.0,1063503998\n671,432,2.5,1063503739\n671,457,4.0,1065149159\n671,529,4.0,1064891534\n671,551,5.0,1063503908\n671,588,4.0,1065149478\n671,589,5.0,1064891610\n671,590,4.0,1065149296\n671,608,4.0,1064890575\n671,745,4.0,1065149085\n671,919,4.0,1065149458\n671,1035,5.0,1065149492\n671,1036,3.5,1064891601\n671,1080,4.0,1063500827\n671,1090,4.0,1064891507\n671,1136,5.0,1064891032\n671,1148,5.0,1064891021\n671,1196,5.0,1064890635\n671,1197,3.5,1064891576\n671,1198,5.0,1064891024\n671,1206,3.0,1063500775\n671,1220,4.0,1065149467\n671,1223,3.0,1064891236\n671,1225,4.0,1065149143\n671,1240,4.0,1064891597\n671,1247,4.0,1063500804\n671,1259,4.0,1064890570\n671,1265,4.0,1063503895\n671,1266,4.0,1065149270\n671,1291,4.0,1064891140\n671,1387,4.0,1064891659\n671,1610,4.0,1064891635\n671,1641,4.0,1063503954\n671,1673,3.5,1063500961\n671,1676,3.0,1065108970\n671,1704,4.0,1064890702\n671,1923,4.0,1063502756\n671,2011,3.5,1063500873\n671,2028,4.0,1064891584\n671,2064,4.0,1063502750\n671,2194,3.5,1064891593\n671,2291,5.0,1063500850\n671,2324,4.0,1063500858\n671,2355,4.0,1063500762\n671,2359,4.0,1063503933\n671,2396,4.0,1063503920\n671,2401,4.0,1065149286\n671,2502,3.5,1063503856\n671,2571,4.5,1064891076\n671,2683,4.0,1063500751\n671,2762,4.0,1064891036\n671,2795,3.5,1063503695\n671,2797,4.0,1063500821\n671,2804,5.0,1064890525\n671,2858,4.0,1063503841\n671,2918,4.0,1065149106\n671,2959,4.0,1064890427\n671,2997,4.5,1063503848\n671,3052,1.0,1063503966\n671,3060,4.0,1063503947\n671,3114,5.0,1064891089\n671,3147,4.0,1064891516\n671,3160,3.0,1063503682\n671,3253,3.0,1063503940\n671,3271,4.0,1070940360\n671,3386,4.0,1074784735\n671,3421,4.0,1063502737\n671,3481,2.0,1064245565\n671,3671,3.0,1065149267\n671,3751,4.0,1065111939\n671,3897,2.0,1063503718\n671,3996,3.5,1064245511\n671,4011,4.0,1064245574\n671,4019,3.5,1065111959\n671,4022,3.5,1063500953\n671,4027,4.0,1063500993\n671,4033,4.0,1065111954\n671,4034,4.5,1064245493\n671,4306,5.0,1064245548\n671,4308,3.5,1065111985\n671,4880,4.0,1065111973\n671,4886,5.0,1064245488\n671,4896,5.0,1065111996\n671,4963,4.5,1065111855\n671,4973,4.5,1064245471\n671,4993,5.0,1064245483\n671,4995,4.0,1064891537\n671,5010,2.0,1066793004\n671,5218,2.0,1065111990\n671,5299,3.0,1065112004\n671,5349,4.0,1065111863\n671,5377,4.0,1064245557\n671,5445,4.5,1064891627\n671,5464,3.0,1064891549\n671,5669,4.0,1063502711\n671,5816,4.0,1065111963\n671,5902,3.5,1064245507\n671,5952,5.0,1063502716\n671,5989,4.0,1064890625\n671,5991,4.5,1064245387\n671,5995,4.0,1066793014\n671,6212,2.5,1065149436\n671,6268,2.5,1065579370\n671,6269,4.0,1065149201\n671,6365,4.0,1070940363\n671,6385,2.5,1070979663\n671,6565,3.5,1074784724\n"
  },
  {
    "path": "基于矩阵分解的协同过滤的电影推荐系统/ml-latest-small/tags.csv",
    "content": "userId,movieId,tag,timestamp\n15,339,sandra 'boring' bullock,1138537770\n15,1955,dentist,1193435061\n15,7478,Cambodia,1170560997\n15,32892,Russian,1170626366\n15,34162,forgettable,1141391765\n15,35957,short,1141391873\n15,37729,dull story,1141391806\n15,45950,powerpoint,1169616291\n15,100365,activist,1425876220\n15,100365,documentary,1425876220\n15,100365,uganda,1425876220\n23,150,Ron Howard,1148672905\n68,2174,music,1249808064\n68,2174,weird,1249808102\n68,8623,Steve Martin,1249808497\n73,107999,action,1430799184\n73,107999,anime,1430799184\n73,107999,kung fu,1430799184\n73,111624,drama,1431584497\n73,111624,indie,1431584497\n73,111624,love,1431584497\n73,130682,b movie,1432523704\n73,130682,comedt,1432523704\n73,130682,horror,1432523704\n77,1199,Trilogy of the Imagination,1163220043\n77,2968,Gilliam,1163220138\n77,2968,Trilogy of the Imagination,1163220039\n77,4467,Trilogy of the Imagination,1163220065\n77,4911,Gilliam,1163220167\n77,5909,Takashi Miike,1163219591\n77,47465,Gilliam,1163220186\n84,296,intense,1429911417\n84,296,r:violence,1429911417\n84,296,tarantino,1429911417\n91,4388,parody,1448813502\n94,1131,emotional,1291781542\n94,1131,tragedy,1291781538\n94,64957,original plot,1291781246\n94,74458,Predictable,1291780920\n106,48711,CHRISTIAN,1215923364\n132,4189,jesus,1367909949\n132,4612,jesus,1367909949\n132,6683,bollywood,1367909913\n132,6986,jesus,1367909949\n132,27255,No progress,1283581045\n132,27255,Too slow,1283581045\n132,27255,Views,1283581045\n138,260,cult classic,1440379022\n138,260,Science Fiction,1440379018\n138,1258,cult film,1440380361\n138,1258,jack nicholson,1440380355\n138,1258,psychological,1440380357\n138,1258,Stanley Kubrick,1440380352\n138,1704,genius,1440380467\n138,1704,intellectual,1440380463\n138,1704,mathematics,1440380466\n138,1704,psychology,1440380470\n138,4226,Mindfuck,1440380125\n138,4226,nonlinear,1440380113\n138,4226,psychology,1440380115\n138,4226,twist ending,1440380118\n138,4995,genius,1440380440\n138,4995,intelligent,1440380446\n138,4995,math,1440380438\n138,4995,mathematics,1440380436\n138,4995,twist ending,1440380448\n138,48780,Christopher Nolan,1440380053\n138,48780,complicated,1440380062\n138,48780,Hugh Jackman,1440380072\n138,48780,nonlinear,1440380067\n138,48780,psychological,1440380064\n138,48780,twist ending,1440380047\n138,79132,alternate reality,1440380233\n138,79132,Christopher Nolan,1440380255\n138,79132,intellectual,1440380251\n138,79132,mindfuck,1440380252\n138,79132,philosophy,1440380242\n138,79132,sci-fi,1440380239\n138,79132,twist ending,1440380245\n138,109487,artificial intelligence,1440379984\n138,109487,Christopher Nolan,1440380001\n138,109487,good science,1440379977\n138,109487,interesting ideea,1440379991\n138,109487,philosophical issues,1440379996\n138,109487,physics,1440379925\n138,109487,relativity,1440380500\n138,109487,sci-fi,1440380008\n138,109487,sentimental,1440379993\n138,109487,space,1440379974\n138,109487,time travel,1440379981\n138,109487,time-travel,1440379968\n149,121231,eerie,1436920551\n149,121231,friendship,1436920551\n149,121231,teenagers,1436920551\n152,52319,World War II,1335900622\n164,608,Quirky,1179031045\n176,5445,Tom Cruise,1378384753\n176,7458,Brad Pitt,1341055445\n176,8972,Nicolas Cage,1341055378\n176,69640,Johnny Depp,1340916254\n176,104841,sexist,1384107184\n179,260,nerdy,1436669973\n179,260,Science Fiction,1436669968\n187,2082,Emilio Estevez,1233517175\n200,260,critically acclaimed,1437932756\n200,260,Science Fiction,1437932763\n200,80551,strong female presence,1438023607\n212,1061,emotional,1253930128\n212,1061,revenge,1253930131\n212,1061,true story,1253930149\n212,1732,cult film,1253929373\n212,1732,dark comedy,1253929372\n212,1732,satirical,1253929376\n212,2359,British,1253930034\n212,2641,childish plot,1253930390\n212,2641,plot holes,1253930395\n212,2641,superhero,1253930399\n212,3257,Kevin Costner,1253930539\n212,3257,snorefest,1253930543\n212,3275,vigilantism,1218405594\n212,3300,anti-hero,1253929917\n212,3300,Cole Hauser,1253929922\n212,3300,Vin Diesel,1253929910\n212,3301,Amanda Peet,1253929798\n212,3301,Matthew Perry,1253929802\n212,3301,Rosanna Arquette,1253929813\n212,3809,Bill Murray,1253931205\n212,3809,quirky,1253931216\n212,3882,cheerleading,1253932873\n212,3882,Eliza Dushku,1253932876\n212,3882,Overrated,1253932878\n212,4069,standard romantic comedy,1253933882\n212,5219,video game adaptation,1253930587\n212,5507,play enough video games and you can become an NSA agent,1253930345\n212,5507,ridiculous training sequence,1253930342\n212,7373,Guillermo del Toro,1253929290\n212,7373,steampunk,1253929296\n212,7373,superhero,1253929293\n212,8861,Oded Fehr,1253930624\n212,8861,post-apocalyptic,1253930636\n212,8861,Sienna Guillory,1253930633\n212,8861,zombies,1253930644\n212,8928,Beautiful Woman,1253926735\n212,8928,campy,1253926723\n212,8928,irreverent,1253926726\n212,8928,quirky,1253926728\n212,8928,Roman Polanski,1253926730\n212,27904,good animation,1253931241\n212,27904,interesting concept - bad execution,1253931234\n212,27904,surrealism,1253931244\n212,34405,aliens,1253928597\n212,34405,black comedy,1253928590\n212,34405,Firefly,1253928585\n212,37733,disappointing,1253929514\n212,37733,overrated,1253929532\n212,37733,Viggo Mortensen,1253929518\n212,48394,dark,1218405627\n212,48394,fairytale,1218405627\n212,60684,alternate reality,1253926526\n212,60684,diluted version of comic,1253926511\n212,60684,dystopia,1253926517\n212,60684,stylized,1253926519\n212,63992,high school,1253932469\n212,63992,Kristen Stewart,1253932484\n212,63992,Robert Pattinson,1253932481\n212,63992,Teen movie,1253932459\n212,63992,Vampire Human Love,1253932463\n212,64957,adapted from:book,1253929184\n212,64957,Aging Disorder,1253929189\n212,64957,Brad Pitt,1253929141\n212,64957,cinematography,1253929177\n212,64957,drama,1253929173\n212,64957,original plot,1253929180\n212,64957,slow parts,1253929162\n212,64957,touching,1253929169\n212,66097,alternate universe,1253926354\n212,66097,author:Neil Gaiman,1253926328\n212,66097,claymation,1253926330\n212,66097,Dakota Fanning,1253926349\n212,66097,dark,1253926337\n212,66097,fairy tale,1253926364\n212,66097,Neil Gaiman,1253926360\n212,66934,Captain Hammer,1253926165\n212,66934,joss whedon,1253926158\n212,66934,mad scientist,1253926186\n212,66934,musical,1253926178\n212,66934,Nathan Fillion,1253926182\n212,66934,Neil Patrick Harris,1253926160\n212,66934,parody,1253926168\n212,68157,Brad Pitt,1253926443\n212,68157,ending,1253926451\n212,68157,gratuitous violence,1253926429\n212,68157,Quentin Tarantino,1253926404\n212,68157,satire,1253926435\n212,68157,unusual plot structure,1253926417\n212,68157,violence,1253926426\n212,68157,World War II,1253926408\n212,68319,action,1253928934\n212,68319,bad plot,1253928950\n212,68319,hugh jackman,1253928926\n212,68319,superhero,1253928935\n212,68319,too long,1253928954\n212,69526,bad plot,1253929636\n212,69526,robots,1253929657\n212,69526,sufficiently explodey to be good,1253929639\n212,69712,Abigail Breslin,1260688098\n212,69712,ending,1260688053\n212,69712,genuine characters,1260688086\n212,69712,Jason Patric,1260688105\n212,71057,animation style,1253926100\n219,46970,funny,1156788918\n219,46970,nascar,1156788904\n219,46970,will farell,1156788913\n219,47640,beer,1156788764\n219,47640,guy movie,1156788774\n255,6985,breathtaking,1237060605\n255,7361,i'd like to live in this movie,1237060140\n255,44555,breathtaking,1237060235\n257,3030,akira kurosawa,1338084833\n257,3030,black comedy,1338084822\n277,5618,anime,1463916275\n277,5618,children,1463916304\n277,5618,fantasy,1463916289\n277,5971,fantasy,1463916386\n277,5971,feel-good,1463916401\n277,82461,bad acting,1463916776\n277,82461,bad plot,1463916772\n277,104283,anime,1463916484\n277,132046,sci-fi,1463916817\n294,6754,vampire,1138983469\n294,8865,1940's feel,1140395930\n294,8865,unique look,1140395930\n294,36401,fairy tales,1138983064\n297,104,adam sandler,1318706504\n297,608,overrated,1318706739\n297,1103,overrated,1318706182\n297,2502,that fat nerd is just annoying,1318706118\n297,8528,seen it before,1318706449\n297,47640,Just stupid,1318706536\n297,52973,overrated,1318706470\n297,55820,overrated,1318706705\n297,61024,Exellent first half,1318706053\n297,61024,terrible ending,1318706042\n297,76251,Gore!!!,1318706275\n297,76251,sort of honest,1318706296\n297,78209,Lame everything,1318706227\n313,153,Ei muista,1168879424\n313,293,Ei muista,1168878292\n313,434,Ei muista,1168879406\n313,494,Ei muista,1168878844\n313,593,Katso Sanna!,1146476938\n313,745,Ei muista,1146476364\n313,780,Ei muista,1168878578\n313,858,Katso Sanna!,1146476794\n313,1036,Ei muista,1168878388\n313,1042,Katso Sanna!,1146477133\n313,1120,Katso Sanna!,1146477118\n313,1200,Katso Sanna!,1146477102\n313,1291,Ei muista,1146476308\n313,1610,Katso Sanna!,1146476692\n313,1617,Ei muista,1168878593\n313,2273,Ei muista,1146477049\n313,2329,Ei muista,1146477033\n313,2600,Ei muista,1168879003\n313,2985,Ei muista,1168878743\n313,2989,Ei muista,1168878972\n313,3160,Ei muista,1168878736\n313,3175,Ei muista,1168879647\n313,3499,Ei muista,1168878727\n313,3793,Katso Sanna!,1146476954\n313,3916,Ei muista,1146476265\n313,3949,Ei muista,1168878697\n313,3994,Ei muista,1168879611\n313,4011,Ei muista,1168878363\n313,4023,ei muista,1146477341\n313,4121,Katso Sanna!,1146477233\n313,4223,Ei muista,1146476274\n313,4638,Ei muista,1146477217\n313,5064,Ei muista,1146476225\n313,5602,Ei muista,1168879553\n313,6218,Ei muista,1146477184\n313,7347,Ei muista,1168879177\n313,8781,Ei muista,1168879161\n313,44199,Ei muista,1168878406\n314,260,awesome,1437338154\n314,260,awesome soundtrack,1437338150\n314,260,jedi,1437338139\n314,260,space adventure,1437338130\n346,741,anime,1159734531\n346,924,boring,1159734220\n346,924,slow,1159734220\n346,1036,explosions,1159734488\n346,1199,dystopia,1159734421\n346,1274,anime,1159734245\n346,2019,long,1159734734\n346,2571,sci-fi,1159734634\n346,2571,virtual reality,1159734636\n346,2924,martial arts,1159734502\n346,2997,interesting,1159734363\n346,3265,explosions,1159734552\n346,3265,martial arts,1159734552\n346,3996,martial arts,1159734445\n346,4993,long,1159734600\n346,5782,explosions,1159734683\n346,5782,interesting,1159734683\n346,5902,boring,1159734233\n346,5952,boring,1159734622\n346,5952,long,1159734622\n346,6350,anime,1159734417\n346,6539,Johnny Depp,1159734656\n346,6857,anime,1159734652\n346,7022,explosions,1159734326\n346,7022,martial arts,1159734467\n346,7090,martial arts,1159734555\n346,7153,boring,1159734608\n346,7153,long,1159734608\n346,7361,interesting,1159734515\n346,7844,martial arts,1159734589\n346,8795,Long,1159734165\n346,8874,comedy,1159734745\n346,8874,zombies,1159734745\n346,8961,super-hero,1159734563\n346,26554,apocalypse,1159734706\n346,26554,interesting,1159734706\n346,26585,explosions,1159734379\n346,31878,comedy,1159734584\n346,31878,martial arts,1159734584\n346,31878,Stephen Chow,1159734584\n346,33794,bad camerawork,1159734301\n346,33794,slow,1159734301\n347,1721,romance,1463337171\n347,122886,space,1463337217\n347,122886,star,1463337213\n353,4721,As historicaly correct as Germany winning WW2,1140389056\n353,4721,but still a fun movie.,1140389056\n353,7376,\"The Rocks \"\"finest\"\" work need I say more?\",1140389511\n353,31221,Try not to mistake this for an episode of Alias,1140389595\n353,32025,Mossad,1142686944\n353,35836,dumb,1137217440\n364,47,biblical,1444534976\n364,47,crime,1444534982\n364,47,dark,1444534994\n364,47,disturbing,1444534971\n364,47,greed,1444534998\n364,47,horror,1444534981\n364,47,serial killer,1444534961\n364,47,violent,1444534985\n364,50,thriller,1444534932\n364,232,aging,1444531181\n364,232,Ang Lee,1444531177\n364,232,cooking,1444531178\n364,232,food,1444531186\n364,232,relationships,1444531173\n364,293,assassin,1444534872\n364,293,hit men,1444534872\n364,293,thriller,1444534887\n364,318,friendship,1444529800\n364,318,Morgan Freeman,1444529792\n364,318,narrated,1444529829\n364,318,prison,1444529824\n364,318,prison escape,1444529820\n364,318,revenge,1444529816\n364,318,Tim Robbins,1444529804\n364,318,wrongful imprisonment,1444529809\n364,1176,imaginative,1444528969\n364,1176,intellectual,1444528955\n364,1176,Irene Jacob,1444528944\n364,1176,Krzysztof Kieslowski,1444528941\n364,1176,lyrical,1444528947\n364,1210,action,1444529881\n364,1210,aliens,1444529879\n364,1210,George Lucas,1444529892\n364,1210,Harrison Ford,1444529867\n364,1210,sci-fi,1444529889\n364,1210,sequel,1444529879\n364,1210,space,1444529864\n364,1210,Star Wars,1444529869\n364,1210,starship pilots,1444529899\n364,1210,war,1444529884\n364,1265,alternate reality,1444530190\n364,1265,Bill Murray,1444530207\n364,1265,character development,1444530216\n364,1265,comedy,1444530195\n364,1265,existentialism,1444530199\n364,1265,feel-good,1444530209\n364,1265,funny,1444530200\n364,1265,love,1444530219\n364,1265,romantic,1444530228\n364,1265,self discovery,1444530203\n364,1732,great dialogue,1444535166\n364,1732,Jeff Bridges,1444535201\n364,1732,Nudity (Full Frontal),1444535170\n364,1732,off-beat comedy,1444535205\n364,1732,quirky,1444535198\n364,1732,satirical,1444535172\n364,1732,Steve Buscemi,1444535164\n364,2068,coming of age,1444530920\n364,2068,funny,1444530913\n364,2424,bookshop,1444530521\n364,2424,happy ending,1444530524\n364,2424,Meg Ryan,1444530516\n364,2424,Romance,1444530517\n364,2424,romantic comedy,1444530529\n364,2424,Tom Hanks,1444530527\n364,3948,awkward,1444529225\n364,4018,creative,1444529752\n364,4018,funny,1444529739\n364,4018,Helen Hunt,1444529729\n364,4018,hilarious,1444529746\n364,4018,Mel Gibson,1444529756\n364,4018,stereotypes,1444529760\n364,4973,beautifully filmed,1444528866\n364,4973,comedy,1444528870\n364,4973,feel-good,1444528900\n364,4973,imagination,1444528880\n364,4973,love,1444528875\n364,4973,notable soundtrack,1444528857\n364,4973,quirky,1444528852\n364,4973,whimsical,1444528860\n364,5299,comedy,1444529040\n364,5299,family,1444529044\n364,5299,funny,1444529038\n364,6350,aviation,1444531651\n364,6350,funny,1444531664\n364,6350,imagination,1444531644\n364,6350,Studio Ghibli,1444531642\n364,6350,visually appealing,1444531647\n364,6539,comedy,1444529977\n364,6539,Disney,1444529957\n364,6539,funny,1444529960\n364,6539,johnny depp,1444529962\n364,6539,magic,1444529965\n364,6539,Orlando Bloom,1444529978\n364,6539,pirates,1444529987\n364,6539,sword fight,1444529953\n364,7161,family,1444535334\n364,7161,funny,1444535340\n364,7161,Steve Martin,1444535326\n364,8464,american idiocy,1444531783\n364,8464,documentary,1444531780\n364,8464,social criticism,1444531787\n364,26614,thriller,1444534834\n364,26662,anime,1444530775\n364,26662,Hayao Miyazaki,1444530771\n364,26662,Studio Ghibli,1444530778\n364,27611,military,1444534772\n364,27611,sci-fi,1444534765\n364,34321,Billy Bob Thornton,1444531424\n364,34321,comedy,1444531438\n364,34321,cursing,1444531450\n364,34321,funny,1444531430\n364,34321,redemption,1444531445\n364,46578,beauty pageant,1444529380\n364,46578,family,1444529368\n364,46578,independent film,1444529351\n364,46578,off-beat comedy,1444529354\n364,46578,quirky,1444529369\n364,46578,road trip,1444529384\n364,46578,satire,1444529372\n364,46578,steve carell,1444529375\n364,56367,comedy,1444535241\n364,56367,indie,1444535247\n364,56367,pregnancy,1444535236\n364,56367,teen pregnancy,1444535244\n364,56367,witty,1444535238\n364,64957,Aging,1444531050\n364,64957,Brad Pitt,1444531041\n364,64957,original plot,1444531048\n364,64957,philosophical,1444531044\n364,66934,comedy,1444530699\n364,66934,great soundtrack,1444530694\n364,66934,mad scientist,1444530688\n364,66934,Neil Patrick Harris,1444530691\n364,66934,parody,1444530697\n364,68358,sci fi,1444530041\n364,68358,spock,1444530038\n364,68358,Star Trek,1444530030\n364,68358,teleportation,1444530045\n364,72998,aliens,1444529449\n364,72998,graphic design,1444529463\n364,72998,predictable,1444529440\n364,72998,racism,1444529457\n364,72998,sci-fi,1444529439\n364,93040,drama,1444530864\n364,93040,historical,1444530873\n364,93040,interesting,1444530861\n364,95441,cocaine,1444529273\n364,95441,crude humor,1444529258\n364,95441,directorial debut,1444529282\n364,95441,Mark Wahlberg,1444529284\n364,97938,Ang Lee,1444531076\n364,97938,India,1444531086\n364,97938,ocean,1444531083\n364,97938,visually appealing,1444531077\n364,106696,Disney,1444530267\n364,106696,feminist,1444530281\n364,106696,musical,1444530270\n364,106696,storyline,1444530270\n364,109249,beautiful scenery,1444529645\n364,109249,coming of age,1444529671\n364,109249,dark humor,1444529660\n364,109249,Fernando E. Solanas,1444529608\n364,109249,imaginative,1444529635\n364,109249,quirky,1444529613\n364,109249,whimsical,1444529629\n364,109374,amazing storytelling,1444529104\n364,109374,Bill Murray,1444529124\n364,109374,cinematography,1444529143\n364,109374,eastern europe,1444529119\n364,109374,europe,1444529115\n364,109374,historical,1444529139\n364,109374,on the run,1444529148\n364,109374,quirky,1444529109\n364,115617,comedy,1444530392\n364,115617,Coming of Age,1444530417\n364,115617,family,1444530402\n364,115617,friends,1444530410\n364,115617,funny,1444530394\n364,115617,happy ending,1444530413\n364,115617,heartwarming,1444528813\n364,115617,inspiring,1444530404\n364,115617,japanese influence,1444528772\n364,115617,pixar,1444530397\n364,115617,technology,1444528781\n364,118997,comedy,1444530159\n364,118997,fairy tale,1444530100\n364,118997,funny,1444530106\n364,118997,great soundtrack,1444530127\n364,118997,imaginative,1444530113\n364,118997,meryl streep,1444530142\n364,118997,musical,1444530098\n364,134853,coming of age,1444530618\n364,134853,creative,1444530620\n364,134853,happiness,1444530631\n364,134853,imaginative,1444530628\n364,134853,Pixar,1444530633\n377,54290,Why the terrorists hate us,1187054169\n380,40614,predictable,1148077862\n402,260,coming of age,1443393648\n402,260,\"space epic, science fiction, hero's journey\",1443393664\n423,111,cult film,1354033605\n423,111,Martin Scorsese,1354033608\n423,111,social commentary,1354033602\n423,247,stylized,1353702088\n423,247,surreal,1353702083\n423,247,surrealism,1353702082\n423,247,visceral,1353702078\n423,745,animation,1354033746\n423,1079,dark comedy,1353703178\n423,1079,dark humor,1353703182\n423,1079,John Cleese,1353703171\n423,1079,quirky,1353703185\n423,1080,Monty Python,1354033667\n423,1089,nonlinear,1354033640\n423,1089,organized crime,1354033636\n423,1089,Quentin Tarantino,1354033638\n423,1219,Alfred Hitchcock,1354033644\n423,1219,psychology,1354033646\n423,1256,Marx Brothers,1354033718\n423,1258,cult film,1354033633\n423,1258,psychology,1354033630\n423,1729,dark comedy,1354033685\n423,2288,disturbing,1354033600\n423,2529,post-apocalyptic,1354033650\n423,2529,twist ending,1354033653\n423,3030,atmospheric,1354033596\n423,3546,insanity,1353702162\n423,3546,psychological thriller,1353702155\n423,5618,atmospheric,1354033628\n423,5618,surreal,1354033624\n423,5662,Dave Foley,1354033569\n423,6287,Adam Sandler,1354044970\n423,6713,Satoshi Kon,1354033681\n423,8188,elegant,1353701935\n423,27592,stylized,1354033620\n423,27592,violent,1354033611\n423,27773,depressing,1353702390\n423,27773,disturbing,1353702357\n423,27773,hallucinatory,1353702345\n423,27773,paranoid,1353702396\n423,27773,revenge,1353702393\n423,27773,stylized,1353702395\n423,27773,twist ending,1353702400\n423,27773,vengeance,1353702404\n423,30745,Takashi Miike,1354033711\n423,31658,Studio Ghibli,1354033715\n423,52885,anime,1354033657\n423,55820,coen brothers,1354033663\n423,58559,Batman,1354033727\n423,67997,british,1354033698\n423,67997,politics,1354033700\n423,67997,satire,1354033695\n431,5,steve martin,1140455432\n431,150,tom hanks,1165548454\n431,186,hugh grant,1140455419\n431,215,ethan hawke,1165548716\n431,236,meg ryan,1140455397\n431,246,school,1140455370\n431,260,classic,1140454408\n431,300,Ralph Fiennes,1165548551\n431,318,Phenomenal!,1140454312\n431,337,Johnny Depp***,1140455226\n431,350,overrated,1140455303\n431,357,didn't get it,1140455255\n431,377,Sandra Bullock,1140454879\n431,520,very funny!,1140454299\n431,529,jodi foster,1140455238\n431,587,sweet,1140455292\n431,628,edward norton,1140455195\n431,661,creepy good,1140454443\n431,904,jimmy stewart,1140455208\n431,1059,claire daines,1140455275\n431,1059,clever,1140455275\n431,1059,Leonardo DiCaprio,1140455275\n431,1059,shakespeare,1140455275\n431,1242,denzel washington,1140455181\n431,1250,war,1140455073\n431,1259,r. phoneix,1140455011\n431,1291,cool,1140454996\n431,1358,billy bob thorton,1140455032\n431,1376,not too thrilled,1140455126\n431,1517,cheezy to the max!,1140454281\n431,1635,moody,1165548220\n431,1639,hillarious,1140455102\n431,1801,good but not accurate,1140454574\n431,1954,stallone,1140455043\n431,1956,il,1165548392\n431,1956,lake forest,1165548392\n431,2004,not worth your time,1140454610\n431,2012,liked the other two better,1140455152\n431,2019,classic,1140455086\n431,2085,cute,1140454548\n431,2174,Micheal Keaton,1140454821\n431,2369,must see,1140454589\n431,2396,colin firth,1165548675\n431,2396,Gwenth Paltrow,1165548675\n431,2396,joseph fiennes,1165548675\n431,2571,philosophy,1140454933\n431,2692,cool and great music,1140454393\n431,2700,stupidity,1140454856\n431,3052,controversial,1140454805\n431,3113,stupid,1140455730\n431,3114,Tom Hanks,1140454833\n431,3260,boring,1140455703\n431,3361,tim robbins,1140455685\n431,3751,mel gibson,1140454892\n431,3785,stupid,1140455743\n431,3793,can't stand rogue!,1140454770\n431,3893,renee z,1140455496\n431,3978,boring,1140455549\n431,3994,predictable,1140454952\n431,4016,okay,1140454522\n431,4041,overrated,1140455478\n431,4306,witty!,1140454779\n431,4351,keanu reeves,1140455511\n431,4369,no desire to see this,1140454634\n431,4641,thora birch,1140455465\n431,4701,jakie chan,1140455522\n431,4823,john cusack,1140455540\n431,4890,Gwenth Paltrow,1140455564\n431,5064,not by book,1165548741\n431,5135,nair,1165548358\n431,5349,tobey maguire,1140454907\n431,5377,books,1140455343\n431,5377,relationships,1140455343\n431,5481,mike myers,1140455409\n431,5812,moore,1165548495\n431,6281,collin farrel,1140455383\n431,6539,I loved it! Seen it five times already!,1140454336\n431,6953,Benicio Del Toro,1165548439\n431,8636,the best comic adaptation!,1140454370\n446,65514,kung fu,1436621295\n446,65514,martial arts,1436621295\n446,65514,well done,1436621295\n446,68954,feel good,1436621325\n446,68954,light,1436621329\n446,88125,dark,1436621257\n448,260,sci-fi,1444761481\n448,260,supernatural powers,1444761492\n450,107649,Alex van Warmerdam,1475737520\n450,107649,magical realism,1475737516\n450,107649,weird,1475737522\n456,3703,action,1432308664\n456,3703,desert,1432308674\n456,3703,Dieselpunk,1432308755\n456,3703,Mel Gibson,1432308659\n456,3703,Post apocalyptic,1432308686\n456,3703,post-apocalyptic,1432308656\n456,44191,dystopia,1432308622\n456,44191,thought-provoking,1432308624\n456,106473,animation,1432309088\n456,106473,anime,1432309076\n456,106473,based on a TV show,1432309085\n456,106473,fantasy world,1432309090\n468,3676,National Film Registry,1296204035\n468,5449,Adam Sandler,1296202619\n478,55247,adventure,1446622291\n478,55247,freedom,1446622248\n478,55247,road trip,1446622240\n478,55247,self discovery,1446622259\n478,55247,travel,1446622390\n478,106918,Iceland,1446830144\n478,106918,photography,1446830153\n478,106918,travel,1446830142\n480,8369,who done it,1339456173\n480,70286,aliens,1339283926\n480,70286,humor,1339283929\n480,70286,sci-fi,1339283933\n480,70286,violence,1339283935\n480,78349,claustrophobic,1339283636\n480,78349,experiment,1339283627\n480,78349,group psychology,1339283610\n480,78349,psychological,1339283617\n480,94777,aliens,1339284270\n480,94777,franchise,1339284250\n480,94777,funny,1339284240\n480,94777,time travel,1339284259\n481,260,George Lucas,1437000955\n481,260,starwars,1437000940\n481,1900,brother sister relationship,1437107499\n481,1900,sad,1437107475\n481,1900,siblings,1437107491\n481,2361,cult film,1437105893\n481,117533,big brother,1437004053\n481,117533,documentary,1437004053\n481,117533,privacy,1437004053\n501,1,Pixar,1292956344\n501,47,psychology,1292956276\n501,47,twist ending,1292956362\n501,296,dark comedy,1292956439\n501,296,Quentin Tarantino,1292956435\n501,778,dark comedy,1292956194\n501,1089,organized crime,1292956420\n501,1089,Quentin Tarantino,1292956416\n501,2542,dark comedy,1292956446\n501,2542,Guy Ritchie,1292956448\n501,2542,organized crime,1292956450\n501,2692,nonlinear,1292956226\n501,2692,time travel,1292956392\n501,2959,dark comedy,1292956481\n501,2959,psychology,1292956476\n501,2959,twist ending,1292956479\n501,3114,animation,1292956346\n501,3949,addiction,1292956422\n501,3949,psychology,1292956425\n501,4011,Guy Ritchie,1292956203\n501,4011,twist ending,1292956205\n501,5608,psychology,1292956490\n501,6016,multiple storylines,1292956518\n501,40148,guy ritchie,1292956408\n501,47099,based on a true story,1292956431\n501,60072,assassin,1292956189\n501,62849,Drugs,1292956230\n501,62849,Guy Ritchie,1292956234\n501,62849,twist ending,1292956236\n501,68157,Quentin Tarantino,1292956453\n501,74458,psychological,1292956215\n501,74458,twist ending,1292956212\n501,77455,renegade art,1292956306\n501,78499,Pixar,1292956196\n501,79132,alternate reality,1292956469\n503,260,Science Fiction,1432365802\n503,260,space,1432365814\n512,74458,Psychological Thriller,1434169401\n512,79132,Intrigued,1434169472\n520,4322,baseball,1146596187\n531,1028,comedy of manners,1243454358\n531,1028,Disney,1243454364\n531,1028,Disney studios,1243454367\n531,1028,Julie Andrews,1243454386\n531,1028,multiple roles,1243454371\n531,1028,musical,1243454374\n531,1028,villain nonexistent or not needed for good story,1243454382\n531,1088,80's classic,1243454483\n531,1088,dance,1243454500\n531,1088,girlie movie,1243454518\n531,1088,music,1243454488\n531,1088,musical parodies,1243454503\n531,1088,rich families,1243454508\n531,1258,disturbing,1243454832\n531,1258,Nudity (Full Frontal - Notable),1243454840\n531,1258,Nudity (Full Frontal),1243454842\n531,1258,psychological,1243454846\n531,1258,violent,1243454848\n531,1997,demons,1243454875\n531,1997,horror,1243454878\n531,1997,possession,1243454880\n531,1997,scary,1243454882\n531,2942,dance,1243454447\n531,2942,girlie movie,1243454450\n531,2942,Nudity (Topless),1243454452\n531,2942,strippers,1243454454\n531,4973,comedy,1243510202\n531,4973,drama,1243510204\n531,4973,notable soundtrack,1243510209\n531,4973,quirky,1243510212\n531,6218,football,1243509668\n531,6218,Funny,1243509674\n531,6218,Keira Knightley,1243509670\n531,6218,love,1243509684\n531,6863,funny,1243454300\n531,6863,Jack Black,1243454312\n531,6863,music,1243454317\n531,6863,not only for kids,1243454321\n531,6863,Rock,1243454333\n531,6863,rock and roll,1243454326\n531,6942,british,1243454933\n531,6942,christmas,1243454936\n531,6942,ensemble cast,1243454939\n531,6942,Keira Knightley,1243454943\n531,6942,love,1243454946\n531,6942,multiple storylines,1243454948\n531,6942,Nudity (Topless - Notable),1243454950\n531,6942,Nudity (Topless),1243454952\n531,6942,Romance,1243454954\n531,8533,covers a lifespan,1243455160\n531,8533,memories,1243455166\n531,35836,comedy,1243454586\n531,35836,crude,1243454590\n531,35836,funny,1243454588\n531,35836,nerds,1243454598\n531,35836,Nudity (Topless - Notable),1243454603\n531,35836,Nudity (Topless),1243454610\n531,35836,sex,1243454608\n531,45720,fashion,1243454978\n531,45720,New York,1243454980\n531,45720,Paris,1243454982\n531,45720,Streep strong & funny,1243454985\n531,59725,fashion,1243455007\n531,59725,New York City,1243455012\n531,59725,Nudity (Topless),1243455014\n531,59725,R:strong sexual content,1243455020\n531,59725,romance,1243455018\n531,63131,funny,1243509641\n531,63131,obvious plot,1243509645\n531,63992,romance,1243455092\n531,63992,Teen movie,1243455095\n531,63992,vampires,1243455099\n531,64957,Brad Pitt,1243455053\n531,64957,cinematography,1243455057\n531,64957,drama,1243455060\n531,64969,easily confused with other movie(s) (title),1243454548\n531,64969,funny,1243454556\n531,64969,Jim carrey,1243454553\n531,64969,Zooey Deschanel,1243454561\n546,3176,Gwyneth Paltrow,1301715429\n546,3176,Jude Law,1301715415\n546,3707,Nudity (Rear),1301284184\n546,3707,Nudity (Topless),1301284182\n546,3707,sexy food,1301284180\n546,5984,BDSM,1301785972\n546,5984,Blindfold,1301785976\n546,5984,Bondage,1301785990\n546,5984,Domination,1301785971\n546,5984,Fetish,1301785980\n546,5984,Gag,1301785974\n546,5984,Spanked,1301785983\n546,5984,Submission,1301785988\n546,5984,Tied,1301785981\n546,5984,Udo Kier,1301785978\n546,7155,Nudity (Topless - Notable),1334013574\n546,7155,Nudity (Topless),1334013570\n546,39421,Nudity (Topless),1334013436\n546,39421,porn,1334013433\n546,48780,based on a book,1301715225\n546,48780,twist ending,1301715231\n546,53318,notable nudity,1301196436\n546,53318,Nudity (Full Frontal),1301196425\n547,215,holes90s,1342849999\n547,293,holes90s,1342849862\n547,306,holes90s,1342849839\n547,319,holes90s,1342849790\n547,364,holes90s,1342849955\n547,541,afi,1182393913\n547,588,holes90s,1342849969\n547,599,dvd,1388422564\n547,599,holes60s,1388820371\n547,757,getdvd,1423201850\n547,914,holes60s,1342850735\n547,946,holes40s,1412348245\n547,954,afi,1182393876\n547,1153,tcm,1189187818\n547,1172,holes80s,1342849456\n547,1197,holes80s,1342849599\n547,1209,holes60s,1351319934\n547,1211,holes80s,1342849466\n547,1232,sightsound,1343973832\n547,1245,holes90s,1342849804\n547,1260,tcm,1189187750\n547,1272,holes70s,1342849087\n547,1273,holes80s,1342849477\n547,1281,holes40s,1412348178\n547,1281,tivo,1476583274\n547,1283,afi,1182394030\n547,1283,hdtv,1199396362\n547,1572,sightsound,1343973703\n547,1935,holes40s,1412348396\n547,1942,holes40s,1412348211\n547,1957,holes80s,1342849494\n547,2028,afi,1182394053\n547,2028,hdtv,1200784012\n547,2028,holes90s,1342849945\n547,2109,holes70s,1342849272\n547,2178,holes70s,1342849166\n547,2182,tcm,1412347392\n547,2202,holes40s,1412348261\n547,2330,holes90s,1342849749\n547,2677,holes90s,1342849900\n547,2730,getdvd,1350531508\n547,2730,holes70s,1342849220\n547,2747,tivo,1476583080\n547,2857,holes60s,1342850705\n547,2920,getdvd,1412348038\n547,2920,holes40s,1412348038\n547,2927,holes40s,1412348319\n547,2936,afi,1182393939\n547,2936,holes40s,1412348275\n547,3022,afi,1182393819\n547,3089,holes40s,1412348191\n547,3111,holes80s,1342849685\n547,3246,holes90s,1342849768\n547,3384,holes70s,1342849030\n547,3415,sightsound,1343973557\n547,3498,holes70s,1342849114\n547,3539,tivo,1476583329\n547,3629,afi,1182433856\n547,3629,hdtv,1200784036\n547,3632,holes40s,1412348295\n547,3634,getdvd,1418986019\n547,3634,holes60s,1418986015\n547,3671,holes70s,1342849229\n547,3679,holes80s,1342849435\n547,3742,sightsound,1343973400\n547,3789,holes60s,1342850721\n547,3811,holes80s,1342849524\n547,3947,holes70s,1431088744\n547,4103,holes80s,1342849627\n547,4262,holes80s,1342849544\n547,4326,holes80s,1342849552\n547,4327,holes60s,1342850801\n547,4437,holes70s,1342849298\n547,4712,holes70s,1342849242\n547,4763,getdvd,1471010946\n547,4928,holes70s,1342849195\n547,5169,tcm,1189187923\n547,5198,holes80s,1342849514\n547,5289,tcm,1189187738\n547,5464,holes00s,1342850481\n547,5747,holes80s,1342849443\n547,5791,holes00s,1342850231\n547,5795,tosee,1475705682\n547,5956,dvd,1259388129\n547,6229,holes70s,1342849313\n547,6433,sightsound,1343973308\n547,6515,tcm,1190475823\n547,6643,sightsound,1343973230\n547,6783,sightsound,1343973251\n547,6830,tcm,1190475890\n547,6874,holes00s,1342850598\n547,6981,sightsound,1343973754\n547,6983,holes40s,1412348440\n547,6985,sightsound,1343973328\n547,7195,tcm,1189187983\n547,7243,afi,1182394001\n547,7243,hdtv,1200784002\n547,7335,tcm,1189187908\n547,7438,holes00s,1342850493\n547,7792,holes70s,1342849103\n547,7926,getdvd,1412347952\n547,8125,afi,1182393855\n547,8128,holes80s,1342849418\n547,8154,holes60s,1342850820\n547,8195,sightsound,1343973620\n547,8207,holes70s,1342849135\n547,8236,tcm,1190475838\n547,8494,dvd,1254390631\n547,8584,tivo,1476583430\n547,8645,holes00s,1342850358\n547,8751,tcm,1189187687\n547,8765,tcm,1189187626\n547,8766,tcm,1189187878\n547,8767,tcm,1189187947\n547,25805,sightsound,1343973445\n547,25927,holes40s,1412348360\n547,25927,tcm,1189187934\n547,26150,sightsound,1343973817\n547,26151,sightsound,1343973505\n547,26366,holes70s,1342849254\n547,31770,tcm,1189187673\n547,34517,tivo,1476583581\n547,37741,toplist05,1378985294\n547,38304,toplist05,1378985376\n547,39183,toplist05,1334343486\n547,40629,toplist05,1378985440\n547,40819,toplist05,1378985328\n547,41585,tcm,1189187574\n547,41863,toplist06,1197165976\n547,41997,hdtv,1200107294\n547,41997,holes00s,1342850302\n547,42217,sightsound,1343973482\n547,44199,toplist06,1197165844\n547,44555,toplist06,1235048573\n547,45028,toplist06,1197165941\n547,45210,toplist06,1198810519\n547,46578,toplist06,1197165894\n547,46664,holes40s,1412348651\n547,46664,tcm,1412348651\n547,46723,toplist06,1197165832\n547,47099,toplist06,1197164385\n547,47274,holes70s,1342849207\n547,47423,toplist06,1197164296\n547,47629,toplist06,1197165707\n547,48394,hdtv,1200549984\n547,48394,holes00s,1342850387\n547,48516,toplist06,1197165676\n547,48696,toplist06,1197165862\n547,48738,toplist06,1197164312\n547,48774,toplist06,1197165663\n547,49824,toplist06,1197165695\n547,49917,toplist06,1268555186\n547,50068,holes00s,1342850218\n547,51540,toplist07,1192323038\n547,52241,toplist07,1197122754\n547,52281,hdtv,1200875555\n547,52281,holes00s,1342850259\n547,52579,getdvd,1471606640\n547,52967,toplist07,1197313756\n547,53000,toplist07,1198811122\n547,53123,toplist07,1187738100\n547,53894,toplist07,1197122145\n547,53953,getdvd,1467870755\n547,54272,toplist07,1187738146\n547,54286,toplist07,1197122822\n547,54513,toplist07,1187737659\n547,54881,toplist07,1268555304\n547,55052,toplist07,1197122048\n547,55063,toplist08,1228486494\n547,55069,holes00s,1472570165\n547,55069,toplist07,1301765688\n547,55118,toplist07,1197121987\n547,55247,toplist07,1197121953\n547,55253,toplist07,1268555286\n547,55269,toplist07,1197122030\n547,55276,toplist07,1195959915\n547,55280,holes00s,1342850401\n547,55363,getdvd,1412346850\n547,55363,holes00s,1342850280\n547,55442,holes00s,1342850172\n547,55442,toplist07,1268555437\n547,55820,toplist07,1197121965\n547,55946,tivo,1476113630\n547,56015,tcm,1412347417\n547,56152,toplist07,1198811180\n547,56286,toplist07,1268555500\n547,56367,toplist07,1198968553\n547,56607,toplist07,1200334592\n547,56782,toplist07,1200334609\n547,56788,toplist07,1201665448\n547,56805,toplist07,1198968631\n547,57669,toplist08,1250738298\n547,58191,toplist08,1223243755\n547,58879,toplist08,1207957343\n547,60069,toplist08,1230814631\n547,60766,toplist08,1223243682\n547,61024,toplist08,1223243801\n547,61236,holes00s,1342850181\n547,61236,toplist08,1230870494\n547,61240,holes00s,1342850379\n547,61240,toplist08,1230814624\n547,61323,toplist08,1223244145\n547,61357,toplist08,1222269690\n547,63082,toplist08,1228486518\n547,63876,toplist08,1230814303\n547,64614,toplist08,1250440712\n547,64620,toplist08,1230814286\n547,64622,toplist08,1230942216\n547,64701,toplist08,1230869509\n547,64839,toplist08,1236951337\n547,66665,toplist09,1253860576\n547,67087,toplist09,1259384470\n547,67255,toplist10,1270485757\n547,67429,toplist08,1238823068\n547,67665,getdvd,1321564884\n547,67665,toplist09,1250742907\n547,67997,toplist09,1250742829\n547,68157,toplist09,1253860562\n547,68954,holes00s,1342850438\n547,69481,toplist09,1250742859\n547,70286,toplist09,1250742877\n547,70293,toplist09,1253860588\n547,71108,toplist09,1292047039\n547,71464,toplist09,1259383811\n547,71745,toplist09,1259383809\n547,72011,toplist09,1262145753\n547,72131,toplist09,1257694906\n547,72176,tivo,1476113567\n547,72226,toplist09,1259383836\n547,72395,toplist09,1262146022\n547,72720,toplist09,1271429973\n547,72741,tivo,1476113594\n547,73023,toplist09,1267280510\n547,74324,toplist10,1312868042\n547,74458,toplist10,1276350948\n547,74545,toplist10,1276350928\n547,77455,getdvd,1446815214\n547,77455,toplist10,1292077803\n547,78039,toplist10,1296798992\n547,78499,toplist10,1293381435\n547,78574,toplist10,1281363877\n547,78653,toplist09,1277386636\n547,79132,toplist10,1279986154\n547,79242,toplist10,1281363890\n547,80463,toplist10,1287199615\n547,80489,toplist10,1294976085\n547,81562,toplist10,1292077909\n547,81591,toplist10,1296799009\n547,81786,getdvd,1468248495\n547,81786,toplist11,1312868144\n547,81845,toplist10,1296798962\n547,81932,toplist10,1296799034\n547,82313,tivo,1476650744\n547,82459,toplist10,1296798978\n547,82463,toplist10,1299563653\n547,83976,toplist11,1328012694\n547,85394,toplist11,1312868243\n547,86320,toplist11,1317998755\n547,86833,toplist11,1312868088\n547,87304,toplist11,1312868078\n547,88129,toplist11,1322848734\n547,88235,toplist11,1322849030\n547,88810,toplist11,1322894457\n547,89260,toplist11,1329513993\n547,89470,toplist11,1317998768\n547,89492,toplist11,1317998745\n547,89759,toplist11,1327491628\n547,89804,toplist11,1322848784\n547,90057,toplist11,1322848999\n547,90376,toplist11,1327491698\n547,90439,toplist11,1332487973\n547,90531,toplist11,1327491714\n547,90866,toplist11,1327491687\n547,91077,toplist11,1322848957\n547,94931,toplist12,1355599327\n547,94959,toplist12,1342275142\n547,94969,getdvd,1409381147\n547,95135,toplist12,1354966882\n547,95449,toplist12,1356967567\n547,95558,toplist12,1348198533\n547,95761,dvd,1387360646\n547,96417,dvd,1367718836\n547,96588,toplist12,1355599298\n547,96610,dvd,1361888026\n547,96610,toplist12,1354966811\n547,96728,toplist12,1355599008\n547,96811,toplist12,1356623017\n547,96832,dvd,1369217683\n547,96832,toplist12,1356409181\n547,97304,toplist12,1353063038\n547,97673,toplist13,1383626018\n547,97752,toplist12,1354966835\n547,97921,toplist12,1354966859\n547,97923,toplist12,1356623118\n547,97938,toplist12,1354966894\n547,98154,toplist12,1354966827\n547,98961,toplist12,1355938883\n547,99114,toplist12,1357543606\n547,99149,toplist12,1356273884\n547,101285,getdvd,1386729453\n547,101525,toplist12,1386245688\n547,101895,toplist13,1383626036\n547,102194,toplist13,1386658060\n547,102469,getdvd,1387083948\n547,103107,toplist13,1396017727\n547,103372,toplist13,1383625950\n547,103449,dvd,1378132522\n547,103624,toplist13,1388209512\n547,103688,dvd,1472303875\n547,105197,toplist13,1386657913\n547,105355,toplist13,1397129838\n547,105504,toplist13,1386245656\n547,106100,toplist13,1389766232\n547,106766,toplist13,1386658220\n547,106916,toplist13,1386657846\n547,106920,toplist13,1386657798\n547,107141,toplist13,1386946018\n547,107636,tivo,1476583144\n547,109374,toplist14,1402760218\n547,110871,getdvd,1399051398\n547,111249,getdvd,1423194272\n547,111251,dvd,1410947141\n547,111251,toplist14,1446283752\n547,111505,getdvd,1400501925\n547,111622,toplist14,1420131617\n547,112070,tivo,1476113970\n547,112183,toplist14,1416281804\n547,112290,toplist14,1411137921\n547,112515,getdvd,1423194952\n547,112515,toplist14,1418485385\n547,112550,getdvd,1470238109\n547,112552,toplist14,1417010184\n547,112556,toplist14,1412347244\n547,112852,toplist14,1407510485\n547,113064,getdvd,1423194143\n547,114254,getdvd,1450365156\n547,114342,toplist14,1417010271\n547,114459,getdvd,1412474417\n547,114662,toplist14,1423131235\n547,115139,tcm,1413426713\n547,115569,toplist14,1431187332\n547,115713,toplist15,1446211131\n547,116161,toplist14,1417010500\n547,116797,toplist14,1425780053\n547,117176,toplist14,1417010208\n547,117533,dvd,1473748292\n547,117533,getdvd,1446815098\n547,117533,toplist14,1417010466\n547,118700,getdvd,1446815138\n547,118700,toplist14,1423224182\n547,118880,getdvd,1449757705\n547,118880,toplist14,1449757002\n547,122882,getdvd,1470112098\n547,122882,toplist15,1449755519\n547,123663,tivo,1476583542\n547,123695,tivo,1476583459\n547,127108,tivo,1476583101\n547,127108,toplist15,1449756138\n547,127114,toplist15,1449756046\n547,127144,tivo,1476583306\n547,127206,getdvd,1470111984\n547,127212,tivo,1476113822\n547,128235,tivo,1476583410\n547,128360,toplist15,1449755822\n547,128512,getdvd,1470112064\n547,128606,toplist15,1468592921\n547,131796,tivo,1476583367\n547,132458,tivo,1476583517\n547,132547,dvd,1473748244\n547,132549,tivo,1476583387\n547,132800,getdvd,1454164221\n547,133645,toplist15,1449754606\n547,133771,getdvd,1470111738\n547,134130,toplist15,1446210938\n547,134853,toplist15,1446211185\n547,134859,getdvd,1470111811\n547,134859,toplist15,1449755731\n547,134881,toplist15,1446283359\n547,137337,toplist15,1446211164\n547,139385,toplist15,1449755171\n547,139642,tivo,1476583038\n547,140174,toplist15,1446211303\n547,140715,tivo,1476583167\n547,140725,tivo,1476583059\n547,141749,toplist15,1468077718\n547,142488,toplist15,1449754627\n547,143385,toplist15,1446211337\n547,144172,bkk,1472400655\n547,146656,toplist15,1449755899\n547,148482,tivo,1476583253\n547,148626,toplist15,1449755637\n547,155064,bkk,1472179444\n547,156387,toplist16,1467946629\n547,158783,bkk,1466133970\n547,160954,bkk,1472178574\n547,161336,getdvd,1469112392\n547,161582,bkk,1472737430\n547,163056,bkk,1472178747\n547,163949,toplist16,1476419254\n547,164977,tivo,1476113746\n547,164979,tivo,1476113908\n567,138610,found footage,1436827601\n567,138610,survival horror,1436827612\n574,47044,Michael Mann,1232812787\n583,112552,determination,1430526450\n583,112552,devotion,1430526450\n583,112552,music,1430526450\n599,66203,honest,1344134759\n599,82152,alex pettyfer,1306109318\n611,105504,hijacking,1471521058\n611,105504,ocean,1471521036\n611,105504,pirates,1471521067\n611,105504,suspense,1471521044\n615,111384,revenge,1408781036\n615,111384,vengeance,1408781025\n615,111931,femme-fatale,1425503802\n615,111931,gritty,1425503802\n615,111931,low-budget,1425503802\n630,260,classic sci-fi,1443807766\n630,260,series,1443807803\n652,146501,gay,1449533216\n660,260,\"imaginary world, characters, story, philosophical\",1436680217\n660,260,script,1436680177\n660,135518,meaning of life,1436680885\n660,135518,philosophical,1436680885\n660,135518,sci-fi,1436680885\n663,260,action,1438398078\n663,260,Syfy,1438398050\n"
  },
  {
    "path": "基于矩阵分解的协同过滤的电影推荐系统/基于矩阵分解的协同过滤的电影推荐系统.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# 第一步：收集数据\\n\",\n    \"https://grouplens.org/datasets/movielens/\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# 第二步：准备数据\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"f:\\\\Anaconda3\\\\lib\\\\site-packages\\\\h5py\\\\__init__.py:36: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. In future, it will be treated as `np.float64 == np.dtype(float).type`.\\n\",\n      \"  from ._conv import register_converters as _register_converters\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"import tensorflow as tf\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"ratings_df = pd.read_csv('ml-latest-small/ratings.csv')\\n\",\n    \"movies_df = pd.read_csv('ml-latest-small/movies.csv')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>userId</th>\\n\",\n       \"      <th>movieId</th>\\n\",\n       \"      <th>rating</th>\\n\",\n       \"      <th>timestamp</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>99999</th>\\n\",\n       \"      <td>671</td>\\n\",\n       \"      <td>6268</td>\\n\",\n       \"      <td>2.5</td>\\n\",\n       \"      <td>1065579370</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>100000</th>\\n\",\n       \"      <td>671</td>\\n\",\n       \"      <td>6269</td>\\n\",\n       \"      <td>4.0</td>\\n\",\n       \"      <td>1065149201</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>100001</th>\\n\",\n       \"      <td>671</td>\\n\",\n       \"      <td>6365</td>\\n\",\n       \"      <td>4.0</td>\\n\",\n       \"      <td>1070940363</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>100002</th>\\n\",\n       \"      <td>671</td>\\n\",\n       \"      <td>6385</td>\\n\",\n       \"      <td>2.5</td>\\n\",\n       \"      <td>1070979663</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>100003</th>\\n\",\n       \"      <td>671</td>\\n\",\n       \"      <td>6565</td>\\n\",\n       \"      <td>3.5</td>\\n\",\n       \"      <td>1074784724</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"        userId  movieId  rating   timestamp\\n\",\n       \"99999      671     6268     2.5  1065579370\\n\",\n       \"100000     671     6269     4.0  1065149201\\n\",\n       \"100001     671     6365     4.0  1070940363\\n\",\n       \"100002     671     6385     2.5  1070979663\\n\",\n       \"100003     671     6565     3.5  1074784724\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"ratings_df.tail()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>movieId</th>\\n\",\n       \"      <th>title</th>\\n\",\n       \"      <th>genres</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9120</th>\\n\",\n       \"      <td>162672</td>\\n\",\n       \"      <td>Mohenjo Daro (2016)</td>\\n\",\n       \"      <td>Adventure|Drama|Romance</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9121</th>\\n\",\n       \"      <td>163056</td>\\n\",\n       \"      <td>Shin Godzilla (2016)</td>\\n\",\n       \"      <td>Action|Adventure|Fantasy|Sci-Fi</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9122</th>\\n\",\n       \"      <td>163949</td>\\n\",\n       \"      <td>The Beatles: Eight Days a Week - The Touring Y...</td>\\n\",\n       \"      <td>Documentary</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9123</th>\\n\",\n       \"      <td>164977</td>\\n\",\n       \"      <td>The Gay Desperado (1936)</td>\\n\",\n       \"      <td>Comedy</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9124</th>\\n\",\n       \"      <td>164979</td>\\n\",\n       \"      <td>Women of '69, Unboxed</td>\\n\",\n       \"      <td>Documentary</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"      movieId                                              title  \\\\\\n\",\n       \"9120   162672                                Mohenjo Daro (2016)   \\n\",\n       \"9121   163056                               Shin Godzilla (2016)   \\n\",\n       \"9122   163949  The Beatles: Eight Days a Week - The Touring Y...   \\n\",\n       \"9123   164977                           The Gay Desperado (1936)   \\n\",\n       \"9124   164979                              Women of '69, Unboxed   \\n\",\n       \"\\n\",\n       \"                               genres  \\n\",\n       \"9120          Adventure|Drama|Romance  \\n\",\n       \"9121  Action|Adventure|Fantasy|Sci-Fi  \\n\",\n       \"9122                      Documentary  \\n\",\n       \"9123                           Comedy  \\n\",\n       \"9124                      Documentary  \"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"movies_df.tail()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"movies_df['movieRow'] = movies_df.index\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>movieId</th>\\n\",\n       \"      <th>title</th>\\n\",\n       \"      <th>genres</th>\\n\",\n       \"      <th>movieRow</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9120</th>\\n\",\n       \"      <td>162672</td>\\n\",\n       \"      <td>Mohenjo Daro (2016)</td>\\n\",\n       \"      <td>Adventure|Drama|Romance</td>\\n\",\n       \"      <td>9120</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9121</th>\\n\",\n       \"      <td>163056</td>\\n\",\n       \"      <td>Shin Godzilla (2016)</td>\\n\",\n       \"      <td>Action|Adventure|Fantasy|Sci-Fi</td>\\n\",\n       \"      <td>9121</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9122</th>\\n\",\n       \"      <td>163949</td>\\n\",\n       \"      <td>The Beatles: Eight Days a Week - The Touring Y...</td>\\n\",\n       \"      <td>Documentary</td>\\n\",\n       \"      <td>9122</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9123</th>\\n\",\n       \"      <td>164977</td>\\n\",\n       \"      <td>The Gay Desperado (1936)</td>\\n\",\n       \"      <td>Comedy</td>\\n\",\n       \"      <td>9123</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9124</th>\\n\",\n       \"      <td>164979</td>\\n\",\n       \"      <td>Women of '69, Unboxed</td>\\n\",\n       \"      <td>Documentary</td>\\n\",\n       \"      <td>9124</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"      movieId                                              title  \\\\\\n\",\n       \"9120   162672                                Mohenjo Daro (2016)   \\n\",\n       \"9121   163056                               Shin Godzilla (2016)   \\n\",\n       \"9122   163949  The Beatles: Eight Days a Week - The Touring Y...   \\n\",\n       \"9123   164977                           The Gay Desperado (1936)   \\n\",\n       \"9124   164979                              Women of '69, Unboxed   \\n\",\n       \"\\n\",\n       \"                               genres  movieRow  \\n\",\n       \"9120          Adventure|Drama|Romance      9120  \\n\",\n       \"9121  Action|Adventure|Fantasy|Sci-Fi      9121  \\n\",\n       \"9122                      Documentary      9122  \\n\",\n       \"9123                           Comedy      9123  \\n\",\n       \"9124                      Documentary      9124  \"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"movies_df.tail()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 筛选 movies_df 中的特征\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"movies_df = movies_df[['movieRow', 'movieId', 'title']]\\n\",\n    \"movies_df.to_csv('moviesProcessed.csv', index=False, header=True, encoding='utf-8')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>movieRow</th>\\n\",\n       \"      <th>movieId</th>\\n\",\n       \"      <th>title</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9120</th>\\n\",\n       \"      <td>9120</td>\\n\",\n       \"      <td>162672</td>\\n\",\n       \"      <td>Mohenjo Daro (2016)</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9121</th>\\n\",\n       \"      <td>9121</td>\\n\",\n       \"      <td>163056</td>\\n\",\n       \"      <td>Shin Godzilla (2016)</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9122</th>\\n\",\n       \"      <td>9122</td>\\n\",\n       \"      <td>163949</td>\\n\",\n       \"      <td>The Beatles: Eight Days a Week - The Touring Y...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9123</th>\\n\",\n       \"      <td>9123</td>\\n\",\n       \"      <td>164977</td>\\n\",\n       \"      <td>The Gay Desperado (1936)</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>9124</th>\\n\",\n       \"      <td>9124</td>\\n\",\n       \"      <td>164979</td>\\n\",\n       \"      <td>Women of '69, Unboxed</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"      movieRow  movieId                                              title\\n\",\n       \"9120      9120   162672                                Mohenjo Daro (2016)\\n\",\n       \"9121      9121   163056                               Shin Godzilla (2016)\\n\",\n       \"9122      9122   163949  The Beatles: Eight Days a Week - The Touring Y...\\n\",\n       \"9123      9123   164977                           The Gay Desperado (1936)\\n\",\n       \"9124      9124   164979                              Women of '69, Unboxed\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"movies_df.tail()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# 将 ratings_df 中的 movieId 替换为行号\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"ratings_df = pd.merge(ratings_df, movies_df, on='movieId')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>userId</th>\\n\",\n       \"      <th>movieId</th>\\n\",\n       \"      <th>rating</th>\\n\",\n       \"      <th>timestamp</th>\\n\",\n       \"      <th>movieRow</th>\\n\",\n       \"      <th>title</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>31</td>\\n\",\n       \"      <td>2.5</td>\\n\",\n       \"      <td>1260759144</td>\\n\",\n       \"      <td>30</td>\\n\",\n       \"      <td>Dangerous Minds (1995)</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>7</td>\\n\",\n       \"      <td>31</td>\\n\",\n       \"      <td>3.0</td>\\n\",\n       \"      <td>851868750</td>\\n\",\n       \"      <td>30</td>\\n\",\n       \"      <td>Dangerous Minds (1995)</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>31</td>\\n\",\n       \"      <td>31</td>\\n\",\n       \"      <td>4.0</td>\\n\",\n       \"      <td>1273541953</td>\\n\",\n       \"      <td>30</td>\\n\",\n       \"      <td>Dangerous Minds (1995)</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>32</td>\\n\",\n       \"      <td>31</td>\\n\",\n       \"      <td>4.0</td>\\n\",\n       \"      <td>834828440</td>\\n\",\n       \"      <td>30</td>\\n\",\n       \"      <td>Dangerous Minds (1995)</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>36</td>\\n\",\n       \"      <td>31</td>\\n\",\n       \"      <td>3.0</td>\\n\",\n       \"      <td>847057202</td>\\n\",\n       \"      <td>30</td>\\n\",\n       \"      <td>Dangerous Minds (1995)</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   userId  movieId  rating   timestamp  movieRow                   title\\n\",\n       \"0       1       31     2.5  1260759144        30  Dangerous Minds (1995)\\n\",\n       \"1       7       31     3.0   851868750        30  Dangerous Minds (1995)\\n\",\n       \"2      31       31     4.0  1273541953        30  Dangerous Minds (1995)\\n\",\n       \"3      32       31     4.0   834828440        30  Dangerous Minds (1995)\\n\",\n       \"4      36       31     3.0   847057202        30  Dangerous Minds (1995)\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"ratings_df.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"ratings_df = ratings_df[['userId', 'movieRow', 'rating']]\\n\",\n    \"ratings_df.to_csv('ratingsProcessed.csv', index = False, header=True, encoding='utf-8')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>userId</th>\\n\",\n       \"      <th>movieRow</th>\\n\",\n       \"      <th>rating</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>30</td>\\n\",\n       \"      <td>2.5</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>7</td>\\n\",\n       \"      <td>30</td>\\n\",\n       \"      <td>3.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>31</td>\\n\",\n       \"      <td>30</td>\\n\",\n       \"      <td>4.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>32</td>\\n\",\n       \"      <td>30</td>\\n\",\n       \"      <td>4.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>36</td>\\n\",\n       \"      <td>30</td>\\n\",\n       \"      <td>3.0</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   userId  movieRow  rating\\n\",\n       \"0       1        30     2.5\\n\",\n       \"1       7        30     3.0\\n\",\n       \"2      31        30     4.0\\n\",\n       \"3      32        30     4.0\\n\",\n       \"4      36        30     3.0\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"ratings_df.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 创建电影评分矩阵 rating 和 评分记录矩阵 record\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"userNo = ratings_df['userId'].max()+1\\n\",\n    \"movieNo = ratings_df['movieRow'].max()+1\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"672\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"userNo\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"9123\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"movieNo\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"processed 5000, 95004 left\\n\",\n      \"processed 10000, 90004 left\\n\",\n      \"processed 15000, 85004 left\\n\",\n      \"processed 20000, 80004 left\\n\",\n      \"processed 25000, 75004 left\\n\",\n      \"processed 30000, 70004 left\\n\",\n      \"processed 35000, 65004 left\\n\",\n      \"processed 40000, 60004 left\\n\",\n      \"processed 45000, 55004 left\\n\",\n      \"processed 50000, 50004 left\\n\",\n      \"processed 55000, 45004 left\\n\",\n      \"processed 60000, 40004 left\\n\",\n      \"processed 65000, 35004 left\\n\",\n      \"processed 70000, 30004 left\\n\",\n      \"processed 75000, 25004 left\\n\",\n      \"processed 80000, 20004 left\\n\",\n      \"processed 85000, 15004 left\\n\",\n      \"processed 90000, 10004 left\\n\",\n      \"processed 95000, 5004 left\\n\",\n      \"processed 100000, 4 left\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"rating = np.zeros((movieNo, userNo))\\n\",\n    \"\\n\",\n    \"flag = 0\\n\",\n    \"ratings_df_length = np.shape(ratings_df)[0]\\n\",\n    \"\\n\",\n    \"for index, row in ratings_df.iterrows():\\n\",\n    \"    rating[int(row['movieRow']), int(row['userId'])] = row['rating']\\n\",\n    \"    flag += 1\\n\",\n    \"    if flag % 5000 == 0:\\n\",\n    \"        print('processed %d, %d left' % (flag, ratings_df_length-flag))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"record = rating>0\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[False, False, False, ..., False,  True,  True],\\n\",\n       \"       [False, False, False, ..., False, False, False],\\n\",\n       \"       [False, False, False, ..., False, False, False],\\n\",\n       \"       ...,\\n\",\n       \"       [False, False, False, ..., False, False, False],\\n\",\n       \"       [False, False, False, ..., False, False, False],\\n\",\n       \"       [False, False, False, ..., False, False, False]])\"\n      ]\n     },\n     \"execution_count\": 18,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"record\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"record = np.array(record, dtype=int)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[0, 0, 0, ..., 0, 1, 1],\\n\",\n       \"       [0, 0, 0, ..., 0, 0, 0],\\n\",\n       \"       [0, 0, 0, ..., 0, 0, 0],\\n\",\n       \"       ...,\\n\",\n       \"       [0, 0, 0, ..., 0, 0, 0],\\n\",\n       \"       [0, 0, 0, ..., 0, 0, 0],\\n\",\n       \"       [0, 0, 0, ..., 0, 0, 0]])\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"record\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"source\": [\n    \"# 第三步：构建模型\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def normalizeRatings(rating, record):\\n\",\n    \"    m, n = rating.shape\\n\",\n    \"    rating_mean = np.zeros((m, 1))\\n\",\n    \"    rating_norm = np.zeros((m, n))\\n\",\n    \"    for i in range(m):\\n\",\n    \"        idx = record[i, :] !=0\\n\",\n    \"        rating_mean[i] = np.mean(rating[i, idx])\\n\",\n    \"        rating_norm[i, idx] -= rating_mean[i]\\n\",\n    \"    return rating_norm, rating_mean\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"f:\\\\Anaconda3\\\\lib\\\\site-packages\\\\numpy\\\\core\\\\fromnumeric.py:2920: RuntimeWarning: Mean of empty slice.\\n\",\n      \"  out=out, **kwargs)\\n\",\n      \"f:\\\\Anaconda3\\\\lib\\\\site-packages\\\\numpy\\\\core\\\\_methods.py:85: RuntimeWarning: invalid value encountered in double_scalars\\n\",\n      \"  ret = ret.dtype.type(ret / rcount)\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"rating_norm, rating_mean = normalizeRatings(rating, record)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"rating_norm = np.nan_to_num(rating_norm)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[ 0.        ,  0.        ,  0.        , ...,  0.        ,\\n\",\n       \"        -3.87246964, -3.87246964],\\n\",\n       \"       [ 0.        ,  0.        ,  0.        , ...,  0.        ,\\n\",\n       \"         0.        ,  0.        ],\\n\",\n       \"       [ 0.        ,  0.        ,  0.        , ...,  0.        ,\\n\",\n       \"         0.        ,  0.        ],\\n\",\n       \"       ...,\\n\",\n       \"       [ 0.        ,  0.        ,  0.        , ...,  0.        ,\\n\",\n       \"         0.        ,  0.        ],\\n\",\n       \"       [ 0.        ,  0.        ,  0.        , ...,  0.        ,\\n\",\n       \"         0.        ,  0.        ],\\n\",\n       \"       [ 0.        ,  0.        ,  0.        , ...,  0.        ,\\n\",\n       \"         0.        ,  0.        ]])\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"rating_norm\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"rating_mean = np.nan_to_num(rating_mean)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[3.87246964],\\n\",\n       \"       [3.40186916],\\n\",\n       \"       [3.16101695],\\n\",\n       \"       ...,\\n\",\n       \"       [3.        ],\\n\",\n       \"       [0.        ],\\n\",\n       \"       [5.        ]])\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"rating_mean\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"num_features = 10\\n\",\n    \"X_parameters = tf.Variable(tf.random_normal([movieNo, num_features], stddev=0.35))\\n\",\n    \"Theta_paramters = tf.Variable(tf.random_normal([userNo, num_features], stddev=0.35))\\n\",\n    \"loss = 1/2 * tf.reduce_sum(((tf.matmul(X_parameters, Theta_paramters, transpose_b=True) - rating_norm)*record)**2) + \\\\\\n\",\n    \"    1/2 * (tf.reduce_sum(X_parameters**2) + tf.reduce_sum(Theta_paramters**2))\\n\",\n    \"optimizer = tf.train.AdamOptimizer()\\n\",\n    \"train = optimizer.minimize(loss)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# 第四步：训练模型\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"tf.summary.scalar('loss', loss)\\n\",\n    \"summaryMerged = tf.summary.merge_all()\\n\",\n    \"filename = './movie_tensorboard'\\n\",\n    \"writer = tf.summary.FileWriter(filename)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"sess = tf.Session()\\n\",\n    \"init = tf.global_variables_initializer()\\n\",\n    \"sess.run(init)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"step: 0  train loss:0.10730  test loss:11.49665\\n\",\n      \"step: 100  train loss:0.10049  test loss:11.35875\\n\",\n      \"step: 200  train loss:0.07719  test loss:10.06480\\n\",\n      \"step: 300  train loss:0.04130  test loss:7.07488\\n\",\n      \"step: 400  train loss:0.01679  test loss:4.21624\\n\",\n      \"step: 500  train loss:0.00734  test loss:2.57023\\n\",\n      \"step: 600  train loss:0.00445  test loss:1.79445\\n\",\n      \"step: 700  train loss:0.00351  test loss:1.41947\\n\",\n      \"step: 800  train loss:0.00312  test loss:1.21572\\n\",\n      \"step: 900  train loss:0.00290  test loss:1.09030\\n\",\n      \"step: 1000  train loss:0.00275  test loss:1.00487\\n\",\n      \"step: 1100  train loss:0.00262  test loss:0.94221\\n\",\n      \"step: 1200  train loss:0.00252  test loss:0.89379\\n\",\n      \"step: 1300  train loss:0.00242  test loss:0.85495\\n\",\n      \"step: 1400  train loss:0.00234  test loss:0.82294\\n\",\n      \"step: 1500  train loss:0.00226  test loss:0.79602\\n\",\n      \"step: 1600  train loss:0.00219  test loss:0.77308\\n\",\n      \"step: 1700  train loss:0.00213  test loss:0.75333\\n\",\n      \"step: 1800  train loss:0.00207  test loss:0.73625\\n\",\n      \"step: 1900  train loss:0.00201  test loss:0.72144\\n\",\n      \"step: 2000  train loss:0.00196  test loss:0.70858\\n\",\n      \"step: 2100  train loss:0.00192  test loss:0.69745\\n\",\n      \"step: 2200  train loss:0.00187  test loss:0.68783\\n\",\n      \"step: 2300  train loss:0.00183  test loss:0.67957\\n\",\n      \"step: 2400  train loss:0.00179  test loss:0.67252\\n\",\n      \"step: 2500  train loss:0.00176  test loss:0.66657\\n\",\n      \"step: 2600  train loss:0.00172  test loss:0.66160\\n\",\n      \"step: 2700  train loss:0.00169  test loss:0.65754\\n\",\n      \"step: 2800  train loss:0.00166  test loss:0.65431\\n\",\n      \"step: 2900  train loss:0.00163  test loss:0.65184\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"penalty = movieNo*userNo\\n\",\n    \"\\n\",\n    \"for i in range(3000):\\n\",\n    \"    l, _, movie_summary = sess.run([loss, train, summaryMerged])\\n\",\n    \"    if i%100 == 0:\\n\",\n    \"        Current_X_parameters, Current_Theta_parameters = sess.run([X_parameters, Theta_paramters])\\n\",\n    \"        predicts = np.dot(Current_X_parameters,Current_Theta_parameters.T) + rating_mean\\n\",\n    \"        errors = np.mean((predicts - rating)**2)\\n\",\n    \"        print('step:', i, ' train loss:%.5f' % (l/penalty), ' test loss:%.5f' % errors)\\n\",\n    \"    writer.add_summary(movie_summary, i)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"训练完成之后，打开 cmd，切换到 tensorboard 保存数据的目录下，运行 tensorboard --logdir=./，然后在浏览器中输入 127.0.0.1:6006 即可看到图形化的训练结果。\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# 第五步：评估模型\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"Current_X_parameters, Current_Theta_parameters = sess.run([X_parameters, Theta_paramters])\\n\",\n    \"predicts = np.dot(Current_X_parameters,Current_Theta_parameters.T) + rating_mean\\n\",\n    \"errors = np.mean((predicts - rating)**2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.6500955952713876\"\n      ]\n     },\n     \"execution_count\": 32,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"errors\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# 第六步：构建完整的电影推荐系统\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"您要向哪位用户进行推荐？请输入用户编号：666\\n\",\n      \"==============================为该用户推荐的评分最高的20部电影是：===============================\\n\",\n      \"评分：2.89, 电影名：The Biggest Fan (2002)\\n\",\n      \"评分：2.88, 电影名：Dorian Blues (2004)\\n\",\n      \"评分：2.87, 电影名：Latter Days (2003)\\n\",\n      \"评分：2.87, 电影名：Long-Term Relationship (2006)\\n\",\n      \"评分：2.87, 电影名：Three of Hearts (1993)\\n\",\n      \"评分：2.87, 电影名：Back Soon (2007)\\n\",\n      \"评分：2.86, 电影名：Zerophilia (2005)\\n\",\n      \"评分：2.86, 电影名：Big Eden (2000)\\n\",\n      \"评分：2.86, 电影名：FAQs (2005)\\n\",\n      \"评分：2.86, 电影名：Curiosity of Chance, The (2006)\\n\",\n      \"评分：2.86, 电影名：Mambo Italiano (2003)\\n\",\n      \"评分：2.86, 电影名：On the Edge (2001)\\n\",\n      \"评分：2.86, 电影名：Touch of Pink (2004)\\n\",\n      \"评分：2.86, 电影名：Dancing in September (2000)\\n\",\n      \"评分：2.86, 电影名：Almost Normal (2005)\\n\",\n      \"评分：2.85, 电影名：I Think I Do (1997)\\n\",\n      \"评分：2.85, 电影名：Clockstoppers (2002)\\n\",\n      \"评分：2.85, 电影名：Trip, The (2002)\\n\",\n      \"评分：2.85, 电影名：Shining Through (1992)\\n\",\n      \"评分：2.85, 电影名：Shelter (2007)\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"user_id = input('您要向哪位用户进行推荐？请输入用户编号：')\\n\",\n    \"\\n\",\n    \"sortedResult = predicts[:, int(user_id)].argsort()[::-1]\\n\",\n    \"\\n\",\n    \"idx = 0\\n\",\n    \"print('为该用户推荐的评分最高的20部电影是：'.center(80, '='))\\n\",\n    \"for i in sortedResult:\\n\",\n    \"    print('评分：%.2f, 电影名：%s' % (predicts[i, int(user_id)], movies_df.iloc[i]['title']))\\n\",\n    \"    idx += 1\\n\",\n    \"    if idx == 20: break\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.4\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  }
]