brightmart / text_classification

all kinds of text classification models and more with deep learning
MIT License
7.83k stars 2.57k forks source link

ModuleNotFoundError: No module named 'data_util_zhihu' #59

Closed dapsjj closed 5 years ago

dapsjj commented 6 years ago

I use a03_TextRNN,but these two lines has error:

from data_util_zhihu import load_data_multilabel_new,create_voabulary,create_voabulary_label
from tflearn.data_utils import pad_sequences #to_categorical

The error message said:

Traceback (most recent call last):
  File "E:/test_opencv/text_classification-master/a03_TextRNN/p8_TextRNN_train.py", line 10, in <module>
    from data_util_zhihu import load_data_multilabel_new,create_voabulary,create_voabulary_label
ModuleNotFoundError: No module named 'data_util_zhihu'
brightmart commented 6 years ago

hi,

check TextCNN, there is a file named data_util.py it has two function:

one is create vocabulary for words and labels, another is transform data into indices using vocabulary dict.

bright


发件人: Rhaegal notifications@github.com 发送时间: 2018年6月1日 14:55 收件人: brightmart/text_classification 抄送: Subscribed 主题: [brightmart/text_classification] ModuleNotFoundError: No module named 'data_util_zhihu' (#59)

I use a03_TextRNN,but these two line:

from data_util_zhihu import load_data_multilabel_new,create_voabulary,create_voabulary_label from tflearn.data_utils import pad_sequences #to_categorical

The error message said:

Traceback (most recent call last): File "E:/test_opencv/text_classification-master/a03_TextRNN/p8_TextRNN_train.py", line 10, in from data_util_zhihu import load_data_multilabel_new,create_voabulary,create_voabulary_label ModuleNotFoundError: No module named 'data_util_zhihu'

― You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHubhttps://eur04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fbrightmart%2Ftext_classification%2Fissues%2F59&data=02%7C01%7C%7Ca04a5ecefcfe40e0c5fe08d5c78ca2e0%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C636634329193719784&sdata=yeJderOGqRBWtgel2UIMj509OZzk6Bm%2FbGojArWJEAA%3D&reserved=0, or mute the threadhttps://eur04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fnotifications%2Funsubscribe-auth%2FASuYMIP9N7w0nfWIdFYYaJMQJYyB-O6Kks5t4OVVgaJpZM4UWMS8&data=02%7C01%7C%7Ca04a5ecefcfe40e0c5fe08d5c78ca2e0%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C636634329193719784&sdata=9P8liKsdqYiDE0l3GC5mt0DP5AMdfNRlmrptz3U%2FEu4%3D&reserved=0.

peterHeuz commented 6 years ago

I have the same error.

I corrected

from data_util_zhihu import load_data_multilabel_new,create_voabulary,create_voabulary_label
from tflearn.data_utils import pad_sequences #to_categorical

to

from a02_TextCNN.data_util import load_data_multilabel, create_vocabulary, \
    create_voabulary_label
from tflearn.data_utils import pad_sequences  # to_cate

Now it crashes later with:

ImportError: No module named tflearn.data_utils

Where can we find create_voabulary_label and tflearn.data_utils ?

f20500909 commented 6 years ago
ImportError: No module named tflearn.data_utils

tflearn is a Python package use pip install tflearn to slove it

you can find create_voabulary_label from https://github.com/brightmart/text_classification/blob/master/a02_TextCNN/other_experiement/data_util_zhihu.py

you can copy /a02_TextCNN/other_experiement/data_util_zhihu.py to your catalog

@peterHeuz

peterHeuz commented 6 years ago

Great thanks @f20500909 ! I also found out that tflearn is a package, but did not look in the other_experiement folder.

Now it runs further but crashes when executing create_voabulary: No such file or directory: 'zhihu-word2vec.bin-100'

Is there additional data that I need, besides cloning the repo? I do not see anything in the documentation, but I assume so since the create_voabulary function has a comment saying #use pretrained word embedding to get word vocabulary and labels, and its relationship with index.

brightmart commented 6 years ago

you can set flag of use pertained word embedding to false, so it will not use *.bin-100 file.


发件人: Peter Heuz notifications@github.com 发送时间: 2018年7月26日 18:49 收件人: brightmart/text_classification 抄送: brightmart; Comment 主题: Re: [brightmart/text_classification] ModuleNotFoundError: No module named 'data_util_zhihu' (#59)

Great thanks @f20500909https://github.com/f20500909 ! I also found out that tflearn is a package, but did not look in the other_experiement folder.

Now it runs further but crashes when executing create_voabulary: No such file or directory: 'zhihu-word2vec.bin-100'

Is there additional data that I need, besides cloning the repo? I do not see anything in the documentation, but I assume so since the create_voabulary function has a comment saying #use pretrained word embedding to get word vocabulary and labels, and its relationship with index.

― You are receiving this because you commented. Reply to this email directly, view it on GitHubhttps://github.com/brightmart/text_classification/issues/59#issuecomment-408057280, or mute the threadhttps://github.com/notifications/unsubscribe-auth/ASuYMBDShKhgAS6ZjhZlxQ2MMvSPIQOXks5uKZ7CgaJpZM4UWMS8.

brightmart commented 6 years ago

great job


发件人: Peter Heuz notifications@github.com 发送时间: 2018年7月26日 16:58 收件人: brightmart/text_classification 抄送: brightmart; Comment 主题: Re: [brightmart/text_classification] ModuleNotFoundError: No module named 'data_util_zhihu' (#59)

I have the same error.

I corrected

from data_util_zhihu import load_data_multilabel_new,create_voabulary,create_voabulary_label from tflearn.data_utils import pad_sequences #to_categorical

to

from a02_TextCNN.data_util import load_data_multilabel, create_vocabulary, \ create_voabulary_label from tflearn.data_utils import pad_sequences # to_cate

Now it crashes later with:

ImportError: No module named tflearn.data_utils

Where can we find create_voabulary_label and tflearn.data_utils ?

― You are receiving this because you commented. Reply to this email directly, view it on GitHubhttps://github.com/brightmart/text_classification/issues/59#issuecomment-408027980, or mute the threadhttps://github.com/notifications/unsubscribe-auth/ASuYMBuVz4XmGlzCwKzocNdthjH2k79Fks5uKYSbgaJpZM4UWMS8.

peterHeuz commented 6 years ago

Thanks for the quick reply!

you can set flag of use pertained word embedding to false, so it will not use *.bin-100 file.

Where is that flag? @brightmart This is the list of all flags I found:

# configuration
FLAGS = tf.app.flags.FLAGS
tf.app.flags.DEFINE_integer("num_classes", 1999, "number of label")
tf.app.flags.DEFINE_float("learning_rate", 0.01, "learning rate")
tf.app.flags.DEFINE_integer("batch_size", 1024,
                            "Batch size for training/evaluating.")  # 批处理的大小 32-->128
tf.app.flags.DEFINE_integer("decay_steps", 12000,
                            "how many steps before decay learning rate.")  # 批处理的大小 32-->128
tf.app.flags.DEFINE_float("decay_rate", 0.9,
                          "Rate of decay for learning rate.")  # 0.5一次衰减多少
tf.app.flags.DEFINE_string("ckpt_dir", "text_rnn_checkpoint/",
                           "checkpoint location for the model")
tf.app.flags.DEFINE_integer("sequence_length", 100, "max sentence length")
tf.app.flags.DEFINE_integer("embed_size", 100, "embedding size")
tf.app.flags.DEFINE_boolean("is_training", True,
                            "is traning.true:tranining,false:testing/inference")
tf.app.flags.DEFINE_integer("num_epochs", 60, "embedding size")
tf.app.flags.DEFINE_integer("validate_every", 1,
                            "Validate every validate_every epochs.")  # 每10轮做一次验证
tf.app.flags.DEFINE_boolean("use_embedding", True,
                            "whether to use embedding or not.")
tf.app.flags.DEFINE_string("traning_data_path",
                           "train-zhihu4-only-title-all.txt",
                           "path of traning data.")  # train-zhihu4-only-title-all.txt===>training-data/test-zhihu4-only-title.txt--->'training-data/train-zhihu5-only-title-multilabel.txt'
tf.app.flags.DEFINE_string("word2vec_model_path", "zhihu-word2vec.bin-100",
                           "word2vec's vocabulary and vectors")

I set use_embedding to False, but it still crashed.

f20500909 commented 6 years ago

My English is not good, please allow me to express it in Chinese,I will translate it into English subsequently:

create_vocabulary这个函数的作用是返回vocabulary_word2index,vocabulary_index2word,vocabulary_label2index,vocabularyindex2label这四个参数,过程是先读取'**cache'+""+name_scope下的vocab_label.pik**

文件,如果此文件不存在则利用FLAGS.traning_data_path的文件生成 zhihu-word2vec.bin-100报错的原因是没有vocab_label.pik文件,你可以用以下方法生成:

查看a02_TextCNN/data_util.py的结尾:

#training_data_path='../data/sample_multiple_label3.txt'
#vocab_size=100
#create_voabulary(training_data_path,vocab_size)
if(__name__=="__main__"):
    training_data_path='../data/sample_multiple_label.txt'
    vocab_size=100
    create_vocabulary(training_data_path,vocab_size)

改成我这样,运行一下你会发现当前目录多了/a02_TextCNN/cache_cnn/vocab_label.pik的文件,再进行train就没有报错了

在data_util里面的函数是create_vocabulary,在data_util_zhihu里面的函数是create_voabulary,后者少了一个c,估计是作者不小心写错了 不过以上这只是我个人的猜想,不知道是不是作者的本意

in English:

The function of this create_vocabulary is to return 4 parameters:vocabulary_word2index,vocabulary_index2word,vocabulary_label2index,vocabulary_index2label

The procedure is to read the vocab_label.pik file under the "'cache'+" +name_scope first.If the file does not exist, the file will generated by use FLAGS.traning_data_path

check the end of a02_TextCNN/data_util.py:

#training_data_path='../data/sample_multiple_label3.txt'
#vocab_size=100
#create_voabulary(training_data_path,vocab_size)
if(__name__=="__main__"):
    training_data_path='../data/sample_multiple_label.txt'
    vocab_size=100
    create_vocabulary(training_data_path,vocab_size)

add some code like this , run it, you will find that there are generated a file name: /a02_TextCNN/cache_cnn/vocab_label.pik , and it will be not crashed when you train with the file.

In data_util, the function is named create_vocabulary, the function in data_util_zhihu is named create_voabulary, and the latter lack n a C, which is estimated to be the author's careless writing error.

But this above is only my personal guess. I don't know whether it is the author's Original intention.

@peterHeuz

peterHeuz commented 6 years ago

No worries, I used google translate and followed your suggestions to run your modification of data_util.py. The file vocab_label.pik was created. Still the file zhihu-word2vec.bin-100 is missing when I run p8_TextRNN_train.py: IOError: [Errno 2] No such file or directory: 'zhihu-word2vec.bin-100'

f20500909 commented 6 years ago

I am sorry ,i can not solve it .i try to

  1. load vocab_label.pik as i said above

  2. set traning_data_path as _"../data/sample_multiple_label.txt" in tf.app.flags

  3. add code with

    vocabulary_word2index_label = {v: k for k, v in vocabulary_word2index_label.items()}

    to fix KeyError: u''XXXXXX"

but i still get error:

/home/wh/code/python/ven2/bin/python /home/wh/code/python/text_classification-master/a03_TextRNN/p8_TextRNN_train.py
('outputs:===>', (<tf.Tensor 'bidirectional_rnn/fw/fw/transpose_1:0' shape=(?, 5, 100) dtype=float32>, <tf.Tensor 'ReverseV2:0' shape=(?, 5, 100) dtype=float32>))
('output_rnn_last:', <tf.Tensor 'strided_slice:0' shape=(?, 200) dtype=float32>)
('loss:', 2.5830622, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 1.8206785, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 1.3262845, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 1.2381762, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 1.0340526, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 1.0938056, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 1.0058466, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.9120263, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.90909994, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.9178573, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.89155716, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.8478796, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.81968737, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.81980944, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.82828575, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.8216988, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.8027343, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.78782564, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.78476137, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.78843, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7902853, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7866655, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.77976096, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.77390337, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7715165, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7717892, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.77237487, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.77158356, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7692556, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.76646686, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7644788, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.763664, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.76340634, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.76292264, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.76197606, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.76081985, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7597037, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.75866336, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7577304, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.75704783, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7566454, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7562896, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7557097, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7548875, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7540516, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7534528, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7531644, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.75302076, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.75273794, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.75217783, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7515104, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.75104284, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7508807, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7508181, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.750583, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7501344, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.74967647, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.749412, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.74932384, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7492178, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7489597, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.74861777, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.74835306, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7482204, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.74812466, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7479556, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7477185, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.74750537, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7473664, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7472578, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7471189, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7469481, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7467865, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.74665487, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.74653935, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.74641776, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7462868, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.746157, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.74603647, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.74592596, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.745821, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7457132, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7455993, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7454891, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7453921, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.74530095, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.745202, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.74509764, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7450033, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7449201, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.74483365, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.74473876, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7446485, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7445696, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.744491, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7444049, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7443211, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.74424607, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7441724, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('loss:', 0.7440937, 'acc:', 0.75, 'label:', array([1, 0, 1, 1, 1, 2, 1, 1]), 'prediction:', array([1, 1, 1, 1, 1, 1, 1, 1]))
('cache_path:', 'vocab_label.pik', 'file_exists:', True)
('rnn_model.vocab_size:', 102)
('create_voabulary_label_sorted.started.traning_data_path:', 'train-zhihu4-only-title-all.txt')
('vocabulary_word2index_label:', {0: '7476760589625268543', 1: '4653836020042332281', 2: '4697014490911193675', 3: '8175048003539471998', 4: '8377411942628634656', 5: '7046289575185911002', 6: '5932391056759866388', 7: '5513826101327857645', 8: '2787171473654490487', 9: '4931965624608608932', 10: '7129272008741138808', 11: '6748914495015758455', 12: '2587540952280802350', 13: '9069451131871918127', 14: '2347973810368732059', 15: '8132909213241034354', 16: '3517637179126242000', 17: '5872443091340192918', 18: '5024074905263842849', 19: '1127459907694805235', 20: '3522198575349379632', 21: '1462130073299421617', 22: '8697050490955193511', 23: '6940355838132160535', 24: '198848245836228716', 25: '1929433213325443915', 26: '8388675223914479274', 27: '5838214150045022184', 28: '1957590033086240723', 29: '3388534223137478077', 30: '6926244324609892988', 31: '3026760652624195547', 32: '8977315052041277515', 33: '2339809570377332086', 34: '5247920953015099584', 35: '464098448481254928', 36: '6233332241905300962', 37: '8234985547322968859', 38: '3738968195649774859', 39: '1833966078556927530', 40: '7755760251312795490', 41: '10765275175571242', 42: '4244109851160069017', 43: '5713014937920165769', 44: '6482420820999758130', 45: '6206436693745657677', 46: '6128804744224159220', 47: '8320373689946067773', 48: '2244015987817045493', 49: '8476641588870267502', 50: '6913268882499481459', 51: '296557676636955101', 52: '7237193447717198432', 53: '4925324689486413355', 54: '306626713584702071', 55: '2176113691990522905', 56: '974948214077502397', 57: '6010787275257571576', 58: '4715442001886462944', 59: '5727179283235569021', 60: '6300335881941851794', 61: '7154752383833648999', 62: '7327336430450495350', 63: '4842117090584879970', 64: '6094988058243923104', 65: '4313812860434517324', 66: '6259864339809244567', 67: '2253846628644635942', 68: '7128941744969160079', 69: '2470450211317525201', 70: '7382441326522573326', 71: '1936426631796262053', 72: '1115593437686158905', 73: '4783946863855560712', 74: '461073897687077027', 75: '6136403420715230873', 76: '3195914392210930723', 77: '5603787840210684334', 78: '2838091149470021485', 79: '1715880907958721415', 80: '7358589937244777363', 81: '5907221298687398924', 82: '4175044003751472418', 83: '7263346613600732510', 84: '3395612187041625063', 85: '127578908485806392', 86: '8934878948902408411', 87: '6746100647744083283', 88: '3221108052186253383', 89: '7276757922692328501', 90: '5370870069386720811', 91: '3804601920633030746', 92: '929552214112445114', 93: '2804720921356031819', 94: '1134449461011864348', 95: '8939629250892191652', 96: '1716547219669564708', 97: '1528665449659634829', 98: '8753586927626560871', 99: '4797226510592237555', 100: '8793023054666221242', 101: '6090807681448489886', 102: '6916771625541437162', 103: '7394822415369169180', 104: '3710154354006596575', 105: '7461031052158017715', 106: '3171321284640461062', 107: '7467981654311152612', 108: '8690965822342756180', 109: '4926226324555892746', 110: '6396968224948153401', 111: '3395688050394648705', 112: '3587421951489801185', 113: '8038679761480862184', 114: '5029367761183847365', 115: '5735861801184653052', 116: '6440461292041887516', 117: '6006627476560013656', 118: '8963554618409314978', 119: '8261875436896588399', 120: '8655945395761165989', 121: '3698337232083548513', 122: '1812694399780494968', 123: '3530498516767785588', 124: '8255556364363894453', 125: '5905055941872077172', 126: '5844864887297130495', 127: '4847411431971122436', 128: '2945591676659457448', 129: '8496378976475952232', 130: '6306904715218704629', 131: '272391079030611182', 132: '7768176858078358290', 133: '5630468373378416690', 134: '4735980801943654043', 135: '5533197189576067599', 136: '8719892509048178531', 137: '5265476641576484497', 138: '3717741907951064981', 139: '3812630496047239920', 140: '6655927395515165363', 141: '5535923551616745326', 142: '467854653740151741', 143: '5154428478508391411', 144: '2190087081896469323', 145: '7084375848696637802', 146: '6189759144033325615', 147: '8273296485558712517', 148: '3171150797683574404', 149: '284442997366536173', 150: '7389439858234957818', 151: '4844983888056131462', 152: '3040328401474530651', 153: '815198876455192216', 154: '2914574150347219426', 155: '5307971550110056052', 156: '1939629710310803463', 157: '5127719909274807567', 158: '6531816480725651453', 159: '7637660878558952620', 160: '2919247920214845195', 161: '205887421398457440', 162: '5572121657225835907', 163: '8974466804582129986', 164: '4510220896859961775', 165: '8129153007982137565', 166: '6826175758878956514', 167: '937436842931607517', 168: '1247043476329724186', 169: '8057405216243595195', 170: '2428977755640385826', 171: '4854080174949497665', 172: '8722585993781275470', 173: '3368482620480350745', 174: '8412622048338198339', 175: '3655804394968164826', 176: '7831006970405086046', 177: '5607854572232625967', 178: '2957727033863241782', 179: '5653685018999330538', 180: '8824437633825893435', 181: '3228559176932703230', 182: '429636223750539488', 183: '4482402820945758152', 184: '1172491018201020094', 185: '1870872991887862017', 186: '6621328949299074002', 187: '5839832565699655443', 188: '5528371788726186348', 189: '3710958733904838649', 190: '2545990029501556303', 191: '1818608831920242374', 192: '3257681557352812938', 193: '6270130442784051389', 194: '289045265883160915', 195: '7388356979267008104', 196: '953535750771065392', 197: '2299947672181109599', 198: '7358743120658680867', 199: '5312820382794140407', 200: '4248039953806100751', 201: '738845194850773558', 202: '1373190831171479026', 203: '5934472074045979437', 204: '5078457515830483462', 205: '1097982440009765819', 206: '978567319737022832', 207: '2707519855514695474', 208: '3531693480182650642', 209: '1029971585579892097', 210: '7278414220583882776', 211: '111444386959930591', 212: '3747151213341814246', 213: '2183097528579409954', 214: '8271228722369845310', 215: '1966338279544387275', 216: '4317515119936650885', 217: '5246457218661843199', 218: '2615243982215418774', 219: '813840053768678454', 220: '8461136052903019092', 221: '2051131023989903826', 222: '641296879189318453', 223: '7296682137888894474', 224: '9046073171251654509', 225: '4971742318987291185', 226: '76251316322796397', 227: '7792886053889220161', 228: '3068146477308733962', 229: '2919541457568923211', 230: '3060490612540832338', 231: '7270992690764838239', 232: '5190476938344202375', 233: '9213605013227137867', 234: '8459909699372349975', 235: '6170121829697589402', 236: '8314147124186495753', 237: '3620560314982595526', 238: '4619805718368927775', 239: '8780119653771094858', 240: '8608059476818882548', 241: '6962046606718337437', 242: '8491251183816682310', 243: '4315378960086848699', 244: '9202493221760481170', 245: '760432988437306018', 246: '827494981788980052', 247: '2252347929235450937', 248: '7077785751173689029', 249: '7604888719168633942', 250: '7932776971796693414', 251: '5630647833836040328', 252: '2053435107881296665', 253: '9176307901497282391', 254: '1282613433387309359', 255: '7956765969654512096', 256: '7128402373671658935', 257: '4233501032149248553', 258: '1594206519891776533', 259: '7596780943228995766', 260: '548176348047239669', 261: '1516199613903032963', 262: '7710528027833427554', 263: '881452243543100756', 264: '7071261048854153122', 265: '4039480952417102913', 266: '7300216881186850753', 267: '3950343097199599450', 268: '2063575091370043114', 269: '2042413966701758841', 270: '6754977617002317104', 271: '5933701962734903797', 272: '4575888989282246797', 273: '9131224113041702374', 274: '6834107079157928311', 275: '4941167822436894045', 276: '233310241887300764', 277: '1602071285682694082', 278: '1829585873417382293', 279: '4970306416006110305', 280: '4126348383745483901', 281: '6179724419779689236', 282: '7506384235581390893', 283: '4005373146530184315', 284: '4738849194894773882', 285: '8177829350826196308', 286: '8955755936847898358', 287: '5097986439797765367', 288: '8295464382327368710', 289: '5952941860558359871', 290: '3502510845760007338', 291: '8313816860478517392', 292: '530848751124349321', 293: '7483543763655495143', 294: '1840848880823843395', 295: '4615229981949418360', 296: '1950281665227851925', 297: '4960981578552030421', 298: '8064131816828727404', 299: '282465978976186486', 300: '4637223908993888877', 301: '5010906275996572633', 302: '1848585092512027184', 303: '8298071112958190037', 304: '6929574213890444536', 305: '4350097186097565949', 306: '8794289579418543667', 307: '3047203140006640650', 308: '7761820454097708905', 309: '9181954421703290111', 310: '7149588690342184679', 311: '51758657721381745', 312: '6797468512182240005', 313: '9068963265682720586', 314: '1129282008947139174', 315: '159483088220219835', 316: '958161591095441794', 317: '4195795391451929480', 318: '9071279048844153004', 319: '2473845757256782581', 320: '6706204399096967608', 321: '4287430850224527380', 322: '4685012381295525749', 323: '989115724037427557', 324: '3924161035524229969', 325: '3928200017056854908', 326: '4531492575592394249', 327: '6820927470420761553', 328: '8754995617056317074', 329: '8733716205359733790', 330: '8735763339754712849', 331: '7521397384381138775', 332: '7468440516386812822', 333: '6815248286057533876', 334: '578156641762363345', 335: '3941819252743792375', 336: '4138657073201347687', 337: '1689319711084901730', 338: '5289642852158128373', 339: '5939784184924423143', 340: '5197200702793464225', 341: '4155499018100127309', 342: '2696736445927423374', 343: '4287768755595785006', 344: '608973789957727561', 345: '7863420741562613788', 346: '7936068733703908459', 347: '6797754925234728042', 348: '8921033697231531910', 349: '4186044945552320533', 350: '5547065374611946666', 351: '4385853633333586686', 352: '4956126618474609139', 353: '3519446969668241763', 354: '4375644834375081381', 355: '8612737995048623998', 356: '8424110050280813309', 357: '1052210788805438774', 358: '6289779852907129222', 359: '7473164687826110412', 360: '3296456675883953898', 361: '5369979592181110026', 362: '7808628529824183580', 363: '5363951565728187051', 364: '8475158770269030212', 365: '682625880884350440', 366: '3603500707650257526', 367: '6906396683286432414', 368: '6693924458286834451', 369: '6125464748666004102', 370: '9020242569147281890', 371: '4047468682330031577', 372: '6317533119990651087', 373: '1361918053618377737', 374: '5244246852161070930', 375: '1568371821273406570', 376: '418328811539378284', 377: '6637171571708691638', 378: '1132762216411335839', 379: '5184213573444025305', 380: '7890270533039637284', 381: '5710723271693897389', 382: '6596826271593118393', 383: '4200589112729926854', 384: '8257566556637812025', 385: '3035038556984966446', 386: '8075733003501829416', 387: '5640305545736968503', 388: '7244570757266327934', 389: '839691564858654120', 390: '982546890824575042', 391: '730827694591115921', 392: '1420790574181137744', 393: '1304753272343710201', 394: '7236666175467998449', 395: '4047806587665289083', 396: '3645735357732416904', 397: '268886646698338239', 398: '2271656070098079690', 399: '1862396277886347795', 400: '1050656117889645239', 401: '3359253792326581125', 402: '4928686579058965613', 403: '5156370773381774555', 404: '2409703646005059599', 405: '3206175865018905637', 406: '8083178479064909945', 407: '130333997183751313', 408: '3374255859373786194', 409: '4741393399987719483', 410: '6885406542446231991', 411: '5956877252529086741', 412: '3283270692786298820', 413: '8293646724873095388', 414: '8583893266269238848', 415: '258278081117318884', 416: '6977349729988642589', 417: '1046296830523760923', 418: '944960297467578380', 419: '7951349602759061249', 420: '4484663127649000563', 421: '4779086475169195362', 422: '7812202290035421510', 423: '1379124819653208034', 424: '3787020472867489510', 425: '2802807297246536023', 426: '4931893522763265934', 427: '7057974542385626232', 428: '1201071336132923959', 429: '4035035703637267442', 430: '8276586243967962122', 431: '6945469483209653697', 432: '2872176636559084285', 433: '9070887554893837092', 434: '2605430974769704433', 435: '7042349381148393717', 436: '2863351392293563325', 437: '5926107323796891757', 438: '5189774979662589703', 439: '3744255770910909874', 440: '2147515486275286277', 441: '1358721120864681533', 442: '5953579394093512194', 443: '3905069941818076706', 444: '9156630774705776151', 445: '7010924276002572467', 446: '3571603611933812906', 447: '7727523866482191789', 448: '212983527176510806', 449: '5732564720446782766', 450: '4134572461810865895', 451: '6973540846536380068', 452: '6604751718355632709', 453: '8055035767327224979', 454: '5703183951095115476', 455: '1419888939115658319', 456: '3939940843357256698', 457: '4042431966963759443', 458: '2325532988800688306', 459: '634630012192348800', 460: '9135942013846644865', 461: '4966205278807386328', 462: '2024918785185496622', 463: '266893549648994617', 464: '1091735150683667954', 465: '248035954018101491', 466: '2834103079369928763', 467: '1757481363245650831', 468: '8485136373063472642', 469: '2600289688622465762', 470: '2904932941037075699', 471: '630831651100348477', 472: '3797085517647336536', 473: '5703675413724357458', 474: '2645598356987416013', 475: '2727382865693190624', 476: '827957941427433969', 477: '1835741376927652987', 478: '3629577244055910406', 479: '6250588152296764472', 480: '7044206989263083569', 481: '3713873141839444525', 482: '1454068188007247787', 483: '2689200710357900655', 484: '6183831864696688691', 485: '4702119494763791392', 486: '1135013190742086467', 487: '3854199175676498768', 488: '2825319746094646426', 489: '383231890572301883', 490: '2084207601051673062', 491: '3841172786213101111', 492: '9194725009816296853', 493: '1596731429083745156', 494: '5295045465633304607', 495: '5086388271920197202', 496: '6670672465634268947', 497: '1306763714361703082', 498: '6685544489022578691', 499: '3168235720721035056', 500: '7190905870850613172', 501: '6254806834008898035', 502: '3696877490134192400', 503: '7032762215239632923', 504: '3065185060409823831', 505: '6195781391249929126', 506: '5160330435175345822', 507: '8240034336161147774', 508: '7477964425265621109', 509: '6694271821571834609', 510: '640353611485256377', 511: '2144284217804152768', 512: '2597010810359075675', 513: '4328908197646748895', 514: '5166899464429738864', 515: '1185488181830527625', 516: '7623698017321962840', 517: '1542494247795425821', 518: '2131451573312950491', 519: '6934860948848408209', 520: '6437230815004219214', 521: '637187908693888049', 522: '8259133109129167396', 523: '1893973624410841323', 524: '8904735555009151318', 525: '5756731651366776550', 526: '4616259206801512351', 527: '7256815922327333383', 528: '1160326435131345730', 529: '3182736478163180292', 530: '4490622415459881951', 531: '7601662322270396050', 532: '5839782150254018914', 533: '6942933009551442007', 534: '1352932315759920358', 535: '2828956716673540412', 536: '1542232383501596031', 537: '6961740701383079699', 538: '1587086886808885540', 539: '9149698301250936831', 540: '6287448850278527582', 541: '965420152559594547', 542: '3097968439743765133', 543: '2185840155926169542', 544: '6844176116329675849', 545: '5548317348868241000', 546: '5095107059002924325', 547: '8292841471210057658', 548: '873181404731804450', 549: '3349960185284564716', 550: '625653602673789324', 551: '7063855203073696823', 552: '2081265111210072467', 553: '4826295158480970984', 554: '6283425693557299769', 555: '9094462885938385286', 556: '3025995229993781911', 557: '1790630374868647951', 558: '5182171624642467270', 559: '3506606446388448264', 560: '4470468211371525147', 561: '3027130786863096591', 562: '9207116738755198978', 563: '6022205592682717526', 564: '2353421622418180700', 565: '6076152359408392737', 566: '518807297849537945', 567: '5804619920623030604', 568: '6118242661945663443', 569: '4257846564893706064', 570: '4634825204717668542', 571: '7277482017937763537', 572: '8873311207356144485', 573: '8541903517951398969', 574: '6504465711645201248', 575: '2715832189532723552', 576: '3516675537008870086', 577: '5947021459447809684', 578: '461773686652496701', 579: '7347858809625731174', 580: '2026327474615253081', 581: '3356822828991224126', 582: '240041917918953337', 583: '5276739922638328515', 584: '2929797094746327749', 585: '935949748105096019', 586: '1744725637042107477', 587: '4686386086139247217', 588: '9193714286190364511', 589: '1544762873717585184', 590: '8209651626505353779', 591: '2425886132400160849', 592: '842846501417201550', 593: '2407908164985388095', 594: '1233447242664302071', 595: '8292500896134696267', 596: '8404500132661066458', 597: '8071006555424837523', 598: '5513159789605014384', 599: '5924179035578229915', 600: '6522242102892532323', 601: '465065448523711562', 602: '2747980002569958761', 603: '8486098563596716567', 604: '1604866719326634456', 605: '2284379093365280181', 606: '5397363254409200346', 607: '7790543634407640064', 608: '3291559261920410222', 609: '1039581953154104132', 610: '8592306961204380723', 611: '7703565330513018712', 612: '1539232755387832050', 613: '6382915985015043807', 614: '2348439063888615756', 615: '7116875195131178045', 616: '4638359948015624821', 617: '1918603044132414919', 618: '6071124048045151919', 619: '1919404456791921936', 620: '5260649651987088163', 621: '8046021685069769060', 622: '1064152954200704555', 623: '2382911985227044227', 624: '42427966967759255', 625: '4697494136307113064', 626: '7592036674792056069', 627: '3982701891595575995', 628: '1627700927594133302', 629: '7133408858573433781', 630: '1520473749037658594', 631: '6146340868276977273', 632: '703579324144045970', 633: '3760933726347836551', 634: '5653231896805341062', 635: '6034172062640988486', 636: '2825316495796585570', 637: '4957478629964985687', 638: '5028991260192797058', 639: '413439106341806001', 640: '9008925037793886842', 641: '6517930494079585324', 642: '7501152358833888406', 643: '1852158852467264362', 644: '2601420231829081368', 645: '1050994023208902753', 646: '7496262653600316163', 647: '3865463466240567990', 648: '1711676439522387331', 649: '6236529174658997246', 650: '7723241944697200189', 651: '763866869706749928', 652: '3054894766742224422', 653: '8570540777066461619', 654: '7251741387843544019', 655: '2812493495238238719', 656: '2290914319004584677', 657: '8193534055954643057', 658: '3236569225419487076', 659: '863356787255652960', 660: '2986674727438907115', 661: '4091858151482669277', 662: '3627686927328132632', 663: '2976933761878585560', 664: '7449878083916369913', 665: '4610596224687453206', 666: '3834635940635905116', 667: '8707554510573683939', 668: '1239585011552693824', 669: '8022905568116914967', 670: '496702181072361916', 671: '4628321180307498093', 672: '1751271042943524239', 673: '7318907785137551256', 674: '5091735158287767326', 675: '2369354056312575099', 676: '7612369293897193240', 677: '4458245011278275078', 678: '5782598437912985562', 679: '2324450162924245773', 680: '4060949394271665296', 681: '3284260092574278990', 682: '3151738353564633688', 683: '2063727883907680094', 684: '2816249700493135244', 685: '5932102625385609989', 686: '7261047446949365330', 687: '2627298052801704596', 688: '2259482849339758626', 689: '8691303727714013806', 690: '3724597838339541191', 691: '8708763560325368868', 692: '7432059592404082070', 693: '5243683122430849003', 694: '5046409709390354060', 695: '7102537040333046812', 696: '3833526104478731847', 697: '3090002907972924303', 698: '8923423159850053928', 699: '5996724989260181298', 700: '5769304345757607597', 701: '4415415525561784599', 702: '2086863971949478092', 703: '4305750675950968059', 704: '852657668925964952', 705: '9045567936064089227', 706: '3478495961956304702', 707: '1206356642865167537', 708: '8286067888742086892', 709: '4221221164136980100', 710: '6927564467091501561', 711: '5470415613430156594', 712: '8057515460092391911', 713: '6982617424015263755', 714: '6049758334588147235', 715: '2874144248539376545', 716: '4599901512332593544', 717: '43144747296912569', 718: '6493581724141198741', 719: '7377977482151854926', 720: '5497802635036879185', 721: '3972493657017129406', 722: '4647222608650438774', 723: '6618922083065447616', 724: '1386735796399192077', 725: '4489563673511019043', 726: '2379261820462209275', 727: '2208197439532367343', 728: '6113530251130504317', 729: '191637238080651225', 730: '1763510825413002970', 731: '2865051795429918701', 732: '7065221060437823699', 733: '6508005928201477851', 734: '7178462458998249847', 735: '5273197481621614579', 736: '787153473600490253', 737: '8930817928939351690', 738: '760095082858047992', 739: '8965261444411035302', 740: '3594347865816291236', 741: '6833660726951706273', 742: '2148914447613726391', 743: '447621759006218148', 744: '744588636265106420', 745: '8317207117905033099', 746: '5183558434685668615', 747: '3543938934441229122', 748: '6183788489797866727', 749: '2353969577414666795', 750: '6162947324507053330', 751: '5695691654483839948', 752: '2307848549279054583', 753: '6932639971019692365', 754: '5359369588772834743', 755: '5779833930274639409', 756: '4229259523827570399', 757: '6362359524660190859', 758: '5347872809635730844', 759: '4747555070055547950', 760: '9191306710136658354', 761: '2667619839677460873', 762: '7985176251840250566', 763: '8200594842344508448', 764: '6691599696714076992', 765: '6598132981359524758', 766: '3042294965962757528', 767: '6432674419326406562', 768: '4620747219322851425', 769: '7308850312940048311', 770: '5872703085284095974', 771: '3588426558825683351', 772: '88534707019739220', 773: '9067458034758574441', 774: '4837684718742000390', 775: '4171145772160186792', 776: '2184408420667115619', 777: '1952321452846772720', 778: '5818382893362053755', 779: '3689337711138901728', 780: '7303588876741005401', 781: '8818294023490369214', 782: '6809079195362599432', 783: '747962002515958563', 784: '4113529672303259565', 785: '7602563957335875707', 786: '1679310042378651050', 787: '3812457715228923422', 788: '2874840460379736898', 789: '5833678375673307423', 790: '4756734728979172533', 791: '9140852396937582232', 792: '8817405446696378563', 793: '6940383844640051830', 794: '360384494934733643', 795: '1921090990457446246', 796: '8602230286237694587', 797: '3593286523786250302', 798: '4396474713128893708', 799: '1728510704906079580', 800: '2549689272203498237', 801: '3444689810794944326', 802: '7273415486317713764', 803: '7237300102721734709', 804: '9066598418877635793', 805: '2666165647163340944', 806: '7342156431046465584', 807: '2036843942643102910', 808: '7482525821744759509', 809: '6756871902441838709', 810: '7139336849268940543', 811: '2137715778200077463', 812: '1509707312768337838', 813: '7552404094855378396', 814: '5281817566948863661', 815: '3553102336811813291', 816: '4977997420793944836', 817: '7292395895641695708', 818: '6392418462462658998', 819: '4986547532010670575', 820: '2782670153102643340', 821: '7804861921957032342', 822: '2631505835963473775', 823: '6395945633142271042', 824: '6152189531591576162', 825: '8109793286902118151', 826: '2454705495458529924', 827: '8604769718409632655', 828: '7580468821069307570', 829: '7036693081856171470', 830: '382893984981043609', 831: '8509302583613116358', 832: '6282754433984310142', 833: '2630097082058343181', 834: '7083407008369163240', 835: '2537905926744578235', 836: '4453988975677283684', 837: '3541067235871077620', 838: '6851000582045015586', 839: '5389453858436958168', 840: '2061736283751455185', 841: '8935949732944907212', 842: '8932546057542867495', 843: '2277518557160807369', 844: '8368395784867923046', 845: '8330177318910444596', 846: '1541526768635629880', 847: '5997976963484475428', 848: '442912898635693042', 849: '4040879839908947110', 850: '7876300673940894569', 851: '3381299024709108173', 852: '1607863647374231353', 853: '512794068235242963', 854: '6957390495980542955', 855: '6192377716103890229', 856: '9189723362012067754', 857: '6935423857365477159', 858: '2820174307247949506', 859: '9165709055872875620', 860: '400525901828896492', 861: '7759352448651569694', 862: '2470455971679919165', 863: '2059083978137705082', 864: '4312939383521141502', 865: '5715197946812265320', 866: '8030347819806455716', 867: '490895094889249343', 868: '5378699121209676383', 869: '2272840038915065759', 870: '8609111586421981129', 871: '3250879589215178639', 872: '2266542845480926197', 873: '7483215586203553366', 874: '8349134305416910889', 875: '5421686840411739502', 876: '7413344850500955337', 877: '9059610977317352399', 878: '7603044093174944268', 879: '7595559184779647650', 880: '4810639854700527658', 881: '1361410429514384644', 882: '5755742251322795648', 883: '8468200558891408887', 884: '2973837578933146413', 885: '6093784317638569039', 886: '4271026173614872626', 887: '7739004195693774975', 888: '5284225414690914020', 889: '8504432231932962955', 890: '276421274438901622', 891: '1991783242057111803', 892: '6315309392483863834', 893: '8813604130293525651', 894: '2417376459854712213', 895: '9190512938628203011', 896: '6708234822310526870', 897: '7388085101860430821', 898: '5618127243791055921', 899: '4182785338248771093', 900: '6459923699638350593', 901: '1978209065824574247', 902: '8671770789948109260', 903: '8324188154674351824', 904: '1804583920579030544', 905: '8058793464914429671', 906: '180604055055169479', 907: '203251463786508407', 908: '7866576113340895115', 909: '8767951075485440550', 910: '3487209931552756601', 911: '6076847073309671938', 912: '1026774652826195893', 913: '7526284554176419967', 914: '4585410756047464122', 915: '6583250835532759869', 916: '1498101358485403935', 917: '8128505679583243627', 918: '5483703385391965908', 919: '6719522112518617217', 920: '5599700847208221405', 921: '807273409165680991', 922: '8885069682816774814', 923: '146867728338383595', 924: '4627183237363916621', 925: '5685149382072526764', 926: '8229741297693398188', 927: '2027693463582123305', 928: '2700764582293572246', 929: '5297443792466905800', 930: '71019233546203287', 931: '8626700618973750024', 932: '6409557685183119664', 933: '3890819584814276652', 934: '5401140137601462297', 935: '3828720201351423909', 936: '1843921060214341675', 937: '3746420612845027050', 938: '7727115678845931341', 939: '1805719959600766714', 940: '2615425226049888969', 941: '2620423314205594477', 942: '7207130738765198908', 943: '5308164272008345585', 944: '3937009208401626102', 945: '2280739588051656760', 946: '844641982688873856', 947: '8210095891948580913', 948: '7394364441236973511', 949: '1250723830949130791', 950: '8802446458100491067', 951: '8138693073229347555', 952: '2482115166690201194', 953: '8217837422471420147', 954: '4921793805334628695', 955: '6636530880935474404', 956: '6839713564940654454', 957: '4925534126353181729', 958: '6718160118244358137', 959: '5821744782934605757', 960: '507963918987245871', 961: '5064872869819184144', 962: '245170073794392183', 963: '8809065195096599018', 964: '949201624235522947', 965: '6388689223924479176', 966: '4742244214314968766', 967: '8563498708650043882', 968: '8914464863762678881', 969: '7306785714459703344', 970: '7951567235515055279', 971: '7485487238471669174', 972: '7933427407380960960', 973: '1245968097376795823', 974: '7913400407431354867', 975: '3094293898602238746', 976: '6974448804336129376', 977: '5861391680921034810', 978: '3414266676439227853', 979: '5778630938297884387', 980: '2152720316933993716', 981: '6755259377998476531', 982: '2936563632577263124', 983: '5685602503393574336', 984: '6475428416648710661', 985: '9146509192468700917', 986: '6209302970466816480', 987: '4539885023607921459', 988: '3382453256049823037', 989: '506893134880746982', 990: '8520632749868659783', 991: '5797617924457726769', 992: '2584084025551203106', 993: '2822645753203672373', 994: '8769048100855794356', 995: '8610942552777272887', 996: '3951903751153261568', 997: '8517947292668395884', 998: '957630088479857345', 999: '365800917376380011', 1000: '3333307402327293632', 1001: '2158849213884899151', 1002: '8325178746224233621', 1003: '2841676129656881967', 1004: '5935329614274008475', 1005: '4346530999522010552', 1006: '7834244026558534803', 1007: '2312947142927298399', 1008: '279996543863601173', 1009: '3648949148370823486', 1010: '5985158251850250708', 1011: '2168515087433636094', 1012: '1828317107061269531', 1013: '985918886318729368', 1014: '315342960042848847', 1015: '138889680107600025', 1016: '5399048486759263580', 1017: '5935542858156478574', 1018: '4817185265171864610', 1019: '6785477830855995834', 1020: '363026071972955475', 1021: '5613061346723845145', 1022: '6078338515107482389', 1023: '5702343302237640989', 1024: '721980443721545552', 1025: '3713654557729491068', 1026: '2171184283895460175', 1027: '8091634157538766119', 1028: '7265949492506113547', 1029: '1277067587393743060', 1030: '5090670680639488645', 1031: '5264509641502027935', 1032: '5740148371925933882', 1033: '8031637693064444227', 1034: '4248035397448942774', 1035: '8690124345701380826', 1036: '3134999190540085909', 1037: '1729853366387155808', 1038: '7702329302227641319', 1039: '6744898938415762500', 1040: '6595993041154510107', 1041: '4019630484311065906', 1042: '3815137940251520680', 1043: '4408042312386689938', 1044: '2432174593375084007', 1045: '2420025939860659200', 1046: '4811575033152182097', 1047: '3490469538808305901', 1048: '2604494515308175827', 1049: '7504765820134758058', 1050: '5432793419857406993', 1051: '1619650717341926052', 1052: '1865182682318401776', 1053: '9151760353406633174', 1054: '2890682584037275637', 1055: '3134435460809863982', 1056: '4899469786434878724', 1057: '4517730048981926303', 1058: '9079470749530129591', 1059: '8500993396239092897', 1060: '3167668871180030042', 1061: '8417849371287704224', 1062: '1812995334969284166', 1063: '1821708782890605889', 1064: '3732595370398382489', 1065: '4757324986659053904', 1066: '6519476806919078477', 1067: '8360291425523348325', 1068: '6726696617713153281', 1069: '6264232204593613606', 1070: '1315009618498473661', 1071: '6491404294933335370', 1072: '4749298169084869151', 1073: '244937959911721367', 1074: '5202151316393223580', 1075: '3514313626604886295', 1076: '1026446475374254312', 1077: '5082138874375887068', 1078: '5770137307181057796', 1079: '4960651917266580984', 1080: '7920896696482531061', 1081: '8413855607660856960', 1082: '7301517388567833702', 1083: '7636490825137648383', 1084: '8294426931183223528', 1085: '5364712160899856113', 1086: '5041846259853346443', 1087: '8595696185560648723', 1088: '7756633728210171144', 1089: '6968743648143929951', 1090: '8359524589555835842', 1091: '809545061433796799', 1092: '9065926021602280000', 1093: '6943357686311161881', 1094: '9128959745023160305', 1095: '1312164508616819973', 1096: '8594215559868837681', 1097: '2913093524691408320', 1098: '7109260904701481229', 1099: '9190214082467470004', 1100: '4081540261748731445', 1101: '7814644688097156830', 1102: '2410784981474048482', 1103: '5955061777414214628', 1104: '7571379618289910710', 1105: '5284915626131431417', 1106: '7109155344798314039', 1107: '2611831146743123406', 1108: '4972169293096900768', 1109: '5074225991224451769', 1110: '6539903023853922085', 1111: '7867382784409665450', 1112: '1396906697095000000', 1113: '4094504804738039741', 1114: '3315241959305847628', 1115: '6040061883174458353', 1116: '4552983336052812034', 1117: '4303166553155574827', 1118: '6032657214426631468', 1119: '7865809443640391823', 1120: '1962878356219717823', 1121: '4376405455210705328', 1122: '214112947209201294', 1123: '966315115653954432', 1124: '8956015930535800390', 1125: '2149884934935655725', 1126: '1964167534274656346', 1127: '2951766750408260687', 1128: '4530635517516786435', 1129: '4247291014640570922', 1130: '8930028685451892597', 1131: '5851127098417361943', 1132: '2868290634651933512', 1133: '1595537184985648316', 1134: '2589127531890201053', 1135: '4051456752430124035', 1136: '3158683775760375553', 1137: '9095332521007865159', 1138: '1778799897295902095', 1139: '741041172583638581', 1140: '6686716088012864449', 1141: '1078453515786483402', 1142: '2515257722796787281', 1143: '3251367506358243575', 1144: '5200726113506927935', 1145: '3926387480955996855', 1146: '8071059233618203439', 1147: '9082490625628998409', 1148: '1195896392220930869', 1149: '833074414957851585', 1150: '1883376476350161480', 1151: '6185119154639737496', 1152: '1293257957773648492', 1153: '6981148859720148373', 1154: '6719184207199359959', 1155: '4136380367039673024', 1156: '526142875017934439', 1157: '2724031079357275465', 1158: '9038362052565301884', 1159: '4678726459447663357', 1160: '8753953007931296119', 1161: '8543134814286327823', 1162: '7259175568841790177', 1163: '8402615280886071963', 1164: '1945786109636206690', 1165: '2484450019658444218', 1166: '6579494630017862290', 1167: '7074431704504128900', 1168: '7517165859759106844', 1169: '5353288621685179703', 1170: '3886495748707495361', 1171: '397242931505564187', 1172: '1934955940447177718', 1173: '6324291111388754690', 1174: '7515893735868429527', 1175: '7118972759448144772', 1176: '5247895193618942845', 1177: '6328008869454085969', 1178: '8164473300321350006', 1179: '4620290839673975123', 1180: '7160549933950402575', 1181: '6718676536613592056', 1182: '7578315642593364536', 1183: '4864988131354548295', 1184: '5948340753284292141', 1185: '2241488058004423468', 1186: '946699215012338966', 1187: '4921212371110555224', 1188: '6915348499066159040', 1189: '2749323491628044459', 1190: '1980876636979981304', 1191: '4349610335189937101', 1192: '3833854281930673428', 1193: '825114746136838945', 1194: '5725284888663475863', 1195: '2819800414696664771', 1196: '5595879090352905906', 1197: '9035795297707480288', 1198: '3410895965080918002', 1199: '7642403449709161291', 1200: '3915577320911199709', 1201: '96415308824933540', 1202: '821606580646429455', 1203: '8308599786100622347', 1204: '7070869554647836474', 1205: '322011515950961818', 1206: '4924342969990018100', 1207: '1713991590099499492', 1208: '4414099537132285176', 1209: '1159514227928535208', 1210: '2503896161629471198', 1211: '766832051768165842', 1212: '1830804034504888946', 1213: '6209906485884066381', 1214: '1929640564915846432', 1215: '447397644319813678', 1216: '5219394751292749705', 1217: '4033240222365595136', 1218: '8736568593417750581', 1219: '3253007787485187171', 1220: '359417859466491096', 1221: '7621209948544072707', 1222: '794249579378543643', 1223: '260764653006089998', 1224: '4885267324371405324', 1225: '4836843257444966243', 1226: '2853317843458689854', 1227: '2366809508980261782', 1228: '1337962690305221735', 1229: '6569012000551779051', 1230: '377872747222364124', 1231: '8932881972353694103', 1232: '6571758612764814199', 1233: '1538889947190981142', 1234: '4805592090163108544', 1235: '6527607154405707868', 1236: '7460701391128569030', 1237: '6489468578488009978', 1238: '3819644721564677600', 1239: '4694038752172489928', 1240: '2358602120077680332', 1241: '7202475221706481200', 1242: '7135491570488962839', 1243: '591874827809654669', 1244: '3652432494449008463', 1245: '5385537249890202479', 1246: '2943300522656247996', 1247: '4976168389897510937', 1248: '3716565219723564694', 1249: '7505564508903239248', 1250: '6051847744604517372', 1251: '2296774384623513526', 1252: '9179561545443484234', 1253: '3405934480693224008', 1254: '7711303308980200160', 1255: '3228384271303228006', 1256: '5715009224102355943', 1257: '5947293336854386967', 1258: '1256788148331186620', 1259: '3288086889604257964', 1260: '3358692269505998714', 1261: '1296893385346514597', 1262: '8503907262844320611', 1263: '468770502684675821', 1264: '2316595484593170922', 1265: '6169574178834362026', 1266: '4404507569092733905', 1267: '4404054447851686653', 1268: '8365788239271014215', 1269: '546485900534542453', 1270: '3247902953025099742', 1271: '8577537092594110418', 1272: '1251238547469584119', 1273: '1958042590336440825', 1274: '5691190333995993179', 1275: '4284828052993734182', 1276: '1132414472776926617', 1277: '8700804433466361123', 1278: '4046496764963548976', 1279: '3418451812342379591', 1280: '6529847503002197165', 1281: '4255906145781727386', 1282: '2163040607327628261', 1283: '2638813346466022112', 1284: '1033816721290613934', 1285: '3576039990329248748', 1286: '7283655748413496857', 1287: '2901486774679816593', 1288: '8852526557827312102', 1289: '886720308663584531', 1290: '3308846312896048251', 1291: '6018641953300645757', 1292: '6689024254240076864', 1293: '5837628487243570427', 1294: '9198481215327194426', 1295: '6857749722158756463', 1296: '4840599462703862798', 1297: '8490591142396750145', 1298: '7734445005828304333', 1299: '2578011073631737197', 1300: '7782743223410052415', 1301: '660152330539825076', 1302: '125312951999750184', 1303: '2129487364414263467', 1304: '922729887773674204', 1305: '8252369929269451135', 1306: '8183806489787866605', 1307: '1633889204737016877', 1308: '7981154638613983862', 1309: '3685645489515579384', 1310: '4507987928147477649', 1311: '6977297052051277633', 1312: '2457803616542404093', 1313: '5671276587666317392', 1314: '8075550195042412872', 1315: '6762330993624022175', 1316: '5942580068307165204', 1317: '5606269680673074664', 1318: '390427073704203351', 1319: '7625780603244790259', 1320: '3894468979819174909', 1321: '3197365677142313316', 1322: '8467862653556151381', 1323: '2034168062596988170', 1324: '2060630291013198133', 1325: '2048928297371666315', 1326: '7637093652853037385', 1327: '3261043446953365142', 1328: '4291107330729431469', 1329: '2056976393823539020', 1330: '2288652390863265229', 1331: '3471965724367244818', 1332: '4840715880086842414', 1333: '277167144631131335', 1334: '3841500937953087637', 1335: '850238065607344830', 1336: '3820922726386715360', 1337: '1158968214639900190', 1338: '99435378441769379', 1339: '183764869825974842', 1340: '1315223959315847746', 1341: '252983656834218346', 1342: '1395928881946561577', 1343: '4815275050173093300', 1344: '8755559346786539225', 1345: '8965027945689978971', 1346: '4160758010753708150', 1347: '5271733747232358004', 1348: '7733780507306249147', 1349: '6599837848209223060', 1350: '8936615423548208677', 1351: '4373313832006480501', 1352: '8352857959906729837', 1353: '197283758574659585', 1354: '2929521564160845391', 1355: '5942033904153309241', 1356: '8674249008302499974', 1357: '7483087310385189621', 1358: '488107960667424881', 1359: '1191558361922411092', 1360: '7301680710575105489', 1361: '7924497970773019201', 1362: '9189942151584218583', 1363: '4917951176751980069', 1364: '4804738921410031805', 1365: '6613336256439380973', 1366: '5730521719802184390', 1367: '123077587949959463', 1368: '9122390911750307690', 1369: '5813711400072121925', 1370: '8088921220052974621', 1371: '8179083291996935578', 1372: '461436028263880214', 1373: '8614798793761585963', 1374: '2762359234746621721', 1375: '5507078822517359344', 1376: '529754693268731380', 1377: '7713914559325493608', 1378: '9130379775893585932', 1379: '6932528057568867609', 1380: '2644663447358037130', 1381: '4209647626717354471', 1382: '6038661761506862294', 1383: '7402734281641073196', 1384: '4483249651745840664', 1385: '1026888672378692933', 1386: '5707939385348112587', 1387: '8600390633617640920', 1388: '6455482856502656063', 1389: '6383679864498497348', 1390: '7965124443634034243', 1391: '7289520544701010248', 1392: '1739559252355167518', 1393: '3454045075070127268', 1394: '8939220707786185310', 1395: '4480048862397337587', 1396: '4046904952599809426', 1397: '4372342278216563985', 1398: '6592842803508310786', 1399: '4618963433435933606', 1400: '269620530311797923', 1401: '7377762807972831044', 1402: '2744606636255106278', 1403: '6759553353177825959', 1404: '395119817510087182', 1405: '253382038868549836', 1406: '3786783429120743159', 1407: '5675178131106424242', 1408: '5706344191507825718', 1409: '5492238387967642597', 1410: '7595304912654505661', 1411: '5691180727135013099', 1412: '3174907002942471215', 1413: '4498992365827597394', 1414: '5487281968920391812', 1415: '3158986214629900032', 1416: '9061828969851678390', 1417: '8191454429180787392', 1418: '6216930488646770123', 1419: '7283993654004755131', 1420: '6277846260132427404', 1421: '5254885710391138776', 1422: '5881091356465260065', 1423: '1578624787506041748', 1424: '1685618881903601535', 1425: '5516931871002486896', 1426: '7653703019053330516', 1427: '1426144244057814596', 1428: '7911910053664227396', 1429: '4687652401249709790', 1430: '4393756319132924838', 1431: '8556653203196579720', 1432: '5040760839149945887', 1433: '4695031998360726172', 1434: '3276544275225902971', 1435: '2378023649280419876', 1436: '7312924884970992973', 1437: '5582178418720239919', 1438: '4743207609281160647', 1439: '1840534911833780111', 1440: '8339019570260683343', 1441: '5945192601099058576', 1442: '3578642787560041946', 1443: '4187026665048715788', 1444: '6904717554955151340', 1445: '3484587020435445267', 1446: '3247029476127723832', 1447: '2289743852863129386', 1448: '8091907016971478715', 1449: '8591725246688996314', 1450: '6941072618461313849', 1451: '2523521411748733187', 1452: '945573676653457614', 1453: '1125547749381005553', 1454: '3754053668725070591', 1455: '4444538809815942711', 1456: '1663857393137459269', 1457: '3601908083158555273', 1458: '6666640731218555667', 1459: '7588378164638163170', 1460: '5388067101870430963', 1461: '7739171563081867691', 1462: '7767289030705899707', 1463: '1616786109481698063', 1464: '2113178690855415018', 1465: '8816271700543135410', 1466: '709944893639249564', 1467: '9045161734922059274', 1468: '4756075562652254270', 1469: '639720505558266916', 1470: '2673780766719859192', 1471: '5928085201623066659', 1472: '4609970549280340514', 1473: '1597326573998880188', 1474: '7253987629229636499', 1475: '521166281704794588', 1476: '6159931062146415300', 1477: '6149403568898773703', 1478: '2158546774951374352', 1479: '2840784003483222292', 1480: '1057952542303625894', 1481: '3751354412512421448', 1482: '6831250779365929435', 1483: '3617227602782777289', 1484: '1740126037981585888', 1485: '3009772007719204112', 1486: '1913077480394809437', 1487: '1632756942582150130', 1488: '4054009175749343326', 1489: '129145008166137909', 1490: '7820378771178228515', 1491: '3595861090298905936', 1492: '8581614941770002764', 1493: '3386710421554370087', 1494: '4425978037524959779', 1495: '4343998561613089743', 1496: '3867686512607885141', 1497: '940415022552647187', 1498: '2155175112774869721', 1499: '5405715873764971194', 1500: '3288685408108844119', 1501: '4290228299766776524', 1502: '2269742446020584054', 1503: '4978402514041141532', 1504: '708798485013978373', 1505: '1685127048144178754', 1506: '5476101493799111825', 1507: '2944189228057544610', 1508: '6696888779902697750', 1509: '7347583870493810379', 1510: '2373633737287737773', 1511: '7361625848712741016', 1512: '1909670907650306800', 1513: '1126193382942482810', 1514: '1811468762119777118', 1515: '7395901697861074527', 1516: '4059342155144310804', 1517: '6505875937070299339', 1518: '2396085611150343002', 1519: '7193881469854268501', 1520: '3418975465402388399', 1521: '2729111190626408579', 1522: '3149765934180654494', 1523: '2415173524227782861', 1524: '2850367919157922070', 1525: '6782194019060585190', 1526: '7389988565950056336', 1527: '7937392720817863936', 1528: '7274130935521678793', 1529: '4780628265863036144', 1530: '6175062003741472300', 1531: '5287905756596786919', 1532: '8532503536113702039', 1533: '4828857202132424980', 1534: '8592873429166825073', 1535: '4464289448417062777', 1536: '7361228668063598860', 1537: '5502528845814007324', 1538: '400747363837837128', 1539: '2034901556203965439', 1540: '1907358896483963221', 1541: '3383016985780045156', 1542: '1368382100401604712', 1543: '6527178798961531478', 1544: '303429875914004210', 1545: '2749566582179357212', 1546: '5395292281504366735', 1547: '6371157878623138908', 1548: '1953157642467237515', 1549: '569940021530854113', 1550: '5461355180342040702', 1551: '2853547827536559669', 1552: '7397800594994209068', 1553: '4350774118563465177', 1554: '3895054941927964525', 1555: '4444970904898179447', 1556: '4647413168079516052', 1557: '8862426237057348309', 1558: '1692861144730989249', 1559: '266612986122336493', 1560: '4677755972317734407', 1561: '1797701934329285597', 1562: '5963738322232438878', 1563: '6810657854754527644', 1564: '1964490991768378771', 1565: '8472140268318420389', 1566: '8300353881995851996', 1567: '202658488388760612', 1568: '1272799350744810580', 1569: '6758942141122113907', 1570: '1591780979474750959', 1571: '7637995288174517586', 1572: '4635541421251975104', 1573: '818287567137330443', 1574: '7256910573245396514', 1575: '1063815048865447049', 1576: '2140361463758283053', 1577: '5081547367786156934', 1578: '6736490454993663221', 1579: '5113954673580054853', 1580: '2460528390051567153', 1581: '6416634393997402328', 1582: '951420572902318966', 1583: '2600368633583640730', 1584: '5773269986924675698', 1585: '5636960665828891411', 1586: '7278142043567277172', 1587: '1298289728721376820', 1588: '463750704786845608', 1589: '948223640148622714', 1590: '5163066325262054561', 1591: '1867700512809885443', 1592: '6483290456065237989', 1593: '2327504309227366054', 1594: '3250728804941389085', 1595: '435735599673143337', 1596: '3028813107806213121', 1597: '7837646487489571053', 1598: '3174540452399560541', 1599: '591743024806900405', 1600: '8019634484099065422', 1601: '6236292131168251599', 1602: '4465753277789317273', 1603: '8690716061410596833', 1604: '8151293691584183256', 1605: '7489973769578614435', 1606: '867255783834664811', 1607: '1553849747662134917', 1608: '5821099149145127900', 1609: '1054876766752224572', 1610: '5301319902100253987', 1611: '5563552157167479274', 1612: '3369244421450766217', 1613: '2225963092592501897', 1614: '4129149007954137465', 1615: '3313675859625516103', 1616: '2198834017210585710', 1617: '3638162940470731911', 1618: '601365943784756897', 1619: '4341766724811689661', 1620: '8263821218933164468', 1621: '3010920276006572535', 1622: '4790107929558196912', 1623: '4972909213208903305', 1624: '1244780622073523653', 1625: '7936478422771207620', 1626: '2493976369613713098', 1627: '4477989572181922377', 1628: '8252138064428255186', 1629: '3160598848269833883', 1630: '598219288744642833', 1631: '372645249911808449', 1632: '6050797118662646484', 1633: '2457765753528575807', 1634: '1733532638025265853', 1635: '2539026947967982415', 1636: '4799035831110725204', 1637: '518747274885843149', 1638: '4689502080141399321', 1639: '1490375857486803458', 1640: '1175002826479428070', 1641: '3844703788726806478', 1642: '5840852880867843487', 1643: '7507096822571359314', 1644: '2606984352060215314', 1645: '8616327459839591065', 1646: '3061873284528456248', 1647: '3357905707959173812', 1648: '490310687477662812', 1649: '3856154743789177934', 1650: '8671398044778357164', 1651: '4136385420677230855', 1652: '4144904362303444936', 1653: '1149442028819396978', 1654: '6899487786424878606', 1655: '1600231632806639649', 1656: '6153924391977698761', 1657: '5257727564138704831', 1658: '6904365249093892053', 1659: '4730384719025183341', 1660: '165795973545465285', 1661: '7839463720297334614', 1662: '8128542371912229421', 1663: '2757362362486649844', 1664: '4170007516780842790', 1665: '3693801457711833752', 1666: '8632540229807721618', 1667: '5150083372514325217', 1668: '4595742089571904833', 1669: '2562570278968530697', 1670: '4599393636727163429', 1671: '7497132452884561764', 1672: '3972456192477785643', 1673: '927157639555241548', 1674: '288666390873265147', 1675: '372824948001296711', 1676: '5126229382986482646', 1677: '7169012814272124935', 1678: '4379247820452209357', 1679: '1240792551973430931', 1680: '443748424298996449', 1681: '3166881464375738634', 1682: '4645077198390733438', 1683: '309958747543063025', 1684: '3880682617352937394', 1685: '2478695500618560154', 1686: '6035861019586388180', 1687: '1836555187162579672', 1688: '3052663234141228029', 1689: '7006422955498725720', 1690: '1702694829810068100', 1691: '7158068093440012389', 1692: '3900318848301728120', 1693: '7100390008334527804', 1694: '2858911571784840089', 1695: '8483512903543904044', 1696: '2317497119690650259', 1697: '9119389643029055864', 1698: '5013142463389228316', 1699: '7697921317504152141', 1700: '2820237770657228086', 1701: '7783767359467907092', 1702: '3701339131568161889', 1703: '8271038810799090353', 1704: '5292942471963059053', 1705: '8804742921198031305', 1706: '5252993787219186549', 1707: '7844932991499998016', 1708: '465527815784376703', 1709: '5732944515355059947', 1710: '9051597753027124816', 1711: '3613386045962125096', 1712: '3304995273933712655', 1713: '3932429241903732643', 1714: '2818819550873422543', 1715: '6003831336496592001', 1716: '8877588822182413621', 1717: '1412463047763197934', 1718: '5475971414084036126', 1719: '358825977155420974', 1720: '3473982758005783430', 1721: '7977896420088943791', 1722: '7594028509049751156', 1723: '7823160150035726894', 1724: '2377671429476999320', 1725: '1534981837265632499', 1726: '1365937918157381084', 1727: '7629098500201070516', 1728: '6958607494104131034', 1729: '7037298644597283282', 1730: '1043361473087907312', 1731: '2384929018605582143', 1732: '309179178474245125', 1733: '5576644993511241222', 1734: '5753024495996599592', 1735: '6158500871224119394', 1736: '4069111171644921459', 1737: '3835759376917652833', 1738: '1200263233485735432', 1739: '4115748438709160582', 1740: '3184436881335535852', 1741: '5805762942747256642', 1742: '7478652512733220686', 1743: '766570757389698163', 1744: '2512346814961359892', 1745: '6735005805343177510', 1746: '6324454162664245193', 1747: '3862493943988412715', 1748: '8642394293468828144', 1749: '3473185444055940411', 1750: '3269885488164851993', 1751: '8945613676693457638', 1752: '2508904341176662231', 1753: '6757776550201397844', 1754: '318951904052750793', 1755: '5090531322583414664', 1756: '3884291561362839346', 1757: '8964412122585477761', 1758: '4913250882493481369', 1759: '4161232106162110292', 1760: '3630144468001158950', 1761: '4957801366570676979', 1762: '2190609939333204140', 1763: '8834356779822358514', 1764: '3746853056228709186', 1765: '5973691847519381699', 1766: '584725475039215926', 1767: '7939651710392803797', 1768: '5848637742305626393', 1769: '3940307365339924233', 1770: '23625053264343968', 1771: '8344184689912001345', 1772: '7614334876627285822', 1773: '5634706203962667503', 1774: '947642205940549167', 1775: '7600253632840639847', 1776: '7082273763951028651', 1777: '5246141644644299038', 1778: '4192326172667715237', 1779: '2038346666458203301', 1780: '715406001842462900', 1781: '6818308023500369068', 1782: '6998290057807710917', 1783: '4601790451622501802', 1784: '9030484820615456959', 1785: '4771703280956337845', 1786: '9042319505331818906', 1787: '8958330808961387452', 1788: '6059457345737298880', 1789: '5195052674759712046', 1790: '1410196403110961308', 1791: '6409133277725009790', 1792: '5626661657638885119', 1793: '9179879420614690447', 1794: '9091771158315767194', 1795: '1246453218617842851', 1796: '3728815277490154198', 1797: '4488464012437086531', 1798: '4217012776222153798', 1799: '9144190321895213851', 1800: '7074211991214451843', 1801: '3706981066449000502', 1802: '3371239597013147908', 1803: '1255429363788893814', 1804: '8345568006997976676', 1805: '9206275686244764875', 1806: '8506521236582392808', 1807: '6947449472089792515', 1808: '7546612901109543094', 1809: '6291442923225351554', 1810: '2752119047024900440', 1811: '805614959043765769', 1812: '7720011455952398211', 1813: '135332569645961696', 1814: '4136187443925457351', 1815: '889305800681925481', 1816: '3356135166980817710', 1817: '8862969808231313935', 1818: '3076374316897797096', 1819: '5277709259355426347', 1820: '3231410140520846312', 1821: '564572820242783793', 1822: '3610084801689226312', 1823: '3908552006934667015', 1824: '7292865377486234297', 1825: '5125145036909317713', 1826: '7486533344878788752', 1827: '1086776593449646556', 1828: '6606499481409674037', 1829: '4176422902180283138', 1830: '8931153647420476080', 1831: '4627817822262492884', 1832: '4929368500838767949', 1833: '2966187278753386350', 1834: '8708752360243767625', 1835: '7717307706597034768', 1836: '3238589569580794755', 1837: '2977313729944642721', 1838: '5946584214253337859', 1839: '7489955918423825768', 1840: '8240210429963382718', 1841: '2084649285833052775', 1842: '7261194805221226386', 1843: '1296438675909954008', 1844: '2755271738371556635', 1845: '4202270317152224827', 1846: '67242350353941334', 1847: '6850880511687131557', 1848: '1323705004474895038', 1849: '6078344289069629246', 1850: '4496395654369317320', 1851: '8851453106026851602', 1852: '2973677681520235556', 1853: '2385947124746715908', 1854: '6133764690084410026', 1855: '5221193982773845879', 1856: '119806503996110046', 1857: '8505548454445236460', 1858: '1945278234078776687', 1859: '5620442535590473483', 1860: '8256920922884334326', 1861: '3088118575759681401', 1862: '7260115012837074269', 1863: '7461966230605672098', 1864: '2956108618420608905', 1865: '3432055592616082778', 1866: '3612010574565570785', 1867: '4178747664009041637', 1868: '4436696703857194132', 1869: '3708317668645277943', 1870: '8470472211415525463', 1871: '5638240947256623536', 1872: '8276638921905327302', 1873: '2382426917414671257', 1874: '4277504556958806803', 1875: '6911092332540613267', 1876: '7503593820279639580', 1877: '5726472656163532877', 1878: '5166023152376080980', 1879: '2270819689943837066', 1880: '7492106985145719459', 1881: '501174938575526146', 1882: '723459724834097281', 1883: '3067810456941800068', 1884: '7183504421866007218', 1885: '3752082673944586531', 1886: '6346300739520814215', 1887: '2068265478067735255', 1888: '7192258715316889030', 1889: '5517401116436959009', 1890: '5531373574865393154', 1891: '5377744807982831194', 1892: '732225345006872595', 1893: '7461900687223497572', 1894: '1052342010704604792', 1895: '3933715962680903331', 1896: '3312802382740140173', 1897: '6645253738893652511', 1898: '6484682671069961166', 1899: '3779205475924196401', 1900: '5871239255891841056', 1901: '3951934460716379725', 1902: '3763285734883690035', 1903: '4351331710881888756', 1904: '2263527763047078846', 1905: '8065326060926824308', 1906: '701949295768128821', 1907: '810067918938531886', 1908: '6387087975193770559', 1909: '6365086022926708021', 1910: '616649108700697054', 1911: '464404353548511930', 1912: '4882127780588218185', 1913: '8198062245752130541', 1914: '4291493300288812940', 1915: '7398631798606661688', 1916: '6526512487506688907', 1917: '2313870711084007638', 1918: '1477834571346921172', 1919: '6925483313724611087', 1920: '6925670792665757873', 1921: '3523968668931516473', 1922: '6579813155637084319', 1923: '4422893742093299170', 1924: '518697508631425659', 1925: '2274503685210781685', 1926: '5914441149326217509', 1927: '2400257488542407727', 1928: '8342973438096245566', 1929: '1037023387911431229', 1930: '7702367835857715420', 1931: '6213925354582969315', 1932: '7932120625439610191', 1933: '8694289821625834555', 1934: '3036926867604684520', 1935: '7629234416111856945', 1936: '6276620921915327444', 1937: '5061825951620102967', 1938: '7963789764073362950', 1939: '3401083608475308196', 1940: '3904210248050890128', 1941: '3423450385060590478', 1942: '3270956690720838371', 1943: '1510321897564962820', 1944: '2708575780282931506', 1945: '7878086133896463164', 1946: '3966324279534387421', 1947: '8274522839089381384', 1948: '6840647354657799328', 1949: '1449057232044065503', 1950: '2960665917532581398', 1951: '7520467742563767493', 1952: '6730370718823182775', 1953: '258386705672313678', 1954: '2188640265057376235', 1955: '8382235673310200820', 1956: '4513595997331796355', 1957: '5521192594818987848', 1958: '4257109999343611847', 1959: '2711304591685155515', 1960: '4812219843382485857', 1961: '57167024322842107', 1962: '3239287231047622718', 1963: '823705168688534512', 1964: '6877210863258588192', 1965: '3627158374105338201', 1966: '9212881193929071613', 1967: '7986077887193730895', 1968: '2228247270302226095', 1969: '4376966258071255609', 1970: '7460414977820080497', 1971: '8919090222223357239', 1972: '4491669206292325427', 1973: '5383470687773556672', 1974: '7948446893985702497', 1975: '6237225386243356575', 1976: '660758538837054786', 1977: '5898042623189598071', 1978: '2480668193641922274', 1979: '594354776006627907', 1980: '5587122886836885408', 1981: '8732843514650058678', 1982: '7988411047591774888', 1983: '2210194375077682787', 1984: '5203073629384068409', 1985: '3406580114446701705', 1986: '1257663557362813056', 1987: '8966465280115387956', 1988: '7484786128448001888', 1989: '4483304456267238355', 1990: '6182995394588967366', 1991: '8693020145305989672', 1992: '92860682507089288', 1993: '2864970131364548445', 1994: '4324468162930245863', 1995: '5860709468180973459', 1996: '3756597728166171300', 1997: '1287901756552786603', 1998: '825212004163502270'})
('vocabulary_index2word_label:', {0: '7476760589625268543', 1: '4653836020042332281', 2: '4697014490911193675', 3: '8175048003539471998', 4: '8377411942628634656', 5: '7046289575185911002', 6: '5932391056759866388', 7: '5513826101327857645', 8: '2787171473654490487', 9: '4931965624608608932', 10: '7129272008741138808', 11: '6748914495015758455', 12: '2587540952280802350', 13: '9069451131871918127', 14: '2347973810368732059', 15: '8132909213241034354', 16: '3517637179126242000', 17: '5872443091340192918', 18: '5024074905263842849', 19: '1127459907694805235', 20: '3522198575349379632', 21: '1462130073299421617', 22: '8697050490955193511', 23: '6940355838132160535', 24: '198848245836228716', 25: '1929433213325443915', 26: '8388675223914479274', 27: '5838214150045022184', 28: '1957590033086240723', 29: '3388534223137478077', 30: '6926244324609892988', 31: '3026760652624195547', 32: '8977315052041277515', 33: '2339809570377332086', 34: '5247920953015099584', 35: '464098448481254928', 36: '6233332241905300962', 37: '8234985547322968859', 38: '3738968195649774859', 39: '1833966078556927530', 40: '7755760251312795490', 41: '10765275175571242', 42: '4244109851160069017', 43: '5713014937920165769', 44: '6482420820999758130', 45: '6206436693745657677', 46: '6128804744224159220', 47: '8320373689946067773', 48: '2244015987817045493', 49: '8476641588870267502', 50: '6913268882499481459', 51: '296557676636955101', 52: '7237193447717198432', 53: '4925324689486413355', 54: '306626713584702071', 55: '2176113691990522905', 56: '974948214077502397', 57: '6010787275257571576', 58: '4715442001886462944', 59: '5727179283235569021', 60: '6300335881941851794', 61: '7154752383833648999', 62: '7327336430450495350', 63: '4842117090584879970', 64: '6094988058243923104', 65: '4313812860434517324', 66: '6259864339809244567', 67: '2253846628644635942', 68: '7128941744969160079', 69: '2470450211317525201', 70: '7382441326522573326', 71: '1936426631796262053', 72: '1115593437686158905', 73: '4783946863855560712', 74: '461073897687077027', 75: '6136403420715230873', 76: '3195914392210930723', 77: '5603787840210684334', 78: '2838091149470021485', 79: '1715880907958721415', 80: '7358589937244777363', 81: '5907221298687398924', 82: '4175044003751472418', 83: '7263346613600732510', 84: '3395612187041625063', 85: '127578908485806392', 86: '8934878948902408411', 87: '6746100647744083283', 88: '3221108052186253383', 89: '7276757922692328501', 90: '5370870069386720811', 91: '3804601920633030746', 92: '929552214112445114', 93: '2804720921356031819', 94: '1134449461011864348', 95: '8939629250892191652', 96: '1716547219669564708', 97: '1528665449659634829', 98: '8753586927626560871', 99: '4797226510592237555', 100: '8793023054666221242', 101: '6090807681448489886', 102: '6916771625541437162', 103: '7394822415369169180', 104: '3710154354006596575', 105: '7461031052158017715', 106: '3171321284640461062', 107: '7467981654311152612', 108: '8690965822342756180', 109: '4926226324555892746', 110: '6396968224948153401', 111: '3395688050394648705', 112: '3587421951489801185', 113: '8038679761480862184', 114: '5029367761183847365', 115: '5735861801184653052', 116: '6440461292041887516', 117: '6006627476560013656', 118: '8963554618409314978', 119: '8261875436896588399', 120: '8655945395761165989', 121: '3698337232083548513', 122: '1812694399780494968', 123: '3530498516767785588', 124: '8255556364363894453', 125: '5905055941872077172', 126: '5844864887297130495', 127: '4847411431971122436', 128: '2945591676659457448', 129: '8496378976475952232', 130: '6306904715218704629', 131: '272391079030611182', 132: '7768176858078358290', 133: '5630468373378416690', 134: '4735980801943654043', 135: '5533197189576067599', 136: '8719892509048178531', 137: '5265476641576484497', 138: '3717741907951064981', 139: '3812630496047239920', 140: '6655927395515165363', 141: '5535923551616745326', 142: '467854653740151741', 143: '5154428478508391411', 144: '2190087081896469323', 145: '7084375848696637802', 146: '6189759144033325615', 147: '8273296485558712517', 148: '3171150797683574404', 149: '284442997366536173', 150: '7389439858234957818', 151: '4844983888056131462', 152: '3040328401474530651', 153: '815198876455192216', 154: '2914574150347219426', 155: '5307971550110056052', 156: '1939629710310803463', 157: '5127719909274807567', 158: '6531816480725651453', 159: '7637660878558952620', 160: '2919247920214845195', 161: '205887421398457440', 162: '5572121657225835907', 163: '8974466804582129986', 164: '4510220896859961775', 165: '8129153007982137565', 166: '6826175758878956514', 167: '937436842931607517', 168: '1247043476329724186', 169: '8057405216243595195', 170: '2428977755640385826', 171: '4854080174949497665', 172: '8722585993781275470', 173: '3368482620480350745', 174: '8412622048338198339', 175: '3655804394968164826', 176: '7831006970405086046', 177: '5607854572232625967', 178: '2957727033863241782', 179: '5653685018999330538', 180: '8824437633825893435', 181: '3228559176932703230', 182: '429636223750539488', 183: '4482402820945758152', 184: '1172491018201020094', 185: '1870872991887862017', 186: '6621328949299074002', 187: '5839832565699655443', 188: '5528371788726186348', 189: '3710958733904838649', 190: '2545990029501556303', 191: '1818608831920242374', 192: '3257681557352812938', 193: '6270130442784051389', 194: '289045265883160915', 195: '7388356979267008104', 196: '953535750771065392', 197: '2299947672181109599', 198: '7358743120658680867', 199: '5312820382794140407', 200: '4248039953806100751', 201: '738845194850773558', 202: '1373190831171479026', 203: '5934472074045979437', 204: '5078457515830483462', 205: '1097982440009765819', 206: '978567319737022832', 207: '2707519855514695474', 208: '3531693480182650642', 209: '1029971585579892097', 210: '7278414220583882776', 211: '111444386959930591', 212: '3747151213341814246', 213: '2183097528579409954', 214: '8271228722369845310', 215: '1966338279544387275', 216: '4317515119936650885', 217: '5246457218661843199', 218: '2615243982215418774', 219: '813840053768678454', 220: '8461136052903019092', 221: '2051131023989903826', 222: '641296879189318453', 223: '7296682137888894474', 224: '9046073171251654509', 225: '4971742318987291185', 226: '76251316322796397', 227: '7792886053889220161', 228: '3068146477308733962', 229: '2919541457568923211', 230: '3060490612540832338', 231: '7270992690764838239', 232: '5190476938344202375', 233: '9213605013227137867', 234: '8459909699372349975', 235: '6170121829697589402', 236: '8314147124186495753', 237: '3620560314982595526', 238: '4619805718368927775', 239: '8780119653771094858', 240: '8608059476818882548', 241: '6962046606718337437', 242: '8491251183816682310', 243: '4315378960086848699', 244: '9202493221760481170', 245: '760432988437306018', 246: '827494981788980052', 247: '2252347929235450937', 248: '7077785751173689029', 249: '7604888719168633942', 250: '7932776971796693414', 251: '5630647833836040328', 252: '2053435107881296665', 253: '9176307901497282391', 254: '1282613433387309359', 255: '7956765969654512096', 256: '7128402373671658935', 257: '4233501032149248553', 258: '1594206519891776533', 259: '7596780943228995766', 260: '548176348047239669', 261: '1516199613903032963', 262: '7710528027833427554', 263: '881452243543100756', 264: '7071261048854153122', 265: '4039480952417102913', 266: '7300216881186850753', 267: '3950343097199599450', 268: '2063575091370043114', 269: '2042413966701758841', 270: '6754977617002317104', 271: '5933701962734903797', 272: '4575888989282246797', 273: '9131224113041702374', 274: '6834107079157928311', 275: '4941167822436894045', 276: '233310241887300764', 277: '1602071285682694082', 278: '1829585873417382293', 279: '4970306416006110305', 280: '4126348383745483901', 281: '6179724419779689236', 282: '7506384235581390893', 283: '4005373146530184315', 284: '4738849194894773882', 285: '8177829350826196308', 286: '8955755936847898358', 287: '5097986439797765367', 288: '8295464382327368710', 289: '5952941860558359871', 290: '3502510845760007338', 291: '8313816860478517392', 292: '530848751124349321', 293: '7483543763655495143', 294: '1840848880823843395', 295: '4615229981949418360', 296: '1950281665227851925', 297: '4960981578552030421', 298: '8064131816828727404', 299: '282465978976186486', 300: '4637223908993888877', 301: '5010906275996572633', 302: '1848585092512027184', 303: '8298071112958190037', 304: '6929574213890444536', 305: '4350097186097565949', 306: '8794289579418543667', 307: '3047203140006640650', 308: '7761820454097708905', 309: '9181954421703290111', 310: '7149588690342184679', 311: '51758657721381745', 312: '6797468512182240005', 313: '9068963265682720586', 314: '1129282008947139174', 315: '159483088220219835', 316: '958161591095441794', 317: '4195795391451929480', 318: '9071279048844153004', 319: '2473845757256782581', 320: '6706204399096967608', 321: '4287430850224527380', 322: '4685012381295525749', 323: '989115724037427557', 324: '3924161035524229969', 325: '3928200017056854908', 326: '4531492575592394249', 327: '6820927470420761553', 328: '8754995617056317074', 329: '8733716205359733790', 330: '8735763339754712849', 331: '7521397384381138775', 332: '7468440516386812822', 333: '6815248286057533876', 334: '578156641762363345', 335: '3941819252743792375', 336: '4138657073201347687', 337: '1689319711084901730', 338: '5289642852158128373', 339: '5939784184924423143', 340: '5197200702793464225', 341: '4155499018100127309', 342: '2696736445927423374', 343: '4287768755595785006', 344: '608973789957727561', 345: '7863420741562613788', 346: '7936068733703908459', 347: '6797754925234728042', 348: '8921033697231531910', 349: '4186044945552320533', 350: '5547065374611946666', 351: '4385853633333586686', 352: '4956126618474609139', 353: '3519446969668241763', 354: '4375644834375081381', 355: '8612737995048623998', 356: '8424110050280813309', 357: '1052210788805438774', 358: '6289779852907129222', 359: '7473164687826110412', 360: '3296456675883953898', 361: '5369979592181110026', 362: '7808628529824183580', 363: '5363951565728187051', 364: '8475158770269030212', 365: '682625880884350440', 366: '3603500707650257526', 367: '6906396683286432414', 368: '6693924458286834451', 369: '6125464748666004102', 370: '9020242569147281890', 371: '4047468682330031577', 372: '6317533119990651087', 373: '1361918053618377737', 374: '5244246852161070930', 375: '1568371821273406570', 376: '418328811539378284', 377: '6637171571708691638', 378: '1132762216411335839', 379: '5184213573444025305', 380: '7890270533039637284', 381: '5710723271693897389', 382: '6596826271593118393', 383: '4200589112729926854', 384: '8257566556637812025', 385: '3035038556984966446', 386: '8075733003501829416', 387: '5640305545736968503', 388: '7244570757266327934', 389: '839691564858654120', 390: '982546890824575042', 391: '730827694591115921', 392: '1420790574181137744', 393: '1304753272343710201', 394: '7236666175467998449', 395: '4047806587665289083', 396: '3645735357732416904', 397: '268886646698338239', 398: '2271656070098079690', 399: '1862396277886347795', 400: '1050656117889645239', 401: '3359253792326581125', 402: '4928686579058965613', 403: '5156370773381774555', 404: '2409703646005059599', 405: '3206175865018905637', 406: '8083178479064909945', 407: '130333997183751313', 408: '3374255859373786194', 409: '4741393399987719483', 410: '6885406542446231991', 411: '5956877252529086741', 412: '3283270692786298820', 413: '8293646724873095388', 414: '8583893266269238848', 415: '258278081117318884', 416: '6977349729988642589', 417: '1046296830523760923', 418: '944960297467578380', 419: '7951349602759061249', 420: '4484663127649000563', 421: '4779086475169195362', 422: '7812202290035421510', 423: '1379124819653208034', 424: '3787020472867489510', 425: '2802807297246536023', 426: '4931893522763265934', 427: '7057974542385626232', 428: '1201071336132923959', 429: '4035035703637267442', 430: '8276586243967962122', 431: '6945469483209653697', 432: '2872176636559084285', 433: '9070887554893837092', 434: '2605430974769704433', 435: '7042349381148393717', 436: '2863351392293563325', 437: '5926107323796891757', 438: '5189774979662589703', 439: '3744255770910909874', 440: '2147515486275286277', 441: '1358721120864681533', 442: '5953579394093512194', 443: '3905069941818076706', 444: '9156630774705776151', 445: '7010924276002572467', 446: '3571603611933812906', 447: '7727523866482191789', 448: '212983527176510806', 449: '5732564720446782766', 450: '4134572461810865895', 451: '6973540846536380068', 452: '6604751718355632709', 453: '8055035767327224979', 454: '5703183951095115476', 455: '1419888939115658319', 456: '3939940843357256698', 457: '4042431966963759443', 458: '2325532988800688306', 459: '634630012192348800', 460: '9135942013846644865', 461: '4966205278807386328', 462: '2024918785185496622', 463: '266893549648994617', 464: '1091735150683667954', 465: '248035954018101491', 466: '2834103079369928763', 467: '1757481363245650831', 468: '8485136373063472642', 469: '2600289688622465762', 470: '2904932941037075699', 471: '630831651100348477', 472: '3797085517647336536', 473: '5703675413724357458', 474: '2645598356987416013', 475: '2727382865693190624', 476: '827957941427433969', 477: '1835741376927652987', 478: '3629577244055910406', 479: '6250588152296764472', 480: '7044206989263083569', 481: '3713873141839444525', 482: '1454068188007247787', 483: '2689200710357900655', 484: '6183831864696688691', 485: '4702119494763791392', 486: '1135013190742086467', 487: '3854199175676498768', 488: '2825319746094646426', 489: '383231890572301883', 490: '2084207601051673062', 491: '3841172786213101111', 492: '9194725009816296853', 493: '1596731429083745156', 494: '5295045465633304607', 495: '5086388271920197202', 496: '6670672465634268947', 497: '1306763714361703082', 498: '6685544489022578691', 499: '3168235720721035056', 500: '7190905870850613172', 501: '6254806834008898035', 502: '3696877490134192400', 503: '7032762215239632923', 504: '3065185060409823831', 505: '6195781391249929126', 506: '5160330435175345822', 507: '8240034336161147774', 508: '7477964425265621109', 509: '6694271821571834609', 510: '640353611485256377', 511: '2144284217804152768', 512: '2597010810359075675', 513: '4328908197646748895', 514: '5166899464429738864', 515: '1185488181830527625', 516: '7623698017321962840', 517: '1542494247795425821', 518: '2131451573312950491', 519: '6934860948848408209', 520: '6437230815004219214', 521: '637187908693888049', 522: '8259133109129167396', 523: '1893973624410841323', 524: '8904735555009151318', 525: '5756731651366776550', 526: '4616259206801512351', 527: '7256815922327333383', 528: '1160326435131345730', 529: '3182736478163180292', 530: '4490622415459881951', 531: '7601662322270396050', 532: '5839782150254018914', 533: '6942933009551442007', 534: '1352932315759920358', 535: '2828956716673540412', 536: '1542232383501596031', 537: '6961740701383079699', 538: '1587086886808885540', 539: '9149698301250936831', 540: '6287448850278527582', 541: '965420152559594547', 542: '3097968439743765133', 543: '2185840155926169542', 544: '6844176116329675849', 545: '5548317348868241000', 546: '5095107059002924325', 547: '8292841471210057658', 548: '873181404731804450', 549: '3349960185284564716', 550: '625653602673789324', 551: '7063855203073696823', 552: '2081265111210072467', 553: '4826295158480970984', 554: '6283425693557299769', 555: '9094462885938385286', 556: '3025995229993781911', 557: '1790630374868647951', 558: '5182171624642467270', 559: '3506606446388448264', 560: '4470468211371525147', 561: '3027130786863096591', 562: '9207116738755198978', 563: '6022205592682717526', 564: '2353421622418180700', 565: '6076152359408392737', 566: '518807297849537945', 567: '5804619920623030604', 568: '6118242661945663443', 569: '4257846564893706064', 570: '4634825204717668542', 571: '7277482017937763537', 572: '8873311207356144485', 573: '8541903517951398969', 574: '6504465711645201248', 575: '2715832189532723552', 576: '3516675537008870086', 577: '5947021459447809684', 578: '461773686652496701', 579: '7347858809625731174', 580: '2026327474615253081', 581: '3356822828991224126', 582: '240041917918953337', 583: '5276739922638328515', 584: '2929797094746327749', 585: '935949748105096019', 586: '1744725637042107477', 587: '4686386086139247217', 588: '9193714286190364511', 589: '1544762873717585184', 590: '8209651626505353779', 591: '2425886132400160849', 592: '842846501417201550', 593: '2407908164985388095', 594: '1233447242664302071', 595: '8292500896134696267', 596: '8404500132661066458', 597: '8071006555424837523', 598: '5513159789605014384', 599: '5924179035578229915', 600: '6522242102892532323', 601: '465065448523711562', 602: '2747980002569958761', 603: '8486098563596716567', 604: '1604866719326634456', 605: '2284379093365280181', 606: '5397363254409200346', 607: '7790543634407640064', 608: '3291559261920410222', 609: '1039581953154104132', 610: '8592306961204380723', 611: '7703565330513018712', 612: '1539232755387832050', 613: '6382915985015043807', 614: '2348439063888615756', 615: '7116875195131178045', 616: '4638359948015624821', 617: '1918603044132414919', 618: '6071124048045151919', 619: '1919404456791921936', 620: '5260649651987088163', 621: '8046021685069769060', 622: '1064152954200704555', 623: '2382911985227044227', 624: '42427966967759255', 625: '4697494136307113064', 626: '7592036674792056069', 627: '3982701891595575995', 628: '1627700927594133302', 629: '7133408858573433781', 630: '1520473749037658594', 631: '6146340868276977273', 632: '703579324144045970', 633: '3760933726347836551', 634: '5653231896805341062', 635: '6034172062640988486', 636: '2825316495796585570', 637: '4957478629964985687', 638: '5028991260192797058', 639: '413439106341806001', 640: '9008925037793886842', 641: '6517930494079585324', 642: '7501152358833888406', 643: '1852158852467264362', 644: '2601420231829081368', 645: '1050994023208902753', 646: '7496262653600316163', 647: '3865463466240567990', 648: '1711676439522387331', 649: '6236529174658997246', 650: '7723241944697200189', 651: '763866869706749928', 652: '3054894766742224422', 653: '8570540777066461619', 654: '7251741387843544019', 655: '2812493495238238719', 656: '2290914319004584677', 657: '8193534055954643057', 658: '3236569225419487076', 659: '863356787255652960', 660: '2986674727438907115', 661: '4091858151482669277', 662: '3627686927328132632', 663: '2976933761878585560', 664: '7449878083916369913', 665: '4610596224687453206', 666: '3834635940635905116', 667: '8707554510573683939', 668: '1239585011552693824', 669: '8022905568116914967', 670: '496702181072361916', 671: '4628321180307498093', 672: '1751271042943524239', 673: '7318907785137551256', 674: '5091735158287767326', 675: '2369354056312575099', 676: '7612369293897193240', 677: '4458245011278275078', 678: '5782598437912985562', 679: '2324450162924245773', 680: '4060949394271665296', 681: '3284260092574278990', 682: '3151738353564633688', 683: '2063727883907680094', 684: '2816249700493135244', 685: '5932102625385609989', 686: '7261047446949365330', 687: '2627298052801704596', 688: '2259482849339758626', 689: '8691303727714013806', 690: '3724597838339541191', 691: '8708763560325368868', 692: '7432059592404082070', 693: '5243683122430849003', 694: '5046409709390354060', 695: '7102537040333046812', 696: '3833526104478731847', 697: '3090002907972924303', 698: '8923423159850053928', 699: '5996724989260181298', 700: '5769304345757607597', 701: '4415415525561784599', 702: '2086863971949478092', 703: '4305750675950968059', 704: '852657668925964952', 705: '9045567936064089227', 706: '3478495961956304702', 707: '1206356642865167537', 708: '8286067888742086892', 709: '4221221164136980100', 710: '6927564467091501561', 711: '5470415613430156594', 712: '8057515460092391911', 713: '6982617424015263755', 714: '6049758334588147235', 715: '2874144248539376545', 716: '4599901512332593544', 717: '43144747296912569', 718: '6493581724141198741', 719: '7377977482151854926', 720: '5497802635036879185', 721: '3972493657017129406', 722: '4647222608650438774', 723: '6618922083065447616', 724: '1386735796399192077', 725: '4489563673511019043', 726: '2379261820462209275', 727: '2208197439532367343', 728: '6113530251130504317', 729: '191637238080651225', 730: '1763510825413002970', 731: '2865051795429918701', 732: '7065221060437823699', 733: '6508005928201477851', 734: '7178462458998249847', 735: '5273197481621614579', 736: '787153473600490253', 737: '8930817928939351690', 738: '760095082858047992', 739: '8965261444411035302', 740: '3594347865816291236', 741: '6833660726951706273', 742: '2148914447613726391', 743: '447621759006218148', 744: '744588636265106420', 745: '8317207117905033099', 746: '5183558434685668615', 747: '3543938934441229122', 748: '6183788489797866727', 749: '2353969577414666795', 750: '6162947324507053330', 751: '5695691654483839948', 752: '2307848549279054583', 753: '6932639971019692365', 754: '5359369588772834743', 755: '5779833930274639409', 756: '4229259523827570399', 757: '6362359524660190859', 758: '5347872809635730844', 759: '4747555070055547950', 760: '9191306710136658354', 761: '2667619839677460873', 762: '7985176251840250566', 763: '8200594842344508448', 764: '6691599696714076992', 765: '6598132981359524758', 766: '3042294965962757528', 767: '6432674419326406562', 768: '4620747219322851425', 769: '7308850312940048311', 770: '5872703085284095974', 771: '3588426558825683351', 772: '88534707019739220', 773: '9067458034758574441', 774: '4837684718742000390', 775: '4171145772160186792', 776: '2184408420667115619', 777: '1952321452846772720', 778: '5818382893362053755', 779: '3689337711138901728', 780: '7303588876741005401', 781: '8818294023490369214', 782: '6809079195362599432', 783: '747962002515958563', 784: '4113529672303259565', 785: '7602563957335875707', 786: '1679310042378651050', 787: '3812457715228923422', 788: '2874840460379736898', 789: '5833678375673307423', 790: '4756734728979172533', 791: '9140852396937582232', 792: '8817405446696378563', 793: '6940383844640051830', 794: '360384494934733643', 795: '1921090990457446246', 796: '8602230286237694587', 797: '3593286523786250302', 798: '4396474713128893708', 799: '1728510704906079580', 800: '2549689272203498237', 801: '3444689810794944326', 802: '7273415486317713764', 803: '7237300102721734709', 804: '9066598418877635793', 805: '2666165647163340944', 806: '7342156431046465584', 807: '2036843942643102910', 808: '7482525821744759509', 809: '6756871902441838709', 810: '7139336849268940543', 811: '2137715778200077463', 812: '1509707312768337838', 813: '7552404094855378396', 814: '5281817566948863661', 815: '3553102336811813291', 816: '4977997420793944836', 817: '7292395895641695708', 818: '6392418462462658998', 819: '4986547532010670575', 820: '2782670153102643340', 821: '7804861921957032342', 822: '2631505835963473775', 823: '6395945633142271042', 824: '6152189531591576162', 825: '8109793286902118151', 826: '2454705495458529924', 827: '8604769718409632655', 828: '7580468821069307570', 829: '7036693081856171470', 830: '382893984981043609', 831: '8509302583613116358', 832: '6282754433984310142', 833: '2630097082058343181', 834: '7083407008369163240', 835: '2537905926744578235', 836: '4453988975677283684', 837: '3541067235871077620', 838: '6851000582045015586', 839: '5389453858436958168', 840: '2061736283751455185', 841: '8935949732944907212', 842: '8932546057542867495', 843: '2277518557160807369', 844: '8368395784867923046', 845: '8330177318910444596', 846: '1541526768635629880', 847: '5997976963484475428', 848: '442912898635693042', 849: '4040879839908947110', 850: '7876300673940894569', 851: '3381299024709108173', 852: '1607863647374231353', 853: '512794068235242963', 854: '6957390495980542955', 855: '6192377716103890229', 856: '9189723362012067754', 857: '6935423857365477159', 858: '2820174307247949506', 859: '9165709055872875620', 860: '400525901828896492', 861: '7759352448651569694', 862: '2470455971679919165', 863: '2059083978137705082', 864: '4312939383521141502', 865: '5715197946812265320', 866: '8030347819806455716', 867: '490895094889249343', 868: '5378699121209676383', 869: '2272840038915065759', 870: '8609111586421981129', 871: '3250879589215178639', 872: '2266542845480926197', 873: '7483215586203553366', 874: '8349134305416910889', 875: '5421686840411739502', 876: '7413344850500955337', 877: '9059610977317352399', 878: '7603044093174944268', 879: '7595559184779647650', 880: '4810639854700527658', 881: '1361410429514384644', 882: '5755742251322795648', 883: '8468200558891408887', 884: '2973837578933146413', 885: '6093784317638569039', 886: '4271026173614872626', 887: '7739004195693774975', 888: '5284225414690914020', 889: '8504432231932962955', 890: '276421274438901622', 891: '1991783242057111803', 892: '6315309392483863834', 893: '8813604130293525651', 894: '2417376459854712213', 895: '9190512938628203011', 896: '6708234822310526870', 897: '7388085101860430821', 898: '5618127243791055921', 899: '4182785338248771093', 900: '6459923699638350593', 901: '1978209065824574247', 902: '8671770789948109260', 903: '8324188154674351824', 904: '1804583920579030544', 905: '8058793464914429671', 906: '180604055055169479', 907: '203251463786508407', 908: '7866576113340895115', 909: '8767951075485440550', 910: '3487209931552756601', 911: '6076847073309671938', 912: '1026774652826195893', 913: '7526284554176419967', 914: '4585410756047464122', 915: '6583250835532759869', 916: '1498101358485403935', 917: '8128505679583243627', 918: '5483703385391965908', 919: '6719522112518617217', 920: '5599700847208221405', 921: '807273409165680991', 922: '8885069682816774814', 923: '146867728338383595', 924: '4627183237363916621', 925: '5685149382072526764', 926: '8229741297693398188', 927: '2027693463582123305', 928: '2700764582293572246', 929: '5297443792466905800', 930: '71019233546203287', 931: '8626700618973750024', 932: '6409557685183119664', 933: '3890819584814276652', 934: '5401140137601462297', 935: '3828720201351423909', 936: '1843921060214341675', 937: '3746420612845027050', 938: '7727115678845931341', 939: '1805719959600766714', 940: '2615425226049888969', 941: '2620423314205594477', 942: '7207130738765198908', 943: '5308164272008345585', 944: '3937009208401626102', 945: '2280739588051656760', 946: '844641982688873856', 947: '8210095891948580913', 948: '7394364441236973511', 949: '1250723830949130791', 950: '8802446458100491067', 951: '8138693073229347555', 952: '2482115166690201194', 953: '8217837422471420147', 954: '4921793805334628695', 955: '6636530880935474404', 956: '6839713564940654454', 957: '4925534126353181729', 958: '6718160118244358137', 959: '5821744782934605757', 960: '507963918987245871', 961: '5064872869819184144', 962: '245170073794392183', 963: '8809065195096599018', 964: '949201624235522947', 965: '6388689223924479176', 966: '4742244214314968766', 967: '8563498708650043882', 968: '8914464863762678881', 969: '7306785714459703344', 970: '7951567235515055279', 971: '7485487238471669174', 972: '7933427407380960960', 973: '1245968097376795823', 974: '7913400407431354867', 975: '3094293898602238746', 976: '6974448804336129376', 977: '5861391680921034810', 978: '3414266676439227853', 979: '5778630938297884387', 980: '2152720316933993716', 981: '6755259377998476531', 982: '2936563632577263124', 983: '5685602503393574336', 984: '6475428416648710661', 985: '9146509192468700917', 986: '6209302970466816480', 987: '4539885023607921459', 988: '3382453256049823037', 989: '506893134880746982', 990: '8520632749868659783', 991: '5797617924457726769', 992: '2584084025551203106', 993: '2822645753203672373', 994: '8769048100855794356', 995: '8610942552777272887', 996: '3951903751153261568', 997: '8517947292668395884', 998: '957630088479857345', 999: '365800917376380011', 1000: '3333307402327293632', 1001: '2158849213884899151', 1002: '8325178746224233621', 1003: '2841676129656881967', 1004: '5935329614274008475', 1005: '4346530999522010552', 1006: '7834244026558534803', 1007: '2312947142927298399', 1008: '279996543863601173', 1009: '3648949148370823486', 1010: '5985158251850250708', 1011: '2168515087433636094', 1012: '1828317107061269531', 1013: '985918886318729368', 1014: '315342960042848847', 1015: '138889680107600025', 1016: '5399048486759263580', 1017: '5935542858156478574', 1018: '4817185265171864610', 1019: '6785477830855995834', 1020: '363026071972955475', 1021: '5613061346723845145', 1022: '6078338515107482389', 1023: '5702343302237640989', 1024: '721980443721545552', 1025: '3713654557729491068', 1026: '2171184283895460175', 1027: '8091634157538766119', 1028: '7265949492506113547', 1029: '1277067587393743060', 1030: '5090670680639488645', 1031: '5264509641502027935', 1032: '5740148371925933882', 1033: '8031637693064444227', 1034: '4248035397448942774', 1035: '8690124345701380826', 1036: '3134999190540085909', 1037: '1729853366387155808', 1038: '7702329302227641319', 1039: '6744898938415762500', 1040: '6595993041154510107', 1041: '4019630484311065906', 1042: '3815137940251520680', 1043: '4408042312386689938', 1044: '2432174593375084007', 1045: '2420025939860659200', 1046: '4811575033152182097', 1047: '3490469538808305901', 1048: '2604494515308175827', 1049: '7504765820134758058', 1050: '5432793419857406993', 1051: '1619650717341926052', 1052: '1865182682318401776', 1053: '9151760353406633174', 1054: '2890682584037275637', 1055: '3134435460809863982', 1056: '4899469786434878724', 1057: '4517730048981926303', 1058: '9079470749530129591', 1059: '8500993396239092897', 1060: '3167668871180030042', 1061: '8417849371287704224', 1062: '1812995334969284166', 1063: '1821708782890605889', 1064: '3732595370398382489', 1065: '4757324986659053904', 1066: '6519476806919078477', 1067: '8360291425523348325', 1068: '6726696617713153281', 1069: '6264232204593613606', 1070: '1315009618498473661', 1071: '6491404294933335370', 1072: '4749298169084869151', 1073: '244937959911721367', 1074: '5202151316393223580', 1075: '3514313626604886295', 1076: '1026446475374254312', 1077: '5082138874375887068', 1078: '5770137307181057796', 1079: '4960651917266580984', 1080: '7920896696482531061', 1081: '8413855607660856960', 1082: '7301517388567833702', 1083: '7636490825137648383', 1084: '8294426931183223528', 1085: '5364712160899856113', 1086: '5041846259853346443', 1087: '8595696185560648723', 1088: '7756633728210171144', 1089: '6968743648143929951', 1090: '8359524589555835842', 1091: '809545061433796799', 1092: '9065926021602280000', 1093: '6943357686311161881', 1094: '9128959745023160305', 1095: '1312164508616819973', 1096: '8594215559868837681', 1097: '2913093524691408320', 1098: '7109260904701481229', 1099: '9190214082467470004', 1100: '4081540261748731445', 1101: '7814644688097156830', 1102: '2410784981474048482', 1103: '5955061777414214628', 1104: '7571379618289910710', 1105: '5284915626131431417', 1106: '7109155344798314039', 1107: '2611831146743123406', 1108: '4972169293096900768', 1109: '5074225991224451769', 1110: '6539903023853922085', 1111: '7867382784409665450', 1112: '1396906697095000000', 1113: '4094504804738039741', 1114: '3315241959305847628', 1115: '6040061883174458353', 1116: '4552983336052812034', 1117: '4303166553155574827', 1118: '6032657214426631468', 1119: '7865809443640391823', 1120: '1962878356219717823', 1121: '4376405455210705328', 1122: '214112947209201294', 1123: '966315115653954432', 1124: '8956015930535800390', 1125: '2149884934935655725', 1126: '1964167534274656346', 1127: '2951766750408260687', 1128: '4530635517516786435', 1129: '4247291014640570922', 1130: '8930028685451892597', 1131: '5851127098417361943', 1132: '2868290634651933512', 1133: '1595537184985648316', 1134: '2589127531890201053', 1135: '4051456752430124035', 1136: '3158683775760375553', 1137: '9095332521007865159', 1138: '1778799897295902095', 1139: '741041172583638581', 1140: '6686716088012864449', 1141: '1078453515786483402', 1142: '2515257722796787281', 1143: '3251367506358243575', 1144: '5200726113506927935', 1145: '3926387480955996855', 1146: '8071059233618203439', 1147: '9082490625628998409', 1148: '1195896392220930869', 1149: '833074414957851585', 1150: '1883376476350161480', 1151: '6185119154639737496', 1152: '1293257957773648492', 1153: '6981148859720148373', 1154: '6719184207199359959', 1155: '4136380367039673024', 1156: '526142875017934439', 1157: '2724031079357275465', 1158: '9038362052565301884', 1159: '4678726459447663357', 1160: '8753953007931296119', 1161: '8543134814286327823', 1162: '7259175568841790177', 1163: '8402615280886071963', 1164: '1945786109636206690', 1165: '2484450019658444218', 1166: '6579494630017862290', 1167: '7074431704504128900', 1168: '7517165859759106844', 1169: '5353288621685179703', 1170: '3886495748707495361', 1171: '397242931505564187', 1172: '1934955940447177718', 1173: '6324291111388754690', 1174: '7515893735868429527', 1175: '7118972759448144772', 1176: '5247895193618942845', 1177: '6328008869454085969', 1178: '8164473300321350006', 1179: '4620290839673975123', 1180: '7160549933950402575', 1181: '6718676536613592056', 1182: '7578315642593364536', 1183: '4864988131354548295', 1184: '5948340753284292141', 1185: '2241488058004423468', 1186: '946699215012338966', 1187: '4921212371110555224', 1188: '6915348499066159040', 1189: '2749323491628044459', 1190: '1980876636979981304', 1191: '4349610335189937101', 1192: '3833854281930673428', 1193: '825114746136838945', 1194: '5725284888663475863', 1195: '2819800414696664771', 1196: '5595879090352905906', 1197: '9035795297707480288', 1198: '3410895965080918002', 1199: '7642403449709161291', 1200: '3915577320911199709', 1201: '96415308824933540', 1202: '821606580646429455', 1203: '8308599786100622347', 1204: '7070869554647836474', 1205: '322011515950961818', 1206: '4924342969990018100', 1207: '1713991590099499492', 1208: '4414099537132285176', 1209: '1159514227928535208', 1210: '2503896161629471198', 1211: '766832051768165842', 1212: '1830804034504888946', 1213: '6209906485884066381', 1214: '1929640564915846432', 1215: '447397644319813678', 1216: '5219394751292749705', 1217: '4033240222365595136', 1218: '8736568593417750581', 1219: '3253007787485187171', 1220: '359417859466491096', 1221: '7621209948544072707', 1222: '794249579378543643', 1223: '260764653006089998', 1224: '4885267324371405324', 1225: '4836843257444966243', 1226: '2853317843458689854', 1227: '2366809508980261782', 1228: '1337962690305221735', 1229: '6569012000551779051', 1230: '377872747222364124', 1231: '8932881972353694103', 1232: '6571758612764814199', 1233: '1538889947190981142', 1234: '4805592090163108544', 1235: '6527607154405707868', 1236: '7460701391128569030', 1237: '6489468578488009978', 1238: '3819644721564677600', 1239: '4694038752172489928', 1240: '2358602120077680332', 1241: '7202475221706481200', 1242: '7135491570488962839', 1243: '591874827809654669', 1244: '3652432494449008463', 1245: '5385537249890202479', 1246: '2943300522656247996', 1247: '4976168389897510937', 1248: '3716565219723564694', 1249: '7505564508903239248', 1250: '6051847744604517372', 1251: '2296774384623513526', 1252: '9179561545443484234', 1253: '3405934480693224008', 1254: '7711303308980200160', 1255: '3228384271303228006', 1256: '5715009224102355943', 1257: '5947293336854386967', 1258: '1256788148331186620', 1259: '3288086889604257964', 1260: '3358692269505998714', 1261: '1296893385346514597', 1262: '8503907262844320611', 1263: '468770502684675821', 1264: '2316595484593170922', 1265: '6169574178834362026', 1266: '4404507569092733905', 1267: '4404054447851686653', 1268: '8365788239271014215', 1269: '546485900534542453', 1270: '3247902953025099742', 1271: '8577537092594110418', 1272: '1251238547469584119', 1273: '1958042590336440825', 1274: '5691190333995993179', 1275: '4284828052993734182', 1276: '1132414472776926617', 1277: '8700804433466361123', 1278: '4046496764963548976', 1279: '3418451812342379591', 1280: '6529847503002197165', 1281: '4255906145781727386', 1282: '2163040607327628261', 1283: '2638813346466022112', 1284: '1033816721290613934', 1285: '3576039990329248748', 1286: '7283655748413496857', 1287: '2901486774679816593', 1288: '8852526557827312102', 1289: '886720308663584531', 1290: '3308846312896048251', 1291: '6018641953300645757', 1292: '6689024254240076864', 1293: '5837628487243570427', 1294: '9198481215327194426', 1295: '6857749722158756463', 1296: '4840599462703862798', 1297: '8490591142396750145', 1298: '7734445005828304333', 1299: '2578011073631737197', 1300: '7782743223410052415', 1301: '660152330539825076', 1302: '125312951999750184', 1303: '2129487364414263467', 1304: '922729887773674204', 1305: '8252369929269451135', 1306: '8183806489787866605', 1307: '1633889204737016877', 1308: '7981154638613983862', 1309: '3685645489515579384', 1310: '4507987928147477649', 1311: '6977297052051277633', 1312: '2457803616542404093', 1313: '5671276587666317392', 1314: '8075550195042412872', 1315: '6762330993624022175', 1316: '5942580068307165204', 1317: '5606269680673074664', 1318: '390427073704203351', 1319: '7625780603244790259', 1320: '3894468979819174909', 1321: '3197365677142313316', 1322: '8467862653556151381', 1323: '2034168062596988170', 1324: '2060630291013198133', 1325: '2048928297371666315', 1326: '7637093652853037385', 1327: '3261043446953365142', 1328: '4291107330729431469', 1329: '2056976393823539020', 1330: '2288652390863265229', 1331: '3471965724367244818', 1332: '4840715880086842414', 1333: '277167144631131335', 1334: '3841500937953087637', 1335: '850238065607344830', 1336: '3820922726386715360', 1337: '1158968214639900190', 1338: '99435378441769379', 1339: '183764869825974842', 1340: '1315223959315847746', 1341: '252983656834218346', 1342: '1395928881946561577', 1343: '4815275050173093300', 1344: '8755559346786539225', 1345: '8965027945689978971', 1346: '4160758010753708150', 1347: '5271733747232358004', 1348: '7733780507306249147', 1349: '6599837848209223060', 1350: '8936615423548208677', 1351: '4373313832006480501', 1352: '8352857959906729837', 1353: '197283758574659585', 1354: '2929521564160845391', 1355: '5942033904153309241', 1356: '8674249008302499974', 1357: '7483087310385189621', 1358: '488107960667424881', 1359: '1191558361922411092', 1360: '7301680710575105489', 1361: '7924497970773019201', 1362: '9189942151584218583', 1363: '4917951176751980069', 1364: '4804738921410031805', 1365: '6613336256439380973', 1366: '5730521719802184390', 1367: '123077587949959463', 1368: '9122390911750307690', 1369: '5813711400072121925', 1370: '8088921220052974621', 1371: '8179083291996935578', 1372: '461436028263880214', 1373: '8614798793761585963', 1374: '2762359234746621721', 1375: '5507078822517359344', 1376: '529754693268731380', 1377: '7713914559325493608', 1378: '9130379775893585932', 1379: '6932528057568867609', 1380: '2644663447358037130', 1381: '4209647626717354471', 1382: '6038661761506862294', 1383: '7402734281641073196', 1384: '4483249651745840664', 1385: '1026888672378692933', 1386: '5707939385348112587', 1387: '8600390633617640920', 1388: '6455482856502656063', 1389: '6383679864498497348', 1390: '7965124443634034243', 1391: '7289520544701010248', 1392: '1739559252355167518', 1393: '3454045075070127268', 1394: '8939220707786185310', 1395: '4480048862397337587', 1396: '4046904952599809426', 1397: '4372342278216563985', 1398: '6592842803508310786', 1399: '4618963433435933606', 1400: '269620530311797923', 1401: '7377762807972831044', 1402: '2744606636255106278', 1403: '6759553353177825959', 1404: '395119817510087182', 1405: '253382038868549836', 1406: '3786783429120743159', 1407: '5675178131106424242', 1408: '5706344191507825718', 1409: '5492238387967642597', 1410: '7595304912654505661', 1411: '5691180727135013099', 1412: '3174907002942471215', 1413: '4498992365827597394', 1414: '5487281968920391812', 1415: '3158986214629900032', 1416: '9061828969851678390', 1417: '8191454429180787392', 1418: '6216930488646770123', 1419: '7283993654004755131', 1420: '6277846260132427404', 1421: '5254885710391138776', 1422: '5881091356465260065', 1423: '1578624787506041748', 1424: '1685618881903601535', 1425: '5516931871002486896', 1426: '7653703019053330516', 1427: '1426144244057814596', 1428: '7911910053664227396', 1429: '4687652401249709790', 1430: '4393756319132924838', 1431: '8556653203196579720', 1432: '5040760839149945887', 1433: '4695031998360726172', 1434: '3276544275225902971', 1435: '2378023649280419876', 1436: '7312924884970992973', 1437: '5582178418720239919', 1438: '4743207609281160647', 1439: '1840534911833780111', 1440: '8339019570260683343', 1441: '5945192601099058576', 1442: '3578642787560041946', 1443: '4187026665048715788', 1444: '6904717554955151340', 1445: '3484587020435445267', 1446: '3247029476127723832', 1447: '2289743852863129386', 1448: '8091907016971478715', 1449: '8591725246688996314', 1450: '6941072618461313849', 1451: '2523521411748733187', 1452: '945573676653457614', 1453: '1125547749381005553', 1454: '3754053668725070591', 1455: '4444538809815942711', 1456: '1663857393137459269', 1457: '3601908083158555273', 1458: '6666640731218555667', 1459: '7588378164638163170', 1460: '5388067101870430963', 1461: '7739171563081867691', 1462: '7767289030705899707', 1463: '1616786109481698063', 1464: '2113178690855415018', 1465: '8816271700543135410', 1466: '709944893639249564', 1467: '9045161734922059274', 1468: '4756075562652254270', 1469: '639720505558266916', 1470: '2673780766719859192', 1471: '5928085201623066659', 1472: '4609970549280340514', 1473: '1597326573998880188', 1474: '7253987629229636499', 1475: '521166281704794588', 1476: '6159931062146415300', 1477: '6149403568898773703', 1478: '2158546774951374352', 1479: '2840784003483222292', 1480: '1057952542303625894', 1481: '3751354412512421448', 1482: '6831250779365929435', 1483: '3617227602782777289', 1484: '1740126037981585888', 1485: '3009772007719204112', 1486: '1913077480394809437', 1487: '1632756942582150130', 1488: '4054009175749343326', 1489: '129145008166137909', 1490: '7820378771178228515', 1491: '3595861090298905936', 1492: '8581614941770002764', 1493: '3386710421554370087', 1494: '4425978037524959779', 1495: '4343998561613089743', 1496: '3867686512607885141', 1497: '940415022552647187', 1498: '2155175112774869721', 1499: '5405715873764971194', 1500: '3288685408108844119', 1501: '4290228299766776524', 1502: '2269742446020584054', 1503: '4978402514041141532', 1504: '708798485013978373', 1505: '1685127048144178754', 1506: '5476101493799111825', 1507: '2944189228057544610', 1508: '6696888779902697750', 1509: '7347583870493810379', 1510: '2373633737287737773', 1511: '7361625848712741016', 1512: '1909670907650306800', 1513: '1126193382942482810', 1514: '1811468762119777118', 1515: '7395901697861074527', 1516: '4059342155144310804', 1517: '6505875937070299339', 1518: '2396085611150343002', 1519: '7193881469854268501', 1520: '3418975465402388399', 1521: '2729111190626408579', 1522: '3149765934180654494', 1523: '2415173524227782861', 1524: '2850367919157922070', 1525: '6782194019060585190', 1526: '7389988565950056336', 1527: '7937392720817863936', 1528: '7274130935521678793', 1529: '4780628265863036144', 1530: '6175062003741472300', 1531: '5287905756596786919', 1532: '8532503536113702039', 1533: '4828857202132424980', 1534: '8592873429166825073', 1535: '4464289448417062777', 1536: '7361228668063598860', 1537: '5502528845814007324', 1538: '400747363837837128', 1539: '2034901556203965439', 1540: '1907358896483963221', 1541: '3383016985780045156', 1542: '1368382100401604712', 1543: '6527178798961531478', 1544: '303429875914004210', 1545: '2749566582179357212', 1546: '5395292281504366735', 1547: '6371157878623138908', 1548: '1953157642467237515', 1549: '569940021530854113', 1550: '5461355180342040702', 1551: '2853547827536559669', 1552: '7397800594994209068', 1553: '4350774118563465177', 1554: '3895054941927964525', 1555: '4444970904898179447', 1556: '4647413168079516052', 1557: '8862426237057348309', 1558: '1692861144730989249', 1559: '266612986122336493', 1560: '4677755972317734407', 1561: '1797701934329285597', 1562: '5963738322232438878', 1563: '6810657854754527644', 1564: '1964490991768378771', 1565: '8472140268318420389', 1566: '8300353881995851996', 1567: '202658488388760612', 1568: '1272799350744810580', 1569: '6758942141122113907', 1570: '1591780979474750959', 1571: '7637995288174517586', 1572: '4635541421251975104', 1573: '818287567137330443', 1574: '7256910573245396514', 1575: '1063815048865447049', 1576: '2140361463758283053', 1577: '5081547367786156934', 1578: '6736490454993663221', 1579: '5113954673580054853', 1580: '2460528390051567153', 1581: '6416634393997402328', 1582: '951420572902318966', 1583: '2600368633583640730', 1584: '5773269986924675698', 1585: '5636960665828891411', 1586: '7278142043567277172', 1587: '1298289728721376820', 1588: '463750704786845608', 1589: '948223640148622714', 1590: '5163066325262054561', 1591: '1867700512809885443', 1592: '6483290456065237989', 1593: '2327504309227366054', 1594: '3250728804941389085', 1595: '435735599673143337', 1596: '3028813107806213121', 1597: '7837646487489571053', 1598: '3174540452399560541', 1599: '591743024806900405', 1600: '8019634484099065422', 1601: '6236292131168251599', 1602: '4465753277789317273', 1603: '8690716061410596833', 1604: '8151293691584183256', 1605: '7489973769578614435', 1606: '867255783834664811', 1607: '1553849747662134917', 1608: '5821099149145127900', 1609: '1054876766752224572', 1610: '5301319902100253987', 1611: '5563552157167479274', 1612: '3369244421450766217', 1613: '2225963092592501897', 1614: '4129149007954137465', 1615: '3313675859625516103', 1616: '2198834017210585710', 1617: '3638162940470731911', 1618: '601365943784756897', 1619: '4341766724811689661', 1620: '8263821218933164468', 1621: '3010920276006572535', 1622: '4790107929558196912', 1623: '4972909213208903305', 1624: '1244780622073523653', 1625: '7936478422771207620', 1626: '2493976369613713098', 1627: '4477989572181922377', 1628: '8252138064428255186', 1629: '3160598848269833883', 1630: '598219288744642833', 1631: '372645249911808449', 1632: '6050797118662646484', 1633: '2457765753528575807', 1634: '1733532638025265853', 1635: '2539026947967982415', 1636: '4799035831110725204', 1637: '518747274885843149', 1638: '4689502080141399321', 1639: '1490375857486803458', 1640: '1175002826479428070', 1641: '3844703788726806478', 1642: '5840852880867843487', 1643: '7507096822571359314', 1644: '2606984352060215314', 1645: '8616327459839591065', 1646: '3061873284528456248', 1647: '3357905707959173812', 1648: '490310687477662812', 1649: '3856154743789177934', 1650: '8671398044778357164', 1651: '4136385420677230855', 1652: '4144904362303444936', 1653: '1149442028819396978', 1654: '6899487786424878606', 1655: '1600231632806639649', 1656: '6153924391977698761', 1657: '5257727564138704831', 1658: '6904365249093892053', 1659: '4730384719025183341', 1660: '165795973545465285', 1661: '7839463720297334614', 1662: '8128542371912229421', 1663: '2757362362486649844', 1664: '4170007516780842790', 1665: '3693801457711833752', 1666: '8632540229807721618', 1667: '5150083372514325217', 1668: '4595742089571904833', 1669: '2562570278968530697', 1670: '4599393636727163429', 1671: '7497132452884561764', 1672: '3972456192477785643', 1673: '927157639555241548', 1674: '288666390873265147', 1675: '372824948001296711', 1676: '5126229382986482646', 1677: '7169012814272124935', 1678: '4379247820452209357', 1679: '1240792551973430931', 1680: '443748424298996449', 1681: '3166881464375738634', 1682: '4645077198390733438', 1683: '309958747543063025', 1684: '3880682617352937394', 1685: '2478695500618560154', 1686: '6035861019586388180', 1687: '1836555187162579672', 1688: '3052663234141228029', 1689: '7006422955498725720', 1690: '1702694829810068100', 1691: '7158068093440012389', 1692: '3900318848301728120', 1693: '7100390008334527804', 1694: '2858911571784840089', 1695: '8483512903543904044', 1696: '2317497119690650259', 1697: '9119389643029055864', 1698: '5013142463389228316', 1699: '7697921317504152141', 1700: '2820237770657228086', 1701: '7783767359467907092', 1702: '3701339131568161889', 1703: '8271038810799090353', 1704: '5292942471963059053', 1705: '8804742921198031305', 1706: '5252993787219186549', 1707: '7844932991499998016', 1708: '465527815784376703', 1709: '5732944515355059947', 1710: '9051597753027124816', 1711: '3613386045962125096', 1712: '3304995273933712655', 1713: '3932429241903732643', 1714: '2818819550873422543', 1715: '6003831336496592001', 1716: '8877588822182413621', 1717: '1412463047763197934', 1718: '5475971414084036126', 1719: '358825977155420974', 1720: '3473982758005783430', 1721: '7977896420088943791', 1722: '7594028509049751156', 1723: '7823160150035726894', 1724: '2377671429476999320', 1725: '1534981837265632499', 1726: '1365937918157381084', 1727: '7629098500201070516', 1728: '6958607494104131034', 1729: '7037298644597283282', 1730: '1043361473087907312', 1731: '2384929018605582143', 1732: '309179178474245125', 1733: '5576644993511241222', 1734: '5753024495996599592', 1735: '6158500871224119394', 1736: '4069111171644921459', 1737: '3835759376917652833', 1738: '1200263233485735432', 1739: '4115748438709160582', 1740: '3184436881335535852', 1741: '5805762942747256642', 1742: '7478652512733220686', 1743: '766570757389698163', 1744: '2512346814961359892', 1745: '6735005805343177510', 1746: '6324454162664245193', 1747: '3862493943988412715', 1748: '8642394293468828144', 1749: '3473185444055940411', 1750: '3269885488164851993', 1751: '8945613676693457638', 1752: '2508904341176662231', 1753: '6757776550201397844', 1754: '318951904052750793', 1755: '5090531322583414664', 1756: '3884291561362839346', 1757: '8964412122585477761', 1758: '4913250882493481369', 1759: '4161232106162110292', 1760: '3630144468001158950', 1761: '4957801366570676979', 1762: '2190609939333204140', 1763: '8834356779822358514', 1764: '3746853056228709186', 1765: '5973691847519381699', 1766: '584725475039215926', 1767: '7939651710392803797', 1768: '5848637742305626393', 1769: '3940307365339924233', 1770: '23625053264343968', 1771: '8344184689912001345', 1772: '7614334876627285822', 1773: '5634706203962667503', 1774: '947642205940549167', 1775: '7600253632840639847', 1776: '7082273763951028651', 1777: '5246141644644299038', 1778: '4192326172667715237', 1779: '2038346666458203301', 1780: '715406001842462900', 1781: '6818308023500369068', 1782: '6998290057807710917', 1783: '4601790451622501802', 1784: '9030484820615456959', 1785: '4771703280956337845', 1786: '9042319505331818906', 1787: '8958330808961387452', 1788: '6059457345737298880', 1789: '5195052674759712046', 1790: '1410196403110961308', 1791: '6409133277725009790', 1792: '5626661657638885119', 1793: '9179879420614690447', 1794: '9091771158315767194', 1795: '1246453218617842851', 1796: '3728815277490154198', 1797: '4488464012437086531', 1798: '4217012776222153798', 1799: '9144190321895213851', 1800: '7074211991214451843', 1801: '3706981066449000502', 1802: '3371239597013147908', 1803: '1255429363788893814', 1804: '8345568006997976676', 1805: '9206275686244764875', 1806: '8506521236582392808', 1807: '6947449472089792515', 1808: '7546612901109543094', 1809: '6291442923225351554', 1810: '2752119047024900440', 1811: '805614959043765769', 1812: '7720011455952398211', 1813: '135332569645961696', 1814: '4136187443925457351', 1815: '889305800681925481', 1816: '3356135166980817710', 1817: '8862969808231313935', 1818: '3076374316897797096', 1819: '5277709259355426347', 1820: '3231410140520846312', 1821: '564572820242783793', 1822: '3610084801689226312', 1823: '3908552006934667015', 1824: '7292865377486234297', 1825: '5125145036909317713', 1826: '7486533344878788752', 1827: '1086776593449646556', 1828: '6606499481409674037', 1829: '4176422902180283138', 1830: '8931153647420476080', 1831: '4627817822262492884', 1832: '4929368500838767949', 1833: '2966187278753386350', 1834: '8708752360243767625', 1835: '7717307706597034768', 1836: '3238589569580794755', 1837: '2977313729944642721', 1838: '5946584214253337859', 1839: '7489955918423825768', 1840: '8240210429963382718', 1841: '2084649285833052775', 1842: '7261194805221226386', 1843: '1296438675909954008', 1844: '2755271738371556635', 1845: '4202270317152224827', 1846: '67242350353941334', 1847: '6850880511687131557', 1848: '1323705004474895038', 1849: '6078344289069629246', 1850: '4496395654369317320', 1851: '8851453106026851602', 1852: '2973677681520235556', 1853: '2385947124746715908', 1854: '6133764690084410026', 1855: '5221193982773845879', 1856: '119806503996110046', 1857: '8505548454445236460', 1858: '1945278234078776687', 1859: '5620442535590473483', 1860: '8256920922884334326', 1861: '3088118575759681401', 1862: '7260115012837074269', 1863: '7461966230605672098', 1864: '2956108618420608905', 1865: '3432055592616082778', 1866: '3612010574565570785', 1867: '4178747664009041637', 1868: '4436696703857194132', 1869: '3708317668645277943', 1870: '8470472211415525463', 1871: '5638240947256623536', 1872: '8276638921905327302', 1873: '2382426917414671257', 1874: '4277504556958806803', 1875: '6911092332540613267', 1876: '7503593820279639580', 1877: '5726472656163532877', 1878: '5166023152376080980', 1879: '2270819689943837066', 1880: '7492106985145719459', 1881: '501174938575526146', 1882: '723459724834097281', 1883: '3067810456941800068', 1884: '7183504421866007218', 1885: '3752082673944586531', 1886: '6346300739520814215', 1887: '2068265478067735255', 1888: '7192258715316889030', 1889: '5517401116436959009', 1890: '5531373574865393154', 1891: '5377744807982831194', 1892: '732225345006872595', 1893: '7461900687223497572', 1894: '1052342010704604792', 1895: '3933715962680903331', 1896: '3312802382740140173', 1897: '6645253738893652511', 1898: '6484682671069961166', 1899: '3779205475924196401', 1900: '5871239255891841056', 1901: '3951934460716379725', 1902: '3763285734883690035', 1903: '4351331710881888756', 1904: '2263527763047078846', 1905: '8065326060926824308', 1906: '701949295768128821', 1907: '810067918938531886', 1908: '6387087975193770559', 1909: '6365086022926708021', 1910: '616649108700697054', 1911: '464404353548511930', 1912: '4882127780588218185', 1913: '8198062245752130541', 1914: '4291493300288812940', 1915: '7398631798606661688', 1916: '6526512487506688907', 1917: '2313870711084007638', 1918: '1477834571346921172', 1919: '6925483313724611087', 1920: '6925670792665757873', 1921: '3523968668931516473', 1922: '6579813155637084319', 1923: '4422893742093299170', 1924: '518697508631425659', 1925: '2274503685210781685', 1926: '5914441149326217509', 1927: '2400257488542407727', 1928: '8342973438096245566', 1929: '1037023387911431229', 1930: '7702367835857715420', 1931: '6213925354582969315', 1932: '7932120625439610191', 1933: '8694289821625834555', 1934: '3036926867604684520', 1935: '7629234416111856945', 1936: '6276620921915327444', 1937: '5061825951620102967', 1938: '7963789764073362950', 1939: '3401083608475308196', 1940: '3904210248050890128', 1941: '3423450385060590478', 1942: '3270956690720838371', 1943: '1510321897564962820', 1944: '2708575780282931506', 1945: '7878086133896463164', 1946: '3966324279534387421', 1947: '8274522839089381384', 1948: '6840647354657799328', 1949: '1449057232044065503', 1950: '2960665917532581398', 1951: '7520467742563767493', 1952: '6730370718823182775', 1953: '258386705672313678', 1954: '2188640265057376235', 1955: '8382235673310200820', 1956: '4513595997331796355', 1957: '5521192594818987848', 1958: '4257109999343611847', 1959: '2711304591685155515', 1960: '4812219843382485857', 1961: '57167024322842107', 1962: '3239287231047622718', 1963: '823705168688534512', 1964: '6877210863258588192', 1965: '3627158374105338201', 1966: '9212881193929071613', 1967: '7986077887193730895', 1968: '2228247270302226095', 1969: '4376966258071255609', 1970: '7460414977820080497', 1971: '8919090222223357239', 1972: '4491669206292325427', 1973: '5383470687773556672', 1974: '7948446893985702497', 1975: '6237225386243356575', 1976: '660758538837054786', 1977: '5898042623189598071', 1978: '2480668193641922274', 1979: '594354776006627907', 1980: '5587122886836885408', 1981: '8732843514650058678', 1982: '7988411047591774888', 1983: '2210194375077682787', 1984: '5203073629384068409', 1985: '3406580114446701705', 1986: '1257663557362813056', 1987: '8966465280115387956', 1988: '7484786128448001888', 1989: '4483304456267238355', 1990: '6182995394588967366', 1991: '8693020145305989672', 1992: '92860682507089288', 1993: '2864970131364548445', 1994: '4324468162930245863', 1995: '5860709468180973459', 1996: '3756597728166171300', 1997: '1287901756552786603', 1998: '825212004163502270'})
('vocabulary_word2index_label===3:', {'4689502080141399321': 1638, '935949748105096019': 585, '1135013190742086467': 486, '7601662322270396050': 531, '6755259377998476531': 981, '2936563632577263124': 982, '76251316322796397': 226, '8600390633617640920': 1387, '3283270692786298820': 412, '9156630774705776151': 444, '8293646724873095388': 413, '4931965624608608932': 9, '6455482856502656063': 1388, '8583893266269238848': 414, '8057515460092391911': 712, '7128402373671658935': 256, '7739004195693774975': 887, '2042413966701758841': 269, '1312164508616819973': 1095, '6754977617002317104': 270, '6383679864498497348': 1389, '1272799350744810580': 1568, '5839782150254018914': 532, '6982617424015263755': 713, '8722585993781275470': 172, '4697014490911193675': 2, '1852158852467264362': 643, '2512346814961359892': 1744, '4113529672303259565': 784, '3854199175676498768': 487, '6735005805343177510': 1745, '6090807681448489886': 101, '6324454162664245193': 1746, '7965124443634034243': 1390, '6942933009551442007': 533, '8594215559868837681': 1096, '7602563957335875707': 785, '6270130442784051389': 193, '1744725637042107477': 586, '591874827809654669': 1243, '2957727033863241782': 178, '5284225414690914020': 888, '1490375857486803458': 1639, '8504432231932962955': 889, '7256815922327333383': 527, '9213605013227137867': 233, '1909670907650306800': 1512, '5516931871002486896': 1425, '1126193382942482810': 1513, '4186044945552320533': 349, '8459909699372349975': 234, '3270956690720838371': 1942, '7489955918423825768': 1839, '7289520544701010248': 1391, '1352932315759920358': 534, '276421274438901622': 890, '5377744807982831194': 1891, '4686386086139247217': 587, '6475428416648710661': 984, '258278081117318884': 415, '1811468762119777118': 1514, '1050994023208902753': 645, '7395901697861074527': 1515, '5078457515830483462': 204, '3862493943988412715': 1747, '7109260904701481229': 1098, '8642394293468828144': 1748, '1175002826479428070': 1640, '4059342155144310804': 1516, '9190214082467470004': 1099, '3844703788726806478': 1641, '5840852880867843487': 1642, '1991783242057111803': 891, '6505875937070299339': 1517, '6315309392483863834': 892, '8031637693064444227': 1033, '1739559252355167518': 1392, '3652432494449008463': 1244, '3304995273933712655': 1712, '5547065374611946666': 350, '7010924276002572467': 445, '3924161035524229969': 324, '3587421951489801185': 112, '7496262653600316163': 646, '5307971550110056052': 155, '732225345006872595': 1892, '7237193447717198432': 52, '4081540261748731445': 1100, '5640305545736968503': 387, '6977349729988642589': 416, '7814644688097156830': 1101, '2410784981474048482': 1102, '3174540452399560541': 1598, '8813604130293525651': 893, '3473185444055940411': 1749, '3047203140006640650': 307, '2396085611150343002': 1518, '3454045075070127268': 1393, '3269885488164851993': 1750, '6050797118662646484': 1632, '2943300522656247996': 1246, '1542232383501596031': 536, '3571603611933812906': 446, '8945613676693457638': 1751, '4385853633333586686': 351, '8129153007982137565': 165, '9193714286190364511': 588, '7193881469854268501': 1519, '4976168389897510937': 1247, '123077587949959463': 1367, '8939220707786185310': 1394, '2945591676659457448': 128, '7727523866482191789': 447, '2606984352060215314': 1644, '2508904341176662231': 1752, '4480048862397337587': 1395, '6049758334588147235': 714, '3432055592616082778': 1865, '1510321897564962820': 1943, '5653685018999330538': 179, '9146509192468700917': 985, '383231890572301883': 489, '6961740701383079699': 537, '7702367835857715420': 1930, '7477964425265621109': 508, '8616327459839591065': 1645, '6757776550201397844': 1753, '5535923551616745326': 141, '1544762873717585184': 589, '2084207601051673062': 490, '3865463466240567990': 647, '3716565219723564694': 1248, '2914574150347219426': 154, '5955061777414214628': 1103, '2708575780282931506': 1944, '212983527176510806': 448, '318951904052750793': 1754, '5265476641576484497': 137, '2417376459854712213': 894, '7571379618289910710': 1104, '3061873284528456248': 1646, '5284915626131431417': 1105, '937436842931607517': 167, '3841172786213101111': 491, '1711676439522387331': 648, '3357905707959173812': 1647, '8412622048338198339': 174, '3418975465402388399': 1520, '5090531322583414664': 1755, '8209651626505353779': 590, '1679310042378651050': 786, '3812457715228923422': 787, '6209302970466816480': 986, '9190512938628203011': 895, '1812694399780494968': 122, '4539885023607921459': 987, '490310687477662812': 1648, '7109155344798314039': 1106, '949201624235522947': 964, '3382453256049823037': 988, '506893134880746982': 989, '8520632749868659783': 990, '2874840460379736898': 788, '2729111190626408579': 1521, '5732564720446782766': 449, '3149765934180654494': 1522, '7505564508903239248': 1249, '2874144248539376545': 715, '1596731429083745156': 493, '6236529174658997246': 649, '1462130073299421617': 21, '3856154743789177934': 1649, '6708234822310526870': 896, '7358743120658680867': 198, '5671276587666317392': 1313, '8824437633825893435': 180, '4136385420677230855': 1651, '3884291561362839346': 1756, '2804720921356031819': 93, '9149698301250936831': 539, '7388085101860430821': 897, '5797617924457726769': 991, '7723241944697200189': 650, '6051847744604517372': 1250, '8964412122585477761': 1757, '2584084025551203106': 992, '5933701962734903797': 271, '5833678375673307423': 789, '5097986439797765367': 287, '5127719909274807567': 157, '2822645753203672373': 993, '4046904952599809426': 1396, '4144904362303444936': 1652, '6440461292041887516': 116, '2252347929235450937': 247, '8769048100855794356': 994, '5618127243791055921': 898, '4913250882493481369': 1758, '594354776006627907': 1979, '8610942552777272887': 995, '8175048003539471998': 3, '3951903751153261568': 996, '4134572461810865895': 450, '4182785338248771093': 899, '4972169293096900768': 1108, '2425886132400160849': 591, '5295045465633304607': 494, '4372342278216563985': 1397, '7261194805221226386': 1842, '8517947292668395884': 997, '2296774384623513526': 1251, '7461900687223497572': 1893, '4575888989282246797': 272, '9179561545443484234': 1252, '5086388271920197202': 495, '3928200017056854908': 325, '584725475039215926': 1766, '7878086133896463164': 1945, '3405934480693224008': 1253, '6170121829697589402': 235, '6670672465634268947': 496, '1149442028819396978': 1653, '5074225991224451769': 1109, '4531492575592394249': 326, '7711303308980200160': 1254, '6592842803508310786': 1398, '842846501417201550': 592, '4756734728979172533': 790, '763866869706749928': 651, '3054894766742224422': 652, '6539903023853922085': 1110, '9140852396937582232': 791, '6300335881941851794': 60, '8320373689946067773': 47, '1296438675909954008': 1843, '3228384271303228006': 1255, '957630088479857345': 998, '4233501032149248553': 257, '6006627476560013656': 117, '2587540952280802350': 12, '1046296830523760923': 417, '7939651710392803797': 1767, '43144747296912569': 717, '7867382784409665450': 1111, '6459923699638350593': 900, '7296682137888894474': 223, '365800917376380011': 999, '8817405446696378563': 792, '198848245836228716': 24, '5378699121209676383': 868, '3530498516767785588': 123, '3966324279534387421': 1946, '1978209065824574247': 901, '8671770789948109260': 902, '2407908164985388095': 593, '3333307402327293632': 1000, '1594206519891776533': 258, '6287448850278527582': 540, '4956126618474609139': 352, '7507096822571359314': 1643, '4161232106162110292': 1759, '1396906697095000000': 1112, '5715009224102355943': 1256, '8694289821625834555': 1933, '2158849213884899151': 1001, '8324188154674351824': 903, '127578908485806392': 85, '3531693480182650642': 208, '3630144468001158950': 1760, '1052342010704604792': 1894, '4957801366570676979': 1761, '269620530311797923': 1400, '5947293336854386967': 1257, '1256788148331186620': 1258, '1233447242664302071': 594, '8295464382327368710': 288, '6493581724141198741': 718, '7377762807972831044': 1401, '3751354412512421448': 1481, '2841676129656881967': 1003, '8038679761480862184': 113, '2744606636255106278': 1402, '6759553353177825959': 1403, '4094504804738039741': 1113, '2190609939333204140': 1762, '1804583920579030544': 904, '6782194019060585190': 1525, '8834356779822358514': 1763, '395119817510087182': 1404, '3288086889604257964': 1259, '5935329614274008475': 1004, '6913268882499481459': 50, '3315241959305847628': 1114, '6040061883174458353': 1115, '6527607154405707868': 1235, '4200589112729926854': 383, '7377977482151854926': 719, '7761820454097708905': 308, '360384494934733643': 794, '4552983336052812034': 1116, '3933715962680903331': 1895, '1097982440009765819': 205, '4303166553155574827': 1117, '7389988565950056336': 1526, '3746853056228709186': 1764, '8570540777066461619': 653, '4346530999522010552': 1005, '1029971585579892097': 209, '6834107079157928311': 274, '6899487786424878606': 1654, '6973540846536380068': 451, '253382038868549836': 1405, '3312802382740140173': 1896, '8058793464914429671': 905, '1921090990457446246': 795, '6645253738893652511': 1897, '7768176858078358290': 132, '5973691847519381699': 1765, '7834244026558534803': 1006, '6032657214426631468': 1118, '2312947142927298399': 1007, '7389439858234957818': 150, '8257566556637812025': 384, '944960297467578380': 418, '6820927470420761553': 327, '1600231632806639649': 1655, '5385537249890202479': 1245, '1957590033086240723': 28, '1663857393137459269': 1456, '3358692269505998714': 1260, '3786783429120743159': 1406, '5497802635036879185': 720, '289045265883160915': 194, '7937392720817863936': 1527, '6153924391977698761': 1656, '3519446969668241763': 353, '7394822415369169180': 103, '5675178131106424242': 1407, '1296893385346514597': 1261, '279996543863601173': 1008, '8274522839089381384': 1947, '165795973545465285': 1660, '7865809443640391823': 1119, '5257727564138704831': 1657, '9046073171251654509': 224, '4202270317152224827': 1845, '8404500132661066458': 596, '67242350353941334': 1846, '6604751718355632709': 452, '4599901512332593544': 716, '9181954421703290111': 309, '5706344191507825718': 1408, '5492238387967642597': 1409, '7595304912654505661': 1410, '3841500937953087637': 1334, '8273296485558712517': 147, '5952941860558359871': 289, '3502510845760007338': 290, '3940307365339924233': 1769, '7251741387843544019': 654, '4375644834375081381': 354, '1306763714361703082': 497, '5691180727135013099': 1411, '965420152559594547': 541, '8071006555424837523': 597, '2339809570377332086': 33, '6904365249093892053': 1658, '4730384719025183341': 1659, '5848637742305626393': 1768, '3648949148370823486': 1009, '2812493495238238719': 655, '6850880511687131557': 1847, '2290914319004584677': 656, '1962878356219717823': 1120, '3754053668725070591': 1454, '5160330435175345822': 506, '3174907002942471215': 1412, '8193534055954643057': 657, '6484682671069961166': 1898, '7274130935521678793': 1528, '5513159789605014384': 598, '7077785751173689029': 248, '7839463720297334614': 1661, '4842117090584879970': 63, '8503907262844320611': 1262, '8128542371912229421': 1662, '3236569225419487076': 658, '8602230286237694587': 796, '5985158251850250708': 1010, '4376405455210705328': 1121, '3097968439743765133': 542, '7604888719168633942': 249, '5924179035578229915': 599, '4595742089571904833': 1668, '8655945395761165989': 120, '3593286523786250302': 797, '7951349602759061249': 419, '4498992365827597394': 1413, '1323705004474895038': 1848, '8313816860478517392': 291, '4844983888056131462': 151, '6078344289069629246': 1849, '2168515087433636094': 1011, '214112947209201294': 1122, '3035038556984966446': 385, '4484663127649000563': 420, '2757362362486649844': 1663, '3972493657017129406': 721, '468770502684675821': 1263, '4209647626717354471': 1381, '1246453218617842851': 1795, '863356787255652960': 659, '2316595484593170922': 1264, '6169574178834362026': 1265, '5871239255891841056': 1900, '2185840155926169542': 543, '966315115653954432': 1123, '3951934460716379725': 1901, '4396474713128893708': 798, '9067458034758574441': 773, '3763285734883690035': 1902, '1728510704906079580': 799, '8612737995048623998': 355, '23625053264343968': 1770, '2549689272203498237': 800, '1828317107061269531': 1012, '2149884934935655725': 1125, '7278414220583882776': 210, '3444689810794944326': 801, '1740126037981585888': 1484, '4313812860434517324': 65, '7273415486317713764': 802, '1964167534274656346': 1126, '5095107059002924325': 546, '180604055055169479': 906, '4351331710881888756': 1903, '4496395654369317320': 1850, '7128941744969160079': 68, '8344184689912001345': 1771, '5487281968920391812': 1414, '7237300102721734709': 803, '5703183951095115476': 454, '1039581953154104132': 609, '985918886318729368': 1013, '3067810456941800068': 1883, '4170007516780842790': 1664, '3158986214629900032': 1415, '4404507569092733905': 1266, '315342960042848847': 1014, '4404054447851686653': 1267, '4780628265863036144': 1529, '8424110050280813309': 356, '6175062003741472300': 1530, '5287905756596786919': 1531, '530848751124349321': 292, '8292841471210057658': 547, '203251463786508407': 907, '9066598418877635793': 804, '7866576113340895115': 908, '3693801457711833752': 1665, '8632540229807721618': 1666, '2951766750408260687': 1127, '7614334876627285822': 1772, '6977297052051277633': 1311, '2140361463758283053': 1576, '1419888939115658319': 455, '4530635517516786435': 1128, '8365788239271014215': 1268, '138889680107600025': 1015, '4247291014640570922': 1129, '8532503536113702039': 1532, '2666165647163340944': 805, '7342156431046465584': 806, '5587122886836885408': 1980, '546485900534542453': 1269, '8314147124186495753': 236, '4828857202132424980': 1533, '2036843942643102910': 807, '6531816480725651453': 158, '8767951075485440550': 909, '8851453106026851602': 1851, '8075733003501829416': 386, '3939940843357256698': 456, '2973677681520235556': 1852, '3779205475924196401': 1899, '3487209931552756601': 910, '3247902953025099742': 1270, '7388356979267008104': 195, '2324450162924245773': 679, '8592873429166825073': 1534, '6940355838132160535': 23, '4941167822436894045': 275, '8930028685451892597': 1130, '6259864339809244567': 66, '8065326060926824308': 1905, '4464289448417062777': 1535, '4647222608650438774': 722, '7482525821744759509': 808, '7361228668063598860': 1536, '7483543763655495143': 293, '7358589937244777363': 80, '5634706203962667503': 1773, '8577537092594110418': 1271, '6756871902441838709': 809, '5851127098417361943': 1131, '2986674727438907115': 660, '5399048486759263580': 1016, '2562570278968530697': 1669, '7804861921957032342': 821, '2868290634651933512': 1132, '1251238547469584119': 1272, '6685544489022578691': 498, '7600253632840639847': 1775, '3168235720721035056': 499, '7082273763951028651': 1776, '7139336849268940543': 810, '4091858151482669277': 661, '8191454429180787392': 1417, '5935542858156478574': 1017, '6076847073309671938': 911, '7190905870850613172': 500, '1595537184985648316': 1133, '159483088220219835': 315, '873181404731804450': 548, '4971742318987291185': 225, '5502528845814007324': 1537, '4051456752430124035': 1135, '2825319746094646426': 488, '3158683775760375553': 1136, '8732843514650058678': 1981, '1026774652826195893': 912, '1958042590336440825': 1273, '9095332521007865159': 1137, '435735599673143337': 1595, '4817185265171864610': 1018, '2904932941037075699': 470, '1778799897295902095': 1138, '2137715778200077463': 811, '6618922083065447616': 723, '1386735796399192077': 724, '8733716205359733790': 329, '4489563673511019043': 725, '4599393636727163429': 1670, '2385947124746715908': 1853, '7382441326522573326': 70, '741041172583638581': 1139, '6133764690084410026': 1854, '6785477830855995834': 1019, '3349960185284564716': 549, '363026071972955475': 1020, '5613061346723845145': 1021, '465065448523711562': 601, '6254806834008898035': 501, '1553849747662134917': 1607, '2747980002569958761': 602, '978567319737022832': 206, '3696877490134192400': 502, '7497132452884561764': 1671, '5691190333995993179': 1274, '5221193982773845879': 1855, '3972456192477785643': 1672, '400747363837837128': 1538, '111444386959930591': 211, '2034901556203965439': 1539, '2038346666458203301': 1779, '4284828052993734182': 1275, '1509707312768337838': 812, '8486098563596716567': 603, '6686716088012864449': 1140, '1078453515786483402': 1141, '6216930488646770123': 1418, '548176348047239669': 260, '1907358896483963221': 1540, '3747151213341814246': 212, '7552404094855378396': 813, '3383016985780045156': 1541, '284442997366536173': 149, '1132414472776926617': 1276, '4042431966963759443': 457, '2183097528579409954': 213, '7283993654004755131': 1419, '1516199613903032963': 261, '2515257722796787281': 1142, '2379261820462209275': 726, '810067918938531886': 1907, '2208197439532367343': 727, '8271228722369845310': 214, '6277846260132427404': 1420, '119806503996110046': 1856, '927157639555241548': 1673, '7988411047591774888': 1982, '6113530251130504317': 728, '1528665449659634829': 97, '3251367506358243575': 1143, '5254885710391138776': 1421, '5200726113506927935': 1144, '8735763339754712849': 330, '3627686927328132632': 662, '3926387480955996855': 1145, '2976933761878585560': 663, '3724597838339541191': 690, '1052210788805438774': 357, '1945278234078776687': 1858, '5881091356465260065': 1422, '4885267324371405324': 1224, '5620442535590473483': 1859, '715406001842462900': 1780, '625653602673789324': 550, '1604866719326634456': 604, '288666390873265147': 1674, '1578624787506041748': 1423, '7449878083916369913': 664, '8071059233618203439': 1146, '4779086475169195362': 421, '377872747222364124': 1230, '372824948001296711': 1675, '7812202290035421510': 422, '5421686840411739502': 875, '4610596224687453206': 665, '1685618881903601535': 1424, '5702343302237640989': 1023, '8256920922884334326': 1860, '6840647354657799328': 1948, '1449057232044065503': 1949, '467854653740151741': 142, '2284379093365280181': 605, '3834635940635905116': 666, '8707554510573683939': 667, '7032762215239632923': 503, '9082490625628998409': 1147, '747962002515958563': 783, '7521397384381138775': 331, '3065185060409823831': 504, '191637238080651225': 729, '5281817566948863661': 814, '306626713584702071': 54, '5685602503393574336': 983, '1239585011552693824': 668, '721980443721545552': 1024, '3713654557729491068': 1025, '2960665917532581398': 1950, '7063855203073696823': 551, '8877588822182413621': 1716, '7520467742563767493': 1951, '1763510825413002970': 730, '6730370718823182775': 1952, '2325532988800688306': 458, '1195896392220930869': 1148, '6925670792665757873': 1920, '833074414957851585': 1149, '6365086022926708021': 1909, '7653703019053330516': 1426, '1426144244057814596': 1427, '2865051795429918701': 731, '4046496764963548976': 1278, '266612986122336493': 1559, '3553102336811813291': 815, '8956015930535800390': 1124, '7526284554176419967': 913, '5397363254409200346': 606, '2210194375077682787': 1983, '7911910053664227396': 1428, '7149588690342184679': 310, '1379124819653208034': 423, '1870872991887862017': 185, '3516675537008870086': 576, '3088118575759681401': 1861, '3418451812342379591': 1279, '4653836020042332281': 1, '6818308023500369068': 1781, '7260115012837074269': 1862, '1368382100401604712': 1542, '6529847503002197165': 1280, '4255906145781727386': 1281, '7790543634407640064': 607, '2163040607327628261': 1282, '4687652401249709790': 1429, '51758657721381745': 311, '4393756319132924838': 1430, '7292395895641695708': 817, '2638813346466022112': 1283, '6621328949299074002': 186, '8022905568116914967': 669, '1883376476350161480': 1150, '6195781391249929126': 505, '6527178798961531478': 1543, '2611831146743123406': 1107, '1033816721290613934': 1284, '3787020472867489510': 424, '2802807297246536023': 425, '634630012192348800': 459, '3717741907951064981': 138, '3576039990329248748': 1285, '6797468512182240005': 312, '6010787275257571576': 57, '616649108700697054': 1910, '9135942013846644865': 460, '303429875914004210': 1544, '1840848880823843395': 294, '3620560314982595526': 237, '4931893522763265934': 426, '8753586927626560871': 98, '6185119154639737496': 1151, '2171184283895460175': 1026, '7283655748413496857': 1286, '233310241887300764': 276, '2901486774679816593': 1287, '8255556364363894453': 124, '6998290057807710917': 1782, '1293257957773648492': 1152, '4585410756047464122': 914, '8556653203196579720': 1431, '2749566582179357212': 1545, '8240034336161147774': 507, '5942580068307165204': 1316, '1287901756552786603': 1997, '5126229382986482646': 1676, '5203073629384068409': 1984, '7932776971796693414': 250, '4986547532010670575': 819, '7065221060437823699': 732, '7169012814272124935': 1677, '3698337232083548513': 121, '2782670153102643340': 820, '953535750771065392': 196, '6508005928201477851': 733, '4379247820452209357': 1678, '6981148859720148373': 1153, '8852526557827312102': 1288, '496702181072361916': 670, '4628321180307498093': 671, '3026760652624195547': 31, '5040760839149945887': 1432, '8240210429963382718': 1840, '4601790451622501802': 1783, '2631505835963473775': 822, '4695031998360726172': 1433, '3276544275225902971': 1434, '9030484820615456959': 1784, '7468440516386812822': 332, '886720308663584531': 1289, '6719184207199359959': 1154, '5395292281504366735': 1546, '6289779852907129222': 358, '7461966230605672098': 1863, '6371157878623138908': 1547, '7178462458998249847': 734, '4290228299766776524': 1501, '5273197481621614579': 735, '1240792551973430931': 1679, '3368482620480350745': 173, '6957390495980542955': 854, '443748424298996449': 1680, '6694271821571834609': 509, '464404353548511930': 1911, '1498101358485403935': 916, '3308846312896048251': 1290, '1966338279544387275': 215, '640353611485256377': 510, '2244015987817045493': 48, '526142875017934439': 1156, '7318907785137551256': 673, '4615229981949418360': 295, '2956108618420608905': 1864, '2724031079357275465': 1157, '5091735158287767326': 674, '4783946863855560712': 73, '3166881464375738634': 1681, '2378023649280419876': 1435, '9038362052565301884': 1158, '4678726459447663357': 1159, '6018641953300645757': 1291, '4966205278807386328': 461, '4645077198390733438': 1682, '8753953007931296119': 1160, '8128505679583243627': 917, '5483703385391965908': 918, '4317515119936650885': 216, '4771703280956337845': 1785, '309958747543063025': 1683, '1939629710310803463': 156, '4882127780588218185': 1912, '7244570757266327934': 388, '3291559261920410222': 608, '6522242102892532323': 600, '2144284217804152768': 511, '839691564858654120': 389, '787153473600490253': 736, '8543134814286327823': 1161, '1953157642467237515': 1548, '569940021530854113': 1549, '6689024254240076864': 1292, '2347973810368732059': 14, '3880682617352937394': 1684, '7473164687826110412': 359, '7312924884970992973': 1436, '9068963265682720586': 313, '9042319505331818906': 1786, '5837628487243570427': 1293, '5461355180342040702': 1550, '8958330808961387452': 1787, '8198062245752130541': 1913, '3406580114446701705': 1985, '982546890824575042': 390, '6059457345737298880': 1788, '6719522112518617217': 919, '3296456675883953898': 360, '5839832565699655443': 187, '5599700847208221405': 920, '7057974542385626232': 427, '8592306961204380723': 610, '4291493300288812940': 1914, '2853547827536559669': 1551, '9198481215327194426': 1294, '5582178418720239919': 1437, '6857749722158756463': 1295, '2478695500618560154': 1685, '8930817928939351690': 737, '7727115678845931341': 938, '1833966078556927530': 39, '5195052674759712046': 1789, '1602071285682694082': 277, '1840534911833780111': 1439, '7397800594994209068': 1552, '8339019570260683343': 1440, '7259175568841790177': 1162, '5948340753284292141': 1184, '8402615280886071963': 1163, '5029367761183847365': 114, '6395945633142271042': 823, '7265949492506113547': 1028, '807273409165680991': 921, '5945192601099058576': 1441, '4797226510592237555': 99, '1945786109636206690': 1164, '3812630496047239920': 139, '760095082858047992': 738, '258386705672313678': 1953, '4350774118563465177': 1553, '2484450019658444218': 1165, '1160326435131345730': 528, '7703565330513018712': 611, '8793023054666221242': 100, '4697494136307113064': 625, '4840599462703862798': 1296, '8965261444411035302': 739, '1539232755387832050': 612, '3594347865816291236': 740, '8490591142396750145': 1297, '6152189531591576162': 824, '3578642787560041946': 1442, '4187026665048715788': 1443, '5932391056759866388': 6, '8977315052041277515': 32, '6035861019586388180': 1686, '6904717554955151340': 1444, '8885069682816774814': 922, '3895054941927964525': 1554, '6396968224948153401': 110, '2369354056312575099': 675, '7734445005828304333': 1298, '3484587020435445267': 1445, '7398631798606661688': 1915, '8109793286902118151': 825, '2454705495458529924': 826, '7074431704504128900': 1167, '7612369293897193240': 676, '7637660878558952620': 159, '1836555187162579672': 1687, '3247029476127723832': 1446, '6526512487506688907': 1916, '8604769718409632655': 827, '358825977155420974': 1719, '2578011073631737197': 1299, '3052663234141228029': 1688, '1201071336132923959': 428, '4444970904898179447': 1555, '7782743223410052415': 1300, '2348439063888615756': 614, '7517165859759106844': 1168, '2919247920214845195': 160, '8132909213241034354': 15, '730827694591115921': 391, '4826295158480970984': 553, '5353288621685179703': 1169, '2084649285833052775': 1841, '660152330539825076': 1301, '2024918785185496622': 462, '2188640265057376235': 1954, '8388675223914479274': 26, '4035035703637267442': 429, '8234985547322968859': 37, '8923423159850053928': 698, '4458245011278275078': 677, '7006422955498725720': 1689, '8382235673310200820': 1955, '1277067587393743060': 1029, '4647413168079516052': 1556, '266893549648994617': 463, '8862426237057348309': 1557, '125312951999750184': 1302, '5090670680639488645': 1030, '6833660726951706273': 741, '2872176636559084285': 432, '5264509641502027935': 1031, '1410196403110961308': 1790, '6409133277725009790': 1791, '2289743852863129386': 1447, '5626661657638885119': 1792, '6283425693557299769': 554, '1702694829810068100': 1690, '1692861144730989249': 1558, '146867728338383595': 923, '9179879420614690447': 1793, '7036693081856171470': 829, '7596780943228995766': 259, '7116875195131178045': 615, '4627183237363916621': 924, '8091907016971478715': 1448, '4677755972317734407': 1560, '8690965822342756180': 108, '1797701934329285597': 1561, '1715880907958721415': 79, '8591725246688996314': 1449, '4136380367039673024': 1155, '5685149382072526764': 925, '382893984981043609': 830, '8229741297693398188': 926, '2913093524691408320': 1097, '3728815277490154198': 1796, '7808628529824183580': 362, '4488464012437086531': 1797, '1247043476329724186': 168, '4972909213208903305': 1623, '5963738322232438878': 1562, '1420790574181137744': 392, '7158068093440012389': 1691, '4217012776222153798': 1798, '7792886053889220161': 227, '3886495748707495361': 1170, '397242931505564187': 1171, '2850367919157922070': 1524, '5740148371925933882': 1032, '9094462885938385286': 555, '2597010810359075675': 512, '1934955940447177718': 1172, '6324291111388754690': 1173, '7515893735868429527': 1174, '6941072618461313849': 1450, '2129487364414263467': 1303, '6810657854754527644': 1563, '2148914447613726391': 742, '1964490991768378771': 1564, '8509302583613116358': 831, '1091735150683667954': 464, '4328908197646748895': 513, '6282754433984310142': 832, '2630097082058343181': 833, '8934878948902408411': 86, '5154428478508391411': 143, '7074211991214451843': 1800, '2299947672181109599': 197, '8472140268318420389': 1565, '7083407008369163240': 834, '5710723271693897389': 381, '5363951565728187051': 363, '8697050490955193511': 22, '4248035397448942774': 1034, '8300353881995851996': 1566, '2027693463582123305': 927, '202658488388760612': 1567, '4638359948015624821': 616, '3706981066449000502': 1801, '2537905926744578235': 835, '8091634157538766119': 1027, '8496378976475952232': 129, '6758942141122113907': 1569, '1591780979474750959': 1570, '3195914392210930723': 76, '1257663557362813056': 1986, '1477834571346921172': 1918, '2523521411748733187': 1451, '922729887773674204': 1304, '945573676653457614': 1452, '5782598437912985562': 678, '1918603044132414919': 617, '3738968195649774859': 38, '8252369929269451135': 1305, '3371239597013147908': 1802, '4513595997331796355': 1956, '8183806489787866605': 1306, '1812995334969284166': 1062, '1125547749381005553': 1453, '5150083372514325217': 1667, '1255429363788893814': 1803, '8057405216243595195': 169, '7118972759448144772': 1175, '7637995288174517586': 1571, '8690124345701380826': 1035, '1304753272343710201': 393, '2838091149470021485': 78, '3900318848301728120': 1692, '447621759006218148': 743, '5247895193618942845': 1176, '2700764582293572246': 928, '6306904715218704629': 130, '5630647833836040328': 251, '9194725009816296853': 492, '7100390008334527804': 1693, '827494981788980052': 246, '1633889204737016877': 1307, '7981154638613983862': 1308, '4453988975677283684': 836, '3134999190540085909': 1036, '6328008869454085969': 1177, '248035954018101491': 465, '4178747664009041637': 1867, '5528371788726186348': 188, '4635541421251975104': 1572, '818287567137330443': 1573, '3541067235871077620': 837, '6851000582045015586': 838, '5389453858436958168': 839, '3685645489515579384': 1309, '5297443792466905800': 929, '2061736283751455185': 840, '1919404456791921936': 619, '8475158770269030212': 364, '6940383844640051830': 793, '4619805718368927775': 238, '7256910573245396514': 1574, '71019233546203287': 930, '8164473300321350006': 1178, '5838214150045022184': 27, '3025995229993781911': 556, '1729853366387155808': 1037, '5521192594818987848': 1957, '6925483313724611087': 1919, '4444538809815942711': 1455, '8292500896134696267': 595, '744588636265106420': 744, '7755760251312795490': 40, '7702329302227641319': 1038, '1063815048865447049': 1575, '1790630374868647951': 557, '5166899464429738864': 514, '5182171624642467270': 558, '4060949394271665296': 680, '4507987928147477649': 1310, '6744898938415762500': 1039, '8754995617056317074': 328, '3601908083158555273': 1457, '322011515950961818': 1205, '8626700618973750024': 931, '682625880884350440': 365, '8935949732944907212': 841, '1185488181830527625': 515, '3603500707650257526': 366, '5735861801184653052': 115, '3284260092574278990': 681, '2834103079369928763': 466, '2858911571784840089': 1694, '5872443091340192918': 17, '8317207117905033099': 745, '8932546057542867495': 842, '6906396683286432414': 367, '7236666175467998449': 394, '8345568006997976676': 1804, '8974466804582129986': 163, '8483512903543904044': 1695, '5183558434685668615': 746, '3228559176932703230': 181, '3151738353564633688': 682, '4620290839673975123': 1179, '2457803616542404093': 1312, '2415173524227782861': 1523, '6409557685183119664': 932, '9206275686244764875': 1805, '3890819584814276652': 933, '5081547367786156934': 1577, '5312820382794140407': 199, '5401140137601462297': 934, '1716547219669564708': 96, '2277518557160807369': 843, '8966465280115387956': 1987, '7588378164638163170': 1459, '3710154354006596575': 104, '3655804394968164826': 175, '3543938934441229122': 747, '2063727883907680094': 683, '6183788489797866727': 748, '8671398044778357164': 1650, '5246457218661843199': 217, '5260649651987088163': 620, '8368395784867923046': 844, '3506606446388448264': 559, '3828720201351423909': 935, '4864988131354548295': 1183, '4257109999343611847': 1958, '2317497119690650259': 1696, '6736490454993663221': 1578, '8506521236582392808': 1806, '4019630484311065906': 1041, '1843921060214341675': 936, '5113954673580054853': 1579, '2711304591685155515': 1959, '5388067101870430963': 1460, '2460528390051567153': 1580, '3746420612845027050': 937, '8046021685069769060': 621, '4047806587665289083': 395, '6947449472089792515': 1807, '8330177318910444596': 845, '4470468211371525147': 560, '2816249700493135244': 684, '8075550195042412872': 1314, '6762330993624022175': 1315, '7160549933950402575': 1180, '9119389643029055864': 1697, '6583250835532759869': 915, '5606269680673074664': 1317, '6815248286057533876': 333, '6416634393997402328': 1581, '8780119653771094858': 239, '5907221298687398924': 81, '1064152954200704555': 622, '1829585873417382293': 278, '5301319902100253987': 1610, '390427073704203351': 1318, '9061828969851678390': 1416, '4248039953806100751': 200, '1757481363245650831': 467, '4743207609281160647': 1438, '7739171563081867691': 1461, '5013142463389228316': 1698, '6718676536613592056': 1181, '7697921317504152141': 1699, '7046289575185911002': 5, '8608059476818882548': 240, '3815137940251520680': 1042, '1129282008947139174': 314, '7546612901109543094': 1808, '2353969577414666795': 749, '7467981654311152612': 107, '2600368633583640730': 1583, '7484786128448001888': 1988, '6693924458286834451': 368, '2382911985227044227': 623, '6125464748666004102': 369, '42427966967759255': 624, '4408042312386689938': 1043, '3027130786863096591': 561, '7767289030705899707': 1462, '1616786109481698063': 1463, '5773269986924675698': 1584, '7154752383833648999': 61, '2113178690855415018': 1464, '4812219843382485857': 1960, '1805719959600766714': 939, '6746100647744083283': 87, '7710528027833427554': 262, '7625780603244790259': 1319, '3894468979819174909': 1320, '2615425226049888969': 940, '5636960665828891411': 1585, '7578315642593364536': 1182, '1541526768635629880': 846, '6595993041154510107': 1040, '2820237770657228086': 1700, '7327336430450495350': 62, '4926226324555892746': 109, '5997976963484475428': 847, '578156641762363345': 334, '6162947324507053330': 750, '2241488058004423468': 1185, '946699215012338966': 1186, '4921212371110555224': 1187, '7278142043567277172': 1586, '6915348499066159040': 1188, '5513826101327857645': 7, '9020242569147281890': 370, '442912898635693042': 848, '57167024322842107': 1961, '4436696703857194132': 1868, '8816271700543135410': 1465, '3522198575349379632': 20, '3197365677142313316': 1321, '3239287231047622718': 1962, '2749323491628044459': 1189, '4040879839908947110': 849, '5695691654483839948': 751, '709944893639249564': 1466, '7876300673940894569': 850, '1337962690305221735': 1228, '7623698017321962840': 516, '6945469483209653697': 431, '2432174593375084007': 1044, '9045161734922059274': 1467, '1298289728721376820': 1587, '6482420820999758130': 44, '4756075562652254270': 1468, '7783767359467907092': 1701, '3701339131568161889': 1702, '8271038810799090353': 1703, '1542494247795425821': 517, '639720505558266916': 1469, '8467862653556151381': 1322, '463750704786845608': 1588, '3645735357732416904': 396, '3381299024709108173': 851, '3708317668645277943': 1869, '3710958733904838649': 189, '268886646698338239': 397, '3941819252743792375': 335, '2034168062596988170': 1323, '2307848549279054583': 752, '5041846259853346443': 1086, '6932639971019692365': 753, '4349610335189937101': 1191, '2271656070098079690': 398, '2131451573312950491': 518, '1607863647374231353': 852, '2615243982215418774': 218, '2420025939860659200': 1045, '6962046606718337437': 241, '512794068235242963': 853, '6291442923225351554': 1809, '4970306416006110305': 279, '3523968668931516473': 1921, '4811575033152182097': 1046, '1862396277886347795': 399, '6206436693745657677': 45, '7831006970405086046': 176, '5630468373378416690': 133, '948223640148622714': 1589, '5163066325262054561': 1590, '2263527763047078846': 1904, '9207116738755198978': 562, '5292942471963059053': 1704, '8055035767327224979': 453, '2620423314205594477': 941, '5928085201623066659': 1471, '5779833930274639409': 755, '8804742921198031305': 1705, '4609970549280340514': 1472, '4229259523827570399': 756, '738845194850773558': 201, '7207130738765198908': 942, '1050656117889645239': 400, '3238589569580794755': 1836, '3833854281930673428': 1192, '7476760589625268543': 0, '1597326573998880188': 1473, '6022205592682717526': 563, '6362359524660190859': 757, '2060630291013198133': 1324, '2048928297371666315': 1325, '2752119047024900440': 1810, '2589127531890201053': 1134, '5347872809635730844': 758, '7637093652853037385': 1326, '4735980801943654043': 134, '6233332241905300962': 36, '3261043446953365142': 1327, '825114746136838945': 1193, '805614959043765769': 1811, '8485136373063472642': 468, '2353421622418180700': 564, '6579494630017862290': 1166, '5725284888663475863': 1194, '7253987629229636499': 1474, '6076152359408392737': 565, '951420572902318966': 1582, '3490469538808305901': 1047, '6192377716103890229': 855, '5369979592181110026': 361, '4291107330729431469': 1328, '6034172062640988486': 635, '7277482017937763537': 571, '8470472211415525463': 1870, '5252993787219186549': 1706, '8963554618409314978': 118, '7504765820134758058': 1049, '2707519855514695474': 207, '6483290456065237989': 1592, '2327504309227366054': 1593, '3250728804941389085': 1594, '958161591095441794': 316, '6934860948848408209': 519, '8461136052903019092': 220, '5432793419857406993': 1050, '5770137307181057796': 1078, '464098448481254928': 35, '7720011455952398211': 1812, '521166281704794588': 1475, '6159931062146415300': 1476, '135332569645961696': 1813, '2819800414696664771': 1195, '518807297849537945': 566, '5638240947256623536': 1871, '7261047446949365330': 686, '6149403568898773703': 1477, '2056976393823539020': 1329, '4136187443925457351': 1814, '2288652390863265229': 1330, '3471965724367244818': 1331, '889305800681925481': 1815, '3356135166980817710': 1816, '2600289688622465762': 469, '3359253792326581125': 401, '465527815784376703': 1708, '813840053768678454': 219, '5246141644644299038': 1777, '296557676636955101': 51, '9189723362012067754': 856, '5533197189576067599': 135, '2158546774951374352': 1478, '5732944515355059947': 1709, '4747555070055547950': 759, '2627298052801704596': 687, '4960981578552030421': 297, '3028813107806213121': 1596, '4126348383745483901': 280, '1619650717341926052': 1051, '9051597753027124816': 1710, '6128804744224159220': 46, '5804619920623030604': 567, '4840715880086842414': 1332, '7592036674792056069': 626, '5595879090352905906': 1196, '277167144631131335': 1333, '7837646487489571053': 1597, '4192326172667715237': 1778, '3937009208401626102': 944, '4138657073201347687': 336, '9191306710136658354': 760, '8252138064428255186': 1628, '4928686579058965613': 402, '2840784003483222292': 1479, '2667619839677460873': 761, '6935423857365477159': 857, '881452243543100756': 263, '3613386045962125096': 1711, '2280739588051656760': 945, '2828956716673540412': 535, '844641982688873856': 946, '3388534223137478077': 29, '6437230815004219214': 520, '850238065607344830': 1335, '2259482849339758626': 688, '8276638921905327302': 1872, '9070887554893837092': 433, '7985176251840250566': 762, '2820174307247949506': 858, '9165709055872875620': 859, '205887421398457440': 161, '2053435107881296665': 252, '6598132981359524758': 765, '5727179283235569021': 59, '2190087081896469323': 144, '1057952542303625894': 1480, '8691303727714013806': 689, '3820922726386715360': 1336, '1158968214639900190': 1337, '4047468682330031577': 371, '400525901828896492': 860, '9035795297707480288': 1197, '3932429241903732643': 1713, '591743024806900405': 1599, '2864970131364548445': 1993, '8862969808231313935': 1817, '8019634484099065422': 1600, '6579813155637084319': 1922, '8210095891948580913': 947, '272391079030611182': 131, '3171150797683574404': 148, '9151760353406633174': 1053, '6236292131168251599': 1601, '99435378441769379': 1338, '183764869825974842': 1339, '6317533119990651087': 372, '8325178746224233621': 1002, '2382426917414671257': 1873, '7394364441236973511': 948, '1315223959315847746': 1340, '4422893742093299170': 1923, '7759352448651569694': 861, '3076374316897797096': 1818, '1373190831171479026': 202, '6179724419779689236': 281, '252983656834218346': 1341, '1689319711084901730': 337, '1250723830949130791': 949, '2470455971679919165': 862, '1395928881946561577': 1342, '3410895965080918002': 1198, '6831250779365929435': 1482, '5277709259355426347': 1819, '5289642852158128373': 338, '3040328401474530651': 152, '7642403449709161291': 1199, '518697508631425659': 1924, '2890682584037275637': 1054, '8802446458100491067': 950, '3982701891595575995': 627, '4815275050173093300': 1343, '2274503685210781685': 1925, '5939784184924423143': 339, '4465753277789317273': 1602, '5156370773381774555': 403, '2605430974769704433': 434, '8708763560325368868': 691, '3617227602782777289': 1483, '2059083978137705082': 863, '2409703646005059599': 404, '5548317348868241000': 545, '8690716061410596833': 1603, '7432059592404082070': 692, '8151293691584183256': 1604, '8755559346786539225': 1344, '4312939383521141502': 864, '2818819550873422543': 1714, '8965027945689978971': 1345, '823705168688534512': 1963, '3915577320911199709': 1200, '1627700927594133302': 628, '6877210863258588192': 1964, '3627158374105338201': 1965, '9212881193929071613': 1966, '7084375848696637802': 145, '637187908693888049': 521, '6118242661945663443': 568, '3134435460809863982': 1055, '7489973769578614435': 1605, '3231410140520846312': 1820, '6003831336496592001': 1715, '3797085517647336536': 472, '5905055941872077172': 125, '3009772007719204112': 1485, '867255783834664811': 1606, '7986077887193730895': 1967, '5271733747232358004': 1347, '1913077480394809437': 1486, '8138693073229347555': 951, '3206175865018905637': 405, '4899469786434878724': 1056, '8200594842344508448': 763, '7733780507306249147': 1348, '1950281665227851925': 296, '4517730048981926303': 1057, '5715197946812265320': 865, '5914441149326217509': 1926, '10765275175571242': 41, '1632756942582150130': 1487, '5703675413724357458': 473, '5359369588772834743': 754, '701949295768128821': 1906, '6392418462462658998': 818, '5607854572232625967': 177, '96415308824933540': 1201, '9079470749530129591': 1058, '4277504556958806803': 1874, '5197200702793464225': 340, '8500993396239092897': 1059, '4324468162930245863': 1994, '6691599696714076992': 764, '2400257488542407727': 1927, '8342973438096245566': 1928, '821606580646429455': 1202, '3171321284640461062': 106, '4054009175749343326': 1488, '4634825204717668542': 570, '6599837848209223060': 1349, '8259133109129167396': 522, '8308599786100622347': 1203, '8064131816828727404': 298, '1412463047763197934': 1717, '5475971414084036126': 1718, '7070869554647836474': 1204, '8217837422471420147': 953, '6911092332540613267': 1875, '7129272008741138808': 10, '5821099149145127900': 1608, '7042349381148393717': 435, '6382915985015043807': 613, '3473982758005783430': 1720, '5243683122430849003': 693, '8936615423548208677': 1350, '3167668871180030042': 1060, '4924342969990018100': 1206, '7580468821069307570': 828, '7133408858573433781': 629, '8417849371287704224': 1061, '4921793805334628695': 954, '2645598356987416013': 474, '1713991590099499492': 1207, '564572820242783793': 1821, '5844864887297130495': 126, '4414099537132285176': 1208, '6826175758878956514': 166, '1361918053618377737': 373, '7977896420088943791': 1721, '7594028509049751156': 1722, '2727382865693190624': 475, '6655927395515165363': 140, '6071124048045151919': 618, '4373313832006480501': 1351, '1159514227928535208': 1209, '1054876766752224572': 1609, '6636530880935474404': 955, '2482115166690201194': 952, '825212004163502270': 1998, '3610084801689226312': 1822, '4155499018100127309': 341, '1037023387911431229': 1929, '8377411942628634656': 4, '429636223750539488': 182, '8352857959906729837': 1352, '6839713564940654454': 956, '2228247270302226095': 1968, '4195795391451929480': 317, '3068146477308733962': 228, '2503896161629471198': 1210, '766832051768165842': 1211, '461073897687077027': 74, '4925324689486413355': 53, '7071261048854153122': 264, '5563552157167479274': 1611, '197283758574659585': 1353, '5046409709390354060': 694, '4925534126353181729': 957, '2673780766719859192': 1470, '6213925354582969315': 1931, '3369244421450766217': 1612, '1821708782890605889': 1063, '8083178479064909945': 406, '1520473749037658594': 630, '3908552006934667015': 1823, '7823160150035726894': 1723, '2225963092592501897': 1613, '7102537040333046812': 695, '4129149007954137465': 1614, '7292865377486234297': 1824, '2377671429476999320': 1724, '3732595370398382489': 1064, '2929521564160845391': 1354, '4376966258071255609': 1969, '129145008166137909': 1489, '8476641588870267502': 49, '1893973624410841323': 523, '9071279048844153004': 318, '7503593820279639580': 1876, '5370870069386720811': 90, '6718160118244358137': 958, '7483087310385189621': 1357, '2787171473654490487': 8, '9176307901497282391': 253, '282465978976186486': 299, '3833526104478731847': 696, '4757324986659053904': 1065, '3090002907972924303': 697, '6519476806919078477': 1066, '4160758010753708150': 1346, '4257846564893706064': 569, '4039480952417102913': 265, '5942033904153309241': 1355, '4637223908993888877': 300, '5010906275996572633': 301, '5125145036909317713': 1825, '5572121657225835907': 162, '7820378771178228515': 1490, '8491251183816682310': 242, '6146340868276977273': 631, '3042294965962757528': 766, '1534981837265632499': 1725, '507963918987245871': 960, '7460414977820080497': 1970, '1835741376927652987': 477, '3595861090298905936': 1491, '3905069941818076706': 443, '7486533344878788752': 1826, '8030347819806455716': 866, '815198876455192216': 153, '8674249008302499974': 1356, '5726472656163532877': 1877, '4175044003751472418': 82, '5166023152376080980': 1878, '2696736445927423374': 342, '8360291425523348325': 1067, '3221108052186253383': 88, '5996724989260181298': 699, '5821744782934605757': 959, '6094988058243923104': 64, '6726696617713153281': 1068, '490895094889249343': 867, '703579324144045970': 632, '2919541457568923211': 229, '2755271738371556635': 1844, '5064872869819184144': 961, '2270819689943837066': 1879, '6264232204593613606': 1069, '3760933726347836551': 633, '1365937918157381084': 1726, '1830804034504888946': 1212, '6432674419326406562': 767, '7492106985145719459': 1880, '245170073794392183': 962, '3313675859625516103': 1615, '488107960667424881': 1358, '6209906485884066381': 1213, '2198834017210585710': 1616, '5769304345757607597': 700, '2428977755640385826': 170, '1315009618498473661': 1070, '4620747219322851425': 768, '5244246852161070930': 374, '1848585092512027184': 302, '1282613433387309359': 254, '7308850312940048311': 769, '1086776593449646556': 1827, '8919090222223357239': 1971, '6606499481409674037': 1828, '501174938575526146': 1881, '5653231896805341062': 634, '2473845757256782581': 319, '6491404294933335370': 1071, '5247920953015099584': 34, '2176113691990522905': 55, '3638162940470731911': 1617, '5872703085284095974': 770, '1929640564915846432': 1214, '4491669206292325427': 1972, '4854080174949497665': 171, '8904735555009151318': 524, '3804601920633030746': 91, '1568371821273406570': 375, '3588426558825683351': 771, '7933427407380960960': 972, '1191558361922411092': 1359, '7629098500201070516': 1727, '7301680710575105489': 1360, '9131224113041702374': 273, '130333997183751313': 407, '5603787840210684334': 77, '7506384235581390893': 282, '7924497970773019201': 1361, '9189942151584218583': 1362, '447397644319813678': 1215, '5756731651366776550': 525, '8298071112958190037': 303, '6706204399096967608': 320, '4483304456267238355': 1989, '4749298169084869151': 1072, '4917951176751980069': 1363, '7936068733703908459': 346, '5219394751292749705': 1216, '8719892509048178531': 136, '4415415525561784599': 701, '5024074905263842849': 18, '6926244324609892988': 30, '2863351392293563325': 436, '4482402820945758152': 183, '4715442001886462944': 58, '5932102625385609989': 685, '4616259206801512351': 526, '2604494515308175827': 1048, '8261875436896588399': 119, '244937959911721367': 1073, '2825316495796585570': 636, '8581614941770002764': 1492, '8873311207356144485': 572, '6182995394588967366': 1990, '8609111586421981129': 870, '4005373146530184315': 283, '2601420231829081368': 644, '5383470687773556672': 1973, '3386710421554370087': 1493, '7932120625439610191': 1932, '4804738921410031805': 1364, '418328811539378284': 376, '1115593437686158905': 72, '974948214077502397': 56, '4425978037524959779': 1494, '6613336256439380973': 1365, '3250879589215178639': 871, '5730521719802184390': 1366, '4343998561613089743': 1495, '6916771625541437162': 102, '6637171571708691638': 377, '6958607494104131034': 1728, '3374255859373786194': 408, '8809065195096599018': 963, '4738849194894773882': 284, '1132762216411335839': 378, '1127459907694805235': 19, '3867686512607885141': 1496, '4341766724811689661': 1619, '1587086886808885540': 538, '9091771158315767194': 1794, '2266542845480926197': 872, '9122390911750307690': 1368, '4957478629964985687': 637, '6388689223924479176': 965, '4033240222365595136': 1217, '3629577244055910406': 478, '2086863971949478092': 702, '5813711400072121925': 1369, '8088921220052974621': 1370, '88534707019739220': 772, '6250588152296764472': 479, '4287768755595785006': 343, '4742244214314968766': 966, '7263346613600732510': 83, '3395612187041625063': 84, '5202151316393223580': 1074, '7044206989263083569': 480, '7037298644597283282': 1729, '8263821218933164468': 1620, '723459724834097281': 1882, '1043361473087907312': 1730, '4618963433435933606': 1399, '1936426631796262053': 71, '8541903517951398969': 573, '8179083291996935578': 1371, '608973789957727561': 344, '7483215586203553366': 873, '6929574213890444536': 304, '4305750675950968059': 703, '8736568593417750581': 1218, '4176422902180283138': 1829, '461436028263880214': 1372, '8349134305416910889': 874, '8563498708650043882': 967, '6666640731218555667': 1458, '8931153647420476080': 1830, '4350097186097565949': 305, '3253007787485187171': 1219, '8914464863762678881': 968, '4315378960086848699': 243, '940415022552647187': 1497, '2155175112774869721': 1498, '3514313626604886295': 1075, '7300216881186850753': 266, '5926107323796891757': 437, '5405715873764971194': 1499, '6844176116329675849': 544, '8614798793761585963': 1373, '2384929018605582143': 1731, '3010920276006572535': 1621, '1929433213325443915': 25, '1026446475374254312': 1076, '7844932991499998016': 1707, '3036926867604684520': 1934, '5189774979662589703': 438, '7629234416111856945': 1935, '4627817822262492884': 1831, '4847411431971122436': 127, '6504465711645201248': 574, '4244109851160069017': 42, '2762359234746621721': 1374, '3713873141839444525': 481, '4929368500838767949': 1832, '2253846628644635942': 67, '2715832189532723552': 575, '7948446893985702497': 1974, '359417859466491096': 1220, '4510220896859961775': 164, '3288685408108844119': 1500, '5082138874375887068': 1077, '5507078822517359344': 1375, '2966187278753386350': 1833, '4741393399987719483': 409, '529754693268731380': 1376, '7306785714459703344': 969, '5308164272008345585': 943, '852657668925964952': 704, '4960651917266580984': 1079, '6237225386243356575': 1975, '6276620921915327444': 1936, '6078338515107482389': 1022, '7951567235515055279': 970, '6189759144033325615': 146, '9202493221760481170': 244, '4790107929558196912': 1622, '7621209948544072707': 1221, '7713914559325493608': 1377, '9130379775893585932': 1378, '4977997420793944836': 816, '8505548454445236460': 1857, '1733532638025265853': 1634, '7920896696482531061': 1080, '7485487238471669174': 971, '5947021459447809684': 577, '794249579378543643': 1222, '309179178474245125': 1732, '8413855607660856960': 1081, '7863420741562613788': 345, '5576644993511241222': 1733, '5753024495996599592': 1734, '8693020145305989672': 1991, '4287430850224527380': 321, '9045567936064089227': 705, '260764653006089998': 1223, '7301517388567833702': 1082, '1751271042943524239': 672, '1244780622073523653': 1624, '8708752360243767625': 1834, '6158500871224119394': 1735, '2269742446020584054': 1502, '601365943784756897': 1618, '7936478422771207620': 1625, '4978402514041141532': 1503, '8939629250892191652': 95, '7270992690764838239': 231, '92860682507089288': 1992, '4837684718742000390': 774, '6387087975193770559': 1908, '4836843257444966243': 1225, '2853317843458689854': 1226, '6932528057568867609': 1379, '8177829350826196308': 285, '708798485013978373': 1504, '9059610977317352399': 877, '3517637179126242000': 16, '2366809508980261782': 1227, '7717307706597034768': 1835, '2545990029501556303': 190, '4171145772160186792': 775, '7461031052158017715': 105, '1245968097376795823': 973, '1685127048144178754': 1505, '7603044093174944268': 878, '2493976369613713098': 1626, '2184408420667115619': 776, '9069451131871918127': 13, '4477989572181922377': 1627, '7183504421866007218': 1884, '7913400407431354867': 974, '2644663447358037130': 1380, '1454068188007247787': 482, '7636490825137648383': 1083, '2081265111210072467': 552, '1952321452846772720': 777, '5476101493799111825': 1506, '240041917918953337': 582, '9144190321895213851': 1799, '827957941427433969': 476, '5818382893362053755': 778, '3950343097199599450': 267, '1818608831920242374': 191, '6038661761506862294': 1382, '5860709468180973459': 1995, '4069111171644921459': 1736, '3752082673944586531': 1885, '7595559184779647650': 879, '5028991260192797058': 638, '8294426931183223528': 1084, '6346300739520814215': 1886, '929552214112445114': 92, '4685012381295525749': 322, '5184213573444025305': 379, '4810639854700527658': 880, '1361410429514384644': 881, '461773686652496701': 578, '5364712160899856113': 1085, '3478495961956304702': 706, '5061825951620102967': 1937, '2689200710357900655': 483, '660758538837054786': 1976, '6183831864696688691': 484, '5898042623189598071': 1977, '1980876636979981304': 1190, '7347858809625731174': 579, '6569012000551779051': 1229, '8595696185560648723': 1087, '3835759376917652833': 1737, '1172491018201020094': 184, '7756633728210171144': 1088, '1206356642865167537': 707, '1867700512809885443': 1591, '3744255770910909874': 439, '2977313729944642721': 1837, '413439106341806001': 639, '8700804433466361123': 1277, '5946584214253337859': 1838, '8932881972353694103': 1231, '2147515486275286277': 440, '6571758612764814199': 1232, '3689337711138901728': 779, '1200263233485735432': 1738, '7402734281641073196': 1383, '3395688050394648705': 111, '630831651100348477': 471, '3094293898602238746': 975, '1538889947190981142': 1233, '2026327474615253081': 580, '7956765969654512096': 255, '1358721120864681533': 441, '7890270533039637284': 380, '5755742251322795648': 882, '4805592090163108544': 1234, '8286067888742086892': 708, '760432988437306018': 245, '3756597728166171300': 1996, '3160598848269833883': 1629, '2051131023989903826': 221, '6968743648143929951': 1089, '1134449461011864348': 94, '9008925037793886842': 640, '6974448804336129376': 976, '7963789764073362950': 1938, '2480668193641922274': 1978, '7460701391128569030': 1236, '3401083608475308196': 1939, '3356822828991224126': 581, '4702119494763791392': 485, '598219288744642833': 1630, '3904210248050890128': 1940, '6517930494079585324': 641, '7276757922692328501': 89, '7303588876741005401': 780, '3182736478163180292': 529, '8359524589555835842': 1090, '809545061433796799': 1091, '4221221164136980100': 709, '5861391680921034810': 977, '5713014937920165769': 43, '6489468578488009978': 1237, '2944189228057544610': 1507, '8468200558891408887': 883, '4115748438709160582': 1739, '2973837578933146413': 884, '7501152358833888406': 642, '6927564467091501561': 710, '4483249651745840664': 1384, '5953579394093512194': 442, '2272840038915065759': 869, '1026888672378692933': 1385, '989115724037427557': 323, '5190476938344202375': 232, '3414266676439227853': 978, '3819644721564677600': 1238, '6093784317638569039': 885, '3612010574565570785': 1866, '5470415613430156594': 711, '6596826271593118393': 382, '6136403420715230873': 75, '5934472074045979437': 203, '6696888779902697750': 1508, '947642205940549167': 1774, '2068265478067735255': 1887, '372645249911808449': 1631, '1865182682318401776': 1052, '2457765753528575807': 1633, '8818294023490369214': 781, '5276739922638328515': 583, '3184436881335535852': 1740, '3257681557352812938': 192, '2313870711084007638': 1917, '3060490612540832338': 230, '2539026947967982415': 1635, '8794289579418543667': 306, '5805762942747256642': 1741, '4694038752172489928': 1239, '6885406542446231991': 410, '7413344850500955337': 876, '2063575091370043114': 268, '3423450385060590478': 1941, '8955755936847898358': 286, '4490622415459881951': 530, '7192258715316889030': 1888, '2358602120077680332': 1240, '4799035831110725204': 1636, '6809079195362599432': 782, '6797754925234728042': 347, '518747274885843149': 1637, '8921033697231531910': 348, '7347583870493810379': 1509, '8276586243967962122': 430, '4271026173614872626': 886, '7202475221706481200': 1241, '5956877252529086741': 411, '5778630938297884387': 979, '7135491570488962839': 1242, '2152720316933993716': 980, '641296879189318453': 222, '6748914495015758455': 11, '9065926021602280000': 1092, '5517401116436959009': 1889, '7478652512733220686': 1742, '2373633737287737773': 1510, '766570757389698163': 1743, '2929797094746327749': 584, '5531373574865393154': 1890, '5707939385348112587': 1386, '6943357686311161881': 1093, '2470450211317525201': 69, '7361625848712741016': 1511, '9128959745023160305': 1094})
load_data.started...
('load_data_multilabel_new.training_data_path:', '../data/sample_multiple_label.txt')
(0, 'x0:', u'w10253 w1723 w5240 w72 w13047 w111 c520 c1427 c407 c1451 c72 c131 c931 c769 c267 c184 w1617 c229')
(0, 'x1:', [0, 0, 0, 27, 0, 3, 0, 0, 96, 0, 0, 23, 21, 9, 0, 5, 0, 0])
ys_index:
(0, 'y:', u'6522242102892532323', ' ;ys_mulithot_list:', array([0., 0., 0., ..., 0., 0., 0.]))
(1, 'x1:', [0, 4, 0, 0, 0, 3, 0, 0, 0, 0, 6, 0, 0, 54, 0, 0, 23, 5])
ys_index:
(1, 'y:', u'5732564720446782766', ' ;ys_mulithot_list:', array([0., 0., 0., ..., 0., 0., 0.]))
ys_index:
(2, 'y:', u'6289779852907129222', ' ;ys_mulithot_list:', array([0., 0., 0., ..., 0., 0., 0.]))
ys_index:
(3, 'y:', u'2951766750408260687', ' ;ys_mulithot_list:', array([0., 0., 0., ..., 0., 0., 0.]))
('number_examples:', 20000)
load_data.ended...
start padding & transform to one hot...
('trainX[0]:', array([ 0,  0,  0, 27,  0,  3,  0,  0, 96,  0,  0, 23, 21,  9,  0,  5,  0,
        0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,
        0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,
        0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,
        0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,
        0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0],
      dtype=int32))
end padding & transform to one hot...
Traceback (most recent call last):
  File "/home/wh/code/python/text_classification-master/a03_TextRNN/p8_TextRNN_train.py", line 190, in <module>
    tf.app.run()
  File "/home/wh/code/python/ven2/local/lib/python2.7/site-packages/tensorflow/python/platform/app.py", line 125, in run
    _sys.exit(main(argv))
  File "/home/wh/code/python/text_classification-master/a03_TextRNN/p8_TextRNN_train.py", line 74, in main
    vocab_size, FLAGS.embed_size, FLAGS.is_training)
  File "/home/wh/code/python/text_classification-master/a03_TextRNN/p8_TextRNN_model.py", line 33, in __init__
    self.instantiate_weights()
  File "/home/wh/code/python/text_classification-master/a03_TextRNN/p8_TextRNN_model.py", line 45, in instantiate_weights
    self.Embedding = tf.get_variable("Embedding",shape=[self.vocab_size, self.embed_size],initializer=self.initializer) #[vocab_size,embed_size] tf.random_uniform([self.vocab_size, self.embed_size],-1.0,1.0)
  File "/home/wh/code/python/ven2/local/lib/python2.7/site-packages/tensorflow/python/ops/variable_scope.py", line 1328, in get_variable
    constraint=constraint)
  File "/home/wh/code/python/ven2/local/lib/python2.7/site-packages/tensorflow/python/ops/variable_scope.py", line 1090, in get_variable
    constraint=constraint)
  File "/home/wh/code/python/ven2/local/lib/python2.7/site-packages/tensorflow/python/ops/variable_scope.py", line 435, in get_variable
    constraint=constraint)
  File "/home/wh/code/python/ven2/local/lib/python2.7/site-packages/tensorflow/python/ops/variable_scope.py", line 404, in _true_getter
    use_resource=use_resource, constraint=constraint)
  File "/home/wh/code/python/ven2/local/lib/python2.7/site-packages/tensorflow/python/ops/variable_scope.py", line 743, in _get_single_variable
    name, "".join(traceback.format_list(tb))))
