Hariharan Vijayachandran commited on
Commit
eae62cc
1 Parent(s): b4a5455
app.py ADDED
@@ -0,0 +1,179 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import pandas as pd
3
+ import sys
4
+ import os
5
+ from datasets import load_from_disk
6
+ from st_aggrid import AgGrid, GridOptionsBuilder, GridUpdateMode
7
+ from sklearn.metrics.pairwise import cosine_similarity
8
+ import numpy as np
9
+ import time
10
+ from annotated_text import annotated_text
11
+
12
+
13
+ ABSOLUTE_PATH = os.path.dirname(__file__)
14
+ ASSETS_PATH = os.path.join(ABSOLUTE_PATH, 'model_assets')
15
+
16
+ @st.cache_data
17
+ def preprocess_text(s):
18
+ return list(filter(lambda x: x!= '', (''.join(c if c.isalnum() or c == ' ' else ' ' for c in s)).split(' ')))
19
+
20
+ @st.cache_data
21
+ def get_pairwise_distances(model):
22
+ df = pd.read_csv(f"{ASSETS_PATH}/{model}/pairwise_distances.csv").set_index('index')
23
+ return df
24
+
25
+ @st.cache_data
26
+ def get_pairwise_distances_chunked(model, chunk):
27
+ # for df in pd.read_csv(f"{ASSETS_PATH}/{model}/pairwise_distances.csv", chunksize = 16):
28
+ # print(df.iloc[0]['queries'])
29
+ # if chunk == int(df.iloc[0]['queries']):
30
+ # return df
31
+ return get_pairwise_distances(model)
32
+ @st.cache_data
33
+ def get_query_strings():
34
+ df = pd.read_json(f"{ASSETS_PATH}/IUR_Reddit_test_queries_english.jsonl", lines = True)
35
+ df['index'] = df.reset_index().index
36
+ return df
37
+ # df['partition'] = df['index']%100
38
+ # df.to_parquet(f"{ASSETS_PATH}/IUR_Reddit_test_queries_english.parquet", index = 'index', partition_cols = 'partition')
39
+
40
+ # return pd.read_parquet(f"{ASSETS_PATH}/IUR_Reddit_test_queries_english.parquet", columns=['fullText', 'index', 'authorIDs'])
41
+ @st.cache_data
42
+ def get_candidate_strings():
43
+ df = pd.read_json(f"{ASSETS_PATH}/IUR_Reddit_test_candidates_english.jsonl", lines = True)
44
+ df['i'] = df['index']
45
+ df = df.set_index('i')
46
+ # df['index'] = df.reset_index().index
47
+
48
+ return df
49
+ # df['partition'] = df['index']%100
50
+ # df.to_parquet(f"{ASSETS_PATH}/IUR_Reddit_test_candidates_english.parquet", index = 'index', partition_cols = 'partition')
51
+ # return pd.read_parquet(f"{ASSETS_PATH}/IUR_Reddit_test_candidates_english.parquet", columns=['fullText', 'index', 'authorIDs'])
52
+ @st.cache_data
53
+ def get_embedding_dataset(model):
54
+ data = load_from_disk(f"{ASSETS_PATH}/{model}/embedding")
55
+ return data
56
+ @st.cache_data
57
+ def get_bad_queries(model):
58
+ df = get_query_strings().iloc[list(get_pairwise_distances(model)['queries'].unique())][['fullText', 'index', 'authorIDs']]
59
+ return df
60
+ @st.cache_data
61
+ def get_gt_candidates(model, author):
62
+ gt_candidates = get_candidate_strings()
63
+ df = gt_candidates[gt_candidates['authorIDs'] == author]
64
+ return df
65
+ @st.cache_data
66
+ def get_candidate_text(l):
67
+ return get_candidate_strings().at[l,'fullText']
68
+
69
+ @st.cache_data
70
+ def get_annotated_text(text, word, pos):
71
+ print("here", word, pos)
72
+ start= text.index(word, pos)
73
+ end = start+len(word)
74
+ return (text[:start], (text[start:end ], 'SELECTED'), text[end:]), end
75
+
76
+ class AgGridBuilder:
77
+ __static_key = 0
78
+ def build_ag_grid(table, display_columns):
79
+ AgGridBuilder.__static_key += 1
80
+ options_builder = GridOptionsBuilder.from_dataframe(table[display_columns])
81
+ options_builder.configure_pagination(paginationAutoPageSize=False, paginationPageSize=10)
82
+ options_builder.configure_selection(selection_mode= 'single', pre_selected_rows = [0])
83
+ options = options_builder.build()
84
+ return AgGrid(table, gridOptions = options, fit_columns_on_grid_load=True, key = AgGridBuilder.__static_key, reload_data = True, update_mode = GridUpdateMode.SELECTION_CHANGED | GridUpdateMode.VALUE_CHANGED)
85
+
86
+ if __name__ == '__main__':
87
+ st.set_page_config(layout="wide")
88
+
89
+ models = filter(lambda file_name: os.path.isdir(f"{ASSETS_PATH}/{file_name}") and not file_name.endswith(".parquet"), os.listdir(ASSETS_PATH))
90
+
91
+ with st.sidebar:
92
+ current_model = st.selectbox(
93
+ "Select Model to analyze",
94
+ models
95
+ )
96
+
97
+ pairwise_distances = get_pairwise_distances(current_model)
98
+ embedding_dataset = get_embedding_dataset(current_model)
99
+
100
+ candidate_string_grid = None
101
+ gt_candidate_string_grid = None
102
+ with st.container():
103
+ t1 = time.time()
104
+ st.title("Full Text")
105
+ col1, col2 = st.columns([14, 2])
106
+ t2 = time.time()
107
+ query_table = get_bad_queries(current_model)
108
+ t3 = time.time()
109
+ print(query_table)
110
+ with col2:
111
+ index = st.number_input('Enter Query number to inspect', min_value = 0, max_value = query_table.shape[0], step = 1)
112
+ query_text = query_table.loc[index]['fullText']
113
+ preprocessed_query_text = preprocess_text(query_text)
114
+ text_highlight_index = st.number_input('Enter word #', min_value = 0, max_value = len(preprocessed_query_text), step = 1)
115
+ query_index = int(query_table.iloc[index]['index'])
116
+
117
+ with col1:
118
+ if 'pos_highlight' not in st.session_state or text_highlight_index == 0:
119
+ st.session_state['pos_highlight'] = text_highlight_index
120
+ st.session_state['pos_history'] = [0]
121
+
122
+ if st.session_state['pos_highlight'] > text_highlight_index:
123
+ st.session_state['pos_history'] = st.session_state['pos_history'][:-2]
124
+ if len(st.session_state['pos_history']) == 0:
125
+ st.session_state['pos_history'] = [0]
126
+ print("pos", st.session_state['pos_history'], st.session_state['pos_highlight'], text_highlight_index)
127
+ anotated_text_, pos = get_annotated_text(query_text, preprocessed_query_text[text_highlight_index-1], st.session_state['pos_history'][-1]) if text_highlight_index >= 1 else ((query_text), 0)
128
+ if st.session_state['pos_highlight'] < text_highlight_index:
129
+ st.session_state['pos_history'].append(pos)
130
+ st.session_state['pos_highlight'] = text_highlight_index
131
+ annotated_text(*anotated_text_)
132
+ # annotated_text("Lol, this" , ('guy', 'SELECTED') , "is such a PR chameleon. \n\n In the Chan Zuckerberg Initiative announcement, he made it sound like he was giving away all his money to charity <PERSON> or <PERSON>. http://www.businessinsider.in/Mark-Zuckerberg-says-hes-giving-99-of-his-Facebook-shares-45-billion-to-charity/articleshow/50005321.cms Apparently, its just a VC fund. And there are still people out there who believe Facebook.org was an initiative to bring Internet to the poor.")
133
+ t4 = time.time()
134
+
135
+ print(f"query time query text: {t3-t2}, total time: {t4-t1}")
136
+ with st.container():
137
+ st.title("Top 16 Recommended Candidates")
138
+ col1, col2, col3 = st.columns([10, 4, 2])
139
+ rec_candidates = pairwise_distances[pairwise_distances["queries"]==query_index]['candidates']
140
+ print(rec_candidates)
141
+ l = list(rec_candidates)
142
+ with col3:
143
+ candidate_rec_index = st.number_input('Enter recommended candidate number to inspect', min_value = 0, max_value = len(l), step = 1)
144
+ print("l:",l, query_index)
145
+ pairwise_candidate_index = int(l[candidate_rec_index])
146
+ with col1:
147
+ st.header("Text")
148
+ t1 = time.time()
149
+ st.write(get_candidate_text(pairwise_candidate_index))
150
+ t2 = time.time()
151
+ with col2:
152
+ st.header("Cosine Distance")
153
+ st.write(float(pairwise_distances[\
154
+ ( pairwise_distances['queries'] == query_index ) \
155
+ &
156
+ ( pairwise_distances['candidates'] == pairwise_candidate_index)]['distances']))
157
+ print(f"candidate string retreival: {t2-t1}")
158
+ with st.container():
159
+ t1 = time.time()
160
+ st.title("Candidates With Same Authors As Query")
161
+ col1, col2, col3 = st.columns([10, 4, 2])
162
+ t2 = time.time()
163
+ gt_candidates = get_gt_candidates(current_model, query_table.iloc[query_index]['authorIDs'][0])
164
+ t3 = time.time()
165
+
166
+ with col3:
167
+ candidate_index = st.number_input('Enter ground truthnumber to inspect', min_value = 0, max_value = gt_candidates.shape[0], step = 1)
168
+ print(gt_candidates.head())
169
+ gt_candidate_index = int(gt_candidates.iloc[candidate_index]['index'])
170
+ with col1:
171
+ st.header("Text")
172
+ st.write(gt_candidates.iloc[candidate_index]['fullText'])
173
+ with col2:
174
+ t4 = time.time()
175
+ st.header("Cosine Distance")
176
+ indices = list(embedding_dataset['candidates']['index'])
177
+ st.write(1-cosine_similarity(np.array([embedding_dataset['queries'][query_index]['embedding']]), np.array([embedding_dataset['candidates'][indices.index(gt_candidate_index)]['embedding']]))[0,0])
178
+ t5 = time.time()
179
+ print(f"find gt candidates: {t3-t2}, find cosine: {t5-t4}, total: {t5-t1}")
model_assets/IUR_Reddit_test_candidates_english.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
model_assets/IUR_Reddit_test_queries_english.jsonl ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"documentID":"ba2e9149-bb7f-597a-9ef2-d318570dd7f5","authorIDs":["0f9f05d7-fb93-5ae3-9366-e72b693bce50"],"fullText":"Lol, this guy is such a PR chameleon. In the Chan Zuckerberg Initiative announcement, he made it sound like he was giving away all his money to charity <PERSON> or <PERSON>. \n\nhttp:\/\/www.businessinsider.in\/Mark-Zuckerberg-says-hes-giving-99-of-his-Facebook-shares-45-billion-to-charity\/articleshow\/50005321.cms\n\nApparently, its just a VC fund. And there are still people out there who believe Facebook.org was an initiative to bring Internet to the poor.","spanAttribution":[{"authorID":"0f9f05d7-fb93-5ae3-9366-e72b693bce50","start":0,"end":464}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":68,"sourceSpecific":{"action_type":93,"author_id":16682}}
2
+ {"documentID":"221ba5c0-ca15-5fd0-9b32-6856c03333c6","authorIDs":["0f9f05d7-fb93-5ae3-9366-e72b693bce50"],"fullText":"&gt; <PERSON> will not give all his shares at once and he will deduct the fair value of his gift to the Chan Zuckerberg Initiative from his taxable income in each year he makes a donation.\n\nFunny how the tax structure is set up to reward the rich. And he made a big hoopla on how he was giving away his shares to charity... except the charity is owned by him and his wife and invests only in for profit initiatives mainly.","spanAttribution":[{"authorID":"0f9f05d7-fb93-5ae3-9366-e72b693bce50","start":0,"end":429}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":83,"sourceSpecific":{"action_type":93,"author_id":16682}}
3
+ {"documentID":"bcf3576a-99a6-5168-b1ea-5cfe50ebbb7c","authorIDs":["0f9f05d7-fb93-5ae3-9366-e72b693bce50"],"fullText":"He and his wife own all the shares of Chan Zuckerberg LLC. It is a for-profit LLC. He can easily pay dividends on shares which are taxed as capital gains and far lower than the income tax he would have to pay if he sold the shares he owned. \n\nSummary - He donates his shares to a for-profit LLC avoiding tax. For profit LLC now can reinvest, increase his wealth and then pay out dividends which are taxed as capital gains which are less than income tax rates (around 8%). He increases his wealth and pays less tax while selling a PR story about his Chan Zuckerberg Initiative being giving away his money to charity. \n\nLegal tax evasion is such a fun topic.","spanAttribution":[{"authorID":"0f9f05d7-fb93-5ae3-9366-e72b693bce50","start":0,"end":655}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":122,"sourceSpecific":{"action_type":93,"author_id":16682}}
4
+ {"documentID":"643b8a57-2f73-5fca-bb04-aed4a2d2c9a1","authorIDs":["0f9f05d7-fb93-5ae3-9366-e72b693bce50"],"fullText":"<PERSON>, they are a coaching center, giving coaching for JEE, CAT, GMAT, GRE, IAS etc - they aren't disrupting education in any way.\n\nAnd their coaching fees easily approach a lakh. Only Sharmaji son can afford to study there.\n\nThere are lots of NGOs in India who are coaching students for free. For example, Super 30. If <PERSON> wants a list, I will be happy to send him.","spanAttribution":[{"authorID":"0f9f05d7-fb93-5ae3-9366-e72b693bce50","start":0,"end":373}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":67,"sourceSpecific":{"action_type":93,"author_id":16682}}
5
+ {"documentID":"5cca42e3-8295-59f3-97e4-1044101f1ebe","authorIDs":["0f9f05d7-fb93-5ae3-9366-e72b693bce50"],"fullText":"It's impossible to run an Internet business without having a Facebook presence so I do. Even in personal life, a lot of people utilize Facebook Groups for professional reasons such as looking for jobs, posting jobs and other business related transactions.\n\nThe relationship between Facebook and the everyday <PERSON> isn't like the relationship between a Bar of Soap and the everyday <PERSON>. There has been lots written on this topic, called the \"Privatization Of Internet\" where all the Internet content is eventually concentrated in a few SV companies and the worrying future implications.","spanAttribution":[{"authorID":"0f9f05d7-fb93-5ae3-9366-e72b693bce50","start":0,"end":582}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":93,"sourceSpecific":{"action_type":93,"author_id":16682}}
6
+ {"documentID":"6c2fea6b-c42a-5c5b-b83d-55910d0a7615","authorIDs":["0f9f05d7-fb93-5ae3-9366-e72b693bce50"],"fullText":"Khan Academy gives away all their courses for free. BYJU coaching is like close to 1 lakh.","spanAttribution":[{"authorID":"0f9f05d7-fb93-5ae3-9366-e72b693bce50","start":0,"end":90}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":17,"sourceSpecific":{"action_type":93,"author_id":16682}}
7
+ {"documentID":"f871cd9c-3916-5dff-ac51-feb99adcca15","authorIDs":["0f9f05d7-fb93-5ae3-9366-e72b693bce50"],"fullText":"Theoretically, yes. But if you look at the math, it isn't as risky as it seems.\n\nThe top income tax bracket is USA is close to 50% while capital gains tax (long term) is around 8%. So a difference of about 40%. \n\n40% of $50B is $20B. So <PERSON> can lose up to $20B out of the $50B and still be break even. So unless <PERSON> loses over 40% of the principal, they are good and that is significant room for error.\n\nFinally, <PERSON> is mostly investing in late stage startups not early stage startups which have a different risk profile and rarely go completely bust leading to complete loss of invested capital. The main danger here is that they don't get enough returns - i.e. they don't outperform the S&amp;P Index. However, once you take into account the 40% difference that taxation makes - they really have to have a very low rate of return to beat the option of selling shares, getting them taxed and investing in the S&amp;P index.","spanAttribution":[{"authorID":"0f9f05d7-fb93-5ae3-9366-e72b693bce50","start":0,"end":960}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":178,"sourceSpecific":{"action_type":93,"author_id":16682}}
8
+ {"documentID":"281d8902-7e69-5fe6-bc04-273bfdad002e","authorIDs":["0f9f05d7-fb93-5ae3-9366-e72b693bce50"],"fullText":"I'm sure you paid more to your coaching center than any public or private school you attended.","spanAttribution":[{"authorID":"0f9f05d7-fb93-5ae3-9366-e72b693bce50","start":0,"end":93}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":17,"sourceSpecific":{"action_type":93,"author_id":16682}}
9
+ {"documentID":"e121a773-6913-574f-a612-9389656d9c0f","authorIDs":["0f9f05d7-fb93-5ae3-9366-e72b693bce50"],"fullText":"Most startup founders have worked somewhere or the other before founding their companies. Do a similar analysis with BigCos such as Google, Microsoft, McKinsey, Deloitte, Infosys, TCS etc and you'll find lots of startup founders from these companies too.","spanAttribution":[{"authorID":"0f9f05d7-fb93-5ae3-9366-e72b693bce50","start":0,"end":253}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":39,"sourceSpecific":{"action_type":93,"author_id":16682}}
10
+ {"documentID":"61b342aa-12dc-538a-bb20-ebcd10b2ac3e","authorIDs":["0f9f05d7-fb93-5ae3-9366-e72b693bce50"],"fullText":"Dangerous line of thought. I criticize Hinduism far more than Islam because I grew up in a Hindu household so I have first hand experienced the flaws of Hinduism. It's the same reason why people such as <PERSON> criticizes Christianity mainly or <PERSON> criticizes Islam mainly.\n\nTo me, this is just whataboutism by the court. We continuously criticize Islamic leaders for not reforming Islam but can we do the same when we target Hindus seeking reforms because they don't do the same for Islam or Christianity.","spanAttribution":[{"authorID":"0f9f05d7-fb93-5ae3-9366-e72b693bce50","start":0,"end":509}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":86,"sourceSpecific":{"action_type":93,"author_id":16682}}
11
+ {"documentID":"747d944b-0736-5d67-8df6-03d9b4c3787f","authorIDs":["0f9f05d7-fb93-5ae3-9366-e72b693bce50"],"fullText":"Can you explain to me exactly what did the Govt do to preserve Japanese culture? The Japanese Govt right now is aggressively pushing English ahead of Japanese as one of the main reforms to turn around the economy, doesn't sound like preserving culture to me.","spanAttribution":[{"authorID":"0f9f05d7-fb93-5ae3-9366-e72b693bce50","start":0,"end":257}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":45,"sourceSpecific":{"action_type":93,"author_id":16682}}
12
+ {"documentID":"21bc93c5-f38c-55ff-bc52-bcad4842a31c","authorIDs":["0f9f05d7-fb93-5ae3-9366-e72b693bce50"],"fullText":"That is preservation of historical locations and monuments. We also do it - and I think every country in the world works hard to preserve their history. This isn't \"traditions\".\n\nCan you point to something that the Govt has done to preserve Japanese traditions? The Indian Govt spends literally millions of dollars every year to ensure that Sanskrit is taught in schools and colleges and aggressively pushes Hindi as a medium of communication in Govt offices.\n\nOr conversely, can you point to some neglected Indian traditions?","spanAttribution":[{"authorID":"0f9f05d7-fb93-5ae3-9366-e72b693bce50","start":0,"end":526}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":85,"sourceSpecific":{"action_type":93,"author_id":16682}}
13
+ {"documentID":"7a4621f1-2c65-5890-b7e6-dcc68a2ffcea","authorIDs":["0f9f05d7-fb93-5ae3-9366-e72b693bce50"],"fullText":"\/r\/theydidthemath\n\nThough - probably better to compare populations rather than areas.","spanAttribution":[{"authorID":"0f9f05d7-fb93-5ae3-9366-e72b693bce50","start":0,"end":84}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":11,"sourceSpecific":{"action_type":93,"author_id":16682}}
14
+ {"documentID":"4419fa1e-abce-50d7-9efe-34f47c2244fd","authorIDs":["0f9f05d7-fb93-5ae3-9366-e72b693bce50"],"fullText":"Article 262\n\n&gt; 262. Adjudication of disputes relating to waters of inter State rivers or river valleys\n\n&gt; (1) Parliament may by law provide for the adjudication of any dispute or complaint with respect to the use, distribution or control of the waters of, or in, any inter State river or river valley\n\n&gt; (2) Notwithstanding anything in this Constitution, Parliament may by law provide that neither the Supreme Court nor any other court shall exercise jurisdiction in respect of any such dispute or complaint as is referred to in clause ( 1 ) Co ordination between States\n\nAs it clearly states, the Parliament can take away the SC's ability to exercise jurisdiction in interstate rivers disputes. This doesn't mean that SC does not have any jurisdiction but that the Parliament has the power to override or prevent any decisions on interstate river disputes if it wants to.","spanAttribution":[{"authorID":"0f9f05d7-fb93-5ae3-9366-e72b693bce50","start":0,"end":882}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":146,"sourceSpecific":{"action_type":93,"author_id":16682}}
15
+ {"documentID":"87ed21ea-50d3-5d2c-acf9-e9dce2937edd","authorIDs":["0f9f05d7-fb93-5ae3-9366-e72b693bce50"],"fullText":"I usually read the news with my BS detection meter turned up all the <PERSON>. Even all the online news sources mentioned here are not free of bias, just a little less perceivably biased than others.","spanAttribution":[{"authorID":"0f9f05d7-fb93-5ae3-9366-e72b693bce50","start":0,"end":194}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":36,"sourceSpecific":{"action_type":93,"author_id":16682}}
16
+ {"documentID":"5bb804d3-0ff7-5c45-8c7f-ea85131f47d4","authorIDs":["0f9f05d7-fb93-5ae3-9366-e72b693bce50"],"fullText":"The last time I went in a DTC bus (almost 10 years ago), the bus conductor himself tried to pick my pocket lol while 5 passengers stared on fully entertained lol.","spanAttribution":[{"authorID":"0f9f05d7-fb93-5ae3-9366-e72b693bce50","start":0,"end":162}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":31,"sourceSpecific":{"action_type":93,"author_id":16682}}
17
+ {"documentID":"7cab3f1d-43c1-5d5a-85ee-7af3cc8aa4ab","authorIDs":["5d6c6ac3-22c1-510d-b2d2-05bbc61467bf"],"fullText":"Divine Gate has a good OP song at the very least.","spanAttribution":[{"authorID":"5d6c6ac3-22c1-510d-b2d2-05bbc61467bf","start":0,"end":48}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":11,"sourceSpecific":{"action_type":35,"author_id":66868}}
18
+ {"documentID":"07115675-72ac-54a0-a4d1-31deccf49c00","authorIDs":["5d6c6ac3-22c1-510d-b2d2-05bbc61467bf"],"fullText":"Ok, so I read the article on Crunchyroll about this, and apparently Funimation will dub Bungou Stray Dogs. Very neat. \n\nAlso very few of Funimation's library made it onto Crunchyroll via this initial announcement. (I personally want them to get the full rights to Tatami Galaxy and put it on Crunchyroll (with a possible dub later on; they did <PERSON> after all)) Grimgar's a good choice though. <PERSON>, on the other hand........\n\nThough I don't want Funi's service to be outright obsolete to non-dub watchers, so maybe some exclusive subtitled series could be on Funimation's hands. (For instance, something like Dimension W, which had Funimation on board during its production cycle, makes no sense to be Crunchyroll)","spanAttribution":[{"authorID":"5d6c6ac3-22c1-510d-b2d2-05bbc61467bf","start":0,"end":735}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":120,"sourceSpecific":{"action_type":2047,"author_id":66868}}
19
+ {"documentID":"a6722fb1-2246-562a-ba26-2cee88e895f5","authorIDs":["5d6c6ac3-22c1-510d-b2d2-05bbc61467bf"],"fullText":"For some reason when I saw Takeda-sensei, I kept thinking about Subaru from Re:Zero. Must be the outfit.","spanAttribution":[{"authorID":"5d6c6ac3-22c1-510d-b2d2-05bbc61467bf","start":0,"end":103}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":19,"sourceSpecific":{"action_type":35,"author_id":66868}}
20
+ {"documentID":"619d3ea4-d6dc-5499-b464-3fae13fdc432","authorIDs":["5d6c6ac3-22c1-510d-b2d2-05bbc61467bf"],"fullText":"In addition to what <PERSON> said, One Punch Man and Mob Psycho are completely different shows. One Punch Man is a parody\/homage to shounen anime, while Mob Psycho 100 is an action\/comedy with some pretty well executed themes. The latter is a lot more \"deep,\" for lack of a better word. I really like both though, but don't treat one like the other.","spanAttribution":[{"authorID":"5d6c6ac3-22c1-510d-b2d2-05bbc61467bf","start":0,"end":346}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":65,"sourceSpecific":{"action_type":2047,"author_id":66868}}
21
+ {"documentID":"abdc3a23-fb3b-5788-9b12-b96560c9b5a1","authorIDs":["5d6c6ac3-22c1-510d-b2d2-05bbc61467bf"],"fullText":"Some already mentioned <PERSON> (Except in my opinion everyone but <PERSON> was an obnoxious asshole), so I'd probably have to go with Qualidea Code for this one. Everyone except Maihime can just fuck off.","spanAttribution":[{"authorID":"5d6c6ac3-22c1-510d-b2d2-05bbc61467bf","start":0,"end":201}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":34,"sourceSpecific":{"action_type":35,"author_id":66868}}
22
+ {"documentID":"93bf8a47-7333-5ed6-bfec-87723cfbf3f4","authorIDs":["5d6c6ac3-22c1-510d-b2d2-05bbc61467bf"],"fullText":"The whole \"LETS A GO\" thing makes me wonder if someone made fanart of <PERSON> dressed as <PERSON>.","spanAttribution":[{"authorID":"5d6c6ac3-22c1-510d-b2d2-05bbc61467bf","start":0,"end":93}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":18,"sourceSpecific":{"action_type":35,"author_id":66868}}
23
+ {"documentID":"b416671a-b1f7-5ddb-8217-9ef4400ba970","authorIDs":["5d6c6ac3-22c1-510d-b2d2-05bbc61467bf"],"fullText":"Tanaka-kun season 2 when?","spanAttribution":[{"authorID":"5d6c6ac3-22c1-510d-b2d2-05bbc61467bf","start":0,"end":24}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["sw","en","fi"],"lengthWords":4,"sourceSpecific":{"action_type":35,"author_id":66868}}
24
+ {"documentID":"9a884a3e-4d52-5a52-9c49-40922351a5e5","authorIDs":["5d6c6ac3-22c1-510d-b2d2-05bbc61467bf"],"fullText":"Really love the character growth given to Teko through-out the series.\n\nBut no sensei until the last few minutes makes me sad.","spanAttribution":[{"authorID":"5d6c6ac3-22c1-510d-b2d2-05bbc61467bf","start":0,"end":125}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":22,"sourceSpecific":{"action_type":35,"author_id":66868}}
25
+ {"documentID":"bcd9f8ae-b15a-5008-8479-0712a82c5cf0","authorIDs":["5d6c6ac3-22c1-510d-b2d2-05bbc61467bf"],"fullText":"That maid doll scene was pretty funny.\n\nAlso, that way Handa reacted to that manga was funny.","spanAttribution":[{"authorID":"5d6c6ac3-22c1-510d-b2d2-05bbc61467bf","start":0,"end":92}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":17,"sourceSpecific":{"action_type":35,"author_id":66868}}
26
+ {"documentID":"9a3db34e-f2ab-558f-8a8e-a6161a82bc44","authorIDs":["5d6c6ac3-22c1-510d-b2d2-05bbc61467bf"],"fullText":"That play was hilarious.\n\nVery nice episode. The last 3 episodes I'm a bit skeptical about, but I seriously hope P.A. doesn't fuck the series up during those episodes.","spanAttribution":[{"authorID":"5d6c6ac3-22c1-510d-b2d2-05bbc61467bf","start":0,"end":166}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":30,"sourceSpecific":{"action_type":35,"author_id":66868}}
27
+ {"documentID":"e3f67192-7b80-5590-984b-e34ef2d37925","authorIDs":["5d6c6ac3-22c1-510d-b2d2-05bbc61467bf"],"fullText":"<PERSON>'s character is whats keeping me the most engaged throughout this series.\n\nHe's a genuinely nice guy, yet also extremely clever. He literally becomes friends with his main target of assassination solely to make this eventual killing all the more unexpected. He also resonates really well on an emotional stand point. As you pointed out, many things have been taken away from him after he started his revenge scheme, and as a result of these losses it's become harder to pull this off. (In addition to making the eventual end goal all the more satisfying; <PERSON> finding out new ways to go about this plot is very engaging, and makes me relate to him in a way)\n\nThe rest of the main cast is great as well, but <PERSON> sticks out the most to me, especially in these later episodes.","spanAttribution":[{"authorID":"5d6c6ac3-22c1-510d-b2d2-05bbc61467bf","start":0,"end":783}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":140,"sourceSpecific":{"action_type":35,"author_id":66868}}
28
+ {"documentID":"99535ab1-6543-56ce-b550-5d10bf43af96","authorIDs":["5d6c6ac3-22c1-510d-b2d2-05bbc61467bf"],"fullText":"The character relationships and interactions are perhaps this show's strongest aspect.\n\nSome pretty good drama this time around.","spanAttribution":[{"authorID":"5d6c6ac3-22c1-510d-b2d2-05bbc61467bf","start":0,"end":127}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":18,"sourceSpecific":{"action_type":35,"author_id":66868}}
29
+ {"documentID":"425989d4-1914-54ad-8ff6-8b49da71d71f","authorIDs":["5d6c6ac3-22c1-510d-b2d2-05bbc61467bf"],"fullText":"<PERSON> was a complete failure in that regard though. (Judging from your comment though it looks like you liked <PERSON>)","spanAttribution":[{"authorID":"5d6c6ac3-22c1-510d-b2d2-05bbc61467bf","start":0,"end":123}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":20,"sourceSpecific":{"action_type":35,"author_id":66868}}
30
+ {"documentID":"6095a950-44f0-5a8d-b704-65b2e625295c","authorIDs":["5d6c6ac3-22c1-510d-b2d2-05bbc61467bf"],"fullText":"Very fast pacing. I definitely had to rewind the episode a few times.\n\nAnyways, a lot of political corruption going on here. Having the Governor be the villain is a nice touch. Looking forward to the last 2 episodes and how they'll wrap things up.","spanAttribution":[{"authorID":"5d6c6ac3-22c1-510d-b2d2-05bbc61467bf","start":0,"end":246}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":45,"sourceSpecific":{"action_type":35,"author_id":66868}}
31
+ {"documentID":"42e829a8-bc11-55db-87e7-6143e9f33cae","authorIDs":["5d6c6ac3-22c1-510d-b2d2-05bbc61467bf"],"fullText":"Didn't know I used the wrong version of the word \"wrap\" until you posted that comment. Thanks for that.","spanAttribution":[{"authorID":"5d6c6ac3-22c1-510d-b2d2-05bbc61467bf","start":0,"end":102}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":19,"sourceSpecific":{"action_type":35,"author_id":66868}}
32
+ {"documentID":"4a3a71c0-e3fd-59ec-9729-87d6390409a2","authorIDs":["5d6c6ac3-22c1-510d-b2d2-05bbc61467bf"],"fullText":"Really sad that this will end next week. Mondays will never be the same for a while. (What does Fall have for Mondays?)\n\nVery nice to see the girls see parts of their game in their almost final state at a major convention.","spanAttribution":[{"authorID":"5d6c6ac3-22c1-510d-b2d2-05bbc61467bf","start":0,"end":221}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":43,"sourceSpecific":{"action_type":35,"author_id":66868}}
33
+ {"documentID":"71d04818-5cd5-55a7-8c34-cd1a44626662","authorIDs":["ba3e13dc-b3fb-5bca-9a8e-8a1780e28036"],"fullText":"I believe it's \"motto <PERSON>\" or \"study more\"","spanAttribution":[{"authorID":"ba3e13dc-b3fb-5bca-9a8e-8a1780e28036","start":0,"end":50}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":8,"sourceSpecific":{"action_type":35,"author_id":97838}}
34
+ {"documentID":"6ab04640-67d0-53de-b877-f9d84d620bcc","authorIDs":["ba3e13dc-b3fb-5bca-9a8e-8a1780e28036"],"fullText":"Unless it was a strategic move to get them together!","spanAttribution":[{"authorID":"ba3e13dc-b3fb-5bca-9a8e-8a1780e28036","start":0,"end":51}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":10,"sourceSpecific":{"action_type":35,"author_id":97838}}
35
+ {"documentID":"88ab12a7-1468-5a2d-9c46-3fc2688fc76d","authorIDs":["ba3e13dc-b3fb-5bca-9a8e-8a1780e28036"],"fullText":"Yeah if you wanna read and write, that's about right. 5 a day isn't so bad with a good flashcard system, but I feel your pain. I'm taking Japanese and am also behind on my kanji.","spanAttribution":[{"authorID":"ba3e13dc-b3fb-5bca-9a8e-8a1780e28036","start":0,"end":177}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":36,"sourceSpecific":{"action_type":35,"author_id":97838}}
36
+ {"documentID":"9f98f90d-3fac-5442-aec2-b58a5aed1b9f","authorIDs":["ba3e13dc-b3fb-5bca-9a8e-8a1780e28036"],"fullText":"Makes me think of Short Skirt, Long Jacket by Cake. Or rather the song makes me think of <PERSON> whenever I hear it.","spanAttribution":[{"authorID":"ba3e13dc-b3fb-5bca-9a8e-8a1780e28036","start":0,"end":114}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":23,"sourceSpecific":{"action_type":35,"author_id":97838}}
37
+ {"documentID":"c36260b9-565f-5d2e-805e-b0b45b94abd3","authorIDs":["ba3e13dc-b3fb-5bca-9a8e-8a1780e28036"],"fullText":"top three","spanAttribution":[{"authorID":"ba3e13dc-b3fb-5bca-9a8e-8a1780e28036","start":0,"end":8}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":2,"sourceSpecific":{"action_type":35,"author_id":97838}}
38
+ {"documentID":"4e227c8a-d547-5e74-aca9-20abd02cc5aa","authorIDs":["ba3e13dc-b3fb-5bca-9a8e-8a1780e28036"],"fullText":"Definitely check it out :)\n\nWe love anime newbies, you're new clay to be molded\n\n [](#idoruwinkdesu)","spanAttribution":[{"authorID":"ba3e13dc-b3fb-5bca-9a8e-8a1780e28036","start":0,"end":99}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":15,"sourceSpecific":{"action_type":35,"author_id":97838}}
39
+ {"documentID":"796bd730-c199-50aa-a484-d834087be25a","authorIDs":["ba3e13dc-b3fb-5bca-9a8e-8a1780e28036"],"fullText":"You'd *love* Sabagebu! then. This happens multiple times in the 20 min span of one episode.","spanAttribution":[{"authorID":"ba3e13dc-b3fb-5bca-9a8e-8a1780e28036","start":0,"end":90}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":16,"sourceSpecific":{"action_type":35,"author_id":97838}}
40
+ {"documentID":"08d227e5-994b-5b56-8236-7c18f88dec16","authorIDs":["ba3e13dc-b3fb-5bca-9a8e-8a1780e28036"],"fullText":"The Princess Jellyfish dislikes are understandable, but you probably would want to look at the rest of their character. Or at least in Shuu's case. <PERSON>'s pretty unimportant, even in the manga.","spanAttribution":[{"authorID":"ba3e13dc-b3fb-5bca-9a8e-8a1780e28036","start":0,"end":193}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":32,"sourceSpecific":{"action_type":35,"author_id":97838}}
41
+ {"documentID":"f3205861-22a9-5874-b2aa-e54284ebcf5b","authorIDs":["ba3e13dc-b3fb-5bca-9a8e-8a1780e28036"],"fullText":"<PERSON> \"the courage to\" scene","spanAttribution":[{"authorID":"ba3e13dc-b3fb-5bca-9a8e-8a1780e28036","start":0,"end":31}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":5,"sourceSpecific":{"action_type":2047,"author_id":97838}}
42
+ {"documentID":"eb82d568-b821-5fce-b07a-f9caee2586cb","authorIDs":["ba3e13dc-b3fb-5bca-9a8e-8a1780e28036"],"fullText":"<PERSON> is beautiful and had themes I felt were deeper or at least more personally relevant than a lot of the series. I don't think Koyomi's not being in it really detracted","spanAttribution":[{"authorID":"ba3e13dc-b3fb-5bca-9a8e-8a1780e28036","start":0,"end":169}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":32,"sourceSpecific":{"action_type":2047,"author_id":97838}}
43
+ {"documentID":"76df5a02-5417-5cc2-a415-6745cec8de1e","authorIDs":["ba3e13dc-b3fb-5bca-9a8e-8a1780e28036"],"fullText":"Not sure I like the shirt, but <PERSON>'s design is beautiful","spanAttribution":[{"authorID":"ba3e13dc-b3fb-5bca-9a8e-8a1780e28036","start":0,"end":59}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":11,"sourceSpecific":{"action_type":2047,"author_id":97838}}
44
+ {"documentID":"9f47b3be-7349-567c-85b5-ea9cda9f4e49","authorIDs":["ba3e13dc-b3fb-5bca-9a8e-8a1780e28036"],"fullText":"Link's dead. Do you have a DL link?","spanAttribution":[{"authorID":"ba3e13dc-b3fb-5bca-9a8e-8a1780e28036","start":0,"end":34}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":8,"sourceSpecific":{"action_type":2047,"author_id":97838}}
45
+ {"documentID":"a6534021-e704-5a83-bf0f-6c4fe35764b7","authorIDs":["ba3e13dc-b3fb-5bca-9a8e-8a1780e28036"],"fullText":"Attack on Titan for me. I'm not the sort of person to refuse to watch a show due to popularity, and I've always figured it would be somewhere between \"OMG best thing ever it got me into anime and I've seen like 4 things now!\" and \"Fucking overrated mainstream garbage\" and that I would like it, but I never really felt up to it mostly because it doesn't seem like the sort of show for me, or at least the sort of show that I get excited about. \n\nBy now I'm so familiar with the characters and most of the important plot points (via spoilers and seeing people watching it) that I'm even less interested in getting around to it. So unless I'm made to watch it with someone else or contracted to do so, I probably won't ever see it.","spanAttribution":[{"authorID":"ba3e13dc-b3fb-5bca-9a8e-8a1780e28036","start":0,"end":728}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":141,"sourceSpecific":{"action_type":35,"author_id":97838}}
46
+ {"documentID":"bd0f218d-d770-5cdf-bb48-90287ed5958a","authorIDs":["ba3e13dc-b3fb-5bca-9a8e-8a1780e28036"],"fullText":"Look at you shilling for Utena when you haven't even completed it. \n\n[Not that I disapprove](#cup6)","spanAttribution":[{"authorID":"ba3e13dc-b3fb-5bca-9a8e-8a1780e28036","start":0,"end":98}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":17,"sourceSpecific":{"action_type":35,"author_id":97838}}
47
+ {"documentID":"ad4b4da2-6aa4-513e-bfb5-cacb85786e96","authorIDs":["ba3e13dc-b3fb-5bca-9a8e-8a1780e28036"],"fullText":"I've not seen enough of it to know for sure, but {Unbreakable Machine Doll} may have what you're looking for.","spanAttribution":[{"authorID":"ba3e13dc-b3fb-5bca-9a8e-8a1780e28036","start":0,"end":108}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":20,"sourceSpecific":{"action_type":1074,"author_id":97838}}
48
+ {"documentID":"0406e338-ecbf-57fc-b492-04979640a654","authorIDs":["ba3e13dc-b3fb-5bca-9a8e-8a1780e28036"],"fullText":"I doubt this is it, but there's a spider-like character in a feudal Japan setting with a serious, dark, and fairly grotesque vibe in [**Basilisk**](https:\/\/myanimelist.net\/anime\/67).","spanAttribution":[{"authorID":"ba3e13dc-b3fb-5bca-9a8e-8a1780e28036","start":0,"end":181}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":30,"sourceSpecific":{"action_type":35,"author_id":97838}}
49
+ {"documentID":"205a2554-5b20-5977-84cf-cee1edfb3333","authorIDs":["955d8317-d85a-52bc-ab1a-6d672c40e0e9"],"fullText":"Is the Fenway one open? I thought the only one close to Boston was in chestnut hill","spanAttribution":[{"authorID":"955d8317-d85a-52bc-ab1a-6d672c40e0e9","start":0,"end":82}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":17,"sourceSpecific":{"action_type":16,"author_id":45368}}
50
+ {"documentID":"57683282-49b3-551f-b57b-3f6ef1becf65","authorIDs":["955d8317-d85a-52bc-ab1a-6d672c40e0e9"],"fullText":"As my dad always says, \"I'm only going one way!\"","spanAttribution":[{"authorID":"955d8317-d85a-52bc-ab1a-6d672c40e0e9","start":0,"end":47}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en","cy"],"lengthWords":10,"sourceSpecific":{"action_type":16,"author_id":45368}}
51
+ {"documentID":"809db4c9-0a2b-559d-a630-f2296cb520b3","authorIDs":["955d8317-d85a-52bc-ab1a-6d672c40e0e9"],"fullText":"Ugh no, I went to college in Fairfield county and the driving there was the fucking worst, *especially* as a pedestrian. People had no clue what crosswalks were. It was terrifying.","spanAttribution":[{"authorID":"955d8317-d85a-52bc-ab1a-6d672c40e0e9","start":0,"end":180}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":31,"sourceSpecific":{"action_type":399,"author_id":45368}}
52
+ {"documentID":"4b0e6899-e578-511f-9971-b8555e33d2d7","authorIDs":["955d8317-d85a-52bc-ab1a-6d672c40e0e9"],"fullText":"Same I work in the music industry (but in a professional role), and everyone around the office is pretty open about weed.","spanAttribution":[{"authorID":"955d8317-d85a-52bc-ab1a-6d672c40e0e9","start":0,"end":121}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":22,"sourceSpecific":{"action_type":0,"author_id":45368}}
53
+ {"documentID":"d0ef1144-3716-5593-84b2-b53ac1014af9","authorIDs":["955d8317-d85a-52bc-ab1a-6d672c40e0e9"],"fullText":"It's not always something that's easy to correct though. I've been with someone who had that kind of hold on me and it's because they were very very good at manipulating my emotions. Expert gas lighter (flipping things around to make it seem like I was wrong or crazy whenever I tried to bring up his bad behavior). Guilt tripped me constantly for fucking up but would hypocritically do all the same shit, and then tell me \"that's different\" and I was being ridiculous if I brought it up. And eventually, you really start to believe them. You question yourself a lot and desperately just want to make them happy. \n\nYes it's important to protect yourself and have the willpower to walk away but the power of manipulation shouldn't be underestimated.","spanAttribution":[{"authorID":"955d8317-d85a-52bc-ab1a-6d672c40e0e9","start":0,"end":748}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":131,"sourceSpecific":{"action_type":69,"author_id":45368}}
54
+ {"documentID":"19ec8821-dc81-52f0-b51b-e5f00ace9e62","authorIDs":["955d8317-d85a-52bc-ab1a-6d672c40e0e9"],"fullText":"<PERSON>, I grew up in a pretty Jewish community so there were a lot of women in wigs. It's always super obvious. And I wouldn't call it socially acceptable.","spanAttribution":[{"authorID":"955d8317-d85a-52bc-ab1a-6d672c40e0e9","start":0,"end":152}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":29,"sourceSpecific":{"action_type":33,"author_id":45368}}
55
+ {"documentID":"52b373ec-38ba-5f33-9f4b-78518158d01c","authorIDs":["955d8317-d85a-52bc-ab1a-6d672c40e0e9"],"fullText":"Personally I would still do it but I get why it irritates her as well. To me giving good head is like a game or a challenge, with the \"prize\" being a mouthful of cum. Getting someone to bust super fast is very rewarding, where as someone never coming would make me feel bad.","spanAttribution":[{"authorID":"955d8317-d85a-52bc-ab1a-6d672c40e0e9","start":0,"end":273}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":54,"sourceSpecific":{"action_type":174,"author_id":45368}}
56
+ {"documentID":"e51ff1a3-73c2-5e52-92eb-ddc0a9fd8af2","authorIDs":["955d8317-d85a-52bc-ab1a-6d672c40e0e9"],"fullText":"That's not the same thing at all, it's like a man saying he doesn't want to go down on a girl because she doesn't come. She's not withholding sex...","spanAttribution":[{"authorID":"955d8317-d85a-52bc-ab1a-6d672c40e0e9","start":0,"end":148}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":29,"sourceSpecific":{"action_type":174,"author_id":45368}}
57
+ {"documentID":"10936a4c-901e-5f22-9326-420a480bb1ba","authorIDs":["955d8317-d85a-52bc-ab1a-6d672c40e0e9"],"fullText":"Maybe try letting him face fuck you? And put his hand over your hand so he can help you control the tightness. For some guys I've noticed it's a problem with the rhythm or your grip - not that you're doing it poorly, just that people require different things to get off.","spanAttribution":[{"authorID":"955d8317-d85a-52bc-ab1a-6d672c40e0e9","start":0,"end":270}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":51,"sourceSpecific":{"action_type":174,"author_id":45368}}
58
+ {"documentID":"e7bfdd79-b0cb-5e12-95d7-98c7be99f952","authorIDs":["955d8317-d85a-52bc-ab1a-6d672c40e0e9"],"fullText":"Choosing not to give oral sex and choosing not to have sex at all are two COMPLETELY different things. For instance, for me, one would be a total deal breaker and one I could probably live with. \n\nYou can't say that a woman not giving head to her male partner is the exact same as a man not having sex with his female partner ever. Those are just not equivalent.","spanAttribution":[{"authorID":"955d8317-d85a-52bc-ab1a-6d672c40e0e9","start":0,"end":362}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":70,"sourceSpecific":{"action_type":174,"author_id":45368}}
59
+ {"documentID":"4678474d-0ee0-58d5-8097-bafca022a649","authorIDs":["955d8317-d85a-52bc-ab1a-6d672c40e0e9"],"fullText":"True but it's fairly common for people to not engage in oral sex. For me personally (and I'm betting for most people in this fairly adventurous sub), oral is a big part of my sex life, but it's not like it's unheard of for people not to engage in oral.","spanAttribution":[{"authorID":"955d8317-d85a-52bc-ab1a-6d672c40e0e9","start":0,"end":252}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":50,"sourceSpecific":{"action_type":174,"author_id":45368}}
60
+ {"documentID":"7e8d60f7-bfd0-56df-95a1-60fd835f31e1","authorIDs":["955d8317-d85a-52bc-ab1a-6d672c40e0e9"],"fullText":"It's not though, because sex and oral sex are two different things. While both might be equally important to you, that's not the case in every sexual relationship. Saying you're not going to give head is totally different from saying you're not going to have sex.","spanAttribution":[{"authorID":"955d8317-d85a-52bc-ab1a-6d672c40e0e9","start":0,"end":263}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":46,"sourceSpecific":{"action_type":174,"author_id":45368}}
61
+ {"documentID":"a8928f75-3fae-5d4b-aaec-df4bcfe262a3","authorIDs":["955d8317-d85a-52bc-ab1a-6d672c40e0e9"],"fullText":"Hi, you're not going to get many good answers because we get this question constantly and you have given basically zero details about yourself. \n\nPlease review the sidebar and the wiki and\/or search the subreddit for your question. You could also literally just google \"things to do in Boston\" as a start. \n\nIf you still have questions after that, please be really specific. How old are you? What are your interests (history, sports, drinking...)? What kind of cuisine do you like? Where are you staying? What's your budget for a meal or activity? Will you have kids with you? Is this a romantic trip with your SO, are you traveling solo, or coming with friends? \n\nBoston is a big city with a lot to do, so giving us some basic background will allow people to actually give good suggestions rather than just blindly throwing out restaurant recommendations (which you could easily find on Yelp or Eater).","spanAttribution":[{"authorID":"955d8317-d85a-52bc-ab1a-6d672c40e0e9","start":0,"end":903}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":157,"sourceSpecific":{"action_type":399,"author_id":45368}}
62
+ {"documentID":"c2f9b083-b640-565a-84df-672784467521","authorIDs":["955d8317-d85a-52bc-ab1a-6d672c40e0e9"],"fullText":"No one would actually post in them. Plus it's dumb to have a bunch of smaller subs relevant to a single topic, that's how you end up with dead subs. \n\nI actually don't mind helping tourists, I just hate the super vague questions.","spanAttribution":[{"authorID":"955d8317-d85a-52bc-ab1a-6d672c40e0e9","start":0,"end":229}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":43,"sourceSpecific":{"action_type":399,"author_id":45368}}
63
+ {"documentID":"f4eaeb44-54ae-5836-aedb-26f9cc905b14","authorIDs":["955d8317-d85a-52bc-ab1a-6d672c40e0e9"],"fullText":"I mean TBH (and I'm sure this is the same for guys) it can be hard to know what the right speed is. Everyone is a little different. Being vocal about your preferences is important to. The guy I've been with lately likes it suuuuper slow, he told me that and now it's way easier to get him off (we also use the face fucking trick sometimes)","spanAttribution":[{"authorID":"955d8317-d85a-52bc-ab1a-6d672c40e0e9","start":0,"end":339}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":67,"sourceSpecific":{"action_type":174,"author_id":45368}}
64
+ {"documentID":"a0c51ffd-e2bb-5855-b78a-964de39f3c3d","authorIDs":["955d8317-d85a-52bc-ab1a-6d672c40e0e9"],"fullText":"The thing with excellent seafood is that it doesn't stay a secret long. There are pretty much no \"hole in the wall\" seafood spots.","spanAttribution":[{"authorID":"955d8317-d85a-52bc-ab1a-6d672c40e0e9","start":0,"end":130}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":24,"sourceSpecific":{"action_type":399,"author_id":45368}}
65
+ {"documentID":"7c354240-0869-5abe-9692-47110de6ef4e","authorIDs":["f6653abe-94b7-56df-b431-f6a9270d429e"],"fullText":"There's no shame in using spark notes to help follow along with what's going on in the book and look up themes to look out for. \n\nEdit: Also, talk to your professor! Go to office hours. Ask questions. It gets you brownie points, shows you're paying attention, and actually helps you out in class.","spanAttribution":[{"authorID":"f6653abe-94b7-56df-b431-f6a9270d429e","start":0,"end":296}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":54,"sourceSpecific":{"action_type":145,"author_id":21040}}
66
+ {"documentID":"2b4e82f7-33cc-513d-9f25-2a61f200323c","authorIDs":["f6653abe-94b7-56df-b431-f6a9270d429e"],"fullText":"\"Never shall I forget that night, the first night in camp, which has turned my life into one long night, seven times cursed and seven times sealed....Never shall I forget those moments which murdered my God and my soul and turned my dreams to dust. Never shall I forget these things, even if I am condemned to live as long as God Himself. Never.\"\n\nNight is seriously depressing. <PERSON> and <PERSON> should be read close together. Diary of a Young Girl is about staying hopeful in the face of persecution, but Night takes that hope and stomps it into oblivion. It's always such a surprise anyone made it out alive, much less sane.","spanAttribution":[{"authorID":"f6653abe-94b7-56df-b431-f6a9270d429e","start":0,"end":634}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":116,"sourceSpecific":{"action_type":145,"author_id":21040}}
67
+ {"documentID":"99a68513-c6fc-5a2d-90ed-6b042a52cf6a","authorIDs":["f6653abe-94b7-56df-b431-f6a9270d429e"],"fullText":"I definitely need to reread this sometime haha. It's one of my favorite books but I gave my copy away a few years back. \n\nI thought the same about the psychological side of things after it ended. I mean the race never really ends and the novel spends little time before arriving at the starting line. What's funny is a few years later, I did a ruck marathon in New Mexico. I pretty much explained the book to my body and started comparing it with our heavier weight but smaller distance. At a certain point, your body stops hurting as much but your brain tells you you need to stop. If I personally hadn't trained or done my homework, I would've been done early on.","spanAttribution":[{"authorID":"f6653abe-94b7-56df-b431-f6a9270d429e","start":0,"end":665}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":125,"sourceSpecific":{"action_type":145,"author_id":21040}}
68
+ {"documentID":"cb77a68d-3657-59ae-8b0a-d4a5cdfc3768","authorIDs":["f6653abe-94b7-56df-b431-f6a9270d429e"],"fullText":"It's probably the first view of what the Holocaust was like we see in any format. You read about the persecution and watch plenty of movies about the war, but <PERSON> was the first to make me feel the gravity of what happened.","spanAttribution":[{"authorID":"f6653abe-94b7-56df-b431-f6a9270d429e","start":0,"end":225}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":43,"sourceSpecific":{"action_type":145,"author_id":21040}}
69
+ {"documentID":"bcfad015-30b9-5957-8807-56de3c8d8df4","authorIDs":["f6653abe-94b7-56df-b431-f6a9270d429e"],"fullText":"1. Not at all. I get immersed pretty easily if the story is good enough. \n\n2. No. There are a ton of female narrators. The gender of the narrator has never changed my opinion on any audiobook. \n\n3. Nothing. It's not a real problem. Buy audiobooks with multiple narrators if you have a problem with it. Support the kind of audiobooks you want more of. \n\n4. No. \n\nHow does the gender of the narrator affect your personal understanding of any book? I can only assume you're trolling since this is easily the most insignificant issue I've never heard of. You seem to see books and their meanings as \"delicate\" when that's not the case at all. Good books are meant to be experienced in different ways and looked at from different angles.","spanAttribution":[{"authorID":"f6653abe-94b7-56df-b431-f6a9270d429e","start":0,"end":732}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":132,"sourceSpecific":{"action_type":145,"author_id":21040}}
70
+ {"documentID":"cc11c64a-b274-53e8-8206-f9f0df2f08e5","authorIDs":["f6653abe-94b7-56df-b431-f6a9270d429e"],"fullText":"The final bit of torture in The Girl Next Door. At that point, you honestly don't want to hear about it.","spanAttribution":[{"authorID":"f6653abe-94b7-56df-b431-f6a9270d429e","start":0,"end":104}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":21,"sourceSpecific":{"action_type":145,"author_id":21040}}
71
+ {"documentID":"36ff973b-8b2d-5192-9011-230fea2229b0","authorIDs":["f6653abe-94b7-56df-b431-f6a9270d429e"],"fullText":"That feels like it sums up Night pretty well. <PERSON> speaks pretty highly of his father in the novel. He spent most of his time trying to keep his son alive and it's probably what cost him his life towards the end.","spanAttribution":[{"authorID":"f6653abe-94b7-56df-b431-f6a9270d429e","start":0,"end":214}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":42,"sourceSpecific":{"action_type":145,"author_id":21040}}
72
+ {"documentID":"2f2872b9-a0ec-54b7-a4cb-f5ff04e240ad","authorIDs":["f6653abe-94b7-56df-b431-f6a9270d429e"],"fullText":"I do the same when switching between fiction and nonfiction. When I get tired of one, I go to the other.","spanAttribution":[{"authorID":"f6653abe-94b7-56df-b431-f6a9270d429e","start":0,"end":104}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":21,"sourceSpecific":{"action_type":145,"author_id":21040}}
73
+ {"documentID":"1f538e3c-b1cb-5ed6-adc4-a4e1eff023ee","authorIDs":["f6653abe-94b7-56df-b431-f6a9270d429e"],"fullText":"Makes sense. It's pretty much just a historical event to anyone under 20 now.","spanAttribution":[{"authorID":"f6653abe-94b7-56df-b431-f6a9270d429e","start":0,"end":77}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":14,"sourceSpecific":{"action_type":145,"author_id":21040}}
74
+ {"documentID":"1bf58387-ede0-5664-a4fe-5897607b5e51","authorIDs":["f6653abe-94b7-56df-b431-f6a9270d429e"],"fullText":"**The Better Angel's of Our Nature: Why Violence Has Declined, by <PERSON>*. It's a pretty interesting read so far, going into depth about how despite public perception, a ton of data shows that we're living in an era of unprecedented peace. War and violence are not extinct, but the chance of dying as a result of violence has significantly decreased over the course of human history. \n\nAlso **Cat's Cradle, by <PERSON>** since you people praise it as if it's the perfect novel.","spanAttribution":[{"authorID":"f6653abe-94b7-56df-b431-f6a9270d429e","start":0,"end":490}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":84,"sourceSpecific":{"action_type":145,"author_id":21040}}
75
+ {"documentID":"94063f95-e14f-5886-8e6f-e03cbac872b6","authorIDs":["f6653abe-94b7-56df-b431-f6a9270d429e"],"fullText":"I'm a big fan, even after they started going in their own direction. To be honest, the show would be way more expensive, have way too many characters, and be way too tedious. In a book, those things don't usually bother me. In a show, I feel like they'd drag it down.","spanAttribution":[{"authorID":"f6653abe-94b7-56df-b431-f6a9270d429e","start":0,"end":267}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":52,"sourceSpecific":{"action_type":145,"author_id":21040}}
76
+ {"documentID":"feba733e-deb9-58e3-92d9-8c78eed7ebfe","authorIDs":["f6653abe-94b7-56df-b431-f6a9270d429e"],"fullText":"Storm of Swords really is the most satisfying book in ASOIF, IMO. It's where the series shines at what it does best.","spanAttribution":[{"authorID":"f6653abe-94b7-56df-b431-f6a9270d429e","start":0,"end":116}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":22,"sourceSpecific":{"action_type":145,"author_id":21040}}
77
+ {"documentID":"46faa32c-7d30-56d2-ac97-2734a00c4251","authorIDs":["f6653abe-94b7-56df-b431-f6a9270d429e"],"fullText":"I took a class on <PERSON> and <PERSON> in college last year. A girl asked why we weren't reading War and Peace. He told us War and Peace is so long and complex that it has its own class.","spanAttribution":[{"authorID":"f6653abe-94b7-56df-b431-f6a9270d429e","start":0,"end":188}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":39,"sourceSpecific":{"action_type":145,"author_id":21040}}
78
+ {"documentID":"2054673a-5b12-5ee4-b1ad-76d44c667a6b","authorIDs":["f6653abe-94b7-56df-b431-f6a9270d429e"],"fullText":"Could it be What We Saw by <PERSON>? I'm not sure if it's it but the basic premise is the same.","spanAttribution":[{"authorID":"f6653abe-94b7-56df-b431-f6a9270d429e","start":0,"end":101}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":22,"sourceSpecific":{"action_type":145,"author_id":21040}}
79
+ {"documentID":"fa4d6cc0-458d-5b2a-bdca-eee63ccc9133","authorIDs":["f6653abe-94b7-56df-b431-f6a9270d429e"],"fullText":"It sounds more like a personal hang-up of yours rather than a real problem. I've never heard of anyone being so completely distracted by the gender of a character's voice in comparison to the narrator that they believed it endangered the meaning of the book. It sounds more ridiculous every time I think about it. It sounds more like you're the delicate one, not the books. \n\nThe problem in general sounds incredibly shallow to me. You may as well be hung up on a character's name or one of the many insignificant details of their lives. I knew a girl who didn't like the Color Purple because of the use of the N word. This issue seems to be in that same category of complaints.","spanAttribution":[{"authorID":"f6653abe-94b7-56df-b431-f6a9270d429e","start":0,"end":678}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":125,"sourceSpecific":{"action_type":145,"author_id":21040}}
80
+ {"documentID":"267b3cb1-d869-5fa1-8afa-a2950914fc30","authorIDs":["f6653abe-94b7-56df-b431-f6a9270d429e"],"fullText":"Like with most social issues, people need to chill and talk it out like adults. It's not that hard to figure out the difference between someone making fun of your culture and someone trying to embrace, celebrate, or learn about your culture.","spanAttribution":[{"authorID":"f6653abe-94b7-56df-b431-f6a9270d429e","start":0,"end":241}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":42,"sourceSpecific":{"action_type":145,"author_id":21040}}
81
+ {"documentID":"5d7cec4e-3963-56a6-aea1-aa209fa834ed","authorIDs":["61e5a9fc-6d1d-5186-ad0b-82db22d35866"],"fullText":"&gt; How about we play a little game of who pulls the highest random number out of his ass? The winner gets to distribute this imaginary amount of money!\n\nThat's the official number, which means the real number is likely even higher, as is usual.\n\nBut keep on with your insults and ignorance. Many Germans are incredibly arrogant and think their country is untouchable. It will be a rude awakening if Germany misses the jump on another major industry like it did with the internet.\n\nWe can't cling to our automotive industry forever if we refuse to innovate.\n\n&gt;We don't even have any reall immigration system. It's you that keeps calling refugees immigrants. But sure, let's restrict one of our countries basic rights. And while we're at it we could restrict the other basic rights as well.\n\nDon't delude yourself. How many are being deported? A few hundred up to a thousand per month? \n\nThey are here to stay. Like it or not. Funny thing is those refugees could actually get German citizenship quicker than my wife, who is from a non-EU country.","spanAttribution":[{"authorID":"61e5a9fc-6d1d-5186-ad0b-82db22d35866","start":0,"end":1048}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":184,"sourceSpecific":{"action_type":949,"author_id":9126}}
82
+ {"documentID":"5f8952c5-1ce2-5f28-8e48-45ad8a3ea676","authorIDs":["61e5a9fc-6d1d-5186-ad0b-82db22d35866"],"fullText":"&gt; Yes, as I said, they aren't good sources, but I found nothing else with actual numbers regarding the education level. I also note that Nahles doesn't say anything about that, just that jobs for immigrants shall not displace regular jobs. \n\nWell I think her comments about the employability of those people speak for themselves to get an idea of their education level. Furthermore, you can look up old stats from the education level in Syria. Then you also have to ask yourself how high the quality of that education even is. A diploma doesn't mean anything if they were only taught crap. Also don't forget that only roughly half of those people are even from Syria.\n\n&gt;I don't like blanket complaining without an idea how to fix it. It's a tech mindset\n\nI understand this. But I'm not an engineer. I'm more of a finance guy who's interested in capital markets and international politics. I sort my trash, use public transport as best as I can and don't eat that much meat. But it's just something that is beginning to slip underneath us.\n\nRead https:\/\/en.wikipedia.org\/wiki\/Clathrate_gun_hypothesis if you're interested in that sort of thing.\n\nIn any case, whether temperature increase would accelerate or not, many parts of Africa will become uninhabitable in a few decades, all the while they experience a population boom. Honest question, where do you think they will go if their homelands become inhospitable? It's not a question for you, but for your children.","spanAttribution":[{"authorID":"61e5a9fc-6d1d-5186-ad0b-82db22d35866","start":0,"end":1471}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":253,"sourceSpecific":{"action_type":949,"author_id":9126}}
83
+ {"documentID":"3e28d0e2-08ff-5a61-8b8f-e59ed5b3ba15","authorIDs":["61e5a9fc-6d1d-5186-ad0b-82db22d35866"],"fullText":"&gt; Source?\n\nhttp:\/\/www.spiegel.de\/politik\/deutschland\/fluechtlinge-bund-stellt-knapp-94-milliarden-euro-bis-2020-bereit-a-1092256.html\n\n&gt;Wat\n\nGermany is losing the war for talent. We can't rest on that cushion that is our automotive industry forever.\n\n&gt;Well, why are you complaining then?\n\nI'd like to preserve Germany how it was when I grew up in it. I don't want to feel like I'm on a bazaar when I walk through the city centre. Is that so bad?\n\n&gt;I would think Syria is not a EU country either, but meh.\n\nI know, how racist of me to find it unfair that a person who's married to a German citizen has to wait longer for citizenship than illiterate <PERSON>. I'm polarizing here, but do you think that's fair? Do you think educated people will come to Germany if they know they'd have to wait longer than people who don't bring anything to this country?\n\nWe don't lure them with high salaries or bonuses, we don't lure them with scientific grants. How do we get international talent then?","spanAttribution":[{"authorID":"61e5a9fc-6d1d-5186-ad0b-82db22d35866","start":0,"end":995}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":172,"sourceSpecific":{"action_type":949,"author_id":9126}}
84
+ {"documentID":"26c691dd-b3be-51bc-8057-b9a1a3b3231d","authorIDs":["61e5a9fc-6d1d-5186-ad0b-82db22d35866"],"fullText":"How much better is the combat system in the second one, compared to the first Witcher?\n\nI tried multiple times to get into The Witcher but I always stop not even an hour into the game.\n\nAlso I own all GOTY editions :|","spanAttribution":[{"authorID":"61e5a9fc-6d1d-5186-ad0b-82db22d35866","start":0,"end":216}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":42,"sourceSpecific":{"action_type":684,"author_id":9126}}
85
+ {"documentID":"0a7b2642-40f7-5428-99f3-c9f682fdd929","authorIDs":["61e5a9fc-6d1d-5186-ad0b-82db22d35866"],"fullText":"&gt;94 oder 100? What's the difference? I mean we couldn't use 6 billion \u20ac to fix our streets... or could we? Or we could buy another drone...\n\nOr we could use 100 on something that promises a greater return than to dump it like this.\n\n&gt;Yeah, we could actually support all children\/youth growing up in Germany, but since your more the 'Kinder statt Inder' type we are going to \"lose the \"war\"\".\n\nWar for talent is an existing term that has been around for a while. No need to show your ignorance about it by putting in quotation marks.\n\n&gt;I dunno, I hate people using cellphones, and I don't like cars either. So maybe we could ban both - would also improve overall health. And 'Anglizismen'! Fuck that shit. I want everything to be the way it was when I was 6!!!\n\nNo comment. Keep misinterpreting me.\n\n&gt;Nah, it's not the fact that your wife does not get her visa that makes you a racist, it's the racist comment that makes you a racist. That added to the bigotry and lies... meh. Next thing you need to complain about how everyone calls you a Nazi for telling it how it is.\n\nI didn't speak of a visa, I was talking about citizenship.\n\n&gt;Well you obviously think that \"international talent\" has light skin.\n\nI don't care what colour international talent has, as long as it has any talent. Which I have great doubts about regarding our new arrivals. Numerous politicians have already stated that they will not enter the workforce for 20 years.\n\nBut I mean, you live in Berlin so you're used to wasting money without getting anything in return. You've already been punished enough living in such a successful city, have a nice day.","spanAttribution":[{"authorID":"61e5a9fc-6d1d-5186-ad0b-82db22d35866","start":0,"end":1639}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":299,"sourceSpecific":{"action_type":949,"author_id":9126}}
86
+ {"documentID":"643efab2-03bd-5405-b6d2-f1a1a8847a9f","authorIDs":["61e5a9fc-6d1d-5186-ad0b-82db22d35866"],"fullText":"what's a good replacement exercise for chinups?","spanAttribution":[{"authorID":"61e5a9fc-6d1d-5186-ad0b-82db22d35866","start":0,"end":46}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":7,"sourceSpecific":{"action_type":52,"author_id":9126}}
87
+ {"documentID":"e516a477-29d7-5e94-81fa-4963d93cdfb7","authorIDs":["61e5a9fc-6d1d-5186-ad0b-82db22d35866"],"fullText":"Why is the afd getting a few votes such a big disaster?\n\nIf 81% of the population desire a change in refugee policy and none of the major parties are willing to provide that, it's only natural a contender will rise up.","spanAttribution":[{"authorID":"61e5a9fc-6d1d-5186-ad0b-82db22d35866","start":0,"end":217}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":42,"sourceSpecific":{"action_type":949,"author_id":9126}}
88
+ {"documentID":"5763faf9-1f55-52ca-a3db-f600074991b1","authorIDs":["61e5a9fc-6d1d-5186-ad0b-82db22d35866"],"fullText":"If it was September 2015 now, you'd be ostracized already for making such comments.","spanAttribution":[{"authorID":"61e5a9fc-6d1d-5186-ad0b-82db22d35866","start":0,"end":82}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":14,"sourceSpecific":{"action_type":949,"author_id":9126}}
89
+ {"documentID":"8f1110b0-8428-5dd2-bb38-831e723e6f1a","authorIDs":["61e5a9fc-6d1d-5186-ad0b-82db22d35866"],"fullText":"Ha, I guess you haven't been paying attention to the media","spanAttribution":[{"authorID":"61e5a9fc-6d1d-5186-ad0b-82db22d35866","start":0,"end":57}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":11,"sourceSpecific":{"action_type":949,"author_id":9126}}
90
+ {"documentID":"5c7fe104-1e0b-5801-bc6b-52bf62564b94","authorIDs":["61e5a9fc-6d1d-5186-ad0b-82db22d35866"],"fullText":"That's kind of their own problem.\n\nIf you want to conquer shit in Europe then pay the consequences. (which so far have been not nearly drastic enough imo)","spanAttribution":[{"authorID":"61e5a9fc-6d1d-5186-ad0b-82db22d35866","start":0,"end":153}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":28,"sourceSpecific":{"action_type":43,"author_id":9126}}
91
+ {"documentID":"7b0e0588-e6fa-58ed-8141-a8beb037c4dd","authorIDs":["61e5a9fc-6d1d-5186-ad0b-82db22d35866"],"fullText":"Maybe he'll groom <PERSON> for it","spanAttribution":[{"authorID":"61e5a9fc-6d1d-5186-ad0b-82db22d35866","start":0,"end":33}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["da","en"],"lengthWords":6,"sourceSpecific":{"action_type":43,"author_id":9126}}
92
+ {"documentID":"ced41e15-6e81-5cf5-b217-a08e6aa045fd","authorIDs":["61e5a9fc-6d1d-5186-ad0b-82db22d35866"],"fullText":"great shitpost","spanAttribution":[{"authorID":"61e5a9fc-6d1d-5186-ad0b-82db22d35866","start":0,"end":13}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["sq","en"],"lengthWords":2,"sourceSpecific":{"action_type":949,"author_id":9126}}
93
+ {"documentID":"dbfaf101-0898-5f20-b0b0-b353d1804365","authorIDs":["61e5a9fc-6d1d-5186-ad0b-82db22d35866"],"fullText":"Of course. Anything right of CDU CSU is literally <PERSON>","spanAttribution":[{"authorID":"61e5a9fc-6d1d-5186-ad0b-82db22d35866","start":0,"end":56}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":10,"sourceSpecific":{"action_type":949,"author_id":9126}}
94
+ {"documentID":"48f2ded1-5301-5dcf-ae0c-02a882a16406","authorIDs":["61e5a9fc-6d1d-5186-ad0b-82db22d35866"],"fullText":"In any case I hope for a Russian president who will have a more relaxed and open foreign policy. \n\nIt will only help the people of Russia and their neighbours.","spanAttribution":[{"authorID":"61e5a9fc-6d1d-5186-ad0b-82db22d35866","start":0,"end":159}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":30,"sourceSpecific":{"action_type":43,"author_id":9126}}
95
+ {"documentID":"5cbb1a7a-1b4d-581b-9eb1-5f35c18e24c1","authorIDs":["61e5a9fc-6d1d-5186-ad0b-82db22d35866"],"fullText":"What would you say if we took back Kaliningrad by force to protect some poor German minorities?","spanAttribution":[{"authorID":"61e5a9fc-6d1d-5186-ad0b-82db22d35866","start":0,"end":94}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":17,"sourceSpecific":{"action_type":43,"author_id":9126}}
96
+ {"documentID":"c68faf00-eaa7-5fc4-bbc3-b076160dcd80","authorIDs":["61e5a9fc-6d1d-5186-ad0b-82db22d35866"],"fullText":"It's not 1986 anymore.\n\nGermany's political spectrum as a whole has moved to the left in the past decade.","spanAttribution":[{"authorID":"61e5a9fc-6d1d-5186-ad0b-82db22d35866","start":0,"end":104}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":19,"sourceSpecific":{"action_type":949,"author_id":9126}}
97
+ {"documentID":"c73910f4-bc6c-586f-ae23-0664158b8563","authorIDs":["6b6e4732-eef2-53fe-988f-feec24d7abce"],"fullText":"I expect a lot of cries of \"oppression\" and \"tyranny\" and also Norway's government is \"literally <PERSON>\" and all that.\n\nBut the fact remains that you can't discriminate against your clientele. If you open a business, it has to be open to the whole of society. There are many good reasons for this (for one, to prevent ghettoization) but in any case the law was there and she should have known about it before opening a business.\n\nAlso,\n&gt; \"I see it as a totalitarian symbol. When I see a hijab, I don't think of religion, but of totalitarian ideologies and regimes,\" she told the judges, cited by daily Verdens Gang.\n\nThis is why the media is bad for you, folks. \n\nI mean I may or may not feel the same way, being disgusted by religious people obsessed with \"modesty\", which basically creates a terrible culture of (self)shame. But I wouldn't act on it because you have to respect peoples' choices as long as they are not forced upon you, even if they are completely retarded choices.","spanAttribution":[{"authorID":"6b6e4732-eef2-53fe-988f-feec24d7abce","start":0,"end":985}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":178,"sourceSpecific":{"action_type":43,"author_id":49111}}
98
+ {"documentID":"0b97fbf9-b15d-5d7b-af19-85e4b1257b90","authorIDs":["6b6e4732-eef2-53fe-988f-feec24d7abce"],"fullText":"lol what the hell are you on?\n\nthe greek people have democratically electing their representatives for the past 42 years\n\ndo you mean to tell us that all these voters were doing it sarcastically?","spanAttribution":[{"authorID":"6b6e4732-eef2-53fe-988f-feec24d7abce","start":0,"end":194}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":34,"sourceSpecific":{"action_type":43,"author_id":49111}}
99
+ {"documentID":"a270294a-411d-5be6-9d67-aab56c7d3f4e","authorIDs":["6b6e4732-eef2-53fe-988f-feec24d7abce"],"fullText":"Libertarians, I hate the idea that I can't just shoot you and steal all your stuff, but fortunately for you the Government protects you","spanAttribution":[{"authorID":"6b6e4732-eef2-53fe-988f-feec24d7abce","start":0,"end":134}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":24,"sourceSpecific":{"action_type":43,"author_id":49111}}
100
+ {"documentID":"b7341061-a032-5343-8745-9fcd16df82bb","authorIDs":["6b6e4732-eef2-53fe-988f-feec24d7abce"],"fullText":"&gt; Thats a bunch of negative Greek exceptionalism\n\nyou don't understand, we actually *are* negatively exceptional\n\nwe are the worst of the worst. at least let us fucking enjoy it","spanAttribution":[{"authorID":"6b6e4732-eef2-53fe-988f-feec24d7abce","start":0,"end":179}],"isNeedle":false,"dateCollected":"2022-10-11","publiclyAvailable":true,"collectionNum":"LLNL1.1","source":"reddit.com","deidentified":false,"languages":["en"],"lengthWords":30,"sourceSpecific":{"action_type":43,"author_id":49111}}
model_assets/luar_clone2_top_100/embedding/candidates/dataset.arrow ADDED
Binary file (461 kB). View file
 
model_assets/luar_clone2_top_100/embedding/candidates/dataset_info.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "embedding": {
6
+ "feature": {
7
+ "dtype": "float64",
8
+ "_type": "Value"
9
+ },
10
+ "_type": "Sequence"
11
+ },
12
+ "index": {
13
+ "dtype": "int64",
14
+ "_type": "Value"
15
+ }
16
+ },
17
+ "homepage": "",
18
+ "license": ""
19
+ }
model_assets/luar_clone2_top_100/embedding/candidates/state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "dataset.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "31aefd38e17a3489",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": null
13
+ }
model_assets/luar_clone2_top_100/embedding/dataset_dict.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"splits": ["queries", "candidates"]}
model_assets/luar_clone2_top_100/embedding/queries/dataset.arrow ADDED
Binary file (412 kB). View file
 
model_assets/luar_clone2_top_100/embedding/queries/dataset_info.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "embedding": {
6
+ "feature": {
7
+ "dtype": "float64",
8
+ "_type": "Value"
9
+ },
10
+ "_type": "Sequence"
11
+ },
12
+ "index": {
13
+ "dtype": "int64",
14
+ "_type": "Value"
15
+ }
16
+ },
17
+ "homepage": "",
18
+ "license": ""
19
+ }
model_assets/luar_clone2_top_100/embedding/queries/state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "dataset.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "eaf5c4cd09b26630",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": null
13
+ }
model_assets/luar_clone2_top_100/pairwise_distances.csv ADDED
@@ -0,0 +1,1473 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ index,queries,candidates,distances
2
+ 0,0,457731,0.2123971
3
+ 0,0,280918,0.22664481
4
+ 0,0,821973,0.23736852
5
+ 0,0,1077391,0.24901158
6
+ 0,0,412221,0.25021327
7
+ 0,0,886237,0.2507804
8
+ 0,0,169938,0.2536859
9
+ 0,0,750706,0.25545526
10
+ 0,0,810204,0.25593752
11
+ 0,0,309384,0.25677913
12
+ 0,0,408522,0.2578941
13
+ 0,0,642186,0.258088
14
+ 0,0,623494,0.2581544
15
+ 0,0,323740,0.25890243
16
+ 0,0,113491,0.25937283
17
+ 0,0,423665,0.25939745
18
+ 1,1,513570,0.21098125
19
+ 1,1,816374,0.21199524
20
+ 1,1,371402,0.21314216
21
+ 1,1,429406,0.2181136
22
+ 1,1,434780,0.21909261
23
+ 1,1,153909,0.21944797
24
+ 1,1,516026,0.2194711
25
+ 1,1,340890,0.22495794
26
+ 1,1,489371,0.22560024
27
+ 1,1,394139,0.22717029
28
+ 1,1,479768,0.22873634
29
+ 1,1,664043,0.22878754
30
+ 1,1,318554,0.22944921
31
+ 1,1,164161,0.22968721
32
+ 1,1,689296,0.23293173
33
+ 1,1,598988,0.23522991
34
+ 2,2,356111,0.212538
35
+ 2,2,85459,0.21840644
36
+ 2,2,829278,0.23170847
37
+ 2,2,93297,0.23519635
38
+ 2,2,335964,0.24573278
39
+ 2,2,981990,0.24680853
40
+ 2,2,1008205,0.24944603
41
+ 2,2,359404,0.2533421
42
+ 2,2,804051,0.2542078
43
+ 2,2,155837,0.25518835
44
+ 2,2,606860,0.25633407
45
+ 2,2,1050640,0.25932842
46
+ 2,2,90255,0.26047546
47
+ 2,2,718460,0.2610994
48
+ 2,2,475241,0.26143968
49
+ 2,2,116837,0.26300275
50
+ 3,3,848201,0.13956136
51
+ 3,3,28629,0.14244348
52
+ 3,3,131509,0.15517735
53
+ 3,3,44346,0.1608575
54
+ 3,3,431139,0.16467124
55
+ 3,3,28631,0.16571635
56
+ 3,3,727392,0.17754352
57
+ 3,3,315041,0.17927969
58
+ 3,3,28636,0.17949575
59
+ 3,3,70024,0.1795569
60
+ 3,3,727393,0.18019223
61
+ 3,3,727406,0.18063718
62
+ 3,3,687539,0.18140912
63
+ 3,3,19960,0.18294764
64
+ 3,3,385780,0.18327928
65
+ 3,3,784337,0.18336129
66
+ 4,4,482325,0.18320864
67
+ 4,4,1066012,0.22993886
68
+ 4,4,514101,0.24564648
69
+ 4,4,450183,0.25050294
70
+ 4,4,51217,0.2506768
71
+ 4,4,804565,0.25539887
72
+ 4,4,623583,0.25683123
73
+ 4,4,613428,0.2581445
74
+ 4,4,675575,0.25927514
75
+ 4,4,304972,0.26112914
76
+ 4,4,662313,0.2612719
77
+ 4,4,712045,0.2633087
78
+ 4,4,262024,0.26492906
79
+ 4,4,169926,0.2659735
80
+ 4,4,406097,0.2679541
81
+ 4,4,531843,0.26953882
82
+ 5,5,625699,0.10387188
83
+ 5,5,432097,0.115983486
84
+ 5,5,536712,0.13316673
85
+ 5,5,25219,0.14205563
86
+ 5,5,385738,0.14894658
87
+ 5,5,420643,0.15331495
88
+ 5,5,783919,0.15741348
89
+ 5,5,315869,0.15900767
90
+ 5,5,453138,0.16179478
91
+ 5,5,212350,0.16338712
92
+ 5,5,131500,0.1646694
93
+ 5,5,501414,0.16586709
94
+ 5,5,692237,0.16662222
95
+ 5,5,44338,0.1677463
96
+ 5,5,385736,0.16793883
97
+ 5,5,304176,0.16814858
98
+ 6,6,865287,0.17271376
99
+ 6,6,90244,0.1772806
100
+ 6,6,288210,0.18194139
101
+ 6,6,146274,0.189924
102
+ 6,6,1037499,0.19061136
103
+ 6,6,865292,0.19403917
104
+ 6,6,677855,0.19780749
105
+ 6,6,437992,0.1993599
106
+ 6,6,90255,0.20329124
107
+ 6,6,189460,0.20622134
108
+ 6,6,90249,0.20647514
109
+ 6,6,642847,0.21131527
110
+ 6,6,918979,0.21492451
111
+ 6,6,865283,0.21589017
112
+ 6,6,414077,0.21988195
113
+ 6,6,1039529,0.22484988
114
+ 7,7,204447,0.20327741
115
+ 7,7,428128,0.20985842
116
+ 7,7,423822,0.21692508
117
+ 7,7,423823,0.21692508
118
+ 7,7,857442,0.21726286
119
+ 7,7,721533,0.22181952
120
+ 7,7,671717,0.22845471
121
+ 7,7,501564,0.22941643
122
+ 7,7,584029,0.23599368
123
+ 7,7,645441,0.23770326
124
+ 7,7,376639,0.23849714
125
+ 7,7,624606,0.23939717
126
+ 7,7,1029518,0.24265748
127
+ 7,7,84222,0.24310952
128
+ 7,7,232316,0.24355
129
+ 7,7,963145,0.24362934
130
+ 8,8,716306,0.19762808
131
+ 8,8,656129,0.20649981
132
+ 8,8,1080614,0.208094
133
+ 8,8,1083895,0.2224586
134
+ 8,8,315347,0.22250521
135
+ 8,8,7114,0.223396
136
+ 8,8,1083892,0.22544008
137
+ 8,8,840809,0.23118079
138
+ 8,8,534387,0.2343576
139
+ 8,8,538218,0.2347008
140
+ 8,8,959101,0.23768765
141
+ 8,8,619763,0.24168336
142
+ 8,8,667427,0.24176711
143
+ 8,8,850307,0.24219418
144
+ 8,8,716182,0.24291986
145
+ 8,8,791284,0.2435081
146
+ 9,9,614084,0.14947027
147
+ 9,9,45570,0.16395754
148
+ 9,9,44346,0.16613972
149
+ 9,9,45574,0.16812706
150
+ 9,9,484860,0.1734528
151
+ 9,9,636736,0.1771152
152
+ 9,9,574060,0.1774931
153
+ 9,9,436757,0.18043792
154
+ 9,9,58,0.1825819
155
+ 9,9,230345,0.18273473
156
+ 9,9,484863,0.18289125
157
+ 9,9,173974,0.18638217
158
+ 9,9,541122,0.18645787
159
+ 9,9,522138,0.18719572
160
+ 9,9,200615,0.18728411
161
+ 9,9,795789,0.1883859
162
+ 10,10,254645,0.21773028
163
+ 10,10,261197,0.22504991
164
+ 10,10,877862,0.22918165
165
+ 10,10,413728,0.23269963
166
+ 10,10,57326,0.23429722
167
+ 10,10,115613,0.24299121
168
+ 10,10,111340,0.2499243
169
+ 10,10,132243,0.25058037
170
+ 10,10,701257,0.25148195
171
+ 10,10,520032,0.2522589
172
+ 10,10,275676,0.25426018
173
+ 10,10,379941,0.25494707
174
+ 10,10,394003,0.25530338
175
+ 10,10,421501,0.25627273
176
+ 10,10,73125,0.25638497
177
+ 10,10,973003,0.25671983
178
+ 11,11,587416,0.21174067
179
+ 11,11,368238,0.21315509
180
+ 11,11,114389,0.21462876
181
+ 11,11,138078,0.21809936
182
+ 11,11,368237,0.2227462
183
+ 11,11,39096,0.2231409
184
+ 11,11,675214,0.2252472
185
+ 11,11,200617,0.23626107
186
+ 11,11,586073,0.23639935
187
+ 11,11,315059,0.23929757
188
+ 11,11,327474,0.24253798
189
+ 11,11,90520,0.24448472
190
+ 11,11,44350,0.24488157
191
+ 11,11,385768,0.24823213
192
+ 11,11,668671,0.24954599
193
+ 11,11,1175,0.2502439
194
+ 12,12,1017848,0.18807083
195
+ 12,12,63823,0.21425897
196
+ 12,12,449203,0.23655039
197
+ 12,12,353495,0.24616832
198
+ 12,12,944838,0.24712163
199
+ 12,12,313937,0.25128144
200
+ 12,12,320541,0.25151795
201
+ 12,12,376366,0.25186586
202
+ 12,12,638221,0.25589222
203
+ 12,12,972715,0.255908
204
+ 12,12,626566,0.25691617
205
+ 12,12,949803,0.25738275
206
+ 12,12,63819,0.25825316
207
+ 12,12,621686,0.25834042
208
+ 12,12,737514,0.2599485
209
+ 12,12,862091,0.26004565
210
+ 13,13,532730,0.11991179
211
+ 13,13,518776,0.12899953
212
+ 13,13,670555,0.13922346
213
+ 13,13,518774,0.13967818
214
+ 13,13,389247,0.13980955
215
+ 13,13,308395,0.14473903
216
+ 13,13,850310,0.15419865
217
+ 13,13,520331,0.159006
218
+ 13,13,520335,0.159006
219
+ 13,13,74821,0.16401678
220
+ 13,13,815708,0.16488141
221
+ 13,13,327260,0.17014426
222
+ 13,13,464244,0.17075253
223
+ 13,13,868607,0.17119056
224
+ 13,13,342462,0.17320698
225
+ 13,13,520330,0.17356247
226
+ 14,14,306287,0.26418066
227
+ 14,14,738989,0.26532125
228
+ 14,14,585989,0.28390276
229
+ 14,14,116438,0.28595436
230
+ 14,14,502764,0.2881146
231
+ 14,14,330880,0.28995967
232
+ 14,14,797003,0.29399085
233
+ 14,14,407047,0.2956869
234
+ 14,14,753920,0.29583597
235
+ 14,14,161111,0.297823
236
+ 14,14,479906,0.29791492
237
+ 14,14,423306,0.300061
238
+ 14,14,773365,0.30151522
239
+ 14,14,694127,0.30301124
240
+ 14,14,462449,0.30361682
241
+ 14,14,65759,0.30393457
242
+ 15,15,345372,0.2230627
243
+ 15,15,886469,0.23132837
244
+ 15,15,3496,0.23957986
245
+ 15,15,970897,0.24346918
246
+ 15,15,559468,0.24446625
247
+ 15,15,828514,0.25247997
248
+ 15,15,363238,0.25330108
249
+ 15,15,945265,0.25617653
250
+ 15,15,409613,0.2565676
251
+ 15,15,123087,0.2601812
252
+ 15,15,734445,0.26108164
253
+ 15,15,303238,0.26466703
254
+ 15,15,1045629,0.26507872
255
+ 15,15,858992,0.26575756
256
+ 15,15,1068526,0.266501
257
+ 15,15,71370,0.2673658
258
+ 16,16,1062237,0.17362326
259
+ 16,16,875591,0.18353158
260
+ 16,16,1050673,0.1871987
261
+ 16,16,348293,0.19089437
262
+ 16,16,576066,0.19502133
263
+ 16,16,796430,0.19808704
264
+ 16,16,797599,0.21011293
265
+ 16,16,400626,0.21645236
266
+ 16,16,19033,0.2181679
267
+ 16,16,50382,0.21884745
268
+ 16,16,20604,0.21973199
269
+ 16,16,864720,0.22047633
270
+ 16,16,217829,0.2211166
271
+ 16,16,724854,0.22290128
272
+ 16,16,647077,0.22322541
273
+ 16,16,502510,0.2245661
274
+ 17,17,78528,0.20192903
275
+ 17,17,271237,0.20500153
276
+ 17,17,726594,0.22189975
277
+ 17,17,964690,0.2258513
278
+ 17,17,1046575,0.23058534
279
+ 17,17,326278,0.23968613
280
+ 17,17,1060492,0.23969239
281
+ 17,17,38166,0.24652302
282
+ 17,17,315244,0.25124186
283
+ 17,17,459833,0.25333846
284
+ 17,17,908285,0.253614
285
+ 17,17,124055,0.25429797
286
+ 17,17,1058583,0.25451052
287
+ 17,17,927093,0.25495374
288
+ 17,17,641559,0.25501013
289
+ 17,17,74981,0.25565785
290
+ 18,18,895628,0.19154042
291
+ 18,18,131817,0.19930333
292
+ 18,18,968467,0.20384407
293
+ 18,18,245257,0.2124238
294
+ 18,18,717458,0.21465337
295
+ 18,18,451092,0.21609002
296
+ 18,18,732380,0.21970105
297
+ 18,18,86298,0.22283441
298
+ 18,18,634246,0.22353315
299
+ 18,18,1054763,0.22519541
300
+ 18,18,36399,0.22661531
301
+ 18,18,248708,0.23075026
302
+ 18,18,373868,0.23433638
303
+ 18,18,956207,0.23543364
304
+ 18,18,40582,0.23568648
305
+ 18,18,40586,0.23671496
306
+ 19,19,998068,0.20887887
307
+ 19,19,728343,0.20967704
308
+ 19,19,334550,0.21704865
309
+ 19,19,659068,0.22156906
310
+ 19,19,377616,0.23327869
311
+ 19,19,58578,0.235789
312
+ 19,19,3917,0.23591173
313
+ 19,19,1025164,0.24476188
314
+ 19,19,334559,0.24689215
315
+ 19,19,184172,0.24758911
316
+ 19,19,1056475,0.25031704
317
+ 19,19,24429,0.2521773
318
+ 19,19,886052,0.25254178
319
+ 19,19,613299,0.2550248
320
+ 19,19,294917,0.2554503
321
+ 19,19,827992,0.25652802
322
+ 21,21,722549,0.14105034
323
+ 21,21,822417,0.15732217
324
+ 21,21,205183,0.16503894
325
+ 21,21,542489,0.16676533
326
+ 21,21,1041259,0.16922712
327
+ 21,21,849952,0.173361
328
+ 21,21,315634,0.17684317
329
+ 21,21,674606,0.18103349
330
+ 21,21,1019477,0.18147606
331
+ 21,21,346965,0.18993765
332
+ 21,21,44704,0.19513488
333
+ 21,21,607883,0.19546843
334
+ 21,21,347886,0.1958093
335
+ 21,21,53444,0.19679672
336
+ 21,21,1059071,0.19929242
337
+ 21,21,1044322,0.20078272
338
+ 22,22,58675,0.103203
339
+ 22,22,715903,0.12688994
340
+ 22,22,431267,0.12972975
341
+ 22,22,271865,0.1319542
342
+ 22,22,787138,0.13699669
343
+ 22,22,156207,0.13736725
344
+ 22,22,752154,0.13856602
345
+ 22,22,1057879,0.13948357
346
+ 22,22,184794,0.14371103
347
+ 22,22,950814,0.14768136
348
+ 22,22,987063,0.15019822
349
+ 22,22,353892,0.1525743
350
+ 22,22,613258,0.15297532
351
+ 22,22,427617,0.1541161
352
+ 22,22,325485,0.1541161
353
+ 22,22,725090,0.1541161
354
+ 23,23,883918,0.14518374
355
+ 23,23,294456,0.21964908
356
+ 23,23,258321,0.2206676
357
+ 23,23,644457,0.22736609
358
+ 23,23,792219,0.23112172
359
+ 23,23,922504,0.23370284
360
+ 23,23,748106,0.23913014
361
+ 23,23,877018,0.23941833
362
+ 23,23,337255,0.249017
363
+ 23,23,772317,0.24950916
364
+ 23,23,203594,0.25189388
365
+ 23,23,272792,0.2524137
366
+ 23,23,188349,0.25480562
367
+ 23,23,131765,0.2555974
368
+ 23,23,954522,0.25691926
369
+ 23,23,715251,0.25891387
370
+ 24,24,272228,0.16350043
371
+ 24,24,137486,0.19163287
372
+ 24,24,857342,0.20971262
373
+ 24,24,58591,0.21269578
374
+ 24,24,969166,0.21445912
375
+ 24,24,762489,0.21594703
376
+ 24,24,631147,0.21963316
377
+ 24,24,825968,0.21980476
378
+ 24,24,78575,0.22256857
379
+ 24,24,131817,0.22486675
380
+ 24,24,992449,0.22804922
381
+ 24,24,673425,0.22904998
382
+ 24,24,95143,0.22906035
383
+ 24,24,1022338,0.22954506
384
+ 24,24,554160,0.23147118
385
+ 24,24,613209,0.23255658
386
+ 25,25,483782,0.13900256
387
+ 25,25,369347,0.1727944
388
+ 25,25,1025257,0.18646282
389
+ 25,25,639447,0.18809885
390
+ 25,25,1022338,0.19442832
391
+ 25,25,385905,0.1950537
392
+ 25,25,185430,0.20177406
393
+ 25,25,1045204,0.20269388
394
+ 25,25,322235,0.20816672
395
+ 25,25,857342,0.20858043
396
+ 25,25,946706,0.21108305
397
+ 25,25,949733,0.21306473
398
+ 25,25,788745,0.21318549
399
+ 25,25,798048,0.2172218
400
+ 25,25,34459,0.22357166
401
+ 25,25,695911,0.22425383
402
+ 26,26,424632,0.22481948
403
+ 26,26,483229,0.22843158
404
+ 26,26,183972,0.23100477
405
+ 26,26,232218,0.23188251
406
+ 26,26,233169,0.24008971
407
+ 26,26,494316,0.24186826
408
+ 26,26,922917,0.24737096
409
+ 26,26,949489,0.2475639
410
+ 26,26,147139,0.24862844
411
+ 26,26,177593,0.24993104
412
+ 26,26,146774,0.25085634
413
+ 26,26,1039658,0.25107354
414
+ 26,26,286861,0.25239766
415
+ 26,26,308922,0.25583577
416
+ 26,26,640714,0.25705457
417
+ 26,26,924859,0.25878477
418
+ 27,27,36976,0.19013292
419
+ 27,27,6008,0.19324219
420
+ 27,27,281755,0.19452232
421
+ 27,27,807186,0.19918442
422
+ 27,27,556800,0.20302272
423
+ 27,27,755732,0.21412301
424
+ 27,27,229092,0.21632063
425
+ 27,27,967664,0.21722764
426
+ 27,27,677326,0.21806991
427
+ 27,27,664016,0.21959889
428
+ 27,27,883918,0.2213738
429
+ 27,27,408924,0.22296154
430
+ 27,27,695615,0.22305459
431
+ 27,27,273017,0.22870857
432
+ 27,27,762274,0.2353254
433
+ 27,27,1020426,0.23693275
434
+ 28,28,551924,0.18634951
435
+ 28,28,782942,0.2020061
436
+ 28,28,26385,0.20883596
437
+ 28,28,100494,0.21301317
438
+ 28,28,691705,0.21361989
439
+ 28,28,609972,0.21431553
440
+ 28,28,609333,0.21891648
441
+ 28,28,912481,0.22295499
442
+ 28,28,461793,0.22521168
443
+ 28,28,255475,0.22577894
444
+ 28,28,528173,0.22593439
445
+ 28,28,863482,0.22768575
446
+ 28,28,436058,0.22806317
447
+ 28,28,501131,0.22820121
448
+ 28,28,86973,0.23079532
449
+ 28,28,157670,0.23193449
450
+ 29,29,254660,0.21444851
451
+ 29,29,258321,0.22127402
452
+ 29,29,504828,0.22848237
453
+ 29,29,589851,0.23119617
454
+ 29,29,883706,0.23492825
455
+ 29,29,226256,0.24069303
456
+ 29,29,418008,0.24162292
457
+ 29,29,120865,0.24316466
458
+ 29,29,352279,0.24431014
459
+ 29,29,236721,0.24459523
460
+ 29,29,807851,0.24488318
461
+ 29,29,788745,0.24621391
462
+ 29,29,1064698,0.24789721
463
+ 29,29,312577,0.24868536
464
+ 29,29,34459,0.24922621
465
+ 29,29,199849,0.25043792
466
+ 30,30,842368,0.20484406
467
+ 30,30,444387,0.20997268
468
+ 30,30,676286,0.21895075
469
+ 30,30,99352,0.22211331
470
+ 30,30,715144,0.22242063
471
+ 30,30,877892,0.22522628
472
+ 30,30,1071688,0.22682726
473
+ 30,30,702771,0.22764105
474
+ 30,30,437710,0.23395455
475
+ 30,30,779281,0.23463863
476
+ 30,30,784055,0.24204028
477
+ 30,30,726881,0.24291492
478
+ 30,30,711393,0.24333805
479
+ 30,30,722295,0.24356562
480
+ 30,30,254659,0.24400604
481
+ 30,30,457849,0.24417794
482
+ 31,31,1001923,0.26141852
483
+ 31,31,40122,0.2677111
484
+ 31,31,159312,0.26806635
485
+ 31,31,880430,0.27370584
486
+ 31,31,428784,0.27379
487
+ 31,31,995043,0.2829336
488
+ 31,31,3738,0.2852829
489
+ 31,31,159835,0.28579843
490
+ 31,31,37392,0.28607535
491
+ 31,31,986241,0.28706414
492
+ 31,31,669836,0.28709555
493
+ 31,31,162449,0.28712803
494
+ 31,31,328488,0.28718328
495
+ 31,31,224854,0.28750122
496
+ 31,31,278365,0.28865665
497
+ 31,31,466939,0.28921163
498
+ 32,32,847448,0.18080133
499
+ 32,32,469553,0.1884684
500
+ 32,32,57416,0.19103676
501
+ 32,32,641031,0.19261199
502
+ 32,32,906841,0.2042141
503
+ 32,32,669926,0.21601337
504
+ 32,32,194864,0.2194683
505
+ 32,32,57045,0.22255397
506
+ 32,32,935372,0.22425699
507
+ 32,32,718720,0.22432613
508
+ 32,32,852242,0.2247842
509
+ 32,32,253106,0.22569603
510
+ 32,32,313466,0.2261079
511
+ 32,32,523924,0.22635198
512
+ 32,32,345015,0.22955823
513
+ 32,32,197915,0.22973973
514
+ 33,33,603916,0.070466876
515
+ 33,33,579181,0.08368647
516
+ 33,33,527232,0.09095293
517
+ 33,33,730031,0.104777336
518
+ 33,33,416156,0.106969774
519
+ 33,33,293002,0.1075899
520
+ 33,33,80232,0.108787656
521
+ 33,33,259923,0.11715841
522
+ 33,33,723631,0.117624044
523
+ 33,33,629498,0.118358016
524
+ 33,33,938328,0.119235575
525
+ 33,33,929331,0.12136972
526
+ 33,33,148545,0.1222415
527
+ 33,33,801031,0.12274861
528
+ 33,33,915458,0.1252802
529
+ 33,33,715935,0.12531435
530
+ 34,34,1071204,0.20114595
531
+ 34,34,952528,0.22297573
532
+ 34,34,213715,0.22638696
533
+ 34,34,935547,0.22843903
534
+ 34,34,58571,0.22905296
535
+ 34,34,669062,0.23633152
536
+ 34,34,685849,0.23772115
537
+ 34,34,479797,0.24341059
538
+ 34,34,506530,0.24627942
539
+ 34,34,1018643,0.2468772
540
+ 34,34,9494,0.24758959
541
+ 34,34,909462,0.24946469
542
+ 34,34,778449,0.2517413
543
+ 34,34,492025,0.25265867
544
+ 34,34,1058856,0.25615466
545
+ 34,34,790468,0.25626063
546
+ 35,35,56450,0.2580701
547
+ 35,35,32964,0.25833267
548
+ 35,35,892346,0.27451307
549
+ 35,35,608005,0.27982283
550
+ 35,35,8375,0.2833832
551
+ 35,35,15659,0.28399897
552
+ 35,35,70610,0.28418398
553
+ 35,35,742780,0.28554755
554
+ 35,35,686124,0.28611428
555
+ 35,35,593446,0.28866905
556
+ 35,35,1023962,0.2891221
557
+ 35,35,926222,0.29168415
558
+ 35,35,1007481,0.29300833
559
+ 35,35,836381,0.29368973
560
+ 35,35,385899,0.29396564
561
+ 35,35,728439,0.29571193
562
+ 36,36,604230,0.11703849
563
+ 36,36,408039,0.14333689
564
+ 36,36,201816,0.15247142
565
+ 36,36,34327,0.15741545
566
+ 36,36,304623,0.1590293
567
+ 36,36,17899,0.16130567
568
+ 36,36,207657,0.16252404
569
+ 36,36,417392,0.162812
570
+ 36,36,521468,0.16410834
571
+ 36,36,808568,0.16613579
572
+ 36,36,1082563,0.16627866
573
+ 36,36,744516,0.16769719
574
+ 36,36,1052343,0.16844922
575
+ 36,36,76441,0.16912311
576
+ 36,36,426728,0.16977036
577
+ 36,36,828079,0.17096269
578
+ 37,37,49895,0.2290309
579
+ 37,37,530188,0.233109
580
+ 37,37,58302,0.23586977
581
+ 37,37,58560,0.23605418
582
+ 37,37,640458,0.23732835
583
+ 37,37,359275,0.23866576
584
+ 37,37,132247,0.23940396
585
+ 37,37,967918,0.24154395
586
+ 37,37,19585,0.24161124
587
+ 37,37,920892,0.24228907
588
+ 37,37,404493,0.24292201
589
+ 37,37,1040884,0.24656093
590
+ 37,37,171393,0.24849898
591
+ 37,37,24334,0.25087184
592
+ 37,37,59262,0.25131273
593
+ 37,37,878757,0.25323164
594
+ 38,38,315236,0.22592795
595
+ 38,38,1071296,0.23276436
596
+ 38,38,164249,0.23419696
597
+ 38,38,131839,0.2362175
598
+ 38,38,385960,0.23631048
599
+ 38,38,53579,0.23714793
600
+ 38,38,442834,0.23728967
601
+ 38,38,58701,0.23763978
602
+ 38,38,928676,0.24009621
603
+ 38,38,1024438,0.24052638
604
+ 38,38,879683,0.24186409
605
+ 38,38,222601,0.24299687
606
+ 38,38,634863,0.2433402
607
+ 38,38,572770,0.24738252
608
+ 38,38,20951,0.2501946
609
+ 38,38,803786,0.25051332
610
+ 39,39,1056228,0.15150797
611
+ 39,39,516446,0.16768354
612
+ 39,39,202,0.1840859
613
+ 39,39,228729,0.19603199
614
+ 39,39,1044218,0.19878626
615
+ 39,39,606607,0.19938642
616
+ 39,39,458462,0.20567983
617
+ 39,39,671102,0.21016383
618
+ 39,39,185428,0.21107805
619
+ 39,39,1087087,0.21396041
620
+ 39,39,1058223,0.2168976
621
+ 39,39,1025634,0.21712059
622
+ 39,39,1007828,0.21714789
623
+ 39,39,940131,0.2184608
624
+ 39,39,87527,0.2192353
625
+ 39,39,44452,0.22191256
626
+ 40,40,628848,0.097010076
627
+ 40,40,293631,0.10986787
628
+ 40,40,353329,0.11048579
629
+ 40,40,1013459,0.112362325
630
+ 40,40,26171,0.1143533
631
+ 40,40,283310,0.117698014
632
+ 40,40,410915,0.11933881
633
+ 40,40,930528,0.12072855
634
+ 40,40,54657,0.120813966
635
+ 40,40,425387,0.12307203
636
+ 40,40,838639,0.1231004
637
+ 40,40,55869,0.12338662
638
+ 40,40,1070445,0.12378818
639
+ 40,40,478015,0.12543881
640
+ 40,40,629031,0.12566245
641
+ 40,40,642356,0.12631685
642
+ 41,41,234810,0.20282704
643
+ 41,41,729340,0.20797151
644
+ 41,41,1065719,0.21021444
645
+ 41,41,2579,0.21367633
646
+ 41,41,59221,0.22752023
647
+ 41,41,1006357,0.22948211
648
+ 41,41,17776,0.23453057
649
+ 41,41,683044,0.23545378
650
+ 41,41,695029,0.23711902
651
+ 41,41,669488,0.23718268
652
+ 41,41,59231,0.24361897
653
+ 41,41,916434,0.24385083
654
+ 41,41,1067376,0.24838954
655
+ 41,41,52091,0.24893242
656
+ 41,41,695687,0.25048286
657
+ 41,41,176636,0.25101823
658
+ 42,42,40572,0.17276585
659
+ 42,42,299605,0.19594264
660
+ 42,42,741274,0.20305032
661
+ 42,42,619084,0.20575511
662
+ 42,42,991059,0.21181577
663
+ 42,42,993133,0.21568322
664
+ 42,42,504511,0.21646869
665
+ 42,42,964208,0.21864682
666
+ 42,42,1039009,0.21986288
667
+ 42,42,100391,0.22047406
668
+ 42,42,904512,0.22323781
669
+ 42,42,698745,0.22334081
670
+ 42,42,213490,0.22413546
671
+ 42,42,1014210,0.22701353
672
+ 42,42,555403,0.2274906
673
+ 42,42,567412,0.22826624
674
+ 43,43,907878,0.18602586
675
+ 43,43,95907,0.18619001
676
+ 43,43,161798,0.19641244
677
+ 43,43,804426,0.20319182
678
+ 43,43,499338,0.20321178
679
+ 43,43,574655,0.2040233
680
+ 43,43,145955,0.20613396
681
+ 43,43,572942,0.20894152
682
+ 43,43,758576,0.20929652
683
+ 43,43,739179,0.21152967
684
+ 43,43,934528,0.21293074
685
+ 43,43,24740,0.21353889
686
+ 43,43,692916,0.21376419
687
+ 43,43,384686,0.2143032
688
+ 43,43,1067774,0.21460927
689
+ 43,43,903239,0.2148034
690
+ 44,44,1087062,0.21318138
691
+ 44,44,856212,0.23326689
692
+ 44,44,124059,0.23564488
693
+ 44,44,468126,0.24158233
694
+ 44,44,580197,0.24994612
695
+ 44,44,308762,0.2562117
696
+ 44,44,553941,0.25880873
697
+ 44,44,1000486,0.25932127
698
+ 44,44,450232,0.2599271
699
+ 44,44,207636,0.26067847
700
+ 44,44,226226,0.26084644
701
+ 44,44,359214,0.2611484
702
+ 44,44,856213,0.26118928
703
+ 44,44,1010918,0.26214015
704
+ 44,44,398268,0.263304
705
+ 44,44,969286,0.26488358
706
+ 45,45,329745,0.1977089
707
+ 45,45,58704,0.20748234
708
+ 45,45,27638,0.21684724
709
+ 45,45,406363,0.22170126
710
+ 45,45,132247,0.23337483
711
+ 45,45,909533,0.23834479
712
+ 45,45,226198,0.24227971
713
+ 45,45,420729,0.2438907
714
+ 45,45,1170,0.24551338
715
+ 45,45,1086511,0.24649048
716
+ 45,45,499158,0.24838132
717
+ 45,45,44467,0.25044376
718
+ 45,45,498613,0.2518568
719
+ 45,45,557504,0.25197083
720
+ 45,45,564254,0.25287616
721
+ 45,45,422366,0.253048
722
+ 46,46,501347,0.23837453
723
+ 46,46,345940,0.24758458
724
+ 46,46,660217,0.25067896
725
+ 46,46,357530,0.2548591
726
+ 46,46,957359,0.256792
727
+ 46,46,690393,0.26429278
728
+ 46,46,740200,0.26440656
729
+ 46,46,708894,0.2645777
730
+ 46,46,925879,0.26708525
731
+ 46,46,350630,0.26776266
732
+ 46,46,1088031,0.26856184
733
+ 46,46,988131,0.27044773
734
+ 46,46,863645,0.27138805
735
+ 46,46,842931,0.27299523
736
+ 46,46,23000,0.27442193
737
+ 46,46,6825,0.27545887
738
+ 47,47,998070,0.18922162
739
+ 47,47,406519,0.20752162
740
+ 47,47,728343,0.23401868
741
+ 47,47,1004400,0.23833948
742
+ 47,47,998068,0.24232197
743
+ 47,47,1004411,0.24656332
744
+ 47,47,1004410,0.24656332
745
+ 47,47,78532,0.24710286
746
+ 47,47,504822,0.24745357
747
+ 47,47,38105,0.25520134
748
+ 47,47,79232,0.25618804
749
+ 47,47,870254,0.25732863
750
+ 47,47,304,0.2609372
751
+ 47,47,1056475,0.26109648
752
+ 47,47,1056465,0.2614686
753
+ 47,47,444480,0.2633142
754
+ 48,48,719080,0.16234863
755
+ 48,48,111012,0.1780085
756
+ 48,48,203507,0.18129969
757
+ 48,48,659677,0.1855784
758
+ 48,48,624806,0.1886
759
+ 48,48,909883,0.19103032
760
+ 48,48,93681,0.19411957
761
+ 48,48,425927,0.2007721
762
+ 48,48,375397,0.20215589
763
+ 48,48,726747,0.20789361
764
+ 48,48,853052,0.21077263
765
+ 48,48,227236,0.21078819
766
+ 48,48,616835,0.21230507
767
+ 48,48,575850,0.21239883
768
+ 48,48,279165,0.21245533
769
+ 48,48,1048785,0.21407527
770
+ 49,49,933594,0.16389734
771
+ 49,49,292267,0.1760711
772
+ 49,49,286417,0.17834216
773
+ 49,49,708152,0.17971563
774
+ 49,49,372049,0.20436019
775
+ 49,49,683537,0.20662439
776
+ 49,49,653191,0.2066738
777
+ 49,49,450780,0.21936107
778
+ 49,49,364120,0.22217327
779
+ 49,49,161966,0.22717059
780
+ 49,49,591119,0.23011237
781
+ 49,49,551137,0.23186255
782
+ 49,49,505471,0.23657507
783
+ 49,49,295052,0.23813856
784
+ 49,49,1086361,0.24118418
785
+ 49,49,190799,0.24309933
786
+ 50,50,589306,0.21181762
787
+ 50,50,336255,0.219145
788
+ 50,50,416845,0.22507107
789
+ 50,50,711498,0.22826505
790
+ 50,50,306827,0.2327013
791
+ 50,50,418957,0.23672867
792
+ 50,50,192875,0.23705703
793
+ 50,50,535105,0.23825628
794
+ 50,50,657792,0.23875916
795
+ 50,50,214493,0.23996198
796
+ 50,50,737719,0.24126244
797
+ 50,50,678481,0.24266768
798
+ 50,50,802908,0.24664617
799
+ 50,50,647508,0.250965
800
+ 50,50,154591,0.2510466
801
+ 50,50,304168,0.2531215
802
+ 51,51,925243,0.26404274
803
+ 51,51,556282,0.26546103
804
+ 51,51,798739,0.27192754
805
+ 51,51,466743,0.27671295
806
+ 51,51,962562,0.28005284
807
+ 51,51,38205,0.28101963
808
+ 51,51,895007,0.281461
809
+ 51,51,381413,0.28153718
810
+ 51,51,788894,0.28573018
811
+ 51,51,239829,0.2875085
812
+ 51,51,240839,0.28788936
813
+ 51,51,198477,0.28842372
814
+ 51,51,24882,0.2901163
815
+ 51,51,839719,0.29099
816
+ 51,51,952443,0.29233837
817
+ 51,51,884975,0.29243708
818
+ 52,52,589607,0.2003904
819
+ 52,52,876039,0.21765631
820
+ 52,52,144923,0.21857172
821
+ 52,52,843089,0.22981727
822
+ 52,52,695661,0.23233372
823
+ 52,52,745793,0.23416919
824
+ 52,52,745801,0.23554814
825
+ 52,52,729552,0.23917896
826
+ 52,52,1004969,0.23942441
827
+ 52,52,314397,0.24068272
828
+ 52,52,1006726,0.24083811
829
+ 52,52,610309,0.24166912
830
+ 52,52,1082852,0.2430312
831
+ 52,52,834308,0.24430501
832
+ 52,52,397181,0.24620634
833
+ 52,52,1032190,0.24856323
834
+ 53,53,240493,0.2096281
835
+ 53,53,33724,0.22590965
836
+ 53,53,1038476,0.22763532
837
+ 53,53,253700,0.2512973
838
+ 53,53,672724,0.25280845
839
+ 53,53,916065,0.25448906
840
+ 53,53,410820,0.25698125
841
+ 53,53,386169,0.25925213
842
+ 53,53,887672,0.26051843
843
+ 53,53,749056,0.26158518
844
+ 53,53,594683,0.263839
845
+ 53,53,493247,0.26607007
846
+ 53,53,539626,0.26678944
847
+ 53,53,747483,0.2670284
848
+ 53,53,50806,0.27137005
849
+ 53,53,1033614,0.27478373
850
+ 54,54,716756,0.19988269
851
+ 54,54,1079681,0.20712692
852
+ 54,54,456576,0.2099821
853
+ 54,54,374211,0.22345567
854
+ 54,54,1029563,0.22515166
855
+ 54,54,377822,0.22930455
856
+ 54,54,194427,0.23563182
857
+ 54,54,563512,0.2425521
858
+ 54,54,896771,0.24486238
859
+ 54,54,578878,0.24900419
860
+ 54,54,946487,0.25040734
861
+ 54,54,1055734,0.25221914
862
+ 54,54,748479,0.254048
863
+ 54,54,1030506,0.25514364
864
+ 54,54,336738,0.25550944
865
+ 54,54,135163,0.25580972
866
+ 55,55,721017,0.17512262
867
+ 55,55,806670,0.17967731
868
+ 55,55,689953,0.18321723
869
+ 55,55,668423,0.1840617
870
+ 55,55,540470,0.191679
871
+ 55,55,8260,0.19409871
872
+ 55,55,885760,0.19620365
873
+ 55,55,338713,0.1962471
874
+ 55,55,984411,0.19740283
875
+ 55,55,847495,0.19874722
876
+ 55,55,100791,0.1998313
877
+ 55,55,138664,0.20046514
878
+ 55,55,209627,0.2047677
879
+ 55,55,6398,0.20513982
880
+ 55,55,962205,0.20523858
881
+ 55,55,948389,0.20589429
882
+ 56,56,14654,0.23102188
883
+ 56,56,1084727,0.23460126
884
+ 56,56,189090,0.2361356
885
+ 56,56,869184,0.24555862
886
+ 56,56,748200,0.24617243
887
+ 56,56,652960,0.25193387
888
+ 56,56,198564,0.25551236
889
+ 56,56,925754,0.2556345
890
+ 56,56,630270,0.25578123
891
+ 56,56,48656,0.25603753
892
+ 56,56,570068,0.25731426
893
+ 56,56,722408,0.25764346
894
+ 56,56,737674,0.2589618
895
+ 56,56,494856,0.26004344
896
+ 56,56,898611,0.26214778
897
+ 56,56,227581,0.26296234
898
+ 57,57,146197,0.21174484
899
+ 57,57,755507,0.21908051
900
+ 57,57,359045,0.23887652
901
+ 57,57,785797,0.23972332
902
+ 57,57,964709,0.24322146
903
+ 57,57,743655,0.24380511
904
+ 57,57,737635,0.24593312
905
+ 57,57,307034,0.25297064
906
+ 57,57,813641,0.2532817
907
+ 57,57,737676,0.25465238
908
+ 57,57,394026,0.25500333
909
+ 57,57,640035,0.25517696
910
+ 57,57,774614,0.25594723
911
+ 57,57,863943,0.25913984
912
+ 57,57,682340,0.25938296
913
+ 57,57,717758,0.26065755
914
+ 58,58,292934,0.18703526
915
+ 58,58,751720,0.19708174
916
+ 58,58,597108,0.19899476
917
+ 58,58,865470,0.20395249
918
+ 58,58,405940,0.21168816
919
+ 58,58,811698,0.21637028
920
+ 58,58,501596,0.21859598
921
+ 58,58,453224,0.22985923
922
+ 58,58,79441,0.23120749
923
+ 58,58,899260,0.23216927
924
+ 58,58,249722,0.23256999
925
+ 58,58,397959,0.23360872
926
+ 58,58,699473,0.23471016
927
+ 58,58,453227,0.2353549
928
+ 58,58,200691,0.23651612
929
+ 58,58,412859,0.23725706
930
+ 59,59,350532,0.17678797
931
+ 59,59,860132,0.18968523
932
+ 59,59,3382,0.19248521
933
+ 59,59,227414,0.19267166
934
+ 59,59,477902,0.1950903
935
+ 59,59,866404,0.19725639
936
+ 59,59,525334,0.19913977
937
+ 59,59,905926,0.20034373
938
+ 59,59,201404,0.20050377
939
+ 59,59,759302,0.202883
940
+ 59,59,681532,0.20345074
941
+ 59,59,473166,0.2039203
942
+ 59,59,749273,0.20503712
943
+ 59,59,15764,0.20797771
944
+ 59,59,554756,0.21180296
945
+ 59,59,538631,0.21202224
946
+ 61,61,180968,0.21899766
947
+ 61,61,661651,0.2513768
948
+ 61,61,1080223,0.25456554
949
+ 61,61,617071,0.26077265
950
+ 61,61,874837,0.2610379
951
+ 61,61,81712,0.26163566
952
+ 61,61,476721,0.2616409
953
+ 61,61,800180,0.26307118
954
+ 61,61,980633,0.26545918
955
+ 61,61,406961,0.2677939
956
+ 61,61,534029,0.26888067
957
+ 61,61,296400,0.2692532
958
+ 61,61,483370,0.2693131
959
+ 61,61,228274,0.27164215
960
+ 61,61,992175,0.27173507
961
+ 61,61,929610,0.27180034
962
+ 62,62,1015977,0.23508972
963
+ 62,62,126687,0.24093038
964
+ 62,62,495476,0.24151564
965
+ 62,62,256276,0.25227344
966
+ 62,62,495477,0.25397676
967
+ 62,62,842757,0.2679603
968
+ 62,62,105658,0.27839166
969
+ 62,62,930411,0.27840912
970
+ 62,62,435088,0.28479612
971
+ 62,62,944616,0.28502744
972
+ 62,62,651230,0.2856959
973
+ 62,62,604844,0.28609055
974
+ 62,62,190898,0.28715247
975
+ 62,62,503812,0.28742015
976
+ 62,62,811603,0.28792393
977
+ 62,62,271468,0.2883796
978
+ 63,63,80702,0.20461601
979
+ 63,63,710436,0.21997714
980
+ 63,63,74025,0.23144913
981
+ 63,63,854616,0.23384488
982
+ 63,63,704391,0.23690736
983
+ 63,63,696814,0.24492836
984
+ 63,63,489875,0.24834168
985
+ 63,63,1012022,0.24899346
986
+ 63,63,696286,0.25144738
987
+ 63,63,665530,0.25203878
988
+ 63,63,53872,0.25238025
989
+ 63,63,79430,0.25370985
990
+ 63,63,339736,0.25376654
991
+ 63,63,78724,0.25577348
992
+ 63,63,455825,0.25652927
993
+ 63,63,293568,0.25687933
994
+ 64,64,44941,0.24068534
995
+ 64,64,717059,0.25586742
996
+ 64,64,992752,0.25956935
997
+ 64,64,704983,0.26274967
998
+ 64,64,737561,0.26318806
999
+ 64,64,976735,0.27021915
1000
+ 64,64,847346,0.27113813
1001
+ 64,64,137202,0.2712844
1002
+ 64,64,393382,0.28000498
1003
+ 64,64,630009,0.28353333
1004
+ 64,64,212745,0.28793663
1005
+ 64,64,80912,0.29081994
1006
+ 64,64,872999,0.2910158
1007
+ 64,64,316087,0.2926172
1008
+ 64,64,528802,0.29281926
1009
+ 64,64,295073,0.2928955
1010
+ 65,65,726974,0.17864078
1011
+ 65,65,657354,0.17865932
1012
+ 65,65,663111,0.19472408
1013
+ 65,65,1041006,0.19502622
1014
+ 65,65,623526,0.19893241
1015
+ 65,65,985144,0.20095766
1016
+ 65,65,447470,0.20358193
1017
+ 65,65,614768,0.20443314
1018
+ 65,65,348750,0.20581406
1019
+ 65,65,407907,0.21120983
1020
+ 65,65,95204,0.21372575
1021
+ 65,65,931596,0.21403706
1022
+ 65,65,850340,0.21567822
1023
+ 65,65,469755,0.21687698
1024
+ 65,65,749198,0.21795934
1025
+ 65,65,368397,0.21798879
1026
+ 66,66,806381,0.22387606
1027
+ 66,66,996431,0.24726069
1028
+ 66,66,14799,0.24945533
1029
+ 66,66,300017,0.2565375
1030
+ 66,66,766554,0.2598855
1031
+ 66,66,735735,0.26256752
1032
+ 66,66,887318,0.26687157
1033
+ 66,66,217300,0.27812064
1034
+ 66,66,415948,0.27820593
1035
+ 66,66,562350,0.27930695
1036
+ 66,66,562349,0.27930695
1037
+ 66,66,902193,0.28122175
1038
+ 66,66,820805,0.28126866
1039
+ 66,66,354523,0.2843464
1040
+ 66,66,944638,0.28522938
1041
+ 66,66,516996,0.2856207
1042
+ 69,69,535057,0.18470985
1043
+ 69,69,316952,0.18960458
1044
+ 69,69,337153,0.20333838
1045
+ 69,69,314805,0.2106998
1046
+ 69,69,250441,0.21243477
1047
+ 69,69,693390,0.23132545
1048
+ 69,69,290503,0.23631996
1049
+ 69,69,605413,0.24224883
1050
+ 69,69,412242,0.2448523
1051
+ 69,69,1021614,0.24791503
1052
+ 69,69,100964,0.2481913
1053
+ 69,69,934873,0.25150704
1054
+ 69,69,227586,0.25195557
1055
+ 69,69,718306,0.25281024
1056
+ 69,69,382338,0.25361234
1057
+ 69,69,803607,0.25366008
1058
+ 70,70,855415,0.16942352
1059
+ 70,70,862662,0.20363462
1060
+ 70,70,249462,0.21269053
1061
+ 70,70,744692,0.2203812
1062
+ 70,70,488349,0.2214669
1063
+ 70,70,38039,0.22224724
1064
+ 70,70,432928,0.2223146
1065
+ 70,70,490574,0.22238082
1066
+ 70,70,227284,0.22444189
1067
+ 70,70,759025,0.2314657
1068
+ 70,70,118645,0.23356032
1069
+ 70,70,404830,0.23428547
1070
+ 70,70,712099,0.23790294
1071
+ 70,70,989798,0.23868364
1072
+ 70,70,726215,0.23941731
1073
+ 70,70,178094,0.23954314
1074
+ 71,71,792525,0.15625262
1075
+ 71,71,1016484,0.1613881
1076
+ 71,71,692330,0.17042041
1077
+ 71,71,274443,0.17957115
1078
+ 71,71,728365,0.19959182
1079
+ 71,71,270970,0.19973415
1080
+ 71,71,993652,0.20004612
1081
+ 71,71,993662,0.20225906
1082
+ 71,71,725120,0.2058332
1083
+ 71,71,472176,0.20807731
1084
+ 71,71,143543,0.20821464
1085
+ 71,71,728257,0.20952755
1086
+ 71,71,717251,0.21121812
1087
+ 71,71,701425,0.2126069
1088
+ 71,71,294016,0.21591932
1089
+ 71,71,825993,0.21610355
1090
+ 72,72,468455,0.18454099
1091
+ 72,72,105766,0.19700933
1092
+ 72,72,257659,0.20084071
1093
+ 72,72,469804,0.20685989
1094
+ 72,72,990507,0.2108739
1095
+ 72,72,502966,0.21115339
1096
+ 72,72,700872,0.21371186
1097
+ 72,72,4036,0.21869797
1098
+ 72,72,808194,0.22242558
1099
+ 72,72,829262,0.22653943
1100
+ 72,72,116132,0.22828615
1101
+ 72,72,865069,0.22885996
1102
+ 72,72,77246,0.22923535
1103
+ 72,72,502173,0.23139423
1104
+ 72,72,224515,0.2323677
1105
+ 72,72,234356,0.23257166
1106
+ 74,74,947036,0.19772995
1107
+ 74,74,886135,0.20313323
1108
+ 74,74,287987,0.2120735
1109
+ 74,74,133305,0.21438825
1110
+ 74,74,415231,0.21492279
1111
+ 74,74,1062403,0.21892577
1112
+ 74,74,1072520,0.21967113
1113
+ 74,74,814633,0.22323447
1114
+ 74,74,24341,0.2259413
1115
+ 74,74,62037,0.22602099
1116
+ 74,74,339787,0.22650325
1117
+ 74,74,926410,0.23072237
1118
+ 74,74,108044,0.23212993
1119
+ 74,74,496003,0.23265028
1120
+ 74,74,736720,0.23370367
1121
+ 74,74,357651,0.23391569
1122
+ 75,75,71988,0.1771037
1123
+ 75,75,260739,0.19857949
1124
+ 75,75,564842,0.20229328
1125
+ 75,75,305825,0.21237135
1126
+ 75,75,449910,0.21476966
1127
+ 75,75,992054,0.21611208
1128
+ 75,75,208977,0.21796846
1129
+ 75,75,338634,0.21966118
1130
+ 75,75,883962,0.21982521
1131
+ 75,75,249616,0.22167587
1132
+ 75,75,992049,0.2238298
1133
+ 75,75,180499,0.23006505
1134
+ 75,75,141451,0.23214996
1135
+ 75,75,811140,0.23359019
1136
+ 75,75,817523,0.23425913
1137
+ 75,75,76205,0.23545992
1138
+ 76,76,196254,0.22109026
1139
+ 76,76,215283,0.22653937
1140
+ 76,76,200412,0.23880416
1141
+ 76,76,501199,0.23927534
1142
+ 76,76,510706,0.24289334
1143
+ 76,76,682388,0.24388862
1144
+ 76,76,179124,0.24505413
1145
+ 76,76,72724,0.24718052
1146
+ 76,76,258177,0.24759346
1147
+ 76,76,265000,0.24817371
1148
+ 76,76,704447,0.25254452
1149
+ 76,76,980576,0.25536
1150
+ 76,76,939754,0.25638527
1151
+ 76,76,586858,0.26144284
1152
+ 76,76,149652,0.26193482
1153
+ 76,76,505555,0.26251525
1154
+ 77,77,498822,0.17670459
1155
+ 77,77,816732,0.19230789
1156
+ 77,77,399874,0.19814897
1157
+ 77,77,846997,0.19855815
1158
+ 77,77,557481,0.20441663
1159
+ 77,77,599335,0.21236223
1160
+ 77,77,851791,0.21298188
1161
+ 77,77,874271,0.21396196
1162
+ 77,77,289693,0.21673095
1163
+ 77,77,595848,0.21711445
1164
+ 77,77,170931,0.21758634
1165
+ 77,77,859398,0.21956384
1166
+ 77,77,812979,0.22063226
1167
+ 77,77,525995,0.22123629
1168
+ 77,77,1060035,0.22179699
1169
+ 77,77,584761,0.22238284
1170
+ 80,80,212101,0.18302244
1171
+ 80,80,212111,0.19755548
1172
+ 80,80,388504,0.20155805
1173
+ 80,80,697719,0.20293808
1174
+ 80,80,212103,0.20607466
1175
+ 80,80,927485,0.20656383
1176
+ 80,80,956,0.21182692
1177
+ 80,80,44990,0.22230053
1178
+ 80,80,135666,0.22406787
1179
+ 80,80,301457,0.22603947
1180
+ 80,80,165861,0.2275973
1181
+ 80,80,926939,0.22790319
1182
+ 80,80,59577,0.22792172
1183
+ 80,80,222851,0.22856182
1184
+ 80,80,958,0.23492086
1185
+ 80,80,452377,0.23870552
1186
+ 81,81,373882,0.20010155
1187
+ 81,81,434847,0.2016812
1188
+ 81,81,492411,0.202815
1189
+ 81,81,61773,0.20478982
1190
+ 81,81,720524,0.2084204
1191
+ 81,81,258747,0.20849055
1192
+ 81,81,318028,0.2126289
1193
+ 81,81,791977,0.21602768
1194
+ 81,81,487242,0.2234621
1195
+ 81,81,208154,0.22499633
1196
+ 81,81,93077,0.22732413
1197
+ 81,81,349227,0.22739977
1198
+ 81,81,24856,0.2274859
1199
+ 81,81,349230,0.22798169
1200
+ 81,81,773307,0.22810286
1201
+ 81,81,385775,0.23205549
1202
+ 82,82,222851,0.18283176
1203
+ 82,82,450870,0.19559032
1204
+ 82,82,212103,0.20874941
1205
+ 82,82,610429,0.20953935
1206
+ 82,82,212101,0.21858144
1207
+ 82,82,610430,0.2196055
1208
+ 82,82,212111,0.2210154
1209
+ 82,82,625206,0.22671092
1210
+ 82,82,135666,0.2269525
1211
+ 82,82,611036,0.22792
1212
+ 82,82,468171,0.22944987
1213
+ 82,82,93077,0.23161417
1214
+ 82,82,318031,0.23204947
1215
+ 82,82,334952,0.2333085
1216
+ 82,82,697719,0.23345935
1217
+ 82,82,98369,0.23540497
1218
+ 83,83,65179,0.19663578
1219
+ 83,83,424770,0.19932741
1220
+ 83,83,978304,0.2030586
1221
+ 83,83,409927,0.20803475
1222
+ 83,83,505163,0.2108385
1223
+ 83,83,458951,0.2165569
1224
+ 83,83,1012123,0.21906757
1225
+ 83,83,628491,0.2200144
1226
+ 83,83,125490,0.22639525
1227
+ 83,83,588722,0.22801518
1228
+ 83,83,205336,0.2299738
1229
+ 83,83,250587,0.23068792
1230
+ 83,83,251005,0.23120737
1231
+ 83,83,788339,0.2340132
1232
+ 83,83,773763,0.23403615
1233
+ 83,83,1038314,0.2346791
1234
+ 84,84,611036,0.15217316
1235
+ 84,84,212111,0.16717541
1236
+ 84,84,219199,0.18064117
1237
+ 84,84,451366,0.18981218
1238
+ 84,84,318031,0.1907584
1239
+ 84,84,212103,0.19412756
1240
+ 84,84,855058,0.19535059
1241
+ 84,84,807229,0.19923747
1242
+ 84,84,610429,0.1994341
1243
+ 84,84,208754,0.20234007
1244
+ 84,84,454768,0.2030384
1245
+ 84,84,968725,0.2033518
1246
+ 84,84,757982,0.20343965
1247
+ 84,84,945806,0.20348477
1248
+ 84,84,250697,0.20373285
1249
+ 84,84,697719,0.20479685
1250
+ 85,85,90365,0.11309773
1251
+ 85,85,88642,0.1247859
1252
+ 85,85,194077,0.14478058
1253
+ 85,85,598602,0.14679557
1254
+ 85,85,334367,0.1530661
1255
+ 85,85,233346,0.15389681
1256
+ 85,85,687879,0.15939718
1257
+ 85,85,604714,0.1602689
1258
+ 85,85,872708,0.16087925
1259
+ 85,85,354343,0.16136408
1260
+ 85,85,387977,0.1669426
1261
+ 85,85,633284,0.17028302
1262
+ 85,85,1010558,0.17140907
1263
+ 85,85,1062416,0.17297155
1264
+ 85,85,8168,0.17359948
1265
+ 85,85,395291,0.1740405
1266
+ 86,86,408103,0.1900357
1267
+ 86,86,549528,0.20135856
1268
+ 86,86,753748,0.20137697
1269
+ 86,86,205339,0.20300758
1270
+ 86,86,1007698,0.2057085
1271
+ 86,86,454510,0.20617479
1272
+ 86,86,252591,0.20635009
1273
+ 86,86,712273,0.20664757
1274
+ 86,86,1073370,0.2130593
1275
+ 86,86,139676,0.22435969
1276
+ 86,86,982231,0.22505814
1277
+ 86,86,57631,0.22689825
1278
+ 86,86,3309,0.22817492
1279
+ 86,86,438010,0.22861946
1280
+ 86,86,391456,0.23009765
1281
+ 86,86,668224,0.2302956
1282
+ 87,87,129699,0.18368131
1283
+ 87,87,120407,0.20435423
1284
+ 87,87,729737,0.20972854
1285
+ 87,87,437960,0.21031737
1286
+ 87,87,505202,0.22095984
1287
+ 87,87,716932,0.22114074
1288
+ 87,87,1047412,0.2236731
1289
+ 87,87,278373,0.22598952
1290
+ 87,87,603621,0.22647429
1291
+ 87,87,921264,0.2314046
1292
+ 87,87,19064,0.23258919
1293
+ 87,87,698710,0.23680389
1294
+ 87,87,327269,0.23976165
1295
+ 87,87,335310,0.24135113
1296
+ 87,87,213687,0.24139065
1297
+ 87,87,460741,0.24216264
1298
+ 88,88,555768,0.106835246
1299
+ 88,88,874969,0.13563693
1300
+ 88,88,620606,0.13572186
1301
+ 88,88,526456,0.13670546
1302
+ 88,88,702461,0.13844144
1303
+ 88,88,202035,0.1415177
1304
+ 88,88,332413,0.15605265
1305
+ 88,88,494213,0.15799177
1306
+ 88,88,621610,0.15974385
1307
+ 88,88,451219,0.16066855
1308
+ 88,88,708135,0.16161728
1309
+ 88,88,693655,0.16441971
1310
+ 88,88,470269,0.1644566
1311
+ 88,88,661585,0.1706363
1312
+ 88,88,141671,0.17497796
1313
+ 88,88,335845,0.17875493
1314
+ 89,89,697730,0.20188582
1315
+ 89,89,590367,0.20648909
1316
+ 89,89,846,0.20742321
1317
+ 89,89,278961,0.213296
1318
+ 89,89,668224,0.2282368
1319
+ 89,89,330391,0.22862625
1320
+ 89,89,350598,0.23032063
1321
+ 89,89,139676,0.23107678
1322
+ 89,89,236368,0.2332812
1323
+ 89,89,178634,0.23393416
1324
+ 89,89,717412,0.23438579
1325
+ 89,89,304763,0.23889714
1326
+ 89,89,712628,0.23950016
1327
+ 89,89,3699,0.23966432
1328
+ 89,89,438010,0.23996007
1329
+ 89,89,749343,0.24057215
1330
+ 90,90,661052,0.07587546
1331
+ 90,90,835405,0.08303279
1332
+ 90,90,252837,0.08761996
1333
+ 90,90,104789,0.096569896
1334
+ 90,90,136256,0.09989089
1335
+ 90,90,363154,0.10059124
1336
+ 90,90,919386,0.10263628
1337
+ 90,90,842456,0.10269767
1338
+ 90,90,33965,0.10275179
1339
+ 90,90,728960,0.103296876
1340
+ 90,90,795204,0.10673481
1341
+ 90,90,661484,0.10799229
1342
+ 90,90,986387,0.10847372
1343
+ 90,90,223837,0.10911238
1344
+ 90,90,455420,0.11248195
1345
+ 90,90,20183,0.11252576
1346
+ 91,91,225144,0.020329595
1347
+ 91,91,959232,0.043958127
1348
+ 91,91,10561,0.046510696
1349
+ 91,91,225145,0.047728658
1350
+ 91,91,616184,0.07236773
1351
+ 91,91,908081,0.073474646
1352
+ 91,91,632054,0.1047467
1353
+ 91,91,19341,0.10516095
1354
+ 91,91,431307,0.11006868
1355
+ 91,91,207006,0.11074871
1356
+ 91,91,1030686,0.11088061
1357
+ 91,91,980349,0.11110091
1358
+ 91,91,298354,0.11110091
1359
+ 91,91,384219,0.11110091
1360
+ 91,91,632056,0.112051725
1361
+ 91,91,90058,0.11224121
1362
+ 92,92,267848,0.16933614
1363
+ 92,92,32657,0.17158484
1364
+ 92,92,838226,0.17451185
1365
+ 92,92,147260,0.17790115
1366
+ 92,92,292569,0.17847902
1367
+ 92,92,143405,0.18354732
1368
+ 92,92,1044179,0.18724829
1369
+ 92,92,552579,0.18831694
1370
+ 92,92,4676,0.191957
1371
+ 92,92,4765,0.1928621
1372
+ 92,92,906623,0.19387555
1373
+ 92,92,5433,0.19736743
1374
+ 92,92,32167,0.19880116
1375
+ 92,92,1087706,0.1996634
1376
+ 92,92,225859,0.1998204
1377
+ 92,92,72468,0.20097935
1378
+ 93,93,445081,0.16299194
1379
+ 93,93,233896,0.1744991
1380
+ 93,93,47061,0.18726623
1381
+ 93,93,654398,0.20886195
1382
+ 93,93,846,0.20906544
1383
+ 93,93,309175,0.21082568
1384
+ 93,93,872526,0.21185619
1385
+ 93,93,73483,0.21693361
1386
+ 93,93,729090,0.21736056
1387
+ 93,93,282649,0.21848959
1388
+ 93,93,809370,0.21909863
1389
+ 93,93,39091,0.22055972
1390
+ 93,93,586921,0.22103035
1391
+ 93,93,893070,0.22312808
1392
+ 93,93,1011466,0.22343063
1393
+ 93,93,945674,0.22451079
1394
+ 94,94,887445,0.14619946
1395
+ 94,94,168245,0.1493032
1396
+ 94,94,889879,0.1499775
1397
+ 94,94,646494,0.15116447
1398
+ 94,94,970829,0.15277964
1399
+ 94,94,866988,0.16126227
1400
+ 94,94,973163,0.16626364
1401
+ 94,94,169024,0.17077899
1402
+ 94,94,227721,0.17386389
1403
+ 94,94,908993,0.1745084
1404
+ 94,94,1029828,0.17515212
1405
+ 94,94,113855,0.17666757
1406
+ 94,94,191926,0.17776906
1407
+ 94,94,222819,0.18054521
1408
+ 94,94,454884,0.18106574
1409
+ 94,94,36402,0.18159986
1410
+ 95,95,334775,0.14568251
1411
+ 95,95,668224,0.16191804
1412
+ 95,95,464272,0.17311811
1413
+ 95,95,342042,0.1926992
1414
+ 95,95,590367,0.19576114
1415
+ 95,95,204577,0.19614476
1416
+ 95,95,423026,0.19659197
1417
+ 95,95,416016,0.1972037
1418
+ 95,95,62688,0.1975277
1419
+ 95,95,227664,0.199031
1420
+ 95,95,121727,0.2032004
1421
+ 95,95,172287,0.2033062
1422
+ 95,95,549527,0.20761377
1423
+ 95,95,408103,0.20802969
1424
+ 95,95,549528,0.20932293
1425
+ 95,95,156291,0.20932662
1426
+ 97,97,838395,0.16733414
1427
+ 97,97,733861,0.18076885
1428
+ 97,97,207030,0.19436842
1429
+ 97,97,362042,0.19780862
1430
+ 97,97,457016,0.2019329
1431
+ 97,97,433522,0.20312655
1432
+ 97,97,609096,0.2071715
1433
+ 97,97,642150,0.20812261
1434
+ 97,97,332884,0.21870315
1435
+ 97,97,448058,0.21994269
1436
+ 97,97,493445,0.22435421
1437
+ 97,97,527494,0.22536266
1438
+ 97,97,453334,0.23285544
1439
+ 97,97,255709,0.23548442
1440
+ 97,97,110415,0.23848802
1441
+ 97,97,346705,0.23911178
1442
+ 98,98,731,0.17200118
1443
+ 98,98,239797,0.17242563
1444
+ 98,98,285281,0.1789279
1445
+ 98,98,728461,0.1825434
1446
+ 98,98,306996,0.18358368
1447
+ 98,98,870585,0.18556619
1448
+ 98,98,679498,0.19102585
1449
+ 98,98,996285,0.19160426
1450
+ 98,98,247579,0.19471359
1451
+ 98,98,309010,0.19612926
1452
+ 98,98,571109,0.19731021
1453
+ 98,98,227821,0.20283371
1454
+ 98,98,288045,0.20416093
1455
+ 98,98,841559,0.20429963
1456
+ 98,98,108184,0.20556372
1457
+ 98,98,462855,0.20679349
1458
+ 99,99,604902,0.24066424
1459
+ 99,99,563326,0.24868178
1460
+ 99,99,527392,0.24954754
1461
+ 99,99,690791,0.25418675
1462
+ 99,99,77569,0.25561416
1463
+ 99,99,318352,0.25731134
1464
+ 99,99,513411,0.2609821
1465
+ 99,99,283062,0.26154143
1466
+ 99,99,200636,0.26252842
1467
+ 99,99,80401,0.26257902
1468
+ 99,99,75131,0.26295912
1469
+ 99,99,473755,0.26313168
1470
+ 99,99,604255,0.26678348
1471
+ 99,99,1080497,0.27029496
1472
+ 99,99,490741,0.2706545
1473
+ 99,99,742388,0.27162313