ValueError: Variable Embedding already exists, disallowed. Did you mean to set reuse=True or reuse=tf.AUTO_REUSE in VarScope? Originally defined at:

  File "/home/wh/code/python/text_classification-master/a03_TextRNN/p8_TextRNN_model.py", line 45, in instantiate_weights
    self.Embedding = tf.get_variable("Embedding",shape=[self.vocab_size, self.embed_size],initializer=self.initializer) #[vocab_size,embed_size] tf.random_uniform([self.vocab_size, self.embed_size],-1.0,1.0)
  File "/home/wh/code/python/text_classification-master/a03_TextRNN/p8_TextRNN_model.py", line 33, in __init__
    self.instantiate_weights()
  File "/home/wh/code/python/text_classification-master/a03_TextRNN/p8_TextRNN_model.py", line 124, in test
    textRNN=TextRNN(num_classes, learning_rate, batch_size, decay_steps, decay_rate,sequence_length,vocab_size,embed_size,is_training)

Process finished with exit code 1

so ~ i decide to put it down,i think i need more knowledge to understand the code

f20500909 commented 6 years ago

link:https://pan.baidu.com/s/1orPKC0cahrIW0CUvPxts1g pwd:bguc

include zhihu-word2vec-title-desc.bin-100 maybe helpful @peterHeuz

advancera commented 6 years ago

文件失效了,请问可以再分享一次吗,非常感谢! @f20500909

peterHeuz commented 6 years ago

@f20500909 Could you share it again please? The file is expired it says

Currently it crashed with this error after IOError: [Errno 2] No such file or directory: 'zhihu-word2vec.bin-100'

peterHeuz commented 6 years ago

Okay, this is error is already discussed in another issue: #3 . I will further continue commenting on this one.

Thanks for your help @f20500909 !

brightmart commented 5 years ago

re-generated training/validation/test data, and save as cached file, available to download. check this session in README.md:

Sample data: cached